This library is aimed at checking a huge amount of text against
relatively many regular expressions. Roughly speaking, it can just
check whether given text maches the certain regexp, but can do it
really fast (more than 400 MB/s on our hardware is common). Even more,
multiple regexps can be combined together, giving capability to
check the text against apx.10 regexps in a single pass (and mantaining
the same speed).
Since Pire examines each character only once, without any lookaheads
or rollbacks, spending about five machine instructions per each character,
it can be used even in realtime tasks.
On the other hand, Pire has very limited functionality (compared to
other regexp libraries). Pire does not have any Perlish conditional
regexps, lookaheads & backtrackings, greedy/nongreedy matches; neither
has it any capturing facilities.
Pire was developed in Yandex (http://company.yandex.ru/) as a part of its
web crawler.
WWW: https://github.com/dprokoptsev/pire
file's contents or attributes have changed. It maintains several pieces
of information about the file: a digest (currently only MD5 is
supported), its inode number, its mode, the uid of its owner, the gid of
its group owner, and its last modification time.
WWW: http://search.cpan.org/dist/File-Signature/
Approved by: sahil@ (mentor)
Changes:
- The chapter explaining exception handling in the manual was improved.
- The support for bitmap fonts was improved to use fontProperties as base type.
- The '-' function, which computes the differance of two 'time' values (with a
'duration' result) in "time.s7i", was improved.
- The function cmdConfigValue in "cmd_rtl.c" was improved to support the config
values C_COMPILER_VERSION and GET_CC_VERSION_INFO.
- In the file "fil_rtl.c" the functions myLseek, myFseek and myFtell were
renamed to os_lseek, os_fseek and os_ftell respectively.
- The makefiles were changed to define os_fseek, os_ftell, C_COMPILER_VERSION
and GET_CC_VERSION_INFO.
- Documentation comments were added to the function alternate_utime in the file
"tim_win.c".
revisions, including a rebase command similar to git's rebase.
WWW: https://launchpad.net/bzr-rewrite
PR: ports/152095
Submitted by: Carlo Strub <c-s at c-s.li>
transaction manager and the parties involved in a distributed transaction
system: the resource manager, the application server, and the
transactional applications.
The JTA specification was developed by Sun Microsystems in cooperation
with leading industry partners in the transaction processing and database
system arena. See JSR 907.
WWW: http://www.oracle.com/technetwork/java/javaee/tech/jta-138684.html
* Modifies configuration file permissions to restrict them to root and the above
GID.
* Patches uhub source so that PREFIX/etc/uhub/uhub.conf is the compiled in
default configuration file.
* rc.d script changes - enable above uid/gid, enable syslog logging, simplify.
PR: 151819
Submitted by: Aragon Gouveia <aragon@phat.za.net>
Approved by: maintainer
intersections across multiple lists of IP ranges, fast.
Although similar in functionality to Net::CIDR::Compare, Net::Netmask
and NetAddr::IP, Net::IP::RangeCompare is a completely range driven ip
management and evaluation tool allowing more flexibility and
scalability when dealing with the somewhat organic nature of IP-Ranges.
If you have a large number of ipv4 ranges and need to inventory lists
of ranges for intersections, this is the Module for you!
WWW: http://search.cpan.org/dist/Net-IP-RangeCompare/
PR: ports/ports/152130
Submitted by: Gea-Suan Lin <gslin at gslin.org>
- Add new option: MYSQLCACHE for MySQL caching support
- Add LICENSE
- Install Brazilian Portugese language files to pt_BR instead of pt-br
- Sort PLIST
- Space/tab twiddle
- Update to 1.3.5
which should have been in the previous log
tracks the current request and logs a report of the active request
when a child process crashes.
Requirements: Apache httpd >= 2.0.49 must be built with the
--enable-exception-hook configure option and mod_so enabled.
Activating mod_whatkilledus:
1. Load it like any other DSO.
LoadModule whatkilledus_module modules/mod_whatkilledus.so
2. Enable exception hooks for modules like mod_whatkilledus:
EnableExceptionHook On
3. Choose where the report on current activity should be written. If
you want it reported to some place other than the error log, use the
WhatKilledUsLog directive to specify a fully-qualified filename for
the log. Note that the web server user id (e.g., "nobody") must
be able to create or append to this log file, as the log file is
not opened until a crash occurs.
WWW: http://people.apache.org/~trawick/exception_hook.html
PR: ports/151932
Submitted by: Frank Wall <fw at moov.de>
collects backtraces when a child process crashes. Currently it is
implemented only on Linux and FreeBSD, but other platforms could be
supported in the future.
Requirements: Apache httpd >= 2.0.49 must be built with the
--enable-exception-hook configure option and mod_so enabled.
Activating mod_backtrace:
1. Load it like any other DSO:
LoadModule backtrace_module modules/mod_backtrace.so
2. Enable exception hooks for modules like mod_backtrace:
EnableExceptionHook On
3. Choose where backtrace information should be written.
If you want backtraces from crashes to be reported some place other
than the error log, use the BacktraceLog directive to specify a
fully-qualified filename for the log to which backtraces will be
written. Note that the web server user id (e.g., "nobody") must
be able to create or append to this log file, as the log file is
WWW: http://people.apache.org/~trawick/exception_hook.html
PR: ports/151931
Submitted by: Frank Wall <fw at moov.de>