- Sort Score
- Num 10 results
- Language All
Results 301 - 310 of 492 for setMessage (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java
for (ModelProblem problem : problems) { writer.print("["); writer.print(problem.getSeverity()); writer.print("] "); writer.print(problem.getMessage()); writer.print(" @ "); writer.println(ModelProblemUtils.formatLocation(problem, modelId)); } return buffer.toString(); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5.4K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/io/IOIntegrationTest.java
req.execute(response -> { statusCode.set(response.getHttpStatusCode()); receivedBody.set(response.getContentAsString()); }, e -> fail("Should not throw exception: " + e.getMessage())); // ## Assert ## assertEquals(200, statusCode.get()); assertEquals(body, receivedBody.get()); } @Test
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 12:00:34 GMT 2026 - 44.1K bytes - Click Count (0) -
src/test/java/jcifs/spnego/NegTokenInitTest.java
null, null); IOException ex = assertThrows(IOException.class, () -> new NegTokenInit(token)); assertTrue(ex.getMessage().contains("OID"), "Error should mention OID"); } @Test @DisplayName("Parse accepts non-zero outer tag numbers (current implementation behavior)")Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 21K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java
return true; } } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Silent token refresh failed: {}", e.getMessage()); } } // For MSAL4J, if silent refresh fails, return true if token is still valid // Actual refresh will happen during next authentication requestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatSession.java
return new ArrayList<>(messages); } } /** * Sets the message list for this session. * * @param messages the messages to set */ public void setMessages(final List<ChatMessage> messages) { synchronized (messagesLock) { if (messages == null) { this.messages = null; } else if (messages instanceof CopyOnWriteArrayList) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 6.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
try { helper.init(); assertNotNull(helper.duplicateHostList); } catch (Exception e) { fail("init() should not throw an exception: " + e.getMessage()); } } @Test public void test_setDuplicateHostList() { DuplicateHostHelper helper = new DuplicateHostHelper(); List<DuplicateHost> testList = new ArrayList<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 6.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java
Exception getException(); /** * Gets the message that describes this problem. * * @return the message describing this problem, never {@code null} */ @Nonnull String getMessage(); /** * Gets the severity level of this problem. * * @return the severity level of this problem, never {@code null} */ @Nonnull Severity getSeverity(); /**
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Mar 23 05:29:39 GMT 2023 - 3.6K bytes - Click Count (0) -
guava-testlib/test/com/google/common/testing/EqualsTesterTest.java
} private static void assertErrorMessage(Throwable e, String message) { // TODO(kevinb): use a Truth assertion here if (!e.getMessage().contains(message)) { fail("expected <" + e.getMessage() + "> to contain <" + message + ">"); } } /** * Test class with valid equals and hashCode methods. Testers created with instances of this class
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 13.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
if (e instanceof LlmException) { logger.warn("[RAG] LLM error during chat. sessionId={}, error={}", session.getSessionId(), e.getMessage()); } else { logger.warn("[RAG] Unexpected error during chat. sessionId={}, error={}", session.getSessionId(), e.getMessage(), e); } throw e; } finally { session.trimHistory(getMaxHistoryMessages()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/LogNotificationAppender.java
final LogNotificationEvent notificationEvent = new LogNotificationEvent( // event.getTimeMillis(), // event.getLevel().name(), // loggerName, // event.getMessage().getFormattedMessage(), // throwableStr // ); helper.offer(notificationEvent); } private Level getEffectiveMinLevel() { try {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 6K bytes - Click Count (0)