- Sort Score
- Result 10 results
- Languages All
Results 1371 - 1380 of 1,927 for mirror (0.19 sec)
-
docs/de/llm-prompt.md
* «the deployment»: «das Deployment» * «the dict»: «das Dict» * «the dictionary»: «das Dictionary» * «the enumeration»: «die Enumeration» * «the enum»: «das Enum» * «the engine»: «die Engine» * «the error response»: «die Error-Response» * «the event»: «das Event» * «the exception»: «die Exception» * «the exception handler»: «der Exceptionhandler» * «the form model»: «das Formularmodell» * «the form body»: «der Formularbody»
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 26 09:39:53 UTC 2025 - 11.9K bytes - Viewed (0) -
docs/en/docs/tutorial/security/first-steps.md
If it doesn't see an `Authorization` header, or the value doesn't have a `Bearer ` token, it will respond with a 401 status code error (`UNAUTHORIZED`) directly. You don't even have to check if the token exists to return an error. You can be sure that if your function is executed, it will have a `str` in that token. You can try it already in the interactive docs:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/spnego/SpnegoExceptionTest.java
} @Test @DisplayName("Should create SpnegoException with message and cause") void testWithMessageAndCause() { // Given String message = "SPNEGO handshake error"; RuntimeException cause = new RuntimeException("root cause"); // When SpnegoException ex = new SpnegoException(message, cause); // Then assertNotNull(ex);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.9K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/v4/Xpp3DomPerfTest.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 3.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileSelector.java
isActive &= activator.isActive(profile, context, problems); } } catch (RuntimeException e) { problems.add(new ModelProblemCollectorRequest(Severity.ERROR, Version.BASE) .setMessage( "Failed to determine activation for profile " + profile.getId() + ": " + e.getMessage())
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 4.6K bytes - Viewed (0) -
schema/index.go
} for _, field := range index.Fields { if field.Name == name { return index } } } } return nil } func parseFieldIndexes(field *Field) (indexes []Index, err error) { for _, value := range strings.Split(field.Tag.Get("gorm"), ";") { if value != "" { v := strings.Split(value, ":") k := strings.TrimSpace(strings.ToUpper(v[0])) if k == "INDEX" || k == "UNIQUEINDEX" {Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Wed May 21 02:35:56 UTC 2025 - 3.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/logging/impl/Log4j2Configuration.java
public void setRootLoggerLevel(Level level) { String value = switch (level) { case DEBUG -> "debug"; case INFO -> "info"; default -> "error"; }; System.setProperty("maven.logging.root.level", value); } @Override public void activate() { // no op }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 17 09:56:12 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/test/resources-project-builder/artifact-id-inheritance/pom.xml
<artifactId>parent</artifactId> <version>0.1</version> <packaging>pom</packaging> <!-- NOTE: This extends the test to check an edge case of URL adjustment which must not error out during inheritance if the child misses the artifactId (as to be reported by validation). --> <url>https://maven.apache.org/</url>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
cmd/storagemetric_string.go
// Code generated by "stringer -type=storageMetric -trimprefix=storageMetric xl-storage-disk-id-check.go"; DO NOT EDIT. package cmd import "strconv" func _() { // An "invalid array index" compiler error signifies that the constant values have changed. // Re-run the stringer command to generate them again. var x [1]struct{} _ = x[storageMetricMakeVolBulk-0] _ = x[storageMetricMakeVol-1] _ = x[storageMetricListVols-2]
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/WebApiException.java
*/ package org.codelibs.fess.exception; /** * Exception thrown when web API operations encounter errors. * This exception includes an HTTP status code to indicate the nature of the error. */ public class WebApiException extends FessSystemException { private static final long serialVersionUID = 1L; /** * The HTTP status code associated with this exception. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0)