Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testListeningExecutorServiceInvokeAllJavadocCodeCompiles (0.23 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

        ExecutorService executor = newDirectExecutorService();
        executor.shutdown();
        assertThrows(RejectedExecutionException.class, () -> executor.execute(() -> {}));
      }
    
      public <T> void testListeningExecutorServiceInvokeAllJavadocCodeCompiles() throws Exception {
        ListeningExecutorService executor = newDirectExecutorService();
        List<Callable<T>> tasks = ImmutableList.of();
        List<? extends Future<?>> unused = executor.invokeAll(tasks);
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 12 00:25:21 GMT 2025
    - 26.5K bytes
    - Click Count (0)
Back to Top