Ports 搜索

共有19,819项符合%22HTTP Server%22的查询结果,以下是第12,31112,320项(搜索用时0.01秒)
Name your accessors foo() and set_foo()
This module does not provide any methods. Simply loading it changes the default naming policy for the loading class so that accessors are separated into get and set methods. The get methods have the same name as the accessor, while set methods are prefixed with "set_".
devel/MooseX-SetOnce-0.200002 (Score: 9.2878623E-4)
Write-once, read-many attributes for Moose
The 'SetOnce' attribute lets your class have attributes that are not lazy and not set, but that cannot be altered once set. If you try to alter the value of an attribute with the SetOnce trait, either by accessor or writer, and the attribute has a value, it will throw an exception.
devel/MooseX-SimpleConfig-0.11 (Score: 9.2878623E-4)
Moose role for setting attributes from a simple configfile
This role loads simple configfiles to set object attributes. It is based on the abstract role MooseX::ConfigFromFile, and uses Config::Any to load your configfile. Config::Any will in turn support any of a variety of different config formats, detected by the file extension. See Config::Any for more details about supported formats.
devel/MooseX-Singleton-0.29 (Score: 9.2878623E-4)
Turn Moose class into a singleton
MooseX::Singleton lets you easily upgrade (or downgrade, as it were) your Moose class to a singleton.
devel/MooseX-Storage-0.52 (Score: 9.2878623E-4)
Serialization framework for Moose classes
MooseX::Storage is a serialization framework for Moose, it provides a very flexible and highly pluggable way to serialize Moose classes to a number of different formats and styles.
devel/Multiplex-CMD-0.03 (Score: 9.2878623E-4)
Perl5 module which provides Multiplexed Fork Client
Multiplex::CMD is a Perl module which can be helpful for running some commands for many hosts.
devel/MooseX-StrictConstructor-0.19 (Score: 9.2878623E-4)
Make your MooseX object constructors blow up on unknown attributes
Simply loading the MooseX::StrictConstructor module makes your constructors "strict". If your constructor is called with an attribute init argument that your class does not declare, then it calls "Carp::confess()". This is a great way to catch small typos.
devel/Ouch-0.0409 (Score: 9.2878623E-4)
Perl extension for exceptions that don't hurt
Ouch provides a class for exception handling that doesn't require a lot of boilerplate, nor any up front definition. If Exception::Class is working for you, great! But if you want something that is faster, easier to use, requires less typing, and has no prereqs, but still gives you much of that same functionality, then Ouch is for you.
devel/MooseX-Traits-0.13 (Score: 9.2878623E-4)
Moose eXtension to automatically apply roles at object creation time
Often you want to create components that can be added to a class arbitrarily. This module makes it easy for the end user to use these components. Instead of requiring the user to create a named class with the desired roles applied, or applying roles to the instance one-by-one, he can just pass a traits parameter to the class's new_with_traits constructor. This role will then apply the roles in one go, cache the resulting class (for efficiency), and return a new instance. Arguments meant to initialize the applied roles' attributes can also be passed to the constructor.
devel/OOTools-2.30 (Score: 9.2878623E-4)
Perl module collection to easily create constructors methods
OOTools is a collection of pragmas to easily create constructors methods and lvalue accessor methods at compile time. OOTools distribution includes: Class::constr Pragma to implement constructor methods Class::props Pragma to implement lvalue accessors with options Class::group Pragma to implement group of properties accessors with options Object::props Pragma to implement lvalue accessors with options Object::group Pragma to implement group of properties accessors with options