Ports 搜索

共有5,623项符合/devel/的查询结果,以下是第2,1112,120项(搜索用时0.003秒)
devel/Data-Object-0.59 (Score: 0.032514982)
Data Type Objects for Perl 5
Data::Object provides functions for promoting Perl 5 native data types to objects which provide common methods for operating on the data. Basically it provides Moo objects and roles for native Perl data types.
devel/Data-Taxonomy-Tags-0.05 (Score: 0.032514982)
Represents a set of tags for any item
Data::Taxonomy::Tags will basically take care of easily managing tags for an item. You provide it with a string of tags and it will allow you to call methods to get all the tags and categories as well as add and delete tags from the list.
devel/Data-TemporaryBag-0.09 (Score: 0.032514982)
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: 0.032514982)
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: 0.032514982)
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-Page-NoTotalEntries-0.02 (Score: 0.032514982)
Perl extension for paging results without total entries
Data::Page::NoTotalEntries is a generic pager object, so it's very similar with Data::Page. But so Data::Page::NoTotalEntries doesn't support $pager->total_entries and other some methods.
devel/Data-ParseBinary-0.31 (Score: 0.032514982)
Yet Another parser for binary structures
This module enables writing declarations for simple and complex binary structures, parsing binary to hash/array data structure, and building binary data from hash/array data structure.
devel/Data-Page-Pageset-1.02 (Score: 0.032514982)
Perl extension to simplify page number lists
Data::Page::Pageset is a generic pager object, so it's very similar to Data::Page and Data::Pageset.
devel/Data-Path-1.4.1 (Score: 0.032514982)
XPath-like access to complex data structures
This modules provides an XPath-like syntax to get values from complex data structures.
devel/Data-UUID-1.221 (Score: 0.032514982)
Generate Globally/Universally Unique Identifiers (GUIDs/UUIDs)
This module provides a framework for generating UUIDs (Universally Unique Identifiers, also known as GUIDs (Globally Unique Identifiers). A UUID is 128 bits long, and is guaranteed to be different from all other UUIDs/GUIDs generated until 3400 A.D. Currently many different technologies rely on UUIDs to provide unique identity for various software components. The algorithm for UUID generation, used by this extension, is described in the Internet Draft "UUIDs and GUIDs" by Paul J. Leach and Rich Salz. It provides reasonably efficient and reliable framework for generating UUIDs and supports fairly high allocation rates - 10 million per second per machine, and therefore, is suitable for identifying both - extremely short-lived and very persistent objects on a given system as well as across the network.