Ports Search

Results 2,4812,490 of 5,623 for /devel/.(0.003 seconds)
devel/Heap-Simple-0.13 (Score: 0.032514982)
Fast and easy to use classic heaps
A heap is a partially sorted structure where it's always easy to extract the smallest element. If the collection of elements is changing dynamically, a heap has less overhead than keeping the collection fully sorted. The order in which equal elements get extracted is unspecified. The main order relations supported by this module are "<" (numeric compare) and "lt" (string compare). The internals of the module do nothing with the elements inserted except inspecting the key. This means that if you for example store a blessed object, that's what you will get back on extract. It's also ok to keep references to the elements around and make changes to them while they are in the heap as long as you don't change the key. Heap::Simple itself is just a loader for the code that will actually implement the functionality mentioned above. You will need to install something like Heap::Simple::XS or Heap::Simple::Perl to be able to actually do anything.
devel/IPC-Run3-0.048 (Score: 0.032514982)
Run a subprocess in batch mode
This module allows you to run a subprocess and redirect stdin, stdout, and/or stderr to files and perl data structures. It aims to satisfy 99% of the need for using system()/qx``/open3() with a simple, extremely Perlish API and none of the bloat and rarely used features of IPC::Run.
devel/IO-AIO-4.34 (Score: 0.032514982)
Asynchronous Input/Output
This module implements asynchronous I/O using whatever means your operating system supports. Asynchronous means that operations that can normally block your program (e.g. reading from disk) will be done asynchronously: the operation will still block, but you can do something else in the meantime. This is extremely useful for programs that need to stay interactive even when doing heavy I/O (GUI programs, high performance network servers etc.), but can also be used to easily do operations in parallel that are normally done sequentially, e.g. stat'ing many files, which is much faster on a RAID volume or over NFS when you do a number of stat operations concurrently. While most of this works on all types of file descriptors (for example sockets), using these functions on file descriptors that support nonblocking operation (again, sockets, pipes etc.) is very inefficient or might not work (aio_read fails on sockets/pipes/fifos). Use an event loop for that (such as the Event module): IO::AIO will naturally fit into such an event loop itself.
devel/bncsutil-1.3.2 (Score: 0.032514982)
Utility library for Battle.net clients in C++
The Battle.net client library.
devel/IPC-ShareLite-0.17 (Score: 0.032514982)
Simple interface to access shared memory
IPC::ShareLite provides a simple interface to shared memory, allowing data to be efficiently communicated between processes. Your operating system must support SysV IPC (shared memory and semaphores) in order to use this module.
devel/IO-All-LWP-0.14 (Score: 0.032514982)
IO::All interface to LWP
This module acts as glue between IO::All and LWP, so that files can be read and written through the network using the convenient IO:All interface. Note that this module is not used directly: you just use IO::All, which knows when to autoload IO::All::HTTP, IO::All::HTTPS, IO::All::FTP, or IO::All::Gopher, which implement the specific protocols based on IO::All::LWP.
devel/IO-All-0.86 (Score: 0.032514982)
IO::All combines all of the best Perl IO modules
IO::All - IO::All combines all of the best Perl IO modules IO::All combines all of the best Perl IO modules into a single Spiffy object oriented interface to greatly simplify your everyday Perl IO idioms. It exports a single function called io, which returns a new IO::All object. And that object can do it all!
devel/IO-Any-0.09 (Score: 0.032514982)
IO::Any opens anything
IO::Any aims to provide read/write anything. It tries to guess what the "anything" is based on some rules.
devel/IPC-Signal-1.00 (Score: 0.032514982)
IPC::Signal - Utility functions dealing with signals
IPC::Signal - Utility functions dealing with signals This module contains utility functions for dealing with signals.
devel/IPC-System-Simple-1.25 (Score: 0.032514982)
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.