Ports Search

Results 2,5012,510 of 5,623 for /devel/.(0.004 seconds)
devel/IO-Interactive-1.021 (Score: 0.032514982)
Utilities for interactive I/O
Utilities for interactive I/O
devel/IO-Lambda-1.23 (Score: 0.032514982)
Non-blocking I/O in lambda style
This module is another attempt to fight the horrors of non-blocking I/O programming. It tries to bring back the simplicity of the declarative programming style, that is only otherwise available when one employs threads, coroutines, or co-processes.
devel/IO-MultiPipe-0.0.0 (Score: 0.032514982)
Check for errors when running a command through multiple pipes
Normally if a part of a pipe fails, depending on the location, it won't be detected. This breaks down a command involving pipes and runs each command separately. It uses open3 to run each chunk of the pipe. use IO::MultiPipe; my $pipes = IO::MultiPipe->new(); #This sets the pipe that will be run. $pipes->set('sed s/-// | sed s/123/abc/ | sed s/ABC/abc/'); if ($pipes->{error}){ print "Error!\n"; } #'123-ABCxyz' through the command set above. my $returned=$pipes->run('123-ABCxyz');
devel/IO-Pager-0.36 (Score: 0.032514982)
Select a pager, optionally pipe it output if destination is a TTY
IO::Pager is lightweight and can be used to locate an available pager and set $ENV{PAGER} sanely or as a factory for creating objects defined elsewhere such as IO::Pager::Buffered and IO::Pager::Unbuffered. IO::Pager subclasses are designed to programmatically decide whether or not to pipe a filehandle's output to a program specified in $ENV{PAGER}. Subclasses are only required to support filehandle output methods and close, namely
devel/IO-Pipely-0.005 (Score: 0.032514982)
Portably create pipe() or pipe-like handles, one way or another
IO::Pipely - Portably create pipe() or pipe-like handles, one way or another. Pipes are troublesome beasts because there are a few different, incompatible ways to create them. Not all platforms support all ways, and some platforms may have hidden difficulties like incomplete or buggy support.
devel/Ioctl-0.81 (Score: 0.032514982)
Perl module that provides a way to get the value of C ioctl constants
The Perl Ioctl module provides an easily extensible way of getting the value of the C ioctl constants.
devel/IO-Prompt-Simple-0.06 (Score: 0.032514982)
Simple interface for user input
IO::Prompt::Simple replicates ExtUtils::MakeMaker's prompt() function.
devel/IO-Prompt-Tiny-0.003 (Score: 0.032514982)
Prompt for user input with a default option
IO::Prompt::Tiny is an extremely simple prompting module, based on the extremely simple prompt offered by ExtUtils::MakeMaker.In many cases, that's all you need and this module gives it to you without all the overhead of ExtUtils::MakeMaker just to prompt for input. It doesn't do any validation, coloring, menus, timeouts, or any of the wild, crazy, cool stuff that other prompting modules do. It just prompts with a default. That's it!
devel/IO-Prompt-0.99.7002 (Score: 0.032514982)
Interactively prompt for user input
By default, this module exports a single function 'prompt'. It prompts the user to enter some input, and returns an object that represents the user input.
devel/Iterator-Simple-0.06 (Score: 0.032514982)
Simple iterator and utilities
Another general-purpose iterator utility that is simple, fast and powerful.