Ports Search

Results 6,5016,510 of 18,669 for descr.zh_CN%3A%E9%81%8F%E5%88%B6%E5%9E%83%E5%9C%BE.(0.014 seconds)
devel/Set-NestedGroups-0.01 (Score: 2.3547228E-4)
Perl module for grouped data eg ACL's, city/state/country etc
Set::NestedGroups gives an implementation of nested groups, access control lists (ACLs) would be one example of nested groups. For example, if Joe is a Manager, and Managers have access to payroll, you can create an ACL which implements these rules, then ask the ACL if Joe has access to payroll.
devel/System2-0.84 (Score: 2.3547228E-4)
System2 - like system(), but with STDERR available as well
Execute a command, and returns output from STDOUT and STDERR. Much like system(). $? is set. (Much cheaper than using open3() to get the same info.) If $debug is set, on-the fly diagnostics will be reported about how much data is being read.
devel/Set-CrossProduct-1.95 (Score: 2.3547228E-4)
Work with the cross product of two or more sets
Create a list by taking one item from each array, and do that for all possible ways that can be done, so that the first item in the list is always from the first array, the second item from the second array, and so on.
devel/Sub-Exporter-Lexical-0.092292 (Score: 2.3547228E-4)
Export lexically-available subs with Sub::Exporter
Sub::Exporter::Lexical provides an alternate installer for Sub::Exporter. Installers are documented in Sub::Exporter's documentation; all you need to know is that by using Sub::Exporter::Lexical's installer, you can import routines into a lexical scope that will be cleaned up when that scope ends.
devel/Test-Harness-Straps-0.30 (Score: 2.3547228E-4)
Detailed analysis of test results for Perl
Test::Harness is limited to printing out its results. This makes analysis of the test results difficult for anything but a human. To make it easier for programs to work with test results, we provide Test::Harness::Straps. Instead of printing the results, straps provide them as raw data. You can also configure how the tests are to be run.
devel/nxt-python-2.2.2 (Score: 2.3547228E-4)
Python interface for the Lego Mindstorms NXT robot
nxt-python is a python driver/interface for the Lego Mindstorms NXT robot. The 1.x releases aim to improve on NXT_Python's interface and should be compatible with scripts which use it while the 2.x releases improve on the API in backwards-incompatible ways and will not work with NXT_Python scripts.
devel/Test-Inline-2.213 (Score: 2.3547228E-4)
Inlining your tests next to the code being tested
Embedding tests allows tests to be placed near the code its testing. This is a nice supplement to the traditional .t files. It's like XUnit, Perl-style. Test::Tutorial is just documentation. To actually get anything done you use pod2test. Read the Test::Inline::Tutorial, really.
devel/Types-Serialiser-1.0 (Score: 2.3547228E-4)
Simple data types for common serialisation formats
Types::Serialiser provides some extra datatypes that are used by common serialisation formats such as JSON or CBOR. The idea is to have a repository of simple/small constants and containers that can be shared by different implementations so they become interoperable between each other.
devel/Variable-Magic-0.59 (Score: 2.3547228E-4)
Associate user-defined magic to variables from Perl
Magic is Perl way of enhancing objects. This mechanism lets the user add extra data to any variable and overload syntaxical operations (such as access, assignment or destruction) that can be applied to it. With this module, you can add your own magic to any variable without having to write a single line of XS.
devel/mixin-0.08 (Score: 2.3547228E-4)
Mix-in inheritance, an alternative to multiple inheritance
Mixin inheritance is an alternative to the usual multiple-inheritance and solves the problem of knowing which parent will be called. It also solves a number of tricky problems like diamond inheritance. The idea is to solve the same sets of problems which MI solves without the problems of MI.