- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 26 for 503 (0.02 sec)
-
okhttp/src/test/java/okhttp3/CallTest.kt
MockResponse( code = 503, headers = headersOf( "Connection", "Close", "Retry-After", "0", ), body = "You took too long!", socketPolicy = DisconnectAtEnd, ), ) server.enqueue( MockResponse( code = 503, headers = headersOf(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 142.5K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
internal/s3select/unused-errors.go
// ////////////////////////////////////////////////////////////////////// func errBusy(err error) *s3Error { return &s3Error{ code: "Busy", message: "The service is unavailable. Please retry.", statusCode: 503, cause: err, } } func errUnauthorizedAccess(err error) *s3Error { return &s3Error{ code: "UnauthorizedAccess", message: "You are not authorized to perform this operation",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Feb 20 08:16:35 UTC 2024 - 17.5K bytes - Viewed (0) -
kotlin-js-store/yarn.lock
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jul 22 12:28:51 UTC 2023 - 87.4K bytes - Viewed (0) -
cmd/storage-rest-client.go
} } if errors.Is(err, grid.ErrDisconnected) { return true } // More corner cases suitable for storage REST API switch { // A peer node can be in shut down phase and proactively // return 503 server closed error, consider it as an offline node case strings.Contains(err.Error(), http.ErrServerClosed.Error()): return true // Corner case, the server closed the connection with a keep-alive timeout
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 13:07:21 UTC 2024 - 30.2K bytes - Viewed (0) -
index.yaml
maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio urls: - https://charts.min.io/helm-releases/minio-5.0.3.tgz version: 5.0.3 - apiVersion: v1 appVersion: RELEASE.2022-12-12T19-27-27Z created: "2024-10-11T14:15:09.779616018+02:00" description: Multi-Cloud Object Storage
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 11 12:21:05 UTC 2024 - 54.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/OrderingTest.java
assertEquals(4, numberOrdering.binarySearch(ints, 7)); } public void testSortedCopy() { List<@Nullable Integer> unsortedInts = unmodifiableList(Arrays.<@Nullable Integer>asList(5, 0, 3, null, 0, 9)); List<@Nullable Integer> sortedInts = numberOrdering.nullsLast().sortedCopy(unsortedInts); assertEquals(Arrays.<@Nullable Integer>asList(0, 0, 3, 5, 9, null), sortedInts);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 42.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/OrderingTest.java
assertEquals(4, numberOrdering.binarySearch(ints, 7)); } public void testSortedCopy() { List<@Nullable Integer> unsortedInts = unmodifiableList(Arrays.<@Nullable Integer>asList(5, 0, 3, null, 0, 9)); List<@Nullable Integer> sortedInts = numberOrdering.nullsLast().sortedCopy(unsortedInts); assertEquals(Arrays.<@Nullable Integer>asList(0, 0, 3, 5, 9, null), sortedInts);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 42.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CacheTest.kt
assertCached(false, 416) assertCached(false, 417) assertCached(false, 418) assertCached(false, 500) assertCached(true, 501) assertCached(false, 502) assertCached(false, 503) assertCached(false, 504) assertCached(false, 505) assertCached(false, 506) } @Test fun responseCachingWith1xxInformationalResponse() { assertSubsequentResponseCached(102, 200)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 108.6K bytes - Viewed (0) -
cmd/iam.go
loadUserCalled = true u, ok = sys.store.GetUser(accessKey) } if !ok && loadUserCalled && err != nil { iamLogOnceIf(ctx, err, accessKey) // return 503 to application return u, false, errIAMNotInitialized } return u, ok && u.Credentials.IsValid(), nil } // GetUser - get user credentials
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0)