Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for connectionTimeout (0.12 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            }
        }
    
        /**
         * Sets the connection timeout in milliseconds.
         *
         * @param connectionTimeout The connection timeout
         */
        public void setConnectionTimeout(final Integer connectionTimeout) {
            this.connectionTimeout = connectionTimeout;
        }
    
        /**
         * Sets the maximum total number of connections.
         *
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 53.7K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

        // Confirm that the connection was reused.
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(0)
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(1)
      }
    
      @Test
      fun connectionTimeout() {
        server.enqueue(
          MockResponse
            .Builder()
            .body("A")
            .bodyDelay(1, TimeUnit.SECONDS)
            .build(),
        )
        val client1 =
          client
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 67.4K bytes
    - Viewed (0)
Back to top