Ports Search

Results 13,63113,640 of 17,773 for comment.zh_CN%3A%E6%8E%A7%E5%88%B6%E5%8F%B0.(0.014 seconds)
devel/parmap-1.0.r6 (Score: 1.5420633E-4)
Minimalistic library allowing to exploit multicore architecture
Parmap is a minimalistic library allowing to exploit multicore architecture for OCaml programs with minimal modifications: if you want to use your many cores to accelerate an operation which happens to be a map, fold or map/fold (map-reduce), just use Parmap's parmap, parfold and parmapfold primitives in place of the standard List.map and friends, and specify the number of subprocesses to use by the optional parameter ~ncores.
devel/Algorithm-Dependency-1.110 (Score: 1.5420633E-4)
Base class for implementing various dependency trees
Algorithm::Dependency is a framework for creating simple read-only dependency hierarchies, where you have a set of items that rely on other items in the set, and require actions on them as well. Despite the most visible of these being software installation systems like the CPAN installer, or debian apt-get, they are useful in other situations. This module intentionally uses implementation-neutral words, to avoid confusion.
devel/Carp-Always-Color-0.07 (Score: 1.5420633E-4)
Carp::Always, but with color
Stack traces are hard to read when the messages wrap, because it's hard to tell when one message ends and the next message starts. Carp::Always::Color just colors the first line of each stacktrace, based on whether it's a warning or an error. If messages are being sent to a terminal, it colors them with terminal escape codes, otherwise it colors them with HTML (ideas for more intelligent behavior here are welcome).
devel/autodist-1.5 (Score: 1.5420633E-4)
Distribution creation system
The Autodist is a source distribution management system that allows powerful mechanisms to define what is included in and excluded from a distribution, and what license the distribution is released under. It is also used to create the actual distribution source packages. Autodist allows distribution management in file, directory and file content level. Autodist is especially targeted for large software projects, and projects where multiple distributions are created from one source tree.
devel/Class-MethodMaker-2.24 (Score: 1.5420633E-4)
Perl module for creating generic methods
from the README: This module solves the problem of having to write a bazillion get/set methods that are all the same. The argument to 'use' is a hash whose keys are the names of types of generic methods generated by MethodMaker and whose values tell method maker what methods to make. (More precisely, the keys are the names of MethodMaker methods (methods that write methods) and the values are the arguments to those methods.
devel/Class-Mixin-1.00 (Score: 1.5420633E-4)
API for aliasing methods to/from other classes
Class::Mixin provides a way to mix methods from one class into another, such that the target class can use both its methods as well as those of the source class. The primary advantage is that the behavior of a class can be modified to effectively be another class without changing any of the calling code -- just requires using the new class that mixes into the original.
devel/distorm-20121220.r230 (Score: 1.5420633E-4)
Fast x86 and x86-64 disassembler library
diStorm is a binary stream disassembler of x86 instructions. It can operate in 16, 32, and 64 bit modes, and supports FPU, MMX, SSE, SSE2, SSE3, SSE4, 3DNow! (with extensions), x86-64, VMX, AMD SVM, and AVX instruction sets. diStorm was written to decode every instruction quickly and accurately, with robust handling of valid and unused prefixes. The output is a special structure that can describe any x86 instruction, and later be formatted into text for display.
devel/Config-Wrest-1.036 (Score: 1.5420633E-4)
Perl module for reading and writing configuration data
This module allows you to read configuration data written in a human-readable and easily-editable text format and access it as a perl data structure. It also allows you to write configuration data from perl back to this format. The data format allows key/value pairs, comments, escaping of unprintable or problematic characters, sensible whitespace handling, support for Unicode data, nested sections, or blocks, of configuration data.
devel/Danga-Socket-1.61 (Score: 1.5420633E-4)
Event loop and event-driven async socket base class
This is an abstract base class for objects backed by a socket which provides the basic framework for event-driven asynchronous IO, designed to be fast. Danga::Socket is both a base class for objects, and an event loop. Callers subclass Danga::Socket. Danga::Socket's constructor registers itself with the Danga::Socket event loop, and invokes callbacks on the object for readability, writability, errors, and other conditions.
devel/Devel-Symdump-2.1000 (Score: 1.5420633E-4)
Perl5 module that dumps symbol names or the symbol table
This little package serves to access the symbol table of perl. Devel::Symdump->rnew(@packages) returns a symbol table object for all subtrees below @packages. Nested Modules are analyzed recursively. If no package is given as argument, it defaults to main. That means to get the whole symbol table, just do a rnew without arguments. Devel::Symdump->new(@packages) does not go into recursion and only analyzes the packages that are given as arguments.