Main > Free Download Search >

Free response time software for linux

response time

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4567
skipjackResponse 1.0

skipjackResponse 1.0


skipjackResponse project checks Skipjack Payment gateway Response. more>>
skipjackResponse project checks Skipjack Payment gateway Response.

The SkipjackResponse Check class checks and validates the response sent via POST methods by the Skipjack payment gateway. In account setup, you need to make sure you have set response file to custom filename.

What is SkipJack?

Skipjack is another payment gateway that accepts payments online. But this payment gateway accepts payment for business in USA only.

What does my class do!

skipjackResponse class check the response that skipjack server send via POST method.

NOTE: In the preference of Skipjack account you will have to set response files.

<<less
Download (0.001MB)
Added: 2007-04-16 License: LGPL (GNU Lesser General Public License) Price:
922 downloads
Firewall-1 Response 1.0

Firewall-1 Response 1.0


Firewall-1 Response is a Perl script for performing simple active responses based on a Checkpoint Firewall-1. more>>
Firewall-1 Response is a Perl script for performing simple active responses based on a Checkpoint Firewall-1. It is good for closing off your network against people who do port scans or network sweeps.

fw sam provides a command line interface to a limited feature-set of the firewall security policy. The purpose of this is to allow scripts such as this a way to dynamically change the security policy of one or more firewalls without administrator intervention. This should scare you, because of the potential of these changes allowing bad guys to run a DoS attack against you.
<<less
Download (0.029MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1201 downloads
Regexp::Common::time 0.01

Regexp::Common::time 0.01


Regexp::Common::time Perl module contains date and time regexps. more>>
Regexp::Common::time Perl module contains date and time regexps.

SYNOPSIS

use Regexp::Common qw(time);

# Piecemeal, Time::Format-like patterns
$RE{time}{tf}{-pat => pattern}

# Piecemeal, strftime-like patterns
$RE{time}{strftime}{-pat => pattern}

# Match ISO8601-style date/time strings
$RE{time}{iso}

# Fuzzy date patterns
# YEAR/MONTH/DAY
$RE{time}{ymd} # Most flexible
$RE{time}{YMD} # Strictest (equivalent to y4m2d2)
# Other available patterns: y2md, y4md, y2m2d2, y4m2d2

# MONTH/DAY/YEAR (American style)
$RE{time}{mdy} # Most flexible
$RE{time}{MDY} # Strictest (equivalent to m2d2y4)
# Other available patterns: mdy2, mdy4, m2d2y2, m2d2y4

# DAY/MONTH/YEAR (European style)
$RE{time}{mdy} # Most flexible
$RE{time}{MDY} # Strictest (equivalent to d2m2y4)
# Other available patterns: dmy2, dmy4, d2m2y2, d2m2y4

# Fuzzy time pattern
# HOUR/MINUTE/SECOND
$RE{time}{hms} # H: matches 1 or 2 digits; 12 or 24 hours
# M: matches 2 digits.
# S: matches 2 digits; may be omitted
# May be followed by "a", "am", "p.m.", etc.

This module creates regular expressions that can be used for parsing dates and times. See Regexp::Common for a general description of how to use this interface.

Parsing dates is a dirty business. Dates are generally specified in one of three possible orders: year/month/day, month/day/year, and day/month/year. Years can be specified with four digits or with two digits (with assumptions made about the century). Months can be specified as one digit, two digits, as a spelled-out name, or as a three-letter abbreviation. Day numbers can be one digit or two digits, with limits depending on the month (and, in the case of February, even the year). Also, different people use different punctuation for separating the various elements.
A human can easily recognize that "October 21, 2005" and "21.10.05" refer to the same date, but its tricky to get a program to come to the same conclusion. This module attempts to make it possible to do so, with a minimum of difficulty.

If you know the exact format of the data to be matched, use one of the specific, piecemeal pattern builders: tf or strftime. If there is some variability, use one of the fuzzy-matching patterns in the dmy, mdy, or ymd families. If the data are wildly variable, such as raw user input, give up and use the Date::Manip or Date::Parse module.

Time values are generally much simpler to parse than date values. Only one fuzzy pattern is provided, and it should suffice for most needs.

<<less
Download (0.035MB)
Added: 2007-08-07 License: Perl Artistic License Price:
808 downloads
Reliable Response Notification 2.0

Reliable Response Notification 2.0


Reliable Response Notification provides guaranteed delivery of critical messages to a wide range of devices. more>>
Reliable Response Notification provides guaranteed delivery of critical messages to a wide range of devices. The project guarantees that every emergency will have one, and only one, person responding and taking charge of the recovery.
For integrated services, like some network monitors, help-desk packages, and security suites, Reliable Response Notification allows the user to update records via their mobile devices. It is available as either a standalone server or as a hosted service.
Enhancements:
- The product supports three types of groups: broadcast, escalation and on-call.
- Many devices are supported, including email, SMS, text-to-speech, Jabber, GTalk, SameTime IM, and alphanumeric pagers.
- Integrations for a number of packages are available.
- There is an easy system to add new integrations as needed.
<<less
Download (MB)
Added: 2007-05-31 License: Other/Proprietary License Price:
878 downloads
Net::Google::Response 1.0.1

Net::Google::Response 1.0.1


Net::Google::Response is a simple OOP-ish interface to the Google SOAP API search responses. more>>
Net::Google::Response is a simple OOP-ish interface to the Google SOAP API search responses.

SYNOPSIS

my $service = Net::Google->new(key=>LOCAL_GOOGLE_KEY);
my $session = $service->search();

$session->query(qw(Perl modules));

# You are probably better off calling
# $session->results() but if you want
# the raw response object(s) here ya go :

my $responses = $session->response();
my $count = scalar(@$responses);

# $r is a Net::Google::Response object

foreach my $r (@$responses) {
print sprintf("%s : %sn",$r->searchQuery(),$r->estimatedTotalResults());
}

Provides a simple OOP-ish interface to the Google SOAP API for searching. This package is used by Net::Google.

The Net::Google::Response object is used to contain response information provided by the Google search service in response to a search query. The Response object allows the client program to easily access the data returned from a search.

Response data is accessed using methods with identical names to the elements of a search response (as documented in the Google Web APIs Reference, section 3). For instance, the first example in the SYNOPSIS section, above, would return the estimated number of total results for the query.

Response objects may contain other response objects, where an element would return an array of other elements. For instance, calling $response->resultElements() will return a reference to an array of Net::Google::Response objects, each one representing one result from the search.

The Response module will automatically provide methods for the search response, as described by the service WSDL file. The results format is described by the Google APIs documentation, to which you should refer for the most up-to-date information. As of the April 8th, 2002 release of the Google APIs, the methods below are provided for each search result.

<<less
Download (0.016MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1067 downloads
Yahoo::Search::Response 1.7.10

Yahoo::Search::Response 1.7.10


Yahoo::Search::Response is a container object for the result set of one query to the Yahoo! Search API. more>>
Yahoo::Search::Response is a container object for the result set of one query to the Yahoo! Search API. (This package is included in, and automatically loaded by, the Yahoo::Search package.)

Package Use

You never need to use this package directly -- it is loaded automatically by Yahoo::Search.

Object Creation

Response objects are created by the Fetch() method of a Request (Yahoo::Search::Request) object, e.g. by

my $Response = Yahoo::Search->new(...)->Request()->Fetch();

or by shortcuts to the same, such as:

my $Response = Yahoo::Search->Query(...);

<<less
Download (0.035MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1053 downloads
Net::Gopher::Response::XML 0.90

Net::Gopher::Response::XML 0.90


Net::Gopher::Response::XML is a Perl module Convert a Gopher/Gopher+ response to XML. more>>
Net::Gopher::Response::XML is a Perl module Convert a Gopher/Gopher+ response to XML.

SYNOPSIS

use Net::Gopher;
use Net::Gopher::Response::XML;

...

$response->as_xml(File => menu.xml);

This module contains code to convert a response from a Gopher or Gopher+ Gopherspace to XML. This functionality was originally in the Net::Gopher core, but its features are seldom needed, and it was deemed by me, Will, to be unnecessary bloat.

The module has one method, as_xml(), which you can call on Net::Gopher::Response objects to generate XML. If you have existing code that expects Net::Gopher::Response to already have as_xml() in it, just add the use Net::Gopher::Response::XML to the top of the script as shown in the SYNOPSIS and it should work fine with both pre 1.05 and post 1.05 versions.

<<less
Download (0.015MB)
Added: 2006-08-17 License: Perl Artistic License Price:
1163 downloads
WWW::Patent::Page::Response 0.07

WWW::Patent::Page::Response 0.07


WWW::Patent::Page::Response is an object holding a patent page or document. more>>
WWW::Patent::Page::Response is an object holding a patent page or document (e.g. htm, pdf, tif) from selected source (e.g. from United States Patent and Trademark Office (USPTO) website or the European Patent Office (ESPACE_EP), as constructed by WWW::Patent::Page, in passing analogy to LWP::UserAgent and HTTP::Response.

SYNOPSIS

Please see the test suite for working examples. The following is not guaranteed to be working or up-to-date.

$ perl -I. -MWWW::Patent::Page -e print $WWW::Patent::Page::VERSION,"n"
0.02

use WWW::Patent::Page;

print $WWW::Patent::Page::VERSION,"n";

my $patent_browser = WWW::Patent::Page->new(); # new object

my $document1 = $patent_document->get(6,123,456);
# defaults:
# office => ESPACE_EP,
# country => US,
# format => pdf,
# page => all,
# and usual defaults of LWP::UserAgent (subclassed)

my $document2 = $patent_document->provide_doc(US6123456,
office => ESPACE_EP ,
format => pdf,
page => 2 ,
);

my $pages_known = $patent_document->pages_available( # e.g. TIFF
document=> 6123456,
);

Intent: Use public sources to retrieve patent documents such as TIFF images of patent pages, html of patents, pdf, etc. Expandable for your office of interest by writing new submodules..

<<less
Download (0.034MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1095 downloads
Yet Another Time Machine 0.4

Yet Another Time Machine 0.4


Yet Another Time Machine is a command line Ogg Vorbis and MPEG audio player. more>>
Yet Another Time Machine is a command line Ogg Vorbis and MPEG audio player with the ability to control the tempo of playback without changing the pitch.
Primary usage would be to listen (for example) to audio books at 150% tempo. This is still understandable and saves time, hence the name of the program.
The following audio encoding formats are supported:
- Ogg Vorbis
- Ogg Speex
- MPEG
- All formats supported by libsndfile (FLAC, WAV, AIFF, ...)
Enhancements:
- Version 0.4 adds support for libsndfile.
- There is also an undocumented gem, you can use < and > to slow down or speed up by 10%, and hitting SPACE can be used to pause playback.
<<less
Download (0.17MB)
Added: 2005-11-07 License: GPL (GNU General Public License) Price:
1446 downloads
PagePoker 1.2

PagePoker 1.2


PagePoker is a Perl package that defines a browser agent with many powerful features for monitoring and testing Web sites. more>>
PagePoker is a Perl package that defines a browser agent with many powerful features for monitoring and testing Web sites, including elaborate failure handling that can send email and trigger SNMP traps. The application comes with three scripts that implement it for different uses: poke.pl, for single agents; pokes.pl, for many parallel agents, and pokehard.pl, for loadtesting and benchmarking.

HOW-TO:

Run "poke.pl --help" for detailed help on using the package. Briefly, poke.pl creates a PagePoker object, accepting all sorts of options. It is designed for monitoring web pages to verify they are returning desired information or to dump the contents of web pages to a file (like fetch). It can loop on a variety of conditions and crawl a series of pages, posting and passing cookies. The other component, pokes.pl, is simply a forking variation that accepts as its parameters an agent id and the options for that agent. It can be used for monitoring many sites simultaneously or for load testing single sites. On a dual 400 mhz machine I was able to run about 120 concurrent agents.

Examples:

> poke.pl --url http://node.to

returns (first element is date):
20000225170507 SUCCESS: Page loaded by agent

> poke.pl --url http://node.to --no-status --print-response

returns the plain html

> pokes.pl agent1 "--url http://node.to --no-status --email-failures
--email-address who@node.to --iterations 1000 --interval 10"
agent2 "--urls http://node.to>>http://tiny.node.to
--no-status --email-failures --email-address "1@1.com 2@2.com""

will launch two agents, first agent will poll node.to for connection failures every 10 seconds 1000 times, emailing if a failure is encountered, second agent will hit node.to then tiny.node.to and exit, emailing two people if either one doesnt respond.

There is a lot of logic to control how often and under what conditions email is sent. You can search for desired in text the headers or the html response, and send email or snmp traps on certain failure conditions. To loadtest, you could launch looping batches of ten agents, adding ten more a minute later in a another process, etc.

More advanced load testing can be done with pokehard.pl. It gets its own README (README.pokehard).

Here is the output of poke.pl --help, minus the USAGE statement:

How to use it:

--url "http://host/page"

--urls "http://host/page1>>http://host/page2>>etc"

--urls-from-file "file_path"

--urls-delay "n"
Seconds between each request

--method {GET|POST}

--post-query "query string"

--basic-auth-name "agent login" (one per agent)

--basic-auth-pass "agent password"

--interval "n"
Loop with n seconds between pokes

--iterations "n"
Cycles to run loop (requires --interval)

--look-for "pattern to find in response text"

--resend-cookie "cookiename"

--resend-cookie-between-iterations
Allow cookie to be resent through all iterations

--use-verbose-response
Includes headers in response text

--print-response
Dump agent retrieved text to STDOUT

--disable-on-failure
Allow server disabling on failure

--disable-snmp-trap "snmp trap"
To disable in loadbalancer

--enable-on-recovery
Allow server re-enabling on recovery

--enable-snmp-trap "snmp trap"
To enable server after successful run

--email-failures
Turn on alarm emails

--email-addresses "address1 address2 etc"

--email-subject "override default with arbitrary text"

--failures-until-email "n"
Consecutive errors triggers email

--min-time-between-emails "seconds"

--die-after-date "yyyymmddhhmmss" (requires interval and iterations)

--benchmark
Store numbers used for performance measurement (by pokehard.pl)

--quiet
Output nothing (except email, if set)

--no-status
Do not output status info (ie SUCCESS, etc)

--print-to-file "file"
Write output to file

--help
Print this text and exit

<<less
Download (0.012MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
829 downloads
WR Time Tracker 0.4

WR Time Tracker 0.4


WR Time Tracker is a simple, open source, web-based time tracking system. more>>
WR Time Tracker is a simple, open source, web-based time tracking system.
It is Web-based and allows you to create teams, projects, and activities. Users can enter their work time, generate reports and invoices, and send them via email. Free hosting of this service is also available.
Main features:
- Create user logins and organize them in teams.
- Create and modify projects and activities.
- Input work time.
- Generate reports and send them via e-mail.
<<less
Download (0.33MB)
Added: 2006-01-06 License: Freely Distributable Price:
1388 downloads
Picoxine 0.0.7

Picoxine 0.0.7


PicoXine is a (very small) XINE implementation for playing audio events as a replacement for ARTS. more>>
PicoXine is a (very small) XINE implementation for playing audio events as a replacement for ARTS. Picoxines extremely small (the source code is only 3.0KiB long!)
It offers great response time, its faster than MPlayer upon start-up, and it has no stdout output if no errors are found. Its, therefore, completely transparent.
It requires Xine-Lib (any version). If your distro uses development packages, you need xine-devel and libc6-devel
Enhancements:
- Added a patch given to me by Diego Flameeyes Petteno
- Further optimisation
<<less
Download (0.014MB)
Added: 2006-09-12 License: GPL (GNU General Public License) Price:
1137 downloads
OSSEC HIDS 1.3

OSSEC HIDS 1.3


OSSEC HIDS is an open source host-based intrusion detection system. more>>
OSSEC HIDS is an open source host-based intrusion detection system. OSSEC HIDS performs rootkit detection, log analysis, integrity checking, time-based alerting and active response.
Enhancements:
- The license was changed to GPLv3. Many new features and bugfixes were added.
- This release includes a new user interface to manage the Windows Agent, support for Courier pop3/imapd logs, support for Cisco IOS logs, a Chinese translation of the installation script, and a new option to do host-based policy monitoring and enforcement on Windows systems.
<<less
Download (0.21MB)
Added: 2007-08-08 License: GPL v3 Price:
814 downloads
AsItHappens 0.35

AsItHappens 0.35


AsItHappens is a real-time network performance monitor. more>>
AsItHappens is a real-time network performance monitor. AsItHappens project collects data from devices over a network and displays them on a graph, optionally storing collected data in a database for later retrieval.
Current collection types include network response, bandwidth, Cisco NBAR, and Cisco NetFlow. AsItHappens polls data in regular intervals, which can be as low as every second, to give immediate feedback on network performance.
Main features:
- Granular collection of data to the point of collecting every second
- Real-time graphing of collected data
- Response data collection via ICMP or TCP/UDP echo
- Inbound and outbound bandwidth data collection via SNMP
- Cisco NBAR (Network-based Application Recognition) Top-N collection via SNMP
- Cisco NetFlow Top-N collection via SNMP with flow grouping and match criteria options
- Optional database storage of collection sessions
- Retrieval of user-defined time intervals within a stored collection session
- Resizable graphing window with automatic scaling of graph data to fit
- Options to define how to aggregate or interpolate data when graphing e.g. to show maximums instead of averages
- The ability to add text labels to the graphing panel to explain desired areas of the graph
<<less
Download (1.9MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
925 downloads
Bookmark Time 0.2 Alpha

Bookmark Time 0.2 Alpha


Bookmark Time is an Amarok script that lets you bookmark a point in time in a music file. more>>
Bookmark Time is an Amarok script that lets you bookmark a point in time in a music file.

When you play it again, you can choose the bookmarked times from the mouse menu.

<<less
Download (0.013MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5