- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 213 for refused (0.07 sec)
-
internal/rest/client.go
- const DefaultTimeout = 10 * time.Second
- const (
- offline = iota
- online
- closed
- )
- // NetworkError - error type in case of errors related to http/transport
- // for ex. connection refused, connection reset, dns resolution failure etc.
- // All errors returned by storage-rest-server (ex errFileNotFound, errDiskNotFound) are not considered to be network errors.
- type NetworkError struct {
- Err error
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 26 12:55:01 UTC 2024 - 14.7K bytes - Viewed (0) -
mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt
- val refusedConnection = url.openConnection() as HttpURLConnection
- assertFailsWith<ConnectException> {
- refusedConnection.getResponseCode()
- }.also { expected ->
- assertThat(expected.message!!).contains("refused")
- }
- }
- @Test
- fun http100Continue() {
- server.enqueue(MockResponse().setBody("response"))
- val url = server.url("/").toUrl()
- val connection = url.openConnection() as HttpURLConnection
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 21.9K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt
- val refusedConnection = url.openConnection() as HttpURLConnection
- assertFailsWith<ConnectException> {
- refusedConnection.responseCode
- }.also { expected ->
- assertThat(expected.message!!).contains("refused")
- }
- }
- @Test
- fun http100Continue() {
- server.enqueue(
- MockResponse.Builder()
- .body("response")
- .build(),
- )
- val url = server.url("/").toUrl()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 23.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.7.md
- * Retry 'connection refused' errors when setting up clusters on GCE. ([#57394](https://github.com/kubernetes/kubernetes/pull/57394), [@mborsz](https://github.com/mborsz))
- * Retry 'connection refused' errors when setting up clusters on GCE. ([#57394](https://github.com/kubernetes/kubernetes/pull/57394), [@mborsz](https://github.com/mborsz))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 308.7K bytes - Viewed (1) -
okhttp/src/test/java/okhttp3/SessionReuseTest.kt
- }
- client.connectionPool.evictAll()
- assertEquals(0, client.connectionPool.connectionCount())
- // Force reuse. This appears flaky (30% of the time) even though sessions are reused.
- // javax.net.ssl.SSLHandshakeException: No new session is allowed and no existing
- // session can be resumed
- //
- // Report https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8264944
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.10.md
- * Use old dns-ip mechanism with older cdk-addons. ([#57403](https://github.com/kubernetes/kubernetes/pull/57403), [@wwwtyro](https://github.com/wwwtyro))
- * Retry 'connection refused' errors when setting up clusters on GCE. ([#57394](https://github.com/kubernetes/kubernetes/pull/57394), [@mborsz](https://github.com/mborsz))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 341.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Connection.kt
- * negotiate HTTP/2.
- *
- * Unfortunately, older HTTPS servers refuse to connect when such options are presented. Rather than
- * avoiding these options entirely, this class allows a connection to be attempted with modern
- * options and then retried without them should the attempt fail.
- *
- * ## Connection Reuse
- *
- * Each connection can carry a varying number of streams, depending on the underlying protocol being
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 4.3K bytes - Viewed (0) -
internal/grid/README.md
- The wrapper will handle all serialization and de-seralization of the request and response,
- and furthermore provides reuse of the structs used for the request and response.
- Note that Responses sent for serialization are automatically reused for similar requests.
- If the response contains shared data it will cause issues, since each unique response is reused.
- To disable this behavior, use `(SingleHandler).WithSharedResponse()` to disable it.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 9.4K bytes - Viewed (0) -
docs/contribute/concurrency.md
- Since HTTP requests frequently happen in parallel, connection pooling must be thread-safe.
- These are the primary classes involved with establishing, sharing, and terminating connections:
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 16:35:36 UTC 2022 - 7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.16.md
- - Fixes a bug that when there is a "connection refused" error, the reflector's ListAndWatch func will return directly but what expected is that sleep 1 second and rewatch since the specified resourceVersion.
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 11 10:00:57 UTC 2021 - 345.2K bytes - Viewed (0)