Ports Search

Results 3,5513,560 of 5,623 for /devel/.(0.003 seconds)
devel/constant-lexical-2.0003 (Score: 0.032514982)
Perl pragma to declare lexical compile-time constants
This module creates compile-time constants in the manner of constant.pm, but makes them local to the enclosing scope.
devel/constant-1.33 (Score: 0.032514982)
Perl pragma to declare constants
This pragma allows you to declare constants at compile-time.
devel/cpan-listchanges-0.06 (Score: 0.032514982)
Perl extension to list changes for CPAN modules
List changes for CPAN modules.
devel/HTML_Common2-2.1.1 (Score: 0.032514982)
PEAR::HTML_Common2 is a base class for other HTML classes
TheHTML_Common2 package provides methods for HTML code display and attributes handling. * Provides methods to set, remove, merge HTML attributes. * Handles global document options (charset, linebreak and more). * Provides methods to handle indentation and HTML comments.
devel/ex-lib-0.90 (Score: 0.032514982)
Relative use lib in absolute way
The same as lib, but makes relative path absolute (Obsoleted by lib-abs)
devel/experimental-0.016 (Score: 0.032514982)
Experimental features made easy
This pragma provides an easy and convenient way to enable or disable experimental features.
devel/forks-0.36 (Score: 0.032514982)
Drop-in replacement for Perl threads using fork()
The "forks" pragma allows a developer to use threads without having to have a threaded perl, or to even run 5.8.0 or higher. There were a number of goals that I am trying to reach with this implementation. The standard Perl 5.8.0 threads implementation is very memory consuming, which makes it basically impossible to use in a production environment, particularly with mod_perl and Apache. Because of the use of the standard Unix fork() capabilities, most operating systems will be able to use the Copy-On-Write (COW) memory sharing capabilities (whereas with the standard Perl 5.8.0 threads implementation, this is thwarted by the Perl interpreter cloning process that is used to create threads). The memory savings have been confirmed. You should be able to run threaded applications unchanged by simply making sure that the "forks" and "forks::shared" modules are loaded, e.g. by specifying them on the command line.
devel/github_creator-0.15 (Score: 0.032514982)
Create a Github repository for your Perl module
This is a short script you can run from within an existing git repository to create a remote repo on Github using a previously created account. This does not create Github accounts (and that violates the terms of service).
devel/iCal-Parser-1.20 (Score: 0.032514982)
Parse iCalendar files into a data structure
This module processes iCalendar (vCalendar 2.0) files as specified in RFC 2445 into a data structure. It handles recurrences ("RRULE"s), exclusions ("EXDATE"s), event updates (events with a "RECURRENCE-ID"), and nested data structures ("ATTENDEES" and "VALARM"s). It currently ignores the "VTIMEZONE", "VJOURNAL" and "VFREEBUSY" entry types.
devel/lexical-underscore-0.003 (Score: 0.032514982)
Access lexical underscore of your caller
Starting with Perl 5.10, it is possible to create a lexical version of the Perl default variable $_. Certain Perl constructs like the given keyword automatically use a lexical $_ rather than the global $_. It is occasionallly useful for a sub to be able to access its caller's $_ variable regardless of whether it was lexical or not. The (_) sub prototype is the official way to do so, however there are sometimes disadvantages to this; in particular it can only appear as the final required argument in a prototype, and there is no way of the sub differentiating between an explicitly passed argument and $_. The lexical::underscore function returns a scalar reference to either a lexical $_ variable somewhere up the call stack (using PadWalker magic), or to the global $_ if there was no lexical version. Wrapping lexical::underscore in ${ ... } dereferences the scalar reference, allowing you to access (and even assign to) it.