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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java144 * method {@link #allowCoreThreadTimeOut(boolean)} can be used to
288 * setting {@link #allowCoreThreadTimeOut(boolean)}. </dd>
542 * present or if allowCoreThreadTimeOut. Otherwise they wait
552 private volatile boolean allowCoreThreadTimeOut; field in class:ThreadPoolExecutor
556 * (and not allow to time out etc) unless allowCoreThreadTimeOut
1037 int min = allowCoreThreadTimeOut ? 0 : corePoolSize;
1057 * {@code allowCoreThreadTimeOut || workerCount > corePoolSize})
1080 boolean timed = allowCoreThreadTimeOut || wc > corePoolSize;
1198 * if they are idle, unless {@code allowCoreThreadTimeOut} is set
1229 * if they are idle, unless {@code allowCoreThreadTimeOut} i
1669 public void allowCoreThreadTimeOut(boolean value) { method in class:ThreadPoolExecutor
[all...]

Completed in 5 milliseconds