File: control

package info (click to toggle)
libjsr166y-java 0.1.20080107-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 904 kB
  • ctags: 2,811
  • sloc: java: 11,474; xml: 13; sh: 11; makefile: 8
file content (29 lines) | stat: -rw-r--r-- 1,262 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Source: libjsr166y-java
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Miguel Landaeta <miguel@miguel.cc>
Section: java
Priority: optional
Build-Depends: debhelper (>= 7.0.50), default-jdk, javahelper
Standards-Version: 3.9.1
Homepage: http://svn.codehaus.org/coconut/forkjoin/trunk/jsr166y/
Vcs-Git: git://git.debian.org/git/pkg-java/libjsr166y-java.git
Vcs-Browser: http://git.debian.org/?p=pkg-java/libjsr166y-java.git

Package: libjsr166y-java
Architecture: all
Depends: ${misc:Depends}
Description: Parallel computation framework for Java
 Java framework that supports a style of parallel programming
 in which problems are solved by (recursively) splitting them
 into subtasks that are solved in parallel, waiting for them
 to complete, and then composing results.
 .
 Fork/Join parallelism is among the simplest and most
 effective design techniques for obtaining good parallel
 performance.  Fork/Join algorithms are parallel versions
 of familiar divide-and-conquer algorithms.
 .
 JSR166y includes a parallel computation framework:
 ForkJoinTasks and their related support classes provide a
 very efficient basis for obtaining platform-independent
 parallel speed-ups of computation-intensive operations.