- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 623 for unsuccessful (0.16 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/connection/FailedPlan.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3.internal.connection /** * Used when we were unsuccessful in the planning phase of a connection: * * * A DNS lookup failed * * The configuration is incapable of carrying the request, such as when the client is configured
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 1.5K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt
} } // TODO GET preferred order - with tests to confirm this // 1. successful fresh cached GET response // 2. unsuccessful (404, 500) fresh cached GET response // 3. successful network response // 4. successful stale cached GET response // 5. unsuccessful response @Test fun usesCache() { val cache = Cache(cacheFs, "cache".toPath(), (100 * 1024).toLong())
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 11K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/FastFallbackTest.kt
serverIpv4.shutdown() serverIpv6.shutdown() val call = client.newCall(Request(url)) assertFailsWith<IOException> { call.execute() } // In the process we made two unsuccessful connection attempts. assertThat(listener.recordedEventTypes().filter { it == "ConnectStart" }).hasSize(2) assertThat(listener.recordedEventTypes().filter { it == "ConnectFailed" }).hasSize(2) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.3K bytes - Viewed (0) -
src/bytes/buffer_test.go
} // check not at EOF b.WriteString("abcdefghijklmnopqrstuvwxyz") // after unsuccessful read if n, err := b.Read(nil); n != 0 || err != nil { t.Fatalf("Read(nil) = %d,%v; want 0,nil", n, err) } if err := b.UnreadByte(); err == nil { t.Fatal("UnreadByte after Read(nil): got no error") } // after successful read if _, err := b.ReadBytes('m'); err != nil { t.Fatalf("ReadBytes: %v", err) }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Sep 03 20:55:15 UTC 2024 - 18.6K bytes - Viewed (0) -
doc/go_mem.html
</p> <p class="rule"> A successful call to <code>l.TryLock</code> (or <code>l.TryRLock</code>) is equivalent to a call to <code>l.Lock</code> (or <code>l.RLock</code>). An unsuccessful call has no synchronizing effect at all. As far as the memory model is concerned, <code>l.TryLock</code> (or <code>l.TryRLock</code>)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Mar 04 15:54:42 UTC 2024 - 26.6K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
* Fix: Correctly canonicalize IPv6 addresses in `HttpUrl`. This prevented OkHttp from trusting HTTPS certificates issued to certain IPv6 addresses. * Fix: Don't reuse connections after an unsuccessful `Expect: 100-continue`. * Fix: Handle either `TLS_` or `SSL_` prefixes for cipher suite names. This is necessary for IBM JVMs that use the `SSL_` prefix exclusively.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
cmd/api-errors.go
HTTPStatusCode: http.StatusBadRequest, }, ErrAdminConfigNotificationTargetsFailed: { Code: "XMinioAdminNotificationTargetsTestFailed", Description: "Configuration update failed due an unsuccessful attempt to connect to one or more notification servers", HTTPStatusCode: http.StatusBadRequest, }, ErrAdminProfilerNotEnabled: { Code: "XMinioAdminProfilerNotEnabled",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 92.1K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
<type>String</type> </field> <field> <name>notifiers</name> <version>4.0.0+</version> <description>Configuration for notifying developers/users when a build is unsuccessful, including user information and notification mode.</description> <association> <multiplicity>*</multiplicity> <type>Notifier</type> </association>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 115.1K bytes - Viewed (0) -
build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt
""" include(":failed-test-with-leftover") include(":successful-test-with-leftover") include(":failed-report-with-leftover") include(":flaky-test-with-leftover") include(":flaky-test-without-leftover") include(":successful-report") """.trimIndent() ) fun File.writeFlakyTest(fail: Boolean) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 14 12:35:52 UTC 2023 - 10.6K bytes - Viewed (0) -
tests/test_response_by_alias.py
"summary": "Read Dict", "operationId": "read_dict_dict_get", "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {"$ref": "#/components/schemas/Model"}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 11.1K bytes - Viewed (0)