Main > Free Download Search >

Free jce results software for linux

jce results

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2010
Data::BenchmarkResults 0.01

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);

<<less
Download (0.009MB)
Added: 2007-08-16 License: Perl Artistic License Price:
799 downloads
feresPost 2.9.8

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.
<<less
Download (0.26MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
809 downloads
Yahoo::Search::Result 1.5.8

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().

<<less
Download (0.034MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1194 downloads
Serp EasySurf 1.1.4

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.

<<less
Download (0.012MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
945 downloads
Database Functions 1.0

Database Functions 1.0


Database Functions is a PHP class that can be used to build and execute MySQL database queries. more>>
Database Functions is a PHP class that can be used to build and execute MySQL database queries.

It can build SELECT, INSERT, UPDATE and DELETE queries from lists of parameters and values.

The class can also execute the generated queries and retrieve the SELECT query results into associative arrays.

<<less
Download (MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
830 downloads
Lucene::Search::Highlight 0.01

Lucene::Search::Highlight 0.01


Lucene::Search::Highlight is a Perl module with highlight terms in Lucene search results. more>>
Lucene::Search::Highlight is a Perl module with highlight terms in Lucene search results.

SYNOPSIS

Load highlight classes into namespace

use Lucene::Search::Highlight;

Create Formatter and Query Scorer

my $formatter = new

Lucene::Search::Highlight::SimpleHTMLFormatter("< b >", "< /b >");

my $scorer = new

Lucene::Search::Highlight::QueryScorer($query);

Create Highlighter

my $highlighter = new

Lucene::Search::Highlight::Highlighter($formatter, $scorer);

Get best fragements with highlighted terms

my $fragement = $highlighter->getBestFragment($analyzer, $field, $text);

my $fragements = $highlighter->getBestFragments($analyzer, $field, $text, $num_fragements, $separator);

<<less
Download (0.006MB)
Added: 2007-04-03 License: Perl Artistic License Price:
936 downloads
Test::Litmus 0.03

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() }

<<less
Download (0.004MB)
Added: 2007-05-04 License: Perl Artistic License Price:
903 downloads
Webminstats 0.10.6

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.
<<less
Download (0.13MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
812 downloads
Decade 0.42

Decade 0.42


Decade is a tool for simulating rigid body dynamics. more>>
Decade is a tool for simulating rigid body dynamics. Decade can work as a standalone program.

Decade can also also work from the analysis of a SolidWorks assembly or a CATIA V5 product. Results are availables as text, graphs, and animation in SW and CATIA V5.

<<less
Download (1.5MB)
Added: 2006-03-16 License: GPL (GNU General Public License) Price:
1322 downloads
jaxen 1.1.1

jaxen 1.1.1


jaxen is a universal XPath evaluation engine. more>>
jaxen is a universal XPath evaluation engine. jaxen is currently capable of executing XPath expressions against W3C DOM, JDOM, dom4j, and XOM document trees.
Enhancements:
- Assorted bugfixes, including one that affects the results of XPath expressions. Improved documentation.
<<less
Download (1.8MB)
Added: 2007-05-17 License: BSD License Price:
540 downloads
Yarssr 0.2.2

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.

<<less
Download (0.025MB)
Added: 2005-07-28 License: GPL (GNU General Public License) Price:
1549 downloads
AppsUnit 0.1

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.
<<less
Download (0.035MB)
Added: 2006-11-01 License: Common Public License Price:
1088 downloads
KeywordXS 0.2

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.

<<less
Download (0.043MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1074 downloads
SQLBuster 0.95

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.
<<less
Download (0.009MB)
Added: 2007-05-10 License: GPL (GNU General Public License) Price:
900 downloads
Picsearch Highlight 1.6

Picsearch Highlight 1.6


Picsearch Highlight allows you to conveniently search for images with text that you highlight. more>>
Picsearch Highlight allows you to conveniently search for images with text that you highlight.

Use this extension to conveniently search for images with text that you highlight. This is extremely useful for visualizing results for text phrases. Your search results pop open in a new tab. Very similar to the "Search Web For..." feature.

<<less
Download (0.006MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
930 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5