match
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 985
JavaMatch 0.2
JavaMatch provides a match engine for Java data structures. more>>
JavaMatch provides a match engine for Java data structures.
JavaMatch is an engine that can search inside runtime Java data structures and look for objects that best match the criteria that you specify.
JavaMatch is a generic match engine, not targeted at a specific domain. It can be applied to any runtime data structure, and the extensive query mechanism allows for highly customizable tuning of your searches.
JavaMatch can be integrated with object- relational mapping tools. This allows you to match inside databases.
JavaMatchs functionality compared to "normal" database searching can be described by using an analogy:
If you search for something in Google, you dont just see the pages that exactly match your search query, youll also get the results that best match the search query (unless you use the "+"-syntax).
JavaMatch provides this Google-like functionality, but then applied to a Java data structure: It looks for the objects that best match the query: Out of the entire data set, it returns the top-10 (or more, if you specify so) of the best matching objects.
<<lessJavaMatch is an engine that can search inside runtime Java data structures and look for objects that best match the criteria that you specify.
JavaMatch is a generic match engine, not targeted at a specific domain. It can be applied to any runtime data structure, and the extensive query mechanism allows for highly customizable tuning of your searches.
JavaMatch can be integrated with object- relational mapping tools. This allows you to match inside databases.
JavaMatchs functionality compared to "normal" database searching can be described by using an analogy:
If you search for something in Google, you dont just see the pages that exactly match your search query, youll also get the results that best match the search query (unless you use the "+"-syntax).
JavaMatch provides this Google-like functionality, but then applied to a Java data structure: It looks for the objects that best match the query: Out of the entire data set, it returns the top-10 (or more, if you specify so) of the best matching objects.
Download (1.4MB)
Added: 2007-02-16 License: LGPL (GNU Lesser General Public License) Price:
980 downloads
Net::ACL::Match::IP 0.07
Net::ACL::Match::IP is a class matching IP addresses against an IP or network. more>>
Net::ACL::Match::IP is a class matching IP addresses against an IP or network.
SYNOPSIS
use Net::ACL::Match::IP;
# Constructor
$match = new Net::ACL::Match::IP(1,10.0.0.0/8);
# Accessor Methods
$netmaskobj = $match->net($netmaskobj);
$netmaskobj = $match->net($net);
$index = $match->index($index);
$rc = $match->match($ip);
__top
This module is just a wrapper of the Net::Netmask module to allow it to operate automatically with Net::ACL::Rule.
<<lessSYNOPSIS
use Net::ACL::Match::IP;
# Constructor
$match = new Net::ACL::Match::IP(1,10.0.0.0/8);
# Accessor Methods
$netmaskobj = $match->net($netmaskobj);
$netmaskobj = $match->net($net);
$index = $match->index($index);
$rc = $match->match($ip);
__top
This module is just a wrapper of the Net::Netmask module to allow it to operate automatically with Net::ACL::Rule.
Download (0.028MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1187 downloads
Regexp::MatchContext 0.0.2
Regexp::MatchContext is Perl module to replace (and improve) $MATCH, $PREMATCH, and $POSTMATCH more>>
Regexp::MatchContext is Perl module to replace (and improve) $MATCH, $PREMATCH, and $POSTMATCH
SYNOPSIS
use Regexp::MatchContext -vars;
$str = m/(?p) d+ /;
print "Before: $PREMATCHn";
print "Matched: $MATCHn";
print "After: $POSTMATCHn";
$MATCH = 2 * $MATCH; # substitute into original $str
The English.pm module provides named aliases for Perls built-in $`, $& and $ variables: $PREMATCH, $MATCH, and $POSTMATCH. Unfortunately, those aliases suffer the same problems as their originals: they degrade the performance of every single regex in your program, even if youre only using them to get information about a single match.
This module also provides $PREMATCH, $MATCH, and $POSTMATCH, but in a way that only impacts the performance of matches that you specify. That is, these three variables are only set if the most recently matched regex contained the special (non-standard) meta- flag: (?p).
That is:
use Regexp::MatchContext -vars;
$str = foobarbaz;
$str =~ /(?p) foo /x;
# $PREMATCH contains foo
# $MATCH contains bar
# $POSTMATCH contains baz
$str =~ / foo /x;
# $PREMATCH, $MATCH, and $POSTMATCH all undef
The (?p) marker can be placed anywhere within the regex and, except for setting the three context variables on a successful match, is otherwise totally ignored.
<<lessSYNOPSIS
use Regexp::MatchContext -vars;
$str = m/(?p) d+ /;
print "Before: $PREMATCHn";
print "Matched: $MATCHn";
print "After: $POSTMATCHn";
$MATCH = 2 * $MATCH; # substitute into original $str
The English.pm module provides named aliases for Perls built-in $`, $& and $ variables: $PREMATCH, $MATCH, and $POSTMATCH. Unfortunately, those aliases suffer the same problems as their originals: they degrade the performance of every single regex in your program, even if youre only using them to get information about a single match.
This module also provides $PREMATCH, $MATCH, and $POSTMATCH, but in a way that only impacts the performance of matches that you specify. That is, these three variables are only set if the most recently matched regex contained the special (non-standard) meta- flag: (?p).
That is:
use Regexp::MatchContext -vars;
$str = foobarbaz;
$str =~ /(?p) foo /x;
# $PREMATCH contains foo
# $MATCH contains bar
# $POSTMATCH contains baz
$str =~ / foo /x;
# $PREMATCH, $MATCH, and $POSTMATCH all undef
The (?p) marker can be placed anywhere within the regex and, except for setting the three context variables on a successful match, is otherwise totally ignored.
Download (0.005MB)
Added: 2007-01-26 License: Perl Artistic License Price:
1001 downloads
mod_auth_ip 1.0
auth_ip Apache module provide user authentication by client IP address. more>>
auth_ip Apache module provide user authentication by client IP address.
The AuthenticateIP directive allow some addresses to override authentication. Address/network is a (possibly multiple) network specification, and username is the username assumed if client address match network specification.
<<lessThe AuthenticateIP directive allow some addresses to override authentication. Address/network is a (possibly multiple) network specification, and username is the username assumed if client address match network specification.
Download (0.012MB)
Added: 2006-04-04 License: The Apache License Price:
1298 downloads
MySQL table patcher 1.6.2
MySQL table patcher is a patch that reads table creation file (tables.sql) and compares it to what mysqldump gives. more>>
MySQL table patcher is a patch that reads table creation file (tables.sql) and compares it to what mysqldump gives. It creates SQL clauses to update the database to match the creation file.
<<less Download (1.9MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1179 downloads
B::XPath 0.01
B::XPath class can search Perl optrees with XPath syntax. more>>
B::XPath class can search Perl optrees with XPath syntax.
SYNOPSIS
Perl represents programs internally as a tree of opcodes. To execute a program, it walks this tree, performing each operation as it encounters it. The B family of modules allows you to examine (and in some cases, manipulate) this optree on programs even as they run.
B::XPath allows you to use XPath syntax to select ops in the optree.
use B::XPath;
my $node = B::XPath->fetch_root( &some_function );
my $root = B::XPath->fetch_main_root();
# find all global scalar accesses
my @globals = $root->match( //gvsv );
# find all global scalar accesses within some_function() named $bob
my @bobs = $node->match( //gvsv[@NAME="bob"] );
Class Methods
There are two methods to use to start your match; both set the root of the tree to search. Theres also a nice helper method youll probably never use unless you find a bug.
fetch_root( $subref )
This method returns the B::XPath::Node object at the root of the optree for the subroutine reference. All matches performed on this node will search this branch of the optree for matching nodes.
fetch_main_root()
This method returns the B::XPath::Node object at the root of the program. Use this to search your entire program (at least, the part of it outside of any given subroutine).
find_op_class( $op )
Given a B::OP or descendent object, returns the name of the appropriate B::XPath::Node subclass to use to wrap that op so that B::XPath can manipulate it appropriately.
<<lessSYNOPSIS
Perl represents programs internally as a tree of opcodes. To execute a program, it walks this tree, performing each operation as it encounters it. The B family of modules allows you to examine (and in some cases, manipulate) this optree on programs even as they run.
B::XPath allows you to use XPath syntax to select ops in the optree.
use B::XPath;
my $node = B::XPath->fetch_root( &some_function );
my $root = B::XPath->fetch_main_root();
# find all global scalar accesses
my @globals = $root->match( //gvsv );
# find all global scalar accesses within some_function() named $bob
my @bobs = $node->match( //gvsv[@NAME="bob"] );
Class Methods
There are two methods to use to start your match; both set the root of the tree to search. Theres also a nice helper method youll probably never use unless you find a bug.
fetch_root( $subref )
This method returns the B::XPath::Node object at the root of the optree for the subroutine reference. All matches performed on this node will search this branch of the optree for matching nodes.
fetch_main_root()
This method returns the B::XPath::Node object at the root of the program. Use this to search your entire program (at least, the part of it outside of any given subroutine).
find_op_class( $op )
Given a B::OP or descendent object, returns the name of the appropriate B::XPath::Node subclass to use to wrap that op so that B::XPath can manipulate it appropriately.
Download (0.007MB)
Added: 2007-06-26 License: Perl Artistic License Price:
850 downloads
Quizmaster 0.0d
Quizmaster project is a program designed to allow the creation of short, fun quizzes. more>>
Quizmaster project is a program designed to allow the creation of short, fun quizzes.
Quizmaster is a type-oriented quiz program that gives multiple-choice questions along the axes you provide and selects the results that most closely match your visitors responses (think SelectSmart or the Myers-Briggs test).
It comes with amusing quizzes already installed.
Quizmaster is a search engine meant to provide high-usability and powerful access to documents being searched. It does not search the web, but local files provided to it. It is meant to help the user find materials quickly.
<<lessQuizmaster is a type-oriented quiz program that gives multiple-choice questions along the axes you provide and selects the results that most closely match your visitors responses (think SelectSmart or the Myers-Briggs test).
It comes with amusing quizzes already installed.
Quizmaster is a search engine meant to provide high-usability and powerful access to documents being searched. It does not search the web, but local files provided to it. It is meant to help the user find materials quickly.
Download (0.10MB)
Added: 2006-11-17 License: Perl Artistic License Price:
1261 downloads
ccache stats 0.2
ccache stats is a simple way to get real time ccache stats for gentoo maniacs!! more>>
ccache stats is a simple way to get real time ccache stats for gentoo maniacs!! I was in trouble formatting output.
Finally I wrote a horrible perl script to do it, trying to limit damages caused by file accesses...
Im not a programmer and I havent so much time, so Im sure it can be improved.. First of all Ill be involved in improving graphics!!
Feel free to give suggestion!
OK.. At the moment I assume you install it by superkaramba tool.. so I match its download directory to run the script stats.pl.. If you download it via website make sure the corresponding line in .theme file match the correct dir! (Im studying a way to skip this problem)
<<lessFinally I wrote a horrible perl script to do it, trying to limit damages caused by file accesses...
Im not a programmer and I havent so much time, so Im sure it can be improved.. First of all Ill be involved in improving graphics!!
Feel free to give suggestion!
OK.. At the moment I assume you install it by superkaramba tool.. so I match its download directory to run the script stats.pl.. If you download it via website make sure the corresponding line in .theme file match the correct dir! (Im studying a way to skip this problem)
Download (0.004MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1220 downloads
OmegaT 1.6.1_024
OmegaT is a free translation memory application written in Java. more>>
OmegaT is a free translation memory application written in Java. It is a tool intended for professional translators. OmegaT does not translate for you! (Software that does this is called "machine translation", and you will have to look elsewhere for it.)
Main features:
- Fuzzy matching
- Match propagation
- Simultaneous processing of multiple-file projects
- Simultaneous use of multiple translation memories
- External glossaries
- Document file formats: plain text, HTML, OpenOffice.org/StarOffice (the latter has excellent conversion filters for MS Word, Excel, RTF)
- Unicode (UTF-8) support: can be used with non-Latin alphabets
- Compatible with other translation memory applications (TMX Level 1)
<<lessMain features:
- Fuzzy matching
- Match propagation
- Simultaneous processing of multiple-file projects
- Simultaneous use of multiple translation memories
- External glossaries
- Document file formats: plain text, HTML, OpenOffice.org/StarOffice (the latter has excellent conversion filters for MS Word, Excel, RTF)
- Unicode (UTF-8) support: can be used with non-Latin alphabets
- Compatible with other translation memory applications (TMX Level 1)
Download (24MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
847 downloads
Mptn 0.3.0
Mptn is a library providing a pattern matching mechanism similar to regular expressions. more>>
Mptn project is a library providing a pattern matching mechanism similar to regular expressions, but with several differences making it more suitable for building a morphological analyzer.
Differences are:
- The whole string is matched against the pattern; thus the emphasis is on finding appropriate variable assignments, not on quick search. (This also means mptns will generally work slower than regexps, since they cannot in general be described by finite state automata)
- All the possible variable assignments are iterated over, not just one.
- Named variables make patterns more readable. In addition, a pattern may be associated with a variable name, restricting the possible values of the variable. Thus, you can use, for example, {c1}{v}{c2}? to match a syllable of CV/CVC structure (consonant-vowel-consonant).
- "Matcher" mechanism to extend the matching process with arbitrary procedures.
<<lessDifferences are:
- The whole string is matched against the pattern; thus the emphasis is on finding appropriate variable assignments, not on quick search. (This also means mptns will generally work slower than regexps, since they cannot in general be described by finite state automata)
- All the possible variable assignments are iterated over, not just one.
- Named variables make patterns more readable. In addition, a pattern may be associated with a variable name, restricting the possible values of the variable. Thus, you can use, for example, {c1}{v}{c2}? to match a syllable of CV/CVC structure (consonant-vowel-consonant).
- "Matcher" mechanism to extend the matching process with arbitrary procedures.
Download (0.10MB)
Added: 2006-08-28 License: LGPL (GNU Lesser General Public License) Price:
1152 downloads
jack 3.1.1
Jack is a console tool, somewhat in the great tradition of command-line oriented software. more>>
Jack is a console tool, somewhat in the great tradition of command-line oriented software. When using XTerm and xtermset the xterms size is automagically changed to match the number of tracks.
Install the software as recommended in doc/INSTALL.
run jack -h for quick help or read the doc/(umentation).
Use --save to save frequently uses options to your ~/.jack3rc
Jack has his home at http://www.home.unix-ag.org/arne/jack/. His creators e-mail address is zarne@users.sf.net
<<lessInstall the software as recommended in doc/INSTALL.
run jack -h for quick help or read the doc/(umentation).
Use --save to save frequently uses options to your ~/.jack3rc
Jack has his home at http://www.home.unix-ag.org/arne/jack/. His creators e-mail address is zarne@users.sf.net
Download (0.31MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1193 downloads
Math::Logic::Predicate 0.03
Math::Logic::Predicate is a Perl module to manage and query a predicate assertion database. more>>
Math::Logic::Predicate is a Perl module to manage and query a predicate assertion database.
SYNOPSIS
use Math::Logic::Predicate;
$db = new Math::Logic::Predicate;
# Enter some predicates into the database
$db->add(retract( smart(_) );
# Make a query
$query = $db->parse( human(H) & name(H, X) ? );
$iter = $db->match($query, $iter);
# Get the results
$name = $db->get($iter, X);
# Store it in a rule
$db->add( human_name(H, N) := human(H) & name(H, N). );
# Use it in a query
$iter = $db->match( human_name(lister, N) ? );
# Save it to a file
use Storable;
store($db->rules, red_dwarf);
<<lessSYNOPSIS
use Math::Logic::Predicate;
$db = new Math::Logic::Predicate;
# Enter some predicates into the database
$db->add(retract( smart(_) );
# Make a query
$query = $db->parse( human(H) & name(H, X) ? );
$iter = $db->match($query, $iter);
# Get the results
$name = $db->get($iter, X);
# Store it in a rule
$db->add( human_name(H, N) := human(H) & name(H, N). );
# Use it in a query
$iter = $db->match( human_name(lister, N) ? );
# Save it to a file
use Storable;
store($db->rules, red_dwarf);
Download (0.017MB)
Added: 2006-09-28 License: Perl Artistic License Price:
1121 downloads
MKGI Chess Club 1.6.1
MKGI Chess Club is a chess playing server with a pure Web interface. more>>
MKGI Chess Club is a chess playing server with a pure Web interface.
It features complete player profile management, full html email notification with embedded board display.
MKGI Chess Club also features an interface to match against chess engines such as gnuchess, phalanx, and crafty.
Enhancements:
- Fixed the notification feature which was broken since 1.6.0.
- Fixed undo availability immediately after a move.
- Implemented partial dragndrop of pieces on the chess board.
<<lessIt features complete player profile management, full html email notification with embedded board display.
MKGI Chess Club also features an interface to match against chess engines such as gnuchess, phalanx, and crafty.
Enhancements:
- Fixed the notification feature which was broken since 1.6.0.
- Fixed undo availability immediately after a move.
- Implemented partial dragndrop of pieces on the chess board.
Download (0.12MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
816 downloads
Apache::LogIgnore 0.03
Apache::LogIgnore is a mod_perl log handler to ignore connections. more>>
Apache::LogIgnore is a mod_perl log handler to ignore connections.
SYNOPSIS
in your httpd.conf file, put this in the mod_perl load block (if you have one)
< Location / >
PerlLogHandler Apache::LogIgnore
PerlSetVar DebugFlag 1
#Turn Debugging on
PerlSetVar IgnoreHost 192.168.0.2
#Dont log connections from host
#Exact match
PerlSetVar IgnoreAgent Moz
#Dont log connections using agent
#Containing match, case insensitive
PerlSetVar IgnoreReferer 192.168.0.2
#Dont log connections referred by IP
#Containing match, case insensitive
PerlSetVar IgnoreFrom foo@bar.com
#Dont log connections from Agents with certain E-Mail addresses set
#Containing match, case insensitive
PerlSetVar IgnoreMinSize 100
#Dont log connections below 100 bytes
PerlSetVar IgnoreMaxSize 400000
#Dont log connections above 400000 bytes
PerlSetVar IgnoreType Image
#Dont log connections to certain mime-types
#Containing match, case insensitive
PerlSetVar IgnoreStatus 403
#Dont log status code
#Exact match
< /Location >
This mod_perl log handler can be used to ignore connections which match the criteria.
<<lessSYNOPSIS
in your httpd.conf file, put this in the mod_perl load block (if you have one)
< Location / >
PerlLogHandler Apache::LogIgnore
PerlSetVar DebugFlag 1
#Turn Debugging on
PerlSetVar IgnoreHost 192.168.0.2
#Dont log connections from host
#Exact match
PerlSetVar IgnoreAgent Moz
#Dont log connections using agent
#Containing match, case insensitive
PerlSetVar IgnoreReferer 192.168.0.2
#Dont log connections referred by IP
#Containing match, case insensitive
PerlSetVar IgnoreFrom foo@bar.com
#Dont log connections from Agents with certain E-Mail addresses set
#Containing match, case insensitive
PerlSetVar IgnoreMinSize 100
#Dont log connections below 100 bytes
PerlSetVar IgnoreMaxSize 400000
#Dont log connections above 400000 bytes
PerlSetVar IgnoreType Image
#Dont log connections to certain mime-types
#Containing match, case insensitive
PerlSetVar IgnoreStatus 403
#Dont log status code
#Exact match
< /Location >
This mod_perl log handler can be used to ignore connections which match the criteria.
Download (0.003MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
933 downloads
Pathogen Warrior 1.1.1
Pathogen Warrior project is a puzzle game about matching 3D model structures with a 2D hexagon map. more>>
Pathogen Warrior project is a puzzle game about matching 3D model structures with a 2D hexagon map.
Pathogen Warrior is a puzzle game about matching 3D model structures with a 2D hexagon map. It was one of the entrants to the 4th Ludum Dare 48-hour game development competition.
The theme of the competition was "Infection". In Pathogen Warrior, the players task is to match rotating 3D pathogen structures with a 2D model using a hexagon map.
The time to accomplish the task is limited, and after successfully completing one pathogen, the player is advanced to next level, which has a more challenging pathogen.
Enhancements:
- Updated music file.
- Added Linux Makefile (contributed by Ion).
- Added license notices to all source files.
<<lessPathogen Warrior is a puzzle game about matching 3D model structures with a 2D hexagon map. It was one of the entrants to the 4th Ludum Dare 48-hour game development competition.
The theme of the competition was "Infection". In Pathogen Warrior, the players task is to match rotating 3D pathogen structures with a 2D model using a hexagon map.
The time to accomplish the task is limited, and after successfully completing one pathogen, the player is advanced to next level, which has a more challenging pathogen.
Enhancements:
- Updated music file.
- Added Linux Makefile (contributed by Ion).
- Added license notices to all source files.
Download (0.48MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1073 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above match search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed