Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for soTimeout (0.31 sec)

  1. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

                props.setProperty("jcifs.smb.client.maxVersion", "SMB311");
                props.setProperty("jcifs.smb.client.responseTimeout", "30000");
                props.setProperty("jcifs.smb.client.soTimeout", "35000");
    
                // Create a new configuration and context
                Configuration config = new PropertyConfiguration(props);
                BaseContext baseContext = new BaseContext(config);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                    ssn.auth = auth;
                    return ssn;
                }
            }
    
            /* logoff old sessions */
            if (SO_TIMEOUT > 0 && sessionExpiration < (now = System.currentTimeMillis())) {
                sessionExpiration = now + SO_TIMEOUT;
                iter = sessions.listIterator();
                while (iter.hasNext()) {
                    ssn = (SmbSession) iter.next();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/WholeOperationTimeoutTest.kt

          call.execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("timeout")
          assertThat(call.isCanceled()).isTrue()
        }
      }
    
      @Flaky
      @Test
      fun noTimeout() {
        // Flaky https://github.com/square/okhttp/issues/5304
        server.enqueue(
          MockResponse
            .Builder()
            .headersDelay(250, TimeUnit.MILLISECONDS)
            .body(BIG_ENOUGH_BODY)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbSession.java

            synchronized (transport()) {
                if (response != null) {
                    response.received = false;
                }
    
                expiration = System.currentTimeMillis() + SmbConstants.SO_TIMEOUT;
                sessionSetup(request, response);
                if (response != null && response.received) {
                    return;
                }
    
                if (request instanceof final SmbComTreeConnectAndX tcax) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
Back to top