Ports Search

Results 5,8115,820 of 17,754 for %E6%8E%A7%E5%88%B6%E5%8F%B0.(0.01 seconds)
comms/sms_client-3.0.2 (Score: 9.516992E-5)
Simple UNIX SMS client to send messages to phones or pagers
A simple UNIX client allowing you to send SMS messages to mobile phones and pagers. The software currently supports a number of providers and protocols from various countries. Using an unlisted provider that allows TAP access should be pretty straight forward. There are a large number of services that do not appear to use TAP, but instead, simple user interfaces for interactive use by a user dialing up with a modem. For several UK based services such as these drivers have been written, note that providers often offer more that one service and as such you may require a different driver for each one.
converters/Boulder-1.30 (Score: 9.516992E-5)
API for hierarchical tag/value structures
Boulder IO is a simple TAG=VALUE data format designed for sharing data between programs connected via a pipe. It is also simple enough to use as a common data exchange format between databases, Web pages, and other data representations. The basic data format is very simple. It consists of a series of TAG=VALUE pairs separated by newlines. It is record-oriented. The end of a record is indicated by an empty delimiter alone on a line. The delimiter is "=" by default, but can be adjusted by the user.
databases/cego-2.31.0 (Score: 9.516992E-5)
Relational and transactional database system
Cego is a Relational Database Management System (RDBMS). Cego supports transactional SQL query requests in a multithreaded architecture. For high availability requirements, Cego supports a database shadowing feature. Several compute nodes can be defined in a Cego database configuration, where each node is able to manage a number of so called table sets. For each tableset, a backup node can be defined, which runs is recover mode for the corresponding tableset. If required, the tableset can be switched to the backup node and this node gets the active node for the tableset. Many more details are available at:
deskutils/xrolo-2.6 (Score: 9.516992E-5)
Electronic Rolodex
Rolo is a tool for the Sun workstation which presents a user interface to a simple database of notes in a manner which approximates a Rolodex file. Each note in your Rolo file is meant to simulate a 3x5 card upon which you may scribble anything you like. You can have any number of cards in your rolodex, Rolo will keep track of them for you. You may browse around through them, create new ones, throw old ones away, search for strings in them, etc.
devel/libuutil-1.0.3 (Score: 9.516992E-5)
Illumos userland utilities library
libuutil is a library of userland utilities originating from solaris This library provides both a doubly linked-list implementation and a AVL tree implementation. This has been a private library best known as a core component for ZFS and SMF. The performance is considered excellent. As this has always been a private library, it is not well documented and there is no man page for it. The best documentation is located in the source code and reading OpenSolaris/Illumos ZFS and SMF sources will help as well.
devel/cpp-netlib-0.11.2 (Score: 9.516992E-5)
Cross-platform, standards compliant networking library
cpp-netlib is a collection of network related routines/implementations geared towards providing a robust cross-platform networking library. cpp-netlib offers the following implementations: * Common Message Type -- A generic message type which can be used to encapsulate and store message related information, used by all network implementations as the primary means of data exchange. * Network protocol message parsers -- A collection of parsers which generate message objects from strings. * Adapters and Wrappers -- A collection of Adapters and wrappers aimed towards making the message type STL friendly. * Network protocol client and server implementations -- A collection of network protocol implementations that include embeddable client and server types.
devel/cunit-2.1.3 (Score: 9.516992E-5)
Automated unit testing framework for C
CUnit is a lightweight system for writing, administering, and running unit tests in C. It provides C programmers a basic testing functionality with a flexible variety of user interfaces. CUnit is built as a static library which is linked with the user's testing code. It uses a simple framework for building test structures, and provides a rich set of assertions for testing common data types. In addition, several different interfaces are provided for running tests and reporting results. These interfaces currently include: Automated, Basic, Console and Curses.
devel/codeworker-4.5.3 (Score: 9.516992E-5)
Versatile parsing tool and source code generator
CodeWorker is a parsing tool and a source code generator, available in Open Source (distributed under the GNU Lesser General Public License) devoted to cover many aspects of the generative programming. Generative programming is a software engineering approach for producing reusable, tailor-made, evolvable and reliable IT systems with a high level of automation. The tool interprets a scripting language that drives the processing of parsing and source code generation in a quite familiar syntax for developers. It insists on adapting the syntax of the language to the particularities of tasks to resolve (parse, code generation, procedural) and on offering powerful functionalities to do intensive source code generation.
devel/Data-Dump-1.23 (Score: 9.516992E-5)
Pretty printing of data structures
This module provides a single function called dump() that takes a list of values as its argument and produces a string as its result. The string contains Perl code that, when evaled, produces a deep copy of the original arguments. The string is formatted for easy reading. If dump() is called in a void context, then the dump is printed on STDERR instead of being returned. If you don't like importing a function that overrides Perl's not-so-useful builtin, then you can also import the same function as pp(), mnemonic for "pretty-print".
devel/Devel-Leak-0.03 (Score: 9.516992E-5)
Utility for looking for perl objects that are not reclaimed
Devel::Leak has two functions NoteSV and CheckSV. NoteSV walks the perl internal table of allocated SVs (scalar values) - (which actually contains arrays and hashes too), and records their addresses in a table. It returns a count of these "things", and stores a pointer to the table (which is obtained from the heap using malloc()) in its argument. CheckSV is passed argument which holds a pointer to a table created by NoteSV. It re-walks the perl-internals and calls sv_dump() for any "things" which did not exist when NoteSV was called. It returns a count of the number of "things" now allocated.