- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,148 for mesiace (0.06 sec)
-
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) -
src/main/java/org/codelibs/fess/exception/StorageException.java
* * @param message The detail message. * @param cause The cause of the exception. */ public StorageException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new storage exception with the specified detail 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.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
}; } /** * Creates a Type 3 (authentication) message in response to a Type 2 (challenge) message. * @param token the Type 2 message bytes * @return the Type 3 message bytes * @throws SmbException if an error occurs during message creation */ protected byte[] makeAuthenticate(final byte[] token) throws SmbException { try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/DataStoreException.java
* * @param message the error message * @param cause the underlying cause of this exception */ public DataStoreException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new DataStoreException with the specified message. * * @param message the error message */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
// Create a very long exception message StringBuilder longMessage = new StringBuilder("Error: "); for (int i = 0; i < 100; i++) { longMessage.append("This is a very long error message part ").append(i).append(". "); } final String errorMessage = longMessage.toString(); // Create mock SearchEngineClient that throws exception with long message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/JobProcessingException.java
* * @param message the detail message explaining the exception * @param e the cause of the exception */ public JobProcessingException(final String message, final Throwable e) { super(message, e); } /** * Constructs a new JobProcessingException with the specified detail message. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PrompterException.java
private static final long serialVersionUID = -3505070928479515081L; public PrompterException(String message) { super(message); } /** * @param message the message to give * @param e the {@link Exception} */ public PrompterException(String message, Exception e) { super(message, e); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:48:41 UTC 2025 - 1.4K bytes - Viewed (0) -
compat/maven-builder-support/src/test/java/org/apache/maven/building/ProblemCollectorFactoryTest.java
ProblemCollector collector = ProblemCollectorFactory.newInstance(null); collector.setSource("pom.xml"); collector.add(Problem.Severity.ERROR, "Error message", 10, 5, null); collector.add(Problem.Severity.WARNING, "Warning message", 15, 3, null); List<Problem> problems = collector.getProblems(); assertEquals(2, problems.size(), "Should collect both problems");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Jul 20 20:19:43 UTC 2025 - 2.3K bytes - Viewed (0)