Ports Search

Results 17,64117,650 of 19,819 for %22HTTP Server%22.(0.012 seconds)
devel/Regexp-Subst-Parallel-0.11 (Score: 7.739885E-4)
Perform multiple substitutions on a string in parallel
Regexp::Subst::Parallel is a module that allows you to make multiple simultaneous substitutions safely. Using the sole exported "subst" function has a rather different effect from doing each substitution sequentially.
devel/Perl-Unsafe-Signals-0.03 (Score: 7.739885E-4)
Allow unsafe handling of signals in selected blocks
In Perl 5.8.0 the so-called "safe signals" were introduced. This means that Perl no longer handles signals immediately but instead "between opcodes", when it is safe to do so. The earlier immediate handling easily could corrupt the internal state of Perl, resulting in mysterious crashes. It's possible since perl 5.8.1 to globally disable this feature by using the PERL_SIGNALS environment variables (as specified in "PERL_SIGNALS" in perlrun); but there's no way to disable it locally, for a short period of time. That's however something you might want to do, if, for example, your Perl program calls a C routine that will potentially run for a long time and for which you want to set a timeout. This module therefore allows you to define UNSAFE_SIGNALS blocks in which signals will be handled "unsafely".
devel/Perl6-Export-Attrs-0.000005 (Score: 7.739885E-4)
Perl 6 'is export(...)' trait as a Perl 5 attribute
Implements a Perl 5 native version of what the Perl 6 symbol export mechanism will look like. It's very straightforward: * If you want a subroutine to be capable of being exported (when explicitly requested in the use arguments), you mark it with the :Export attribute. * If you want a subroutine to be automatically exported when the module is used (without specific overriding arguments), you mark it with the :Export(:DEFAULT) attribute. * If you want a subroutine to be automatically exported when the module is used (even if the user specifies overriding arguments), you mark it with the :Export(:MANDATORY) attribute. * If the subroutine should also be exported when particular export groups are requested, you add the names of those export groups to the attribute's argument list. That's it.
devel/PerlIO-utf8_strict-0.006 (Score: 7.739885E-4)
Fast and correct UTF-8 IO
PerlIO::utf8_strict provides a fast and correct UTF-8 PerlIO layer. Unlike perl's default :utf8 layer it checks the input for correctness.
devel/PerlIO-via-Timeout-0.32 (Score: 7.739885E-4)
PerlIO layer to add read and write timeouts to a handle
This package implements a PerlIO layer, that adds read / write timeout. This can be useful to avoid blocking while accessing a handle (file, socket, ...), and fail after some time. The timeout is implemented by using <select> on the handle before reading/writing. WARNING the handle won't timeout if you use sysread or syswrite on it, because these functions works at a lower level. However if you're trying to implement a timeout for a socket, see IO::Socket::Timeout that implements exactly that.
devel/PerlIO-via-symlink-0.05 (Score: 7.739885E-4)
Symbolic link PerlIO layers
The PerlIO layer symlink allows you to create a symbolic link by writing to the file handle. You need to write C"link $name" to the file handle. If the format does not match, close will fail with EINVAL. Currently only writing is supported.
devel/PerlX-Maybe-XS-1.001 (Score: 7.739885E-4)
XS backend for PerlX::Maybe
PerlX::Maybe::XS is the XS backend for PerlX::Maybe.
devel/Pod-Coverage-Moose-0.07 (Score: 7.739885E-4)
Pod::Coverage extension for Moose
When using Pod::Coverage in combination with Moose, it will report any method imported from a Role. This is especially bad when used in combination with Test::Pod::Coverage, since it takes away its ease of use.
devel/Pod-Coverage-TrustPod-0.100003 (Score: 7.739885E-4)
Declare trusted symbol names in POD
Pod::Coverage::TrustPod is a Pod::Coverage subclass (actually, a subclass of Pod::Coverage::CountParents) that allows the POD itself to declare certain symbol names trusted.
Perl extension for looks_like_number() perl API
Scalar::Util::LooksLikeNumber contains looks_like_number() like Scalar::Util's looks_like_number(), except it returns the raw value from the C function. Scalar::Util used to do this also, but it returns a booleanized value since 1.39.