- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,146 for mymessage (0.05 sec)
-
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java
* * @return the logger instance */ @Nonnull Logger logger(); /** * Returns the factory for creating message builders. * * @return the message builder factory */ @Nonnull MessageBuilderFactory messageBuilderFactory(); /** * Returns the command-line arguments to be parsed. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 15.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/InterpolatorException.java
* * @param message the detail message. The detail message is saved for * later retrieval by the {@link #getMessage()} method. */ public InterpolatorException(String message) { super(message); } /** * Constructs a new InterpolatorException with the specified detail message and cause. * * <p>Note that the detail message associated with {@code cause} is <i>not</i>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/pt/docs/advanced/additional-responses.md
```JSON hl_lines="4-16" { "components": { "schemas": { "Message": { "title": "Message", "required": [ "message" ], "type": "object", "properties": { "message": { "title": "Message", "type": "string" }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
public void test_constructor_withMessage() { // Test with normal message String message = "Offset exceeded the limit"; ResultOffsetExceededException exception = new ResultOffsetExceededException(message); assertEquals(message, exception.getMessage()); assertNotNull(exception.getStackTrace()); assertTrue(exception.getStackTrace().length > 0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.6K bytes - Viewed (0) -
cmd/bucket-lifecycle-handlers_test.go
} if errorResponse.Message != testCase.errorResponse.Message { t.Errorf("Test %d: %s: Expected the error message to be `%s`, but instead found `%s`", i+1, instanceType, testCase.errorResponse.Message, errorResponse.Message) } if errorResponse.Code != testCase.errorResponse.Code {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Jun 10 15:50:49 UTC 2024 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmFlags.java
/** * Sent by the server in the Type 2 message to indicate that it is * including a Target Information block in the message. The Target * Information block is used in the calculation of the NTLMv2 response. */ int NTLMSSP_NEGOTIATE_TARGET_INFO = 0x00800000; /** * Indicates that the NTLM version is included in the message. */ int NTLMSSP_NEGOTIATE_VERSION = 0x2000000;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java
super("While configuring wagon for '" + repositoryId + "': " + message, cause); this.repositoryId = repositoryId; this.originalMessage = message; } public WagonConfigurationException(String repositoryId, String message) { super("While configuring wagon for '" + repositoryId + "': " + message);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/zh/docs/advanced/additional-responses.md
```json hl_lines="4-16" { "components": { "schemas": { "Message": { "title": "Message", "required": [ "message" ], "type": "object", "properties": { "message": { "title": "Message", "type": "string" } }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:29:26 UTC 2024 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/CronExpression.java
@Retention(RUNTIME) @Documented @Constraint(validatedBy = CronExpressionValidator.class) public @interface CronExpression { /** * The error message when validation fails. * @return the error message */ String message() default "{org.lastaflute.validator.constraints.CronExpression.message}"; /** * The validation groups this constraint belongs to. * @return the groups */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryException.java
* Creates a new DictionaryException with the specified message and cause. * * @param message the detail message * @param cause the underlying cause of the exception */ public DictionaryException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new DictionaryException with the specified message. * * @param message the detail message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0)