Ports Search

Results 3,4513,460 of 5,623 for /devel/.(0.004 seconds)
devel/Test2-Suite-0.000036 (Score: 0.032514982)
Distribution with a rich set of tools built upon the Test2 framework
Rich set fo tools, plugins, bundles, etc built upon the Test2 testing library.
devel/Text-Levenshtein-0.13 (Score: 0.032514982)
Implementation of the Levenshtein edit distance
Text::Levenshtein implements the Levenshtein edit distance. The Levenshtein edit distance is a measure of the degree of proximity between two strings. This distance is the number of substitutions, deletions or insertions ("edits") needed to transform one string into the other one (and vice versa). When two strings have distance 0, they are the same.
devel/Text-vFile-asData-0.08 (Score: 0.032514982)
Parse vFile formatted files into data structures
Text::vFile::asData reads vFile format files, such as vCard (RFC 2426) and vCalendar (RFC 2445).
devel/TheSchwartz-Simple-0.05 (Score: 0.032514982)
DBI only job dispatcher for TheSchwartz
TheSchwartz is a reliable job queue system. This is a lightweight, DBI only job queuing module.
devel/boolean-0.45 (Score: 0.032514982)
Boolean support for Perl
Most programming languages have a native "Boolean" data type. Perl does not. Perl has a simple and well known Truth System. The following scalar values are false: @false = (undef, 0, 0.0, '', '0'); Every other scalar value is true. This module provides basic Boolean support, by defining two special objects: "true" and "false".
TheSchwartz Worker Task to Send Email
TheSchwartz is a reliable job queue system. This module can pull jobs from the queue to send email out via SMTP.
devel/TheSchwartz-1.10 (Score: 0.032514982)
Reliable job queue
TheSchwartz is a reliable job queue system. Your application can put jobs into the system, and your worker processes can pull jobs from the queue atomically to perform. Failed jobs can be left in the queue to retry later.
devel/Thread-Apartment-0.51 (Score: 0.032514982)
Apartment threading wrapper for Perl objects
Thread::Apartment provides an apartment threading wrapper for Perl classes. "Apartment threading" is a method for isolating an object (or object hierarchy) in its own thread, and providing external interfaces via lightweight client proxy objects. This approach is especially valuable in the Perl threads environment, which doesn't provide a direct means of passing complex, nested structure objects between threads, and for non-threadsafe legacy object architectures, e.g., Perl/Tk. By using lightweight client proxy objects that implement the Thread::Queue::Queueable interface, with Thread::Queue::Duplex objects as the communication channel between client proxies and apartment threads (or between threads in general), a more thread-friendly OO environment is provided, ala Java, i.e., the ability to pass arbitrary objects between arbitrary threads. Thread::Apartment is a fundamental component of the PSiCHE framework (http://www.presicient.com/psiche).
devel/Thread-Cancel-1.13 (Score: 0.032514982)
Cancel (i.e., kill) threads
This module adds cancellation capabilities for threads. Cancelled threads are terminated using threads->exit(). The thread is then detached, and hence automatically cleaned up. Threads that are suspended using Thread::Suspend do not need to be resumed in order to be cancelled. It is possible for a thread to cancel itself.
devel/enum-1.090 (Score: 0.032514982)
Defines symbolic constants with ordered numeric values, like C enums
This module defines a set of symbolic constants with ordered numeric values ala C enum types.