Ports Search

Results 3,3913,400 of 5,623 for /devel/.(0.003 seconds)
devel/Time-Stopwatch-1.00 (Score: 0.032514982)
Use tied scalars as timers
This module provides a convenient interface to timing functions through tied scalars.
devel/Time-modules-2013.0912 (Score: 0.032514982)
Set of modules for time manipulation
This package contains the following perl5 modules: * Time::CTime - ctime, strftime, and asctime * Time::JulianDay - Julian calendar manipulations * Time::ParseDate - reverses strftime and also understands relative times * Time::Timezone - miscellaneous timezone manipulations routines * Time::DaysInMonth - simply report the number of days in a month
devel/Time-timegm-0.01 (Score: 0.032514982)
Efficiently compute time from local and GMT time
The POSIX standard provides three functions for converting between integer epoch values and 6-component "broken-down" time representations. localtime and gmtime convert an epoch into the 6 components of seconds, minutes, hours, day of month, month and year, in either local timezone or UTC. The mktime function converts a local broken-down time into an epoch value. However, POSIX does not provide a UTC version of this. This module provides a function timegm which has this ability.
devel/ToolSet-1.00 (Score: 0.032514982)
Load your commonly-used modules in a single import
Load your commonly-used modules in a single import
Metabase transport for Test::Reporter
Metabase transport for Test::Reporter
devel/Test-Reporter-1.62 (Score: 0.032514982)
Sends test results to cpan-testers@perl.org
Test::Reporter reports the test results of any given distribution to the CPAN testing service. See http://testers.cpan.org/ for details. Test::Reporter has wide support for various perl5's and platforms.
devel/Test-Requires-Git-1.006 (Score: 0.032514982)
Check your test requirements against the available version of Git
Test::Requires::Git checks if the version of Git available for testing meets the given requirements. The "current git" is obtained by running git --version (so the first git binary found in the PATH will be tested). If the checks fail, then all tests will be skipped.
devel/Test-Roo-1.004 (Score: 0.032514982)
Composable, reusable tests with roles and Moo
This module allows you to compose Test::More tests from roles. It is inspired by the excellent Test::Routine module, but uses Moo instead of Moose. This gives most of the benefits without the need for Moose as a test dependency.
devel/Test-Script-Run-0.08 (Score: 0.032514982)
Test the script with run
Test::Script::Run exports some subs to help test and run scripts in your dist's bin/ directory, if the script path is not absolute. Nearly all the essential code is stolen from Prophet::Test, we think subs like those should live below Test:: namespace, that's why we packed them and created this module.
devel/Tree-RedBlack-0.5 (Score: 0.032514982)
Perl implementation of Red/Black tree, a type of balanced tree
Tree::RedBlack is a perl implementation of the Red/Black tree algorithm found in the book "Algorithms", by Cormen, Leiserson & Rivest (more commonly known as "CLR" or "The White Book"). A Red/Black tree is a binary tree which remains "balanced"- that is, the longest length from root to a node is at most one more than the shortest such length. It is fairly efficient; no operation takes more than O(lg(n)) time. A Tree::RedBlack object supports the following methods: new(), root(), cmp(&), insert($, $), delete($), find($), node($), min() and max().