Searched defs:fork (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/lang/ref/
H A DNullQueue.java54 private static void fork(Runnable proc) throws InterruptedException { method in class:NullQueue
69 fork(new Runnable() {
H A DBasic.java57 static void fork(Runnable proc) throws InterruptedException { method in class:Basic
64 fork(new Runnable() {
75 fork(new Runnable() {
85 fork(new Runnable() {
118 fork(new Runnable() {
/openjdk7/langtools/make/tools/GenStubs/
H A DGenStubs.java89 * of "all files". The Ant task also accepts "fork=true" and classpath attribute
336 private boolean fork; field in class:GenStubs.Ant
349 this.fork = v;
396 if (!fork) {
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinTask.java70 * {@link #fork} and {@link #join}, or derivatives such as {@link
74 * support of new forms of fork/join processing.
81 * primary coordination mechanisms are {@link #fork}, that arranges
87 * cooperate with fork/join scheduling. Tasks should also not perform
112 * equivalent to {@code fork(); join()} but always attempts to begin
135 * particular style of fork/join processing, typically {@link
162 * creating new basic styles of fork/join processing should minimally
605 * necessarily enforced, it is a usage error to fork a task more
621 public final ForkJoinTask<V> fork() { method in class:ForkJoinTask
684 t2.fork();
[all...]

Completed in 3291 milliseconds