results pk
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2013
Data::BenchmarkResults 0.01
Data::BenchmarkResults is a Perl extension for averaging and comparing multiple benchmark runs. more>>
Data::BenchmarkResults is a Perl extension for averaging and comparing multiple benchmark runs.
SYNOPSIS
use Data::BenchmarkResults;
$conditionA_results = new Data::BenchmarkResults;
$conditionB_results = new Data::BenchmarkResults;
#Load test result runs for the first condition
$conditionA_results->add_result_set("test1","run1",@data1);
$conditionA_results->add_result_set("test2","run1",@data2);
$conditionA_results->add_result_set("test1","run2",@data3);
$conditionA_results->add_result_set("test2","run2",@data4);
#Load test result runs for the second condition
$conditionB_results->add_result_set("test1","run1",@data5);
$conditionB_results->add_result_set("test2","run2",@data6);
$conditionB_results->add_result_set("test1","run1",@data7);
$conditionB_results->add_result_set("test2","run2",@data8);
#Average (mean average) the results of all the the runs of test1
# w/o tossing the highest and lowest values (replace the 0 with 1to
# toss the highest and lowest values
my $computed = $conditionA_results->process_result_set("test1","mean",0);
my $computed2 = $conditionB_results->process_result_set("test1","mean",0);
#OR process all of the tests at once (tossing the highest and lowest value) :
$conditionA_results->process_all_result_sets("mean",1);
$conditionB_results->process_all_result_sets("mean",1);
#Print out all of the processed test results
print "Condition A results.... nn"
$conditionA_results->print_calculated_sets;
print "Condition B results.... nn"
$conditionB_results->print_calculated_sets;
#Compare results of test1 of condition B against those with condition A
# as a percentage change from A to B
my $compared = $conditionB_results->compare_result_set($conditionA_results,"test1");
#OR compare all the processed test results from one condition to those of another
my $total_comparison = $conditionB_results->compare_all_result_sets($conditionA_results);
<<lessSYNOPSIS
use Data::BenchmarkResults;
$conditionA_results = new Data::BenchmarkResults;
$conditionB_results = new Data::BenchmarkResults;
#Load test result runs for the first condition
$conditionA_results->add_result_set("test1","run1",@data1);
$conditionA_results->add_result_set("test2","run1",@data2);
$conditionA_results->add_result_set("test1","run2",@data3);
$conditionA_results->add_result_set("test2","run2",@data4);
#Load test result runs for the second condition
$conditionB_results->add_result_set("test1","run1",@data5);
$conditionB_results->add_result_set("test2","run2",@data6);
$conditionB_results->add_result_set("test1","run1",@data7);
$conditionB_results->add_result_set("test2","run2",@data8);
#Average (mean average) the results of all the the runs of test1
# w/o tossing the highest and lowest values (replace the 0 with 1to
# toss the highest and lowest values
my $computed = $conditionA_results->process_result_set("test1","mean",0);
my $computed2 = $conditionB_results->process_result_set("test1","mean",0);
#OR process all of the tests at once (tossing the highest and lowest value) :
$conditionA_results->process_all_result_sets("mean",1);
$conditionB_results->process_all_result_sets("mean",1);
#Print out all of the processed test results
print "Condition A results.... nn"
$conditionA_results->print_calculated_sets;
print "Condition B results.... nn"
$conditionB_results->print_calculated_sets;
#Compare results of test1 of condition B against those with condition A
# as a percentage change from A to B
my $compared = $conditionB_results->compare_result_set($conditionA_results,"test1");
#OR compare all the processed test results from one condition to those of another
my $total_comparison = $conditionB_results->compare_all_result_sets($conditionA_results);
Download (0.009MB)
Added: 2007-08-16 License: Perl Artistic License Price:
799 downloads
Yahoo::Search::Result 1.5.8
Yahoo::Search::Result is a class representing a single result from a Yahoo! search-engine query. more>>
Yahoo::Search::Result is a class representing a single result (single web page, image, video file, etc) from a Yahoo! search-engine query. (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 ^
Result objects are created automatically when a Response object is created (when a Request objects Fetch method is called, either directly, or indirectly via a shortcut such as Yahoo::Search->Query().
<<lessPackage Use ^
You never need to use this package directly -- it is loaded automatically by Yahoo::Search.
Object Creation ^
Result objects are created automatically when a Response object is created (when a Request objects Fetch method is called, either directly, or indirectly via a shortcut such as Yahoo::Search->Query().
Download (0.034MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1194 downloads
Test::Litmus 0.03
Test::Litmus is a Perl module to submit test results to the Litmus testcase management tool. more>>
Test::Litmus is a Perl module to submit test results to the Litmus testcase management tool.
SYNOPSIS
use Test::Litmus;
$t = Test::Litmus->new(-machinename => mycomputer,
-username => user,
-authtoken => token,
# optional # -server => http://litmus.mozilla.org/process_test.cgi,
# optional # -action => submit);
$t->sysconfig(-product => Firefox,
-platform => Windows,
-opsys => Windows XP,
-branch => Trunk,
-buildid => 2006061314,
-buildtype => debug cvs,
-locale => en-US);
my $result = Test::Litmus::Result->new(
-isAutomatedResult => 1, # optional
-testid => 27,
-resultstatus => pass, # valid results are pass
# or fail
-exitstatus => 0,
-duration => 666,
-timestamp => 20051111150944, # optional (default: current time)
-comment => optional comment here, # optional
-bugnumber => 300010, # optional
-log => [Test::Litmus::Log->new( # optional
-type => STDOUT,
-data => foobar),
Test::Litmus::Log->new(
-type => Extensions Installed,
-data => log information here)]
);
$t->addResult($result);
# $t->addResult($someOtherResult);
# etc...
# add log information that should be linked with
# all results (i.e. env variables, config info)
$t->addLog(Test::Litmus::Log->new(
-type => STDOUT,
-data => log data));
my $res = $t->submit();
# $res is 0 for non-fatal errors (some results were submitted), and
# undef for fatal errors (no results were submitted successfully)
if ($t->errstr()) { die $t->errstr() }
<<lessSYNOPSIS
use Test::Litmus;
$t = Test::Litmus->new(-machinename => mycomputer,
-username => user,
-authtoken => token,
# optional # -server => http://litmus.mozilla.org/process_test.cgi,
# optional # -action => submit);
$t->sysconfig(-product => Firefox,
-platform => Windows,
-opsys => Windows XP,
-branch => Trunk,
-buildid => 2006061314,
-buildtype => debug cvs,
-locale => en-US);
my $result = Test::Litmus::Result->new(
-isAutomatedResult => 1, # optional
-testid => 27,
-resultstatus => pass, # valid results are pass
# or fail
-exitstatus => 0,
-duration => 666,
-timestamp => 20051111150944, # optional (default: current time)
-comment => optional comment here, # optional
-bugnumber => 300010, # optional
-log => [Test::Litmus::Log->new( # optional
-type => STDOUT,
-data => foobar),
Test::Litmus::Log->new(
-type => Extensions Installed,
-data => log information here)]
);
$t->addResult($result);
# $t->addResult($someOtherResult);
# etc...
# add log information that should be linked with
# all results (i.e. env variables, config info)
$t->addLog(Test::Litmus::Log->new(
-type => STDOUT,
-data => log data));
my $res = $t->submit();
# $res is 0 for non-fatal errors (some results were submitted), and
# undef for fatal errors (no results were submitted successfully)
if ($t->errstr()) { die $t->errstr() }
Download (0.004MB)
Added: 2007-05-04 License: Perl Artistic License Price:
903 downloads
Yarssr 0.2.2
Yarssr is an RSS reader that displays its results in the notification area. more>>
Yet Another RSS Reader is an RSS aggregator and reader that displays its results in the GNOME notification area.
To view the contents of the feed just click the menu-item and it will launch in your favorite browser. It is written in Perl and uses gtk2-perl for its interface.
<<lessTo view the contents of the feed just click the menu-item and it will launch in your favorite browser. It is written in Perl and uses gtk2-perl for its interface.
Download (0.025MB)
Added: 2005-07-28 License: GPL (GNU General Public License) Price:
1549 downloads
AppsUnit 0.1
AppsUnit toolkit assists with the testing of your Oracle e-business suite code. more>>
AppsUnit toolkit assists with the testing of your Oracle e-business suite code. It tests views, PL/SQL packages, concurrent requests, and more.
No software needs to be installed on the application server. Results are made available as a PDF report.
Enhancements:
- The example test kit is available for download.
- The suite uses some of the apps foundation views as an example.
- These views are unit tested, and the results are available as HTML and PDF reports.
<<lessNo software needs to be installed on the application server. Results are made available as a PDF report.
Enhancements:
- The example test kit is available for download.
- The suite uses some of the apps foundation views as an example.
- These views are unit tested, and the results are available as HTML and PDF reports.
Download (0.035MB)
Added: 2006-11-01 License: Common Public License Price:
1088 downloads
Webminstats 0.10.6
Webminstats is a basic system static logging application that graphs the results. more>>
Webminstats is a basic system static logging application that graphs the results. Its first use is system analysis.
Currently it uses webmin as a base web server and tools package.
The basic design is for a system that can have modules add and removed as easily as webmin itself, well almost.
The current modules are cpu, custom, disk, filesopen, firewall, generic, internet, irq, lm_sensors, load, mem, mysql, network, ping, process, samba, services, snmp, snort, ups, users.
<<lessCurrently it uses webmin as a base web server and tools package.
The basic design is for a system that can have modules add and removed as easily as webmin itself, well almost.
The current modules are cpu, custom, disk, filesopen, firewall, generic, internet, irq, lm_sensors, load, mem, mysql, network, ping, process, samba, services, snmp, snort, ups, users.
Download (0.13MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
812 downloads
SQLBuster 0.95
SQLBuster project is a simple MySQL benchmarking utility. more>>
SQLBuster project is a simple MySQL benchmarking utility that runs a query a specified number of times over a given number of threads and displays how long it took.
Enhancements:
- An option to report various statistics to a results file has been added.
- This release provides more end of run statistics, such as CPU percentage, I/O wait, and disk reads/writes.
<<lessEnhancements:
- An option to report various statistics to a results file has been added.
- This release provides more end of run statistics, such as CPU percentage, I/O wait, and disk reads/writes.
Download (0.009MB)
Added: 2007-05-10 License: GPL (GNU General Public License) Price:
900 downloads
feresPost 2.9.8
feresPost is a Ruby extension that provides the definition of classes and modules. more>>
feresPost is a Ruby extension that provides the definition of classes and modules devoted to the development of automated post-processing for Nastran finite element results.
feresPost library allows easy manipulation of finite element models, groups, and results. Efficient post-processing is possible because the time-consuming operations are written in C/C++.
Enhancements:
- Bugs in the reading of xdb and bdf files have been fixed.
- The classes devoted to the composite calculations were reorganized.
<<lessferesPost library allows easy manipulation of finite element models, groups, and results. Efficient post-processing is possible because the time-consuming operations are written in C/C++.
Enhancements:
- Bugs in the reading of xdb and bdf files have been fixed.
- The classes devoted to the composite calculations were reorganized.
Download (0.26MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
809 downloads
Deska 0.6.0
Deska project is a graphical representation of chess games from PGN files. more>>
Deska project is a graphical representation of chess games from PGN files.
Deska provides graphical representations of chess games from PGN files.
It can load chess games from big PGN-files, edit and save games, use Crafty or Phalanx for analysis, search by players, events, or results, provide different board styles, etc.
<<lessDeska provides graphical representations of chess games from PGN files.
It can load chess games from big PGN-files, edit and save games, use Crafty or Phalanx for analysis, search by players, events, or results, provide different board styles, etc.
Download (0.21MB)
Added: 2007-01-12 License: GPL (GNU General Public License) Price:
1015 downloads
NetMath 0.1
NetMath project is a web browser which allows Web pages to contain modifiable calculations. more>>
NetMath project is a web browser which allows Web pages to contain modifiable calculations.
It has built-in plotting engines and the ability to communicate with computation servers.
This makes it possible to do local graphics, zooming and panning, while taking advantage of sophisticated computational programs.
Documents contain active and editable items, and the results of computations appear in the document.
Main features:
- :expand((x+y+z)^5) gives Result.
- factor(f) (the value f above is maintained) evaluates to Result.
- 500! produces Result
- factor(154784717804734665298299) produces a list of factors and multiplicities Result
<<lessIt has built-in plotting engines and the ability to communicate with computation servers.
This makes it possible to do local graphics, zooming and panning, while taking advantage of sophisticated computational programs.
Documents contain active and editable items, and the results of computations appear in the document.
Main features:
- :expand((x+y+z)^5) gives Result.
- factor(f) (the value f above is maintained) evaluates to Result.
- 500! produces Result
- factor(154784717804734665298299) produces a list of factors and multiplicities Result
Download (0.35MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1088 downloads
Serp EasySurf 1.1.4
Serp EasySurf provides an easy to use extention that makes some modification in search engines result pages. more>>
Serp EasySurf provides an easy to use extention that makes some modification in search engines result pages.
An easy to use extention that makes some modification in search engines result pages (Google, MSN, Yahoo) and makes surfing in search engines easier!. Features: show numeration, add hotkeys, show results per page select, set|remove omitted results...
An easy to use extention that makes some modification in search engines result pages (Google, MSN, Yahoo) and makes surfing in search engines easier!. Features: show numeration, add hotkeys, show results per page select, set|remove omitted results filter.
<<lessAn easy to use extention that makes some modification in search engines result pages (Google, MSN, Yahoo) and makes surfing in search engines easier!. Features: show numeration, add hotkeys, show results per page select, set|remove omitted results...
An easy to use extention that makes some modification in search engines result pages (Google, MSN, Yahoo) and makes surfing in search engines easier!. Features: show numeration, add hotkeys, show results per page select, set|remove omitted results filter.
Download (0.012MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
945 downloads
SLmon 0.5.13
SLmon is a tool for monitoring systems performance. more>>
SLmon is a tool for monitoring systems performance. It displays results using nice and (hopefully) readable text-based UI. Currently monitored are:
- CPU load (SMP is supported)
- network interfaces
- memory (including swap)
- uptime, date and time
- number of logged in users
- mounted filesystems
- processes
<<less- CPU load (SMP is supported)
- network interfaces
- memory (including swap)
- uptime, date and time
- number of logged in users
- mounted filesystems
- processes
Download (0.10MB)
Added: 2005-10-17 License: GPL (GNU General Public License) Price:
1469 downloads
phpESP 1.8.2
phpESP is a set of PHP scripts to let non-technical users create surveys, administer surveys, gather results and view statistics more>>
phpESP is a set of PHP scripts to let non-technical users create surveys, administer surveys, gather results, and view statistics, all managed online after database initialization with a MySQL database backend.
Enhancements:
- FIXED problems with adding/deleting respondents/designers
- FIXED display issues when previewing surveys.
- FIXED ADODB SQL INJECT issue.
<<lessEnhancements:
- FIXED problems with adding/deleting respondents/designers
- FIXED display issues when previewing surveys.
- FIXED ADODB SQL INJECT issue.
Download (0.91MB)
Added: 2006-05-25 License: BSD License Price:
1249 downloads
WWW::IstanbulTeknik::Schedules 0.01
WWW::IstanbulTeknik::Schedules is a Perl interface to ITU-SIS schedules. more>>
WWW::IstanbulTeknik::Schedules is a Perl interface to ITU-SIS schedules.
SYNOPSIS
use WWW::IstanbulTeknik::SIS::Schedules;
my $crn = WWW::IstanbulTeknik::SIS::Schedules->new;
my @all_ata = $crn->parse(ata); # get all ata lessons
my @results = $crn->find_crn([30088, 30090]); # get only these CRNs
my @title = $crn->crn_title; # get titles
Gets the course schedules from ITU-SIS and parses them. You can also search within the parsed structures to filter the results.
<<lessSYNOPSIS
use WWW::IstanbulTeknik::SIS::Schedules;
my $crn = WWW::IstanbulTeknik::SIS::Schedules->new;
my @all_ata = $crn->parse(ata); # get all ata lessons
my @results = $crn->find_crn([30088, 30090]); # get only these CRNs
my @title = $crn->crn_title; # get titles
Gets the course schedules from ITU-SIS and parses them. You can also search within the parsed structures to filter the results.
Download (0.012MB)
Added: 2007-08-20 License: Perl Artistic License Price:
795 downloads
KeywordXS 0.2
KeywordXS is a small tool to get keywords for specified search terms. more>>
KeywordXS is a small tool to get keywords for specified search terms. KeywordXS will simply query a given search term and display the associated results.
It uses the Internet so that all the keywords are top actual.
<<lessIt uses the Internet so that all the keywords are top actual.
Download (0.043MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1074 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 results pk 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