Ports Search

Results 17,37117,380 of 19,819 for %22HTTP Server%22.(0.013 seconds)
devel/Config-MVP-Reader-INI-2.101463 (Score: 7.739885E-4)
MVP config reader for .ini files
Config::MVP::Reader::INI reads .ini files containing MVP-style configuration.
devel/Config-Model-Tester-2.055 (Score: 7.739885E-4)
Test framework for Config::Model
Config::Model::Tester provides a way to test configuration models with tests files. This class was designed to tests several models and several tests cases per model.
devel/Config-Perl-V-0.26 (Score: 7.739885E-4)
Structured data retrieval of perl -V output
Structured data retreival of perl -V output
devel/Danga-Socket-Callback-0.013 (Score: 7.739885E-4)
Use Danga::Socket From Callbacks
Danga::Socket::Callback is a thin wrapper arond Danga::Socket that allows you to set callbacks to be called at various events.
devel/api-sanity-checker-1.98.4 (Score: 7.739885E-4)
Quickly generate sanity tests for the API of a C/C++ shared library
API Sanity Autotest is a test generator for shared C/C++ libraries. It can quickly generate simple ("sanity" or "shallow"-quality) tests for functions from the library API, using the signatures and data type definitions from the library header files. The tests can detect critical errors in simple use cases, and can be improved with highly reusable specialized types. API Sanity Autotest can execute generated tests and detect all kinds of emitted signals, early program exits, program hanging and specified requirement failures. API Sanity Autotest also supports tests in the Template2Code format, and has a random test generation mode and other useful features.
devel/Data-ClearSilver-HDF-0.04 (Score: 7.739885E-4)
Convert from Perl Data Structure to ClearSilver HDF
Convert from Perl Data Structure to ClearSilver HDF
devel/Data-Dump-Streamer-2.39 (Score: 7.739885E-4)
Stream a highly accurate breadth first data dump in Perl code
Converts a data structure into a sequence of perl statements sufficient for recreating the original via eval. This module is very similar in concept to Data::Dumper and Data::Dump, with the major differences being that this module is designed to output to a stream instead of constructing its output in memory, and that the traversal over the data structure is effectively breadth first versus the depth first traversal done by the others. In fact the data structure is scanned twice, first in breadth first mode to perform structural analysis, and then in depth first mode to actually produce the output, but obeying the depth relationships of the first pass.
devel/Data-Dumper-Concise-2.022 (Score: 7.739885E-4)
Less indentation and newlines plus sub deparsing
Data::Dumper::Concise is a perl module for less indentation and newlines plus sub deparsing.
devel/Data-Dumper-Perltidy-0.01 (Score: 7.739885E-4)
Stringify and pretty print Perl data structures
Data::Dumper::Perltidy encapsulates both Data::Dumper and Perl::Tidy to provide a function that stringifies a Perl data structure in a pretty printed format.
devel/Data-Dumper-Simple-0.11 (Score: 7.739885E-4)
Easily dump variables with names
This module allow the user to dump variables in a Data::Dumper format. Unlike the default behavior of Data::Dumper, the variables are named (instead of $VAR1, $VAR2, etc.) Data::Dumper provides an extended interface that allows the programmer to name the variables, but this interface requires a lot of typing and is prone to tyops (sic). This module fixes that. Data::Dumper::Simple is actually a source filter that replaces all instances of Dumper($some, @args) in your code with a call to Data::Dumper->Dump(). You can use the one function provided to make dumping variables for debugging a trivial task. Note that this is primarily a debugging tool. Data::Dumper offers a bit more than that, so don't expect this module to be more than it is.