Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for CancellationException (0.08 seconds)

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

        assertThat(expected.getCause()).isEqualTo(exception);
      }
    
      public void testImmediateFailedFuture_cancellationException() throws Exception {
        CancellationException exception = new CancellationException();
        ListenableFuture<String> future = immediateFailedFuture(exception);
        assertFalse(future.isCancelled());
        assertThat(future.toString()).endsWith("[status=FAILURE, cause=[" + exception + "]]");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 134K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertThat(expected.getCause()).isEqualTo(exception);
      }
    
      public void testImmediateFailedFuture_cancellationException() throws Exception {
        CancellationException exception = new CancellationException();
        ListenableFuture<String> future = immediateFailedFuture(exception);
        assertFalse(future.isCancelled());
        assertThat(future.toString()).endsWith("[status=FAILURE, cause=[" + exception + "]]");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 134K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

    import java.lang.reflect.Method;
    import java.util.IdentityHashMap;
    import java.util.Map;
    import java.util.Set;
    import java.util.concurrent.Callable;
    import java.util.concurrent.CancellationException;
    import java.util.concurrent.CountDownLatch;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.Executor;
    import java.util.concurrent.Future;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 101.7K bytes
    - Click Count (0)
  4. okhttp/src/androidMain/baseline-prof.txt

    PLkotlinx/coroutines/JobImpl;->getOnCancelComplete$kotlinx_coroutines_core()Z
    PLkotlinx/coroutines/JobKt;->cancel$default(Lkotlin/coroutines/CoroutineContext;Ljava/util/concurrent/CancellationException;ILjava/lang/Object;)V
    PLkotlinx/coroutines/JobSupport$Finishing;-><init>(Lkotlinx/coroutines/NodeList;ZLjava/lang/Throwable;)V
    PLkotlinx/coroutines/JobSupport$Finishing;->addExceptionLocked(Ljava/lang/Throwable;)V
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Dec 30 23:28:56 GMT 2024
    - 127.9K bytes
    - Click Count (1)
Back to Top