- Sort Score
- Result 10 results
- Languages All
Results 1161 - 1170 of 2,413 for erro (0.04 sec)
-
cmd/object-handlers.go
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrBadRequest), r.URL) return } opts, err := getOpts(ctx, r, bucket, object) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } // Check for auth type to return S3 compatible error. // type to return the correct error (NoSuchKey vs AccessDenied)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 120.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
*/ public enum Status { /** Successful response status. */ OK(0), /** Bad request status indicating client error. */ BAD_REQUEST(1), /** System error status indicating server error. */ SYSTEM_ERROR(2), /** Unauthorized status indicating authentication failure. */ UNAUTHORIZED(3), /** General failure status. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
internal/kms/config.go
} endpoints, err := expandEndpoints(rawEndpoint) if err != nil { return nil, err } key, err := mtls.ParsePrivateKey(env.Get(EnvKMSAPIKey, "")) if err != nil { return nil, err } var rootCAs *x509.CertPool if opts != nil && opts.CADir != "" { rootCAs, err = certs.GetRootCAs(opts.CADir) if err != nil { return nil, err } }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/jcifs/util/SmbCircuitBreakerTest.java
throw new RuntimeException("critical error"); }, isFailure); fail("Should have thrown exception"); } catch (CIFSException e) { // Expected } } assertEquals(State.OPEN, customCb.getState(), "Circuit should OPEN after critical error threshold");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.2K bytes - Viewed (0) -
internal/logger/config.go
var host *xnet.Host host, err = xnet.ParseHost(s) if err != nil { break } brokers = append(brokers, *host) } if err != nil { return cfg, err } clientAuthCfgVal := getCfgVal(EnvKafkaTLSClientAuth, k, kv.Get(KafkaTLSClientAuth)) clientAuth, err := strconv.Atoi(clientAuthCfgVal) if err != nil { return cfg, err } kafkaArgs := kafka.Config{
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 15.9K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/validation/DefaultSettingsValidator.java
addViolation( problems, Severity.ERROR, "pluginGroups.pluginGroup[" + i + "]", null, "must not be empty"); } else if (!ID_REGEX.matcher(pluginGroup).matches()) { addViolation( problems, Severity.ERROR, "pluginGroups.pluginGroup[" + i + "]", null,
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
content: application/json: schema: $ref: '#/components/schemas/Error' schemas: Error: type: object properties: error_code: type: string example: "bd6b0bd6-0144-40bc-9567-c5751dd8eecb" message: type: string example: "This is an error message."Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/writer/SuggestWriterResultTest.java
} @Test public void test_getFailures() throws Exception { SuggestWriterResult result = new SuggestWriterResult(); Exception exception1 = new Exception("Error 1"); Exception exception2 = new RuntimeException("Error 2"); result.addFailure(exception1); result.addFailure(exception2); assertNotNull(result.getFailures()); assertEquals(2, result.getFailures().size());Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Nov 13 00:40:54 UTC 2025 - 4.3K bytes - Viewed (0) -
tests/test_tutorial/test_query_params_str_validations/test_tutorial005.py
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 26 10:43:02 UTC 2025 - 4.3K bytes - Viewed (0)