Ports Search

Results 431440 of 18,669 for descr.zh_CN%3A%E9%81%8F%E5%88%B6%E5%9E%83%E5%9C%BE.(0.009 seconds)
games/Algorithm-Pair-Best2-2.040 (Score: 0.009074918)
Select tournament pairings
Algorithm::Pair::Best2 is a re-write of Algorithm::Pair::Best. The interface is simplified and the implementation is significantly streamlined. After creating an Algorithm::Pair::Best2 object (with->new), add items to the list of items (i.e: players) to be paired. The final list must contain an even number of items or picking the pairs will throw an exception. Algorithm::Pair::Best2->pick explores all combinations of items and returns the pairing list with the best (lowest) score.
japanese/bible_names-fpw-1.1.3 (Score: 0.009074918)
Dictionary for HITCHCOCK'S BIBLE NAMES (EPWING V1 format)
HITCHCOCK'S BIBLE NAMES Dictionary was produced by Mr. Brad Haugaard. This file is converted from the original dictionary into JIS X 4081 format (that is a subset of EPWING V1) by FreePWING. So this can be used by EPWING viewers on Unix and the other OS (e.g. Windows or MacOS). o URL for the original dictionary: ftp://ccel.wheaton.edu/ebooks/HTML/bible_names/ o URL for this converted dictionary:
japanese/flower-fpw-1.0 (Score: 0.009074918)
Dictionary for flowers (EPWING V1 format)
This flower dictionary was produced by Mr. Yoshio Kobayashi. This file is converted from the original dictionary into JIS X 4081 format (that is a subset of EPWING V1) by FreePWING. So this can be used by EPWING viewers on Unix and the other OS (e.g. Windows or MacOS). o URL for the original dictionary: http://www.inv.co.jp/~yoshio/DW/Flower/Flower.htm o URL for this converted dictionary:
japanese/fumeikai-fpw-1.0 (Score: 0.009074918)
Abbreviation (alphabet-->Japanese) dictionary (EPWING V1 format)
This is an abbreviation (alphabet-->Japanese) dictionary whose Japanese name is Ryakugo Jisyo. It was produced by Fumeikai Ryakugo Jiten Hensyu committee. This file is converted from the original dictionary into JIS X 4081 format (that is a subset of EPWING V1) by FreePWING. So this can be used by EPWING viewers on Unix and the other OS (e.g. Windows or MacOS). o URL for the original dictionary: http://www1.nisiq.net/~cpulot/Dic.htm o URL for this converted dictionary:
japanese/lsd-fpw-3.0.1 (Score: 0.009074918)
Japanese - English Dictionary for Life Science (EPWING V1 format)
This Japanese <--> English dictionary for Life Science was produced by Lsd Project. This file is converted from the original dictionary into JIS X 4081 format (that is a subset of EPWING V1) by FreePWING. So these can be used by EPWING viewers on Unix and the other OS (e.g. Windows or MacOS). o URL for the original dictionary: http://lsd.pharm.kyoto-u.ac.jp/ o URL for this converted dictionary:
japanese/pejv-fpw-1.0.4 (Score: 0.009074918)
Esperanto-Japanese dictionary (EPWING V1 format)
This Esperanto-Japanese dictionary was produced by Mr. HIROTAKA Masaaki. This file is converted from the original dictionary into JIS X 4081 format (that is a subset of EPWING V1) by FreePWING. So this can be used by EPWING viewers on Unix and the other OS (e.g. Windows or MacOS). o URL for the original dictionary: http://www2.saganet.ne.jp/vastalto/ o URL for this converted dictionary:
japanese/ryaku-fpw-1.0.1 (Score: 0.009074918)
Abbreviation (alphabet-->Japanese) dictionary (EPWING V1 format)
This dictionary is an abbreviation (alphabet-->Japanese) dictionary whose Japanese name is "Ryakugo Jisyo". It was produced by Mr. Yoshio Kobayashi. This file is converted from the original dictionary into JIS X 4081 format (that is a subset of EPWING V1) by FreePWING. So this can be used by EPWING viewers on Unix and the other OS (e.g. Windows or MacOS). o URL for the original dictionary: http://www.inv.co.jp/~yoshio/DW/Ryaku/Ryaku.htm o URL for this converted dictionary:
textproc/html2xhtml-1.3 (Score: 0.009074918)
Convert HTML to XHTML
html2xhtml converts HTML files into XHTML. It can fix many common errors in HTML files (e.g. missing end tags, elements with incorrect content model, non-standard elements or attributes, etc.) It can also handle invalid or non well-formed XHTML input, and clean it to produce a well-formed and valid XHTML output. The output document type can be selected among several XHTML DTDs (1.0, 1.1, Basic, etc.)
databases/rdb-2.6d (Score: 0.009069644)
Fast, portable, relational database management system
RDB is a fast, portable, relational database management system without arbitrary limits, (other than memory and processor speed) that runs under, and interacts with, the UNIX Operating system. It uses the Operator/Stream DBMS paradigm described in "Unix Review", March, 1991, page 24, entitled "A 4GL Language". There are a number of "operators" that each perform a unique function on the data. The "stream" is supplied by the UNIX Input/Output redirection mechanism. Therefore each operator processes some data and then passes it along to the next operator via the UNIX pipe function. This is very efficient as UNIX pipes are implemented in memory (at least in versions of UNIX at RAND). RDB is compliant with the "Relational Model". The data is contained in regular UNIX ASCII files, and so can be manipulated by regular UNIX utilities, e.g. ls, wc, mv, cp, cat, more, less, editors like the RAND editor 'e', head, RCS, etc.
devel/XS-Object-Magic-0.04 (Score: 0.009064175)
Opaque, extensible XS pointer backed objects using sv_magic
This way of associating structs with Perl space objects is designed to supercede Perl's builtin T_PTROBJ with something that is designed to be: Extensible - The association of the pointer using sv_magicext can be done on any data type, so you can associate C structs with any representation type. - This means that you can add pointers to any object (hand coded, Moose or otherwise), while still having instance data in regular hashes. Opaque - The C pointer is neither visible nor modifiable from Perl space. - This prevents accidental corruption which could lead to segfaults using T_PTROBJ (e.g. $$ptr_obj = 0).