Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 153 of 153 for InterruptedException (3.78 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

          client
            .newBuilder()
            .addNetworkInterceptor(
              Interceptor { chain: Interceptor.Chain ->
                try {
                  latch.await()
                } catch (e: InterruptedException) {
                  throw AssertionError(e)
                }
                chain.proceed(chain.request())
              },
            ).build()
        val call = client.newCall(Request(server.url("/a")))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val authenticator =
          okhttp3.Authenticator { route: Route?, response: Response? ->
            responses.offer(response!!.body.string())
            try {
              latch.await()
            } catch (e: InterruptedException) {
              throw AssertionError()
            }
            response.request
          }
        val blockingAuthClient =
          client
            .newBuilder()
            .authenticator(authenticator)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 73.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                executor.submit(
                    waiter.waitFor(
                        new Callable<TestCloseable>() {
                          @Override
                          public TestCloseable call() throws InterruptedException {
                            awaitUninterruptibly(futureCancelled);
                            return closeable1;
                          }
                        })),
                closingExecutor);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 75.4K bytes
    - Viewed (0)
Back to top