Ports 搜索

共有5,623项符合/devel/的查询结果,以下是第1,4911,500项(搜索用时0.003秒)
devel/scalar_objects-0.0.20140124 (Score: 0.032514982)
Support method calls on primitive types in PHP
Add support for method calls on primitive types in PHP This extension implements the ability to register a class that handles the method calls to a certain primitive type (string, array, ...). As such it allows implementing APIs like $str->length(). The main purpose of this repo is to provide a proof of concept implementation that can be used to design the new APIs. The switch to object syntax for operations on primitive types is a unique opportunity for PHP to redesign many of its inconsistent core APIs. This repo provides the means to quickly prototype and test new APIs as userland code. Once the APIs are figured out it will be proposed for inclusion into PHP. Note: The ability to register type handlers from userland is just for prototyping.
devel/uprofiler-0.11.0.20150219 (Score: 0.032514982)
Lightweight profiler for PHP
uprofiler is a hierarchical profiler for PHP. It reports function-level call counts and inclusive and exclusive metrics such as wall (elapsed) time, CPU time and memory usage. A function's profile can be broken down by callers or callees.
devel/xdebug-2.4.0 (Score: 0.032514982)
Xdebug extension for PHP
The Xdebug extension helps you debugging your script by providing a lot of valuable debug information. The debug information that Xdebug can provide includes the following: * stack and function traces in error messages with: o full parameter display for user defined functions o function name, file name and line indications o support for member functions * memory allocation * protection for infinite recursions Xdebug also provides: * profiling information for PHP scripts * script execution analysis * capabilities to debug your scripts interactively with a debug client
devel/blitz-0.8.2 (Score: 0.032514982)
PHP templating engine
Blitz is a PHP templating engine. Blitz is written in C and built as PHP-extension which makes it one of the fastest template engines.
devel/dbus-libs-1.2.4 (Score: 0.032514982)
Libraries for accessing D-BUS (Linux Fedora 10)
devel/devtools-10 (Score: 0.032514982)
Linux compilers and base libraries
Development tools and base libraries for linux_base-f10. Required by some Linux applications such as Matlab, which allows the user to integrate custom C, C++, and Fortran code via the MEX compiler.
devel/lmdbg-1.2.1 (Score: 0.032514982)
Lightweight malloc debugger
LMDBG is a collection of small tools for collecting and analyzing the logs of malloc/realloc/memalign/free function calls. Unlike many others, LMDBG does not provide any way to detect overruns of the boundaries of malloc() memory allocations, as this is not the goal. Like most other malloc debuggers, LMDBG allows detecting memory leaks and double frees. However, unlike others, LMDBG generates full stacktraces and separates the logging process from analysis, thus allowing you to analyze an application on a per-module basis.
devel/lnphost-1.0a (Score: 0.032514982)
Lego RCX iinfrared communication API
A library supporting IR communication over the Lego Mindstorms IR tower. It can be used from C programs on Posix compliant platforms, supports multiple protocols and is designed to be a replacement for lnpd.
devel/lion-20060630 (Score: 0.032514982)
Multi-platform, event-driven, simple networking library
LiON (Lund's Input Output Library) is a C library to quickly develop programs that are event-driven, networked, non-blocking and portable. It includes a simple API to do any networking, file I/O and pipes. It is multiplatform and runs on POSIX-like systems and Windows.
devel/lockfree-malloc-0.0.20120802 (Score: 0.032514982)
Scalable drop-in replacement for malloc/free
lockfree-malloc is a scalable drop-in replacement for malloc/free. * It's thread-friendly. It supports a practically-unlimited number of concurrent threads, without locking or performance degradation. * It's efficient, especially in a multi-threaded environment. Compared to a stock libc allocator, we see a significant performance boost. * It does NOT fragment or leak memory, unlike a stock libc allocator. * It wastes less memory. For small objects (less than 8kb in size), the overhead is around 0 bytes. (!) * It is designed from the ground-up for 64-bit architectures. * It is elegant. The whole codebase is only around 800 lines of fairly clean C++. (!) * It fully stand-alone; it does not rely on pthreads or libc at runtime.