Ports Search

Results 11,46111,470 of 19,819 for %22HTTP Server%22.(0.01 seconds)
devel/runkit-1.0.4 (Score: 9.2878623E-4)
PECL extension to modify constants, user-defined functions, and classes
The runkit extension provides means to modify constants, user-defined functions, and user-defined classes. It also provides for custom superglobal variables and embeddable sub-interpreters via sandboxing.
devel/lcov-1.12 (Score: 9.2878623E-4)
Linux Test Project GCOV extension
LCOV is a graphical front-end for GCC's coverage testing tool gcov. It collects gcov data for multiple source files and creates HTML pages containing the source code annotated with coverage information. It also adds overview pages for easy navigation within the file structure.
devel/scream-0.1.0 (Score: 9.2878623E-4)
Break the silence operator
The scream extension gives the possibility to disable the silencing error control operator (aka The At Sign: '@') so all errors are being reported. This feature is controlled by an ini setting.
devel/lwp-2.6 (Score: 9.2878623E-4)
Userspace thread library
The LWP userspace threads library. The LWP threads library is used by the Coda distributed filesystem, RVM (a persistent VM library), and RPC2/SFTP (remote procedure call library) Project contact information below. EMAIL: coda@cs.cmu.edu
devel/ccid-1.4.24 (Score: 9.2878623E-4)
Generic USB CCID (Chip/Smart Card Interface Devices) driver
Generic USB CCID (Chip/Smart Card Interface Devices) driver.
devel/libconfuse-2.7 (Score: 9.2878623E-4)
Configuration file parsing library
libConfuse is a configuration file parser library, licensed under the terms of the ISC, and written in C. It supports sections and (lists of) values (strings, integers, floats, booleans or other sections), as well as some other features (such as single/double-quoted strings, environment variable expansion, functions and nested include statements). It makes it very easy to add configuration file capability to a program using a simple API. The goal of libConfuse is not to be the configuration file parser library with a gazillion of features. Instead, it aims to be easy to use and quick to integrate with your code. libConfuse was called libcfg before, but was changed to not confuse with other similar libraries. Project homepage:
devel/lemon-1.69 (Score: 9.2878623E-4)
LALR(1) parser generator. Similar in function to yacc and bison
The Lemon program is an LALR(1) parser generator. It takes a context free grammar and converts it into a subroutine that will parse a file using that grammar. Lemon is similar to much more famous programs Yacc and Bison. But lemon is not compatible with either of them; there are several important differences: - Lemon using a different grammar syntax which is less prone to programming errors - Lemon generates a parser that is faster than Yacc or Bison parsers (according to the author) - The parser generated by Lemon is both re-entrant and thread-safe - Lemon includes the concept of a non-terminal destructor, which makes it much easier to write a parser that does not leak memory
devel/libdatrie-0.2.10 (Score: 9.2878623E-4)
Double-array trie implementation library
This is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe. Trie is a kind of digital search tree, an efficient indexing method with O(1) time complexity for searching. Comparably as efficient as hashing, trie also provides flexibility on incremental matching and key spelling manipulation. This makes it ideal for lexical analyzers, as well as spelling dictionaries.
devel/libavl-1.4.0 (Score: 9.2878623E-4)
Library for balanced binary trees
GNU libavl, a library for balanced binary trees. Balanced binary trees provide guaranteed O(lg n) performance for list insertion, deletion, and search operations. libavl is the most complete free balanced binary tree library on the net today, supporting AVL trees in plain, threaded, and right-threaded forms as well as plain red-black trees.
devel/coil-0.3.20 (Score: 9.2878623E-4)
Powerful configuration language for Python
[ description from README.txt ] Coil: A Configuration Library. Introduction ============ Coil is a configuration file format that is parsed into a tree of dict like Struct objects. The format supports inheritance, allowing complicated configurations to be as compact as possible. Design Goals ============ General design/implementation goals, some have been met, others are still in progress. - Support Twisted and non-Twisted reactor driven Python programs. - Scalable to complex configurations, easily avoiding duplication. - Orthogonal to code; code should not be required to know about the config system used, it should be regular Python or Twisted code. - Minimal boilerplate.