Java Parallel Processing Framework 1.3 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Java Parallel Processing Framework 1.3 (Default branch)
# 1  
Old 06-17-2008
Java Parallel Processing Framework 1.3 (Default branch)

Image JPPF is a computational grid framework for Java focused on performance and ease of use. It provides a set of tools and APIs to enable the parallelization of CPU intensive applications, and distribute their execution over a network of heterogenous nodes. It features platform independence thanks to Java 1.5, does not require you to deploy your application classes to a server, scales up to millions of nodes, has a built-in fail-over mechanism on all the framework's components, and has a monitoring and administration GUI tool to enable remote monitoring of the server health and server shutdown/restart operations. License: The Apache License 2.0 Changes:
A critical bug that caused the server to freeze unexpectedly was resolved. A packaging issue was fixed for the Tomcat port. The administration and monitoring console now comes as a separate standalone package. The server now stores on file any data too large to fit in memory. A new abstraction model for IO operations brings a smaller footprint and a performance gain up to 15%. JPPF library files now include version and build information.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
native2ascii(1) 					      General Commands Manual						   native2ascii(1)

NAME
native2ascii - native to ASCII converter SYNOPSIS
native2ascii [ options ] [ inputfile [outputfile]] DESCRIPTION
The Java compiler and other Java tools can only process files that contain Latin-1 or Unicode-encoded (udddd notation) characters. native2ascii converts files that contain other character encoding into files containing Latin-1 or Unicode-encoded charaters. If outputfile is omitted, standard output is used for output. In addition, if inputfile is omitted, standard input is used for input. OPTIONS
The following options are supported: -encoding encoding_name Specifies the encoding name that is used by the conversion procedure. The default encoding is taken from system property file.encod- ing. The encoding_name string must be one taken from the first column of the table of supported encodings in the Supported Encodings document: http://java.sun.com/j2se/1.5/docs/guide/intl/encoding.doc.html -reverse Performs the reverse operation: converts a file with Latin-1 or Unicode-encoded characters to one with native-encoded characters. -Joption Pass option to the Java virtual machine, where option is one of the options described on the man page for the java applica- tion launcher, java(1). For example, -J-Xms48m sets the startup memory to 48 megabytes. It is a common convention for -J to pass options to the underlying virtual machine. 22 Jun 2004 native2ascii(1)