Ports Search

Results 9,8119,820 of 17,660 for descr%3A%22spam filter%22.(0.011 seconds)
devel/IO-String-1.08 (Score: 1.3121418E-4)
Simplified Perl5 module to handle I/O on in-core strings
IO::String is an IO::File (and IO::Handle) compatible class that reads data from or writes data to in-core strings. It is essentially a simplification of parts of the IO-stringy collection of modules. As such, IO::String is a replacement for IO::Scalar.
devel/IPC-System-Simple-1.25 (Score: 1.3121418E-4)
Perl extension to run commands simply with detailed diagnostics
Calling Perl's in-built system() function is easy, determining if it was successful is hard. Let's face it, $? isn't the nicest variable in the world to play with, and even if you do check it, producing a well-formatted error string takes a lot of work. IPC::System::Simple takes the hard work out of calling external commands.
devel/IPC-MM-0.03 (Score: 1.3121418E-4)
Perl interface to Ralf Engelschall's mm library
IPC::MM provides an interface to Ralf Engelschall's mm library, allowing memory to be shared between multiple processes in a relatively convenient way. IPC::MM provides methods to create and destroy shared memory segments and to access data structures within those shared memory segments, as well as miscellaneous methods. Additionally, it provides a tied interface for scalars and hashes.
devel/Inline-C-0.76 (Score: 1.3121418E-4)
Write Perl Subroutines in C
Inline::C is a module that allows you to write Perl subroutines in C. Since version 0.30 the Inline module supports multiple programming languages and each language has its own support module. This document describes how to use Inline with the C programming language. It also goes a bit into Perl C internals.
devel/Locale-Maketext-Simple-0.21 (Score: 1.3121418E-4)
Simple interface to Locale::Maketext::Lexicon
This module is a simple wrapper around Locale::Maketext::Lexicon, designed to alleviate the need of creating Language Classes for module authors. If Locale::Maketext::Lexicon is not present, it implements a minimal localization function, so the program can function normally.
devel/LockFile-Simple-0.2.8 (Score: 1.3121418E-4)
Perl module implementing simple file locking
The LockFile::Simple extension provides simple file locking, of the advisory kind, i.e. it requires cooperation between applications wishing to lock the same files. It is meant to be used in quick-and-dirty scripts or more elaborated programs that want a simple locking scheme, yet with a reasonable level of configuration.
devel/Log-Any-IfLOG-0.08 (Score: 1.3121418E-4)
Load Log::Any only if LOG environment variable is true
Log::Any::IfLOG will load Log::Any only when LOG environment variable is true. Otherwise, the module is not loaded and if user imports $log, a dumb object will be returned instead that will accept any method but return false. This is a quick-hack solution to avoid the cost of loading Log::Any under "normal condition" (when LOG is not set to true).
devel/Lvalue-0.21 (Score: 1.3121418E-4)
Add lvalue getters and setters to existing objects
Lvalue takes an object produced by some other package and wraps it with lvalue functionality implemented with the object's original getter and setter routines. Lvalue assumes its object uses the relatively standard getter / setter idiom where any arguments is a setter, and no arguments is a getter.
devel/Memoize-1.03 (Score: 1.3121418E-4)
Transparently speed up perl functions by caching return values
`Memoizing' a function makes it faster by trading space for time. It does this by caching the return values of the function in a table. If you call the function again with the same arguments, memoize jumps in and gives you the value out of the table, instead of letting the function compute the value all over again.
devel/Log-Dispatch-Perl-0.04 (Score: 1.3121418E-4)
Log::Dispatch plug-in using core Perl functions for logging
The "Log::Dispatch::Perl" module offers a logging alternative using standard Perl core functions. It allows you to fall back to the common Perl alternatives for logging, such as "warn" and "cluck". It also adds the possibility for a logging action to halt the current environment, such as with "die" and "croak".