معرفی شرکت ها


perl-Devel-SmallProf-2.02-alt3.noarch.rpm


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

per-line Perl profiler
ویژگی مقدار
سیستم عامل Linux
توزیع ALT p9
مخزن ALTLinux classic noarch
نام بسته perl-Devel-SmallProf
نام فایل بسته perl-Devel-SmallProf-2.02-alt3.noarch.rpm
نسخه بسته 2.02
انتشار بسته alt3
معماری بسته noarch
نگهدارنده -
تاریخ ساخت Mon 25 Feb 2019 03
هاست سازنده viy-sisyphus.hasher.altlinux.org
نوع بسته .rpm
آدرس صفحه اصلی http://search.cpan.org/dist/Devel-SmallProf/
مجوز Artistic
حجم دانلود 8.5K
حجم نصب 10.832K
The Devel::SmallProf profiler is focused on the time taken for a program run on a line-by-line basis. It is intended to be as "small" in terms of impact on the speed and memory usage of the profiled program as possible and also in terms of being simple to use. Those statistics are placed in the file smallprof.out in the following format: <num> <time> <ctime> <line>:<text> where <num> is the number of times that the line was executed, <time> is the amount of "wall time" (time according the the clock on the wall vs. cpu time) spent executing it, <ctime> is the amount of cpu time expended on it and <line> and <text> are the line number and the actual text of the executed line (read from the file). The package uses the debugging hooks in Perl and thus needs the -d switch, so to profile test.pl, use the command: perl5 -d:SmallProf test.pl Once the script is done, the statistics in smallprof.out can be sorted to show which lines took the most time. The output can be sorted to find which lines take the longest, either with the sort command: sort -k 2nr,2 smallprof.out | less or a perl script: open(PROF,"smallprof.out"); @sorted = sort {(split(/\s+/,$b))[2] <=> (split(/\s+/,$a))[2]} <PROF>; close PROF; print join('',@sorted);


نیازمندی

مقدار نام
- /usr/share/perl5
>= 1.200 perl(Time/HiRes.pm)
- rpmlib(PayloadIsLzma)


ارائه دهنده

مقدار نام
= 2.020 perl(Devel/SmallProf.pm)
= 2.02-alt3:sisyphus+222825.100.1.1 perl-Devel-SmallProf


نحوه نصب


نصب پکیج rpm perl-Devel-SmallProf:

    sudo apt-get install perl-Devel-SmallProf-2.02-alt3.noarch.rpm


فایل ها

مسیرها
/usr/share/perl5/Devel
/usr/share/perl5/Devel/SmallProf.pm


گزارش تغییرات

تاریخ آخرین تغییر جزئیات
2019-02-25

fixed build with perl 528

2015-12-08

NMU: fixed build with perl 522

2010-11-22

repair after perl 5.12 upgrade using girar-nmu

2008-10-06

NMU for unknown reason:
-changelog "- NMU: <reason>" option.

2008-06-21

first build for ALT Linux Sisyphus