Searched refs:commonPool (Results 1 – 5 of 5) sorted by relevance
40 ForkJoinPool.commonPool().getParallelism()); in testCommonPoolParallelism()47 assertFalse(ForkJoinPool.commonPool().isShutdown()); in testCommonPoolShutDown()48 assertFalse(ForkJoinPool.commonPool().isTerminating()); in testCommonPoolShutDown()49 assertFalse(ForkJoinPool.commonPool().isTerminated()); in testCommonPoolShutDown()50 ForkJoinPool.commonPool().shutdown(); in testCommonPoolShutDown()51 assertFalse(ForkJoinPool.commonPool().isShutdown()); in testCommonPoolShutDown()52 assertFalse(ForkJoinPool.commonPool().isTerminating()); in testCommonPoolShutDown()53 assertFalse(ForkJoinPool.commonPool().isTerminated()); in testCommonPoolShutDown()54 ForkJoinPool.commonPool().shutdownNow(); in testCommonPoolShutDown()55 assertFalse(ForkJoinPool.commonPool().isShutdown()); in testCommonPoolShutDown()[all …]
693 if (!ForkJoinPool.commonPool() in checkForkJoinPoolThreadLeaks()
649 (ForkJoinPool.commonPool() == ForkJoinTask.getPool()));3364 Executor c = ForkJoinPool.commonPool(); in testDefaultExecutor()
405 ForkJoinPool.commonPool() : new ThreadPerTaskExecutor();417 if (!USE_COMMON_POOL && e == ForkJoinPool.commonPool()) in screenExecutor()
2722 public static ForkJoinPool commonPool() { in commonPool() method in ForkJoinPool