Ports 搜索

共有5,623项符合/devel/的查询结果,以下是第1,8511,860项(搜索用时0.003秒)
devel/Callback-Frame-1.100 (Score: 0.032514982)
Preserve error handlers and "local" variables across callbacks
When programming with callbacks in perl, you create anonymous functions with sub { ... }. These functions are especially useful because when they are called they will preserve their surrounding lexical environment. Sometimes people call these anonymous functions that reference variables in their surrounding lexical scope "closures". Whatever you call them, they are essential for convenient and efficient asynchronous programming. For many applications we really like straightforward callback style. The goal of Callback::Frame is to simplify the management of dynamic environments while leaving callback style alone.
devel/Canary-Stability-2011 (Score: 0.032514982)
Checks what version of perl you're running
This module is used by Schmorp's modules during configuration stage to test the installed perl for compatibility with his modules. It's not, at this stage, meant as a tool for other module authors, although in principle nothing prevents them from subscribing to the same ideas.
devel/Capture-Tiny-0.28 (Score: 0.032514982)
Capture STDOUT and STDERR from Perl, XS, or external programs
Capture::Tiny provides a simple, portable way to capture anything sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS code or from an external program. Optionally, output can be teed so that it is captured while being passed through to the original handles.
devel/Cache-Mmap-0.11 (Score: 0.032514982)
Cache::Mmap - Shared data cache using memory mapped files
This module provides a shared cache, using a memory mapped file. Very useful for mod_perl applications. If routines are provided which interact with the underlying data, access to the cache is completely transparent, and the module handles all the details of refreshing cache contents, and updating underlying data, if necessary.
devel/Cache-Simple-TimedExpiry-0.27 (Score: 0.032514982)
Lightweight cache with timed expiration
A lightweight cache with timed expiration.
devel/Carp-Always-Color-0.07 (Score: 0.032514982)
Carp::Always, but with color
Stack traces are hard to read when the messages wrap, because it's hard to tell when one message ends and the next message starts. Carp::Always::Color just colors the first line of each stacktrace, based on whether it's a warning or an error. If messages are being sent to a terminal, it colors them with terminal escape codes, otherwise it colors them with HTML (ideas for more intelligent behavior here are welcome).
devel/Carp-Always-0.13 (Score: 0.032514982)
Perl extension to warn and die noisily with stack backtraces
This module is meant as a debugging aid. It can be used to make a script complain loudly with stack backtraces when warn()ing or die()ing.
devel/Calendar-Simple-1.21 (Score: 0.032514982)
Perl extension to create simple calendars
Perl extension to create simple calendars.
devel/Carp-Assert-More-1.14 (Score: 0.032514982)
Convenience wrappers around Carp::Assert
Carp::Assert::More is a set of wrappers around the Carp::Assert functions to make the habit of writing assertions even easier. Everything in here is effectively syntactic sugar. There's no technical reason to use assert_isa( $foo, 'HTML::Lint' ); instead of assert( defined $foo ); assert( ref($foo) eq 'HTML::Lint' ); other than readability and simplicity of the code. My intent here is to make common assertions easy so that we as programmers have no excuse to not use them.
devel/Carp-Assert-0.21 (Score: 0.032514982)
Executable comments like the ANSI C library assert.h
Carp::Assert is intended for a purpose like the ANSI C library assert.h.