Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for warn (0.15 sec)

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

            .that(step1.statusFuture().isCancelled())
            .isFalse();
        // But its closeable is closed.
        assertClosed(closeable1);
    
        // Step 2 is cancelled because it wasn't complete.
        assertWithMessage("step2.statusFuture().isCancelled()")
            .that(step2.statusFuture().isCancelled())
            .isTrue();
        // Its closeable is closed.
        assertClosed(closeable2);
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 74.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

       * use with getUnchecked. Further, it's not clear that converting the checked TimeoutException to
       * a RuntimeException -- especially to an UncheckedExecutionException, since it wasn't thrown by
       * the computation -- makes sense, and if we don't convert it, the user still has to write a
       * try-catch block.
       *
       * If you think you would use this method, let us know. You might also look into the
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
Back to top