Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NPETask (0.06 sec)

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

      public void testInvokeAnyImpl_noTaskCompletes() throws Exception {
        ListeningExecutorService e = newDirectExecutorService();
        List<Callable<String>> l = new ArrayList<>();
        l.add(new NPETask());
        try {
          invokeAnyImpl(e, l, false, 0, NANOSECONDS);
          fail();
        } catch (ExecutionException success) {
          assertThat(success).hasCauseThat().isInstanceOf(NullPointerException.class);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

      public void testInvokeAnyImpl_noTaskCompletes() throws Exception {
        ListeningExecutorService e = newDirectExecutorService();
        List<Callable<String>> l = new ArrayList<>();
        l.add(new NPETask());
        try {
          invokeAnyImpl(e, l, false, 0, NANOSECONDS);
          fail();
        } catch (ExecutionException success) {
          assertThat(success).hasCauseThat().isInstanceOf(NullPointerException.class);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //             if (millisElapsedSince(startTime) > timeoutMillis)
      //                 throw new AssertionFailedError("timed out");
      //             Thread.yield();
      //         }
      //     }
    
      public static class NPETask implements Callable<String> {
        @Override
        public String call() {
          throw new NullPointerException();
        }
      }
    
      public static class CallableOne implements Callable<Integer> {
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //             if (millisElapsedSince(startTime) > timeoutMillis)
      //                 throw new AssertionFailedError("timed out");
      //             Thread.yield();
      //         }
      //     }
    
      public static class NPETask implements Callable<String> {
        @Override
        public String call() {
          throw new NullPointerException();
        }
      }
    
      public static class CallableOne implements Callable<Integer> {
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top