Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for completeExceptionally (0.08 sec)

  1. regression-test/src/androidTest/java/okhttp/regression/compare/AndroidHttpEngineTest.kt

                ) {
                  println("onSucceeded ${info?.headers?.asMap}")
                  completableFuture.completeExceptionally(error)
                }
    
                override fun onCanceled(
                  request: UrlRequest,
                  info: UrlResponseInfo?,
                ) {
                  completableFuture.completeExceptionally(CancellationException())
                }
              },
            ).setPriority(REQUEST_PRIORITY_MEDIUM)
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/SocketChannelTest.kt

        val call = client.newCall(request)
        call.enqueue(
          object : Callback {
            override fun onFailure(
              call: Call,
              e: IOException,
            ) {
              promise.completeExceptionally(e)
            }
    
            override fun onResponse(
              call: Call,
              response: Response,
            ) {
              promise.complete(response)
            }
          },
        )
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. okhttp/src/androidMain/baseline-prof.txt

    HSPLkotlinx/coroutines/CompletedContinuation;-><init>(Ljava/lang/Object;Lkotlinx/coroutines/CancelHandler;Lkotlin/jvm/functions/Function1;Ljava/lang/Object;Ljava/lang/Throwable;I)V
    HSPLkotlinx/coroutines/CompletedExceptionally;-><clinit>()V
    HSPLkotlinx/coroutines/CompletedExceptionally;-><init>(Ljava/lang/Throwable;ZI)V
    HSPLkotlinx/coroutines/CompletionHandlerBase;-><init>()V
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Mon Dec 30 23:28:56 UTC 2024
    - 127.9K bytes
    - Viewed (1)
Back to top