- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 1,357 for Failed (0.05 sec)
-
internal/kms/kms.go
ReqOK uint64 `json:"kms_req_success"` // Number of requests that succeeded ReqErr uint64 `json:"kms_req_error"` // Number of requests that failed with a defined error ReqFail uint64 `json:"kms_req_failure"` // Number of requests that failed with an undefined error Latency map[time.Duration]uint64 `json:"kms_resp_time"` // Latency histogram of all requests }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/ScoreBooster.java
if (bulkRequestBuilder != null) { final BulkResponse response = bulkRequestBuilder.execute().actionGet(requestTimeout); if (response.hasFailures()) { logger.warn("Failed to update scores: {}", response.buildFailureMessage()); } bulkRequestBuilder = null; } } public int getPriority() { return priority; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
sslContext.init(null, trustManagerFactory.getTrustManagers(), null); sslSocketFactory = sslContext.getSocketFactory(); } catch (final Exception e) { logger.warn("Failed to load {}", authorities, e); } } final String[] hosts = split(ResourceUtil.getFesenHttpUrl(), ",")
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 5.3K bytes - Viewed (0) -
cmd/sts-errors.go
HTTPStatusCode: http.StatusServiceUnavailable, }, ErrSTSUpstreamError: { Code: "InternalError", Description: "An upstream service required for this operation failed - please try again or contact an administrator.", HTTPStatusCode: http.StatusInternalServerError, }, ErrSTSInternalError: { Code: "InternalError",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 5.8K bytes - Viewed (0) -
utils/utils_test.go
) func TestIsValidDBNameChar(t *testing.T) { for _, db := range []string{"db", "dbName", "db_name", "db1", "1dbname", "db$name"} { if fields := strings.FieldsFunc(db, IsValidDBNameChar); len(fields) != 1 { t.Fatalf("failed to parse db name %v", db) } } } func TestCheckTruth(t *testing.T) { checkTruthTests := []struct { v string out bool }{ {"123", true}, {"true", true}, {"", false},
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Aug 22 11:03:42 UTC 2024 - 4.9K bytes - Viewed (0) -
docs/distributed/decom-encrypted-sse-s3.sh
exit 1 fi got_checksum=$(./mc cat myminio/versioned/dsync/drwmutex.go | md5sum) if [ "${expected_checksum}" != "${got_checksum}" ]; then echo "BUG: decommission failed on encrypted objects: expected ${expected_checksum} got ${got_checksum}" exit 1 fi ./mc ls -r myminio/versioned >decommissioned_ns.txt ./mc ls -r --versions myminio/versioned >decommissioned_ns_versions.txt
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
private final void copySettings () { try { this.setRequestMethod(this.connection.getRequestMethod()); } catch ( ProtocolException e ) { throw new RuntimeCIFSException("Failed to set request method", e); } this.headerFields = null; for ( Entry<String, List<String>> property : this.connection.getRequestProperties().entrySet() ) { String key = property.getKey();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 25.5K bytes - Viewed (0) -
buildscripts/disable-root.sh
for ((i = 0; i < $((nr_servers)); i++)); do (minio server --address ":$((9100 + i))" $args 2>&1 >/tmp/log$i.txt) & done set +e ./mc ready minioadm/ ./mc ls minioadm/ if [ $? -ne 0 ]; then echo "listing failed, 'minioadmin' should be enabled" exit 1 fi killall -9 minio rm -rf /tmp/multisitea/ rm -rf /tmp/multisiteb/ echo "Setup site-replication and then disable root credentials"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 3.5K bytes - Viewed (0) -
internal/crypto/header_test.go
_, _, err := S3KMS.ParseHTTP(test.Header) if err == nil && test.ShouldFail { t.Errorf("Test %d: should fail but succeeded", i) } if err != nil && !test.ShouldFail { t.Errorf("Test %d: should pass but failed with: %v", i, err) } } } var s3IsRequestedTests = []struct { Header http.Header Expected bool }{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 13 14:52:15 UTC 2022 - 21.4K bytes - Viewed (0)