Ports Search

Results 15,15115,160 of 17,754 for %E6%8E%A7%E5%88%B6%E5%8F%B0.(0.013 seconds)
devel/Tie-ShareLite-0.03 (Score: 5.180394E-5)
Tied hash interface to IPC::ShareLite
Tie::ShareLite provides for a tied hash interface to the IPC::ShareLite module that is very similar to the one provided by IPC::Shareable. Only hashes can be tied at this time. The hashes can be of any complexity allowed by the Storable module, however, there are some caveats covered in the REFERENCES section of man page.
devel/Time-Duration-Parse-0.13 (Score: 5.180394E-5)
Parse string that represents time duration
Time::Duration::Parse is a module to parse human readable duration strings like 2 minutes and 3 seconds to seconds. It does the opposite of duration_exact function in Time::Duration and is roundtrip safe. So, the following is always true. use Time::Duration::Parse; use Time::Duration; my $seconds = int rand 100000; is( parse_duration(duration_exact($seconds)), $seconds );
devel/Type-Tiny-Signatures-0.06 (Score: 5.180394E-5)
Method/Function Signatures w/Type::Tiny Constraints
This module uses Function::Parameters to extends Perl with keywords that let you define methods and functions with parameter lists which can be validated using Type::Tiny type constraints. The type constraints can be provided by the Type::Tiny standard library, Types::Standard, or any supported user-defined type library which can be a Moose, MooseX::Type, MouseX::Type, or Type::Library library.
devel/Types-Serialiser-1.0 (Score: 5.180394E-5)
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/UUID-Random-Patch-UseMRS-0.01 (Score: 5.180394E-5)
Make UUID::Random use Math::Random::Secure::rand()
UUID::Random::Patch::UseMRS makes UUID::Random use rand() from Math::Random::Secure instead of the default rand() that comes with Perl. It is useful for creating cryptographically secure UUID's. On the other hand, as a note, this makes generate() around 20 times slower. After you use this module, use UUID::Random as usual.
devel/Variable-Magic-0.59 (Score: 5.180394E-5)
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/cppcheck-1.75 (Score: 5.180394E-5)
Static analysis of C/C++ code
Cppcheck is a tool for static C/C++ code analysis, and it tries to detect bugs that your compiler do not see. Checks for: memory leaks, mismatching allocation-deallocation, buffer overrun, and many more. Cppcheck is versatile. You can check non-standard code that includes various compiler extensions, inline assembly code, etc. The goal is no false positives.
devel/mixin-0.08 (Score: 5.180394E-5)
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.
devel/relative-0.04 (Score: 5.180394E-5)
Load modules with relative names
relative - Load modules with relative names This module allows you to load modules using only parts of their name, relatively to the current module or to a given module. Module names are by default searched below the current module, but can be searched upper in the hierarchy using the ..:: syntax.
devel/threads-shared-1.48 (Score: 5.180394E-5)
Share data structures between threads
By default, variables are private to each thread, and each newly created thread gets a private copy of each existing variable. This module allows you to share variables across different threads (and pseudoforks on Win32). It is used together with the threads module.