Ports Search

Results 12,81112,820 of 19,819 for %22HTTP Server%22.(0.01 seconds)
devel/subatom-0.12 (Score: 9.2878623E-4)
Produce an atom feed from subversion commits
subatom is a small script to produce an Atom feed from subversion commits. You can use this with a feed reader to see new commits to your repository.
devel/superclass-0.003 (Score: 9.2878623E-4)
Like parent, but with version checks
Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. If a module in the import list is followed by something that doesn't look like a legal module name, the VERSION method will be called with it as an argument.
devel/syntax-0.004 (Score: 9.2878623E-4)
Activate syntax extensions in Perl
This module activates community provided syntax extensions to Perl. You pass it a feature name, and optionally a scalar with arguments, and the dispatching system will load and install the extension in your package. The import arguments are parsed with Data::OptList(3). There are no standardised options. Please consult the documentation for the specific syntax feature to find out about possible configuration options.
devel/threads-shared-1.48 (Score: 9.2878623E-4)
Share data structures between threads
By default, variables are private to each thread, and each newly created thread gets a private copy of each existing variable. This module allows you to share variables across different threads (and pseudoforks on Win32). It is used together with the threads module.
devel/threads-2.09 (Score: 9.2878623E-4)
Perl interpreter-based threads
Perl 5.6 introduced something called interpreter threads. Interpreter threads are different from 5005threads (the thread model of Perl 5.005) by creating a new Perl interpreter per thread, and not sharing any data or state between threads by default. Prior to Perl 5.8, this has only been available to people embedding Perl, and for emulating fork() on Windows. The threads API is loosely based on the old Thread.pm API. It is very important to note that variables are not shared between threads, all variables are by default thread local. To use shared variables one must use threads::shared. It is also important to note that you must enable threads by doing use threads as early as possible in the script itself, and that it is not possible to enable threading inside an eval "", do, require, or use. In particular, if you are intending to share variables with threads::shared, you must use threads before you use threads::shared. (threads will emit a warning if you do it the other way around.)
devel/true-0.18 (Score: 9.2878623E-4)
Automatically return a true value when a file is required
Perl's require builtin (and its use wrapper) requires the files it loads to return a true value. This is usually accomplished by placing a single 1; statement at the end of included scripts or modules. It's not onerous to add but it's a speed bump on the Perl novice's road to enlightenment. In addition, it appears to be a non-sequitur to the uninitiated, leading some to attempt to mitigate its appearance with a comment: 1; # keep require happy or: 1; # Do not remove this line or even: 1; # Must end with this, because Perl is bogus. This module packages this "return true" behaviour so that it need not be written explicitly. It can be used directly, but it is intended to be invoked from the import method of a Modern::Perl-style module that enables modern Perl features and conveniences and cleans up legacy Perl warts.
devel/uni-perl-0.91 (Score: 9.2878623E-4)
Modern perl with Unicode
Modern perl with unicode
devel/version-0.99.15 (Score: 9.2878623E-4)
Perl extension for Version Objects
This module implements overloaded version objects for all versions of Perl, including all of the features of version objects which will be part of Perl 5.10.0 except automatic v-string handling.
devel/papi-5.4.3 (Score: 9.2878623E-4)
API to access the performance counter hw in the microprocessor
PAPI aims to provide the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events.
devel/pccts-1.33.33 (Score: 9.2878623E-4)
Purdue Compiler Construction Tool Set
PCCTS - The Purdue Compiler Construction Tool Set PCCTS is a set of public domain software tools designed to facilitate the implementation of compilers and other translation systems. These tools currently include antlr, and dlg. In many ways, PCCTS is similar to a highly integrated version of YACC [Joh78] and LEX [Les75]; where antlr (ANother Tool for Language Recognition) corresponds to YACC and dlg (DFA-based Lexical analyzer Generator) functions like LEX. However, PCCTS has many additional features which make it easier to use for a wider range of translation problems.