Ports Search

Results 12,69112,700 of 19,819 for %22HTTP Server%22.(0.015 seconds)
devel/Test-Strict-0.37 (Score: 9.2878623E-4)
Test and report on use strict/warnings coverage
Test and report on the coverage of the strict/warnings pragmas.
devel/Test-SubCalls-1.09 (Score: 9.2878623E-4)
Track the number of times subs are called
There are a number of different situations (like testing caching code) where you want to want to do a number of tests, and then verify that some underlying subroutine deep within the code was called a specific number of times.
devel/Test-Synopsis-0.06 (Score: 9.2878623E-4)
Test your SYNOPSIS code in CPAN module
Test::Synopsis is an (author) test module to find .pm or .pod files under your lib directory and then make sure the example snippet code in your SYNOPSIS section passes the perl compile check.
devel/UDCode-1.03 (Score: 9.2878623E-4)
Does a set of code words form a uniquely decodable code?
A code is a set of strings, called the code words. A code is "uniquely decodable" if any string S that is a concatenation of code words is so in exactly one way. The module provides functions that determine whether a given code is uniquely decodable or not.
devel/UNIVERSAL-can-1.20140328 (Score: 9.2878623E-4)
Hack around people calling UNIVERSAL::can() as a function
This module attempts to work around people calling UNIVERSAL::can() as a function, which it is not.
devel/UNIVERSAL-isa-1.20150614 (Score: 9.2878623E-4)
Try to recover from people calling UNIVERSAL::isa as a function
Whenever you use UNIVERSAL::isa as a function, a kitten using Test::MockObject dies. Normally, the kittens would be helpless, but if they use UNIVERSAL::isa (the module whose docs you are reading), the kittens can live long and prosper. This module replaces UNIVERSAL::isa with a version that makes sure that if it's called as a function on objects which override isa, isa will be called on those objects as a method. In all other cases the real UNIVERSAL::isa is just called directly.
devel/UNIVERSAL-moniker-0.08 (Score: 9.2878623E-4)
Moniker for classes
Class names in Perl often don't sound great when spoken, or look good when written in prose. For this reason, we tend to say things like "customer" or "basket" when we are referring to My::Site::User::Customer or My::Site::Shop::Basket. We thought it would be nice if our classes knew what we would prefer to call them. This module will add a moniker (and plural_moniker) method to UNIVERSAL, and so to every class or module. So, if $ob->isa("Big::Scary::Animal"), moniker will return "animal"; $ob->isa("Cephalopod::Octopus"), plural_moniker will return "octopuses".
devel/UNIVERSAL-require-0.18 (Score: 9.2878623E-4)
Perl module to require() from a variable
UNIVERSAL::require - require() modules from a variable. If you've ever had to do this... eval "require $module"; to get around the bareword caveats on require(), this module is for you. It creates a universal require() class method that will work with every Perl module and its secure. So instead of doing some arcane eval() work, you can do this: $module->require; It doesn't save you much typing, but it'll make a lot more sense to someone who's not a ninth level Perl acolyte.
devel/Test-TCP-2.13 (Score: 9.2878623E-4)
Perl extension for testing TCP program
Test::TCP is test utilities for TCP/IP program.
devel/UNIVERSAL-which-0.06 (Score: 9.2878623E-4)
Perl extension for telling fully qualified name of the method
Perl extension for telling fully qualified name of the method.