Ports 搜索

共有17,754项符合%E6%8E%A7%E5%88%B6%E5%8F%B0的查询结果,以下是第15,11115,120项(搜索用时0.01秒)
devel/Meta-Builder-0.003 (Score: 5.180394E-5)
Perl extension for creating Meta objects to track custom metrics
Meta::Builder is designed to be a generic tool for writing Meta objects. Unlike specialized tools, Meta::Builder makes no assumptions about what metrics you will care about. Meta::Builder also mkaes it simple for others to extend your meta-object based tools by providing hooks for other packages to add metrics to your meta object.
devel/Module-Loaded-0.08 (Score: 5.180394E-5)
Mark modules as loaded or unloaded
When testing applications, often you find yourself needing to provide functionality in your test environment that would usually be provided by external modules. Rather than munging the %INC by hand to mark these external modules as loaded, so they are not attempted to be loaded by perl, this module offers you a very simple way to mark modules as loaded and/or unloaded.
devel/MooseX-App-Cmd-0.32 (Score: 5.180394E-5)
Mashes up MooseX::Getopt and App::Cmd
This module marries App::Cmd with MooseX::Getopt. Use it like App::Cmd advises (especially see App::Cmd::Tutorial), swapping App::Cmd::Command for MooseX::App::Cmd::Command. Then you can write your moose commands as moose classes, with MooseX::Getopt defining the options for you instead of opt_spec returning a Getopt::Long::Descriptive spec.
devel/MooseX-AuthorizedMethods-0.006 (Score: 5.180394E-5)
Syntax sugar for authorized methods
MooseX::AuthorizedMethods exports the "authorized" declarator that makes a verification if the user has the required permissions before the acual invocation. The default verification method will take the "user" method result and call "roles" to list the roles given to that user.
devel/MooseX-HasDefaults-0.03 (Score: 5.180394E-5)
Default "is" to "ro" or "rw" for all attributes
The module MooseX::HasDefaults::RO defaults is to ro. The module MooseX::HasDefaults::RW defaults is to rw. If you pass a specific value to any has's is, that overrides the default. If you do not want an accessor, pass is => undef.
Translate Moo-style constraints to Moose-style
Moose type constraints are expected to return true if the value passes the constraint, and false otherwise; Moo "constraints", on the other hand, die if validation fails. This metaclass allows for Moo-style constraints; it will wrap them and translate their Moo into a dialect Moose understands.
devel/MooseX-Object-Pluggable-0.0014 (Score: 5.180394E-5)
Make your classes pluggable
This module is meant to be loaded as a role from Moose-based classes it will add five methods and four attributes to assist you with the loading and handling of plugins and extensions for plugins. I understand that this may pollute your namespace, however I took great care in using the least ambiguous names possible.
devel/MooseX-SetOnce-0.200002 (Score: 5.180394E-5)
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/PerlIO-Layers-0.011 (Score: 5.180394E-5)
Query the properties/capabilities of filehandle
Perl's filehandles are implemented as a stack of layers, with the bottom-most usually doing the actual IO and the higher ones doing buffering, encoding/decoding or transformations. PerlIO::Layers allows you to query the filehandle's properties concerning there layers.
devel/Proc-SafeExec-1.5 (Score: 5.180394E-5)
Convenient utility for executing external commands in various ways
Proc::SafeExec provides an easy, safe way to execute external programs. It replaces all of Perl's questionable ways of accomodating this, including system(), open() with a pipe, exec(), back-ticks, etc. This module will never automatically invoke /bin/sh. This module is easy enough to use that /bin/sh should be unnecessary, even for complex pipelines.