Ports Search

Results 11,87111,880 of 19,819 for %22HTTP Server%22.(0.011 seconds)
devel/Data-Swap-0.08 (Score: 9.2878623E-4)
XS module to swap the contents and types of referenced variables
Paraphrased from the Data:Swap's documentation ... Data::Swap (XS) module allows to swap the contents of two referenced variables, even if they have different types. The main application is to change the base type of an object after it has been created, for example for dynamic loading of data structures: swap $self, bless $replacement, $newclass;
devel/Data-TemporaryBag-0.09 (Score: 9.2878623E-4)
Handle long size data using temporary file
Data::TemporaryBag module provides a bag object class handling long size data. The short size data are kept on memory. When the data size becomes over $Threshold size, they are saved into a temporary file internally.
devel/Data-ObjectDriver-0.14 (Score: 9.2878623E-4)
Simple, transparent data interface, with caching
Data::ObjectDriver is an object relational mapper, meaning that it maps object-oriented design concepts onto a relational database. It's inspired by, and descended from, the MT::ObjectDriver classes in Six Apart's Movable Type and TypePad weblogging products. But it adds in caching and partitioning layers, allowing you to spread data across multiple physical databases, without your application code needing to know where the data is stored. It's currently considered ALPHA code. The API is largely fixed, but may seen some small changes in the future. For what it's worth, the likeliest area for changes are in the syntax for the search method, and would most likely not break much in the way of backwards compatibility.
devel/Data-OptList-0.110 (Score: 9.2878623E-4)
Parse and validate simple name/value option pairs
Hashes are great for storing named data, but if you want more than one entry for a name, you have to use a list of pairs. Even then, this is really boring to write: @values = ( foo => undef, bar => undef, baz => undef, xyz => { ... }, ); With Data::OptList, you can do this instead: Data::OptList::mkopt([ qw(foo bar baz), xyz => { ... }, ]); This works by assuming that any defined scalar is a name and any reference following a name is its value.
devel/Data-Path-1.4.1 (Score: 9.2878623E-4)
XPath-like access to complex data structures
This modules provides an XPath-like syntax to get values from complex data structures.
devel/Data-Peek-0.46 (Score: 9.2878623E-4)
Collection of low-level debug facilities
Data::Peek started off as DDumper being a wrapper module over Data::Dumper, but grew out to be a set of low-level data introspection utilities that no other module provided yet, using the lowest level of the perl internals API as possible.
devel/Data-Validate-0.09 (Score: 9.2878623E-4)
Common data validation methods
This module collects common validation routines to make input validation, and untainting easier and more readable. Most of the functions are not much shorter than their direct perl equivalent, but their names make it clear what you're trying to test for.
devel/Data-Perl-0.002009 (Score: 9.2878623E-4)
Base classes wrapping fundamental Perl data types
Data::Perl is a collection of classes that wrap fundamental data types that exist in Perl. These classes and methods as they exist today are an attempt to mirror functionality provided by Moose's Native Traits. One important thing to note is all classes currently do no validation on constructor input.
devel/Data-Printer-0.38 (Score: 9.2878623E-4)
Colored pretty-print of Perl data structures and objects
Data::Printer is meant to do one thing and one thing only: display Perl variables and objects on screen, properly formatted (to be inspected by a human). Here's what Data::Printer has to offer to Perl developers, out of the box: - Very sane defaults (I hope!) - Highly customizable (in case you disagree with me :) - Colored output by default - Human-friendly output, with array index and custom separators - Full object dumps including methods, inheritance and internals - Exposes extra information such as tainted data and weak references - Ability to easily create filters for objects and regular structures - Ability to load settings from a .dataprinter file so you don't have to write anything other than "use DDP;" in your code!
devel/Data-Rand-0.0.4 (Score: 9.2878623E-4)
Perl module for generating random strings or arrays
A module used to generate random strings and lists.