Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 247 of 247 for InterruptedException (0.13 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                                }
                                if (response.errorCode != 0) {
                                    checkStatus(req, resp);
                                }
                            } catch (final InterruptedException ie) {
                                throw new TransportException(ie);
                            } finally {
                                response_map.remove(req);
                            }
                        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/jcifs/smb/SmbFile.java

                            return this.treeHandle.acquire();
                        }
                        return this.treeHandle;
    
                    } catch (InterruptedException ie) {
                        Thread.currentThread().interrupt();
                        throw new SmbException("Connection retry interrupted", ie);
                    } catch (CIFSException retryException) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

                            return chainedResponse;
                        }
                        try {
                            this.transport.wait();
                        } catch (InterruptedException ie) {
                            throw new SmbException(ie.getMessage(), ie);
                        }
                    }
    
                    try {
                        trans.ensureConnected();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

                            }
                            while (!w.ready) {
                                try {
                                    w.wait();
                                } catch (final InterruptedException ie) {
                                    throw new SmbException(dest.url.toString(), ie);
                                }
                            }
                            if (w.e != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top