Ports 搜索

共有5,623项符合/devel/的查询结果,以下是第3,4913,500项(搜索用时0.003秒)
devel/prefork-1.04 (Score: 0.032514982)
Optimize module loading across forking and non-forking scenarios
The prefork pragma is intended to allow module writers to optimise module loading for both scenarios with as little additional code as possible. The prefork.pm is intended to serve as a central and optional marshalling point for state detection (are we running in procedural or pre-forking mode) and to act as a relatively light-weight module loader.
devel/Time-ParseDate-2015.103 (Score: 0.032514982)
Date parsing, both relative and absolute
Flexible date and time handling via common-sense strings.
devel/Time-Piece-Range-1.2 (Score: 0.032514982)
Time::Piece::Range - deal with a range of Time::Piece objects
A subclass of Date::Range that uses Time::Piece objects, rather than Date::Simple, to manipulate ranges of dates.
devel/Time-Progress-2.11 (Score: 0.032514982)
Elapsed and estimated finish time reporting
Elapsed and estimated finish time reporting
devel/Time-Warp-0.52 (Score: 0.032514982)
Control over the flow of time
Our external experience unfolds in 3 1/2 dimensions (time has a dimensionality of 1/2). The Time::Warp module offers developers control over the measurement of time.
devel/TimeDate-2.30 (Score: 0.032514982)
Perl5 module containing a better/faster date parser for absolute dates
The TimeDate distribution replaces earlier GetDate distribution, which was only a date parser. The date parser contained in this distribution is far superior to the yacc based parser, and a *lot* faster. The parser contained here will only parse absolute dates, if you want a date parser that can parse relative dates then take a look at the Time modules by David Muir on CPAN. The file Local.pm.new which is included in this distribution is a patched version of Time::Local which comes with perl. It fixes two problems - It determines the zone offset based on now rather than epoch - It fixes a problem with looping forever when a year > 1900 is passed in
devel/Tree-Binary-Dictionary-1.01 (Score: 0.032514982)
Dictionary API to a binary tree
A simple class to provide a dictionary style API to a binary tree of data. This can provide a useful alternative to a long-lived hash in long running daemons and processes.
devel/gc-7.6.0 (Score: 0.032514982)
Garbage collection and memory leak detection for C and C++
The Boehm-Weiser garbage collection package, for C and C++ - garbage collection and memory leak detection libraries. A garbage collector is something which automatically frees malloc'd memory for you by working out what parts of memory your program no longer has pointers to. As a result, garbage collectors can also inform you of memory leaks (if they find memory they can free, it means you have lost all of your pointers to it, but you didn't free it). C programs may be linked against either of these, and should run (with GC or leak detection) without change. C++ programs must include a header to use garbage collection, though leak detection should work without such source code modifications. See the man page and header files. ps: garbage collection is addictive.
devel/Tree-DAG_Node-1.29 (Score: 0.032514982)
Super class for representing nodes in a tree
Encapsulates/makes/manipulates objects that represent nodes in a tree structure. The tree structure is not an object itself, but is emergent from the linkages you create between nodes. This class provides the methods for making linkages that can be used to build up a tree, while preventing you from ever making any kinds of linkages which are not allowed in a tree (such as having a node be its own mother or ancestor, or having a node have two mothers).
devel/Tree-Node-0.08 (Score: 0.032514982)
Memory-efficient tree nodes in Perl
This module implements a memory-efficient node type (for trees, skip lists and similar data structures) for Perl. You may ask "Why bother implementing an ordered structure such as a tree when Perl has hashes built-in?" Since Perl is optimized for speed over memory usage, hashes (and lists) use a lot of memory. So the purpose of this package is to provide a simple low-level Node class which can be used as a base class to implement various kinds of tree structures. Each node has a key/value pair and a variable number of "children" pointers. How nodes are organized or the algorithm used to organize them is for you to implement. There is no Pure-perl version because this package was written to overcome limitations of Perl.