Ports 搜索

共有19,819项符合%22HTTP Server%22的查询结果,以下是第12,67112,680项(搜索用时0.009秒)
devel/Tie-Util-0.03 (Score: 9.2878623E-4)
Utility functions for fiddling with tied variables
This module provides a few subroutines for examining and modifying tied variables, including those that hold weak references to the objects to which they are tied (weak ties).
devel/Tie-iCal-0.15 (Score: 9.2878623E-4)
Tie iCal files to Perl hashes
Tie::iCal represents an RFC2445 iCalendar file as a Perl hash. Each key in the hash represents an iCalendar component like VEVENT, VTODO or VJOURNAL. Each component in the file must have a unique UID property as specified in the RFC 2445. A file containing non-unique UIDs can be converted to have only unique UIDs (see samples/uniquify.pl). The module makes very little effort in understanding what each iCalendar property means and concentrates on the format of the iCalendar file only.
devel/Test-PerlTidy-20130104 (Score: 9.2878623E-4)
Perl extension to check that all your files are tidy
Test::PerlTidy - check that all your files are tidy.
devel/Time-Format-1.12 (Score: 9.2878623E-4)
Easy-to-use date/time formatting
Time::Format provides a very easy way to format dates and times. The formatting functions are tied to hash variables, so they can be used inside strings as well as in ordinary expressions. The formatting codes used are meant to be easy to remember, use, and read. They follow a simple, consistent pattern. If I've done my job right, once you learn the codes, you should never have to refer to the documentation again. A quick-reference page is included, just in case. ;-) Time::Format can also format DateTime objects, and strings created with Date::Manip. Also provided is a tied-hash interface to POSIX::strftime and Date::Manip::UnixDate. If the I18N::Langinfo module is available, Time::Format provides weekday and month names in a language appropriate for your locale. A companion module, Time::Format_XS, is also available; if it is installed, Time::Format will detect and use it, which will result in a significant speed improvement.
devel/Time-Local-1.23.00 (Score: 9.2878623E-4)
Efficiently compute time from local and GMT time
These routines are the inverse of built-in perl functions localtime() and gmtime(). They accept a date as a six-element array, and return the corresponding time(2) value in seconds since the system epoch (Midnight, January 1, 1970 UTC on Unix, for example). This value can be positive or negative, though POSIX only requires support for positive values, so dates before the system's epoch may not work on all operating systems.
devel/Time-Mock-0.0.2 (Score: 9.2878623E-4)
Shift and scale time
Time::Mock speeds up your sleep(), alarm(), and time() calls. Test::MockTime is nice, but doesn't allow you to accelerate the timestep and doesn't deal with Time::HiRes or give you any way to change the time across forks.
devel/Time-Object-1.00 (Score: 9.2878623E-4)
Perl OO interface to time and dates
This module replaces the standard localtime and gmtime functions with implementations that return objects. It does so in a backwards compatible manner, so that using localtime/gmtime in the way documented in perlfunc will still return what you expect.
devel/Time-Out-0.11 (Score: 9.2878623E-4)
Easily timeout long running operations
Time::Out provides an easy interface to alarm(2) based timeouts. Nested timeouts are supported.
devel/Time-Period-1.20 (Score: 9.2878623E-4)
Perl module that contains code to deal with time periods
Period.pm is a Perl module that contains code to deal with time periods. Currently, there is only a function in this module. That function is called inPeriod(). inPeriod() determines if a given time is within a given time period. It will return 1 if it is, 0 if not, and -1 if either the time or the period passed to it were malformed. The time is specified in non-leap year seconds past January 1, 1970, as per the time() function. The period is a string which is of the form described in Period's man page.
devel/Test-RandomResults-0.03 (Score: 9.2878623E-4)
Test non-deterministic functions
This module aims to provide ways of testing functions that are meant to return results that are random; that is, non-deterministic functions. Some of the tests provided here might be easily achieved with other testing modules. The reason why they're here is that this way users become aware of how to test their non-deterministic functions.