Ports Search

Results 2,9512,960 of 5,623 for /devel/.(0.003 seconds)
devel/Proc-BackOff-0.02 (Score: 0.032514982)
Perl module that provides methods to backoff on failures
Proc::BackOff provides methods for a Perl script to backoff retries when an operation fails.
devel/Parse-RecDescent-1.967.009 (Score: 0.032514982)
Recursive descent parsing framework for Perl
RecDescent incrementally generates top-down recursive-descent text parsers from simple yacc-like grammar specifications. It provides: * Regular expressions or literal strings as terminals (tokens) * Multiple (non-contiguous) productions for any rule * Repeated, optional and alternate subrules within productions * Late-bound (run-time dispatched) subrules * Full access to Perl within actions specified as part of the grammar * Simple automated error reporting during generation and parsing * The ability to commit to, uncommit to, or reject particular productions during a parse * Incremental extension of the parsing grammar (even during a parse) * The ability to retrieve the generated parsing code.
devel/Parse-Yapp-1.05 (Score: 0.032514982)
Perl extension for generating and using LALR parsers
Parse::Yapp lets you create Perl OO fully reentrant LALR(1) parser modules and has been designed to be functionally as close as possible to yacc, but using the full power of Perl and opened for enhancements.
devel/ParseLex-2.21 (Score: 0.032514982)
Object-oriented generator of lexical analyzers
The Parse::Lex.pm module for perl5 is an object-oriented generator of lexical analyzers. This distribution includes Parse::YYLex (written by Vladimir Alexiev) a lexer generator that you can use with yacc parsers.
devel/Path-Abstract-0.096 (Score: 0.032514982)
Fast and featureful UNIX-style path parsing and manipulation
A tool for parsing, interrogating, and modifying a UNIX-style path. The parsing behavior is similar to File::Spec::Unix, except that trailing slashes are preserved (converted into a single slash).
devel/Proc-PID-File-1.27 (Score: 0.032514982)
Perl module to manage process id files
This Perl module is useful for writers of daemons and other processes that need to tell whether they are already running, in order to prevent multiple process instances. The module accomplishes this via *nix-style pidfiles, which are files that store a process identifier. Inspired by Proc::PID_File, but with a much simpler interface.
devel/exprotobuf-1.2 (Score: 0.032514982)
Protocol Buffers in Elixir
exprotobuf works by building module/struct definitions from a Google Protocol Buffer schema. This allows you to work with protocol buffers natively in Elixir, with easy decoding/encoding for transport across the wire.
devel/Path-Class-File-Lockable-0.03 (Score: 0.032514982)
Lock your files with Path::Class::File
Path::Class::File::Lockable uses simple files to indicate whether a file is locked or not. It does not use flock(), since that is unstable over NFS. Effort has been made to avoid race conditions. Path::Class::File::Lockable is intended for long-standing locks, as in a Subversion workspace. See SVN::Class for example.
devel/Proc-Queue-1.23 (Score: 0.032514982)
Proc::Queue - limit the number of child processes running
This module lets you parallelise a perl program using the fork, exit, wait and waitpid calls as usual but without taking care of creating too many processes and overloading the machine.
devel/Proc-Reliable-1.16 (Score: 0.032514982)
Run external processes reliably with many options
The Proc::Reliable is intended to be a method for simple, reliable and configurable subprocess execution in PERL. It includes all the functionality of the backticks operator and system() functions, plus many uses of fork/exec, open2() and open3(). Proc::Reliable incorporates a number of options, including sending data to the subprocess on STDIN, collecting STDOUT and STDERR separately or together, killing hung processes, timeouts and automatic retries. Seamus Venasse <svenasse@polaris.ca>