Ports Search

Results 11,65111,660 of 19,819 for %22HTTP Server%22.(0.009 seconds)
devel/Array-Heap-3.1 (Score: 9.2878623E-4)
Perl module implementing fast binary heaps/priority queues
A Heap implementation for Perl using functions that are loosely modeled after the C++ STL's binary heap functions. They all take an array as argument, just like perl's built-in functions "push", "pop" etc. The implementation itself is in C for maximum speed.
devel/Attribute-Persistent-1.1 (Score: 9.2878623E-4)
Attribute::Persistent - Really lazy persistence
This module provides a way of abstracting away persistence of array and hash variables. It's useful for quick hacks when you don't care about pulling in the right DBM library and calling tie and so on. Its job is to reduce fuss for the lazy programmer at the cost of flexibility. It uses MLDBM, so you can use complex data structures in your arrays and hashes. It uses AnyDBM_File, so if you really care about which DBM you get, you can modify AnyDBM_File::ISA in a BEGIN block after loading this module.
devel/AutoLoader-5.74 (Score: 9.2878623E-4)
Load subroutines only on demand
The AutoLoader module works with the AutoSplit module and the "__END__" token to defer the loading of some subroutines until they are used rather than loading them all at once.
devel/B-Compiling-0.06 (Score: 9.2878623E-4)
Perl extension to expose PL_compiling to perl
This module exposes the perl interpreter's PL_compiling variable to perl.
devel/B-Deobfuscate-0.20 (Score: 9.2878623E-4)
Extension to B::Deparse for use in de-obfuscating source code
B::Deobfuscate is a backend module for the Perl compiler that generates perl source code, based on the internal compiled structure that perl itself creates after parsing a program. It adds symbol renaming functions to the B::Deparse module. An obfuscated program is already parsed and interpreted correctly by the B::Deparse program. Unfortunately, if the obfuscation involved variable renaming then the resulting program also has obfuscated symbols.
devel/B-Flags-0.16 (Score: 9.2878623E-4)
Friendlier flags for B
Friendlier flags for B By default, "$foo->flags" when passed an object in the "B" class will produce a relatively meaningless number, which one would need to grovel through the Perl source code in order to do anything useful with. This module adds "flagspv" to the SV and op classes and "privatepv" to the op classes, which makes them easier to understand.
devel/B-Generate-1.54 (Score: 9.2878623E-4)
Create your own Perl op trees
Malcolm Beattie's B module allows you to examine the Perl op tree at runtime, in Perl space; it's the basis of the Perl compiler. But what it doesn't let you do is manipulate that op tree: it won't let you create new ops, or modify old ones. Now you can. Well, if you're intimately familiar with Perl's internals, you can.
devel/Attribute-Handlers-0.99 (Score: 9.2878623E-4)
Simpler definition of attribute handlers
This module, when inherited by a package, allows that package's class to define attribute handler subroutines for specific attributes. Variables and subroutines subsequently defined in that package, or in packages derived from that package may be given attributes with the same names as the attribute handler subroutines, which will then be called in one of the compilation phases (i.e. in a BEGIN, CHECK, INIT, or END block).
devel/AutoXS-Header-1.02 (Score: 9.2878623E-4)
Container for the AutoXS header files
This module is a simple container for the newest version of the AutoXS header file AutoXS.h.
devel/B-Graph-0.51 (Score: 9.2878623E-4)
Perl Compiler backend to diagram OP trees
This module is a layer between the perl-internals-examining parts of Malcolm Beattie's perl compiler (the B::* classes) and your favorite graph layout tool (currently Dot and VGC are supported, but adding others would be easy). It examines the internal structures that perl builds to represent your code (OPs and SVs), and generates specifications for multicolored boxes and arrows to represent them.