We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60cc004 commit 655f417Copy full SHA for 655f417
1 file changed
JavaReleases/src/test/java/pl/mperor/lab/java/Java7.java
@@ -118,6 +118,7 @@ public void testNewInputOutputV2AkaNIO2() throws IOException {
118
public void testForkJoinFibonacci() {
119
int proc = Runtime.getRuntime().availableProcessors();
120
ForkJoinPool pool = ForkJoinPool.commonPool();
121
+ System.out.printf("ForkJoinPool parallelism size: 🥚[%s]%n", pool.getParallelism());
122
Assertions.assertEquals(proc - 1, pool.getParallelism());
123
124
int[] fibonacciResults = {0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55};
0 commit comments