Searched defs:parallelism (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DExecutors.java68 * the given parallelism level, and may use multiple queues to
69 * reduce contention. The parallelism level corresponds to the
76 * @param parallelism the targeted parallelism level
78 * @throws IllegalArgumentException if {@code parallelism <= 0}
82 public static ExecutorService newWorkStealingPool(int parallelism) { argument
84 (parallelism,
92 * as its target parallelism level.
H A DForkJoinPool.java50 * ForkJoinPool} may be constructed with a given target parallelism
107 * <li>{@code java.util.concurrent.ForkJoinPool.common.parallelism}
108 * - the parallelism level, a non-negative integer
117 * the common pool by setting the parallelism property to zero, and/or
242 * packing, we restrict maximum parallelism to (1<<15)-1 (which is
328 * the given parallelism level -- signalWork). These primary
345 * parallelism, longer as the number of threads decreases. This
420 * It is impossible to keep exactly the target parallelism number
456 * common pool parallelism level to one (or more) less than the
1081 * Common pool parallelism
1231 final short parallelism; // parallelism level field in class:ForkJoinPool
2380 ForkJoinPool(int parallelism) argument
2404 ForkJoinPool(int parallelism, ForkJoinWorkerThreadFactory factory, UncaughtExceptionHandler handler, boolean asyncMode) argument
2416 checkParallelism(int parallelism) argument
2434 ForkJoinPool(int parallelism, ForkJoinWorkerThreadFactory factory, UncaughtExceptionHandler handler, int mode, String workerNamePrefix) argument
[all...]

Completed in 30 milliseconds