- Sort Score
- Num 10 results
- Language All
Results 591 - 600 of 602 for getMessager (0.06 seconds)
-
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
fail("Expected JobProcessingException to be thrown"); } catch (final JobProcessingException e) { assertEquals("test error", e.getMessage()); } } /** * Test that generic exceptions are caught and null is returned */ @Test public void test_evaluate_genericExceptionReturnsNull() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 29.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
fail("Should throw FessSystemException"); } catch (FessSystemException e) { assertEquals("DataService is null. IndexUpdater cannot proceed without a DataService instance.", e.getMessage()); } } // Test run method basic flow @Test public void test_run_basicFlow() throws Exception { final List<String> sessionIdList = Arrays.asList("session1");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableSetMultimap.java
ImmutableMap<Object, ImmutableSet<Object>> tmpMap; try { tmpMap = builder.buildOrThrow(); } catch (IllegalArgumentException e) { throw (InvalidObjectException) new InvalidObjectException(e.getMessage()).initCause(e); } deserializationReplacement = new ImmutableSetMultimap<>(tmpMap, tmpSize, valueComparator); } @GwtIncompatible @J2ktIncompatible private Object readResolve() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 19 22:57:35 GMT 2026 - 26.1K bytes - Click Count (0) -
docs/smb3-features/06-witness-protocol-design.md
private volatile boolean serviceAvailable = true; public void handleServiceUnavailable(Exception error) { log.warn("Witness service unavailable: {}", error.getMessage()); serviceAvailable = false; // Schedule retry scheduleServiceRetry(); } private void scheduleServiceRetry() { scheduler.schedule(() -> {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 42K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSetMultimap.java
ImmutableMap<Object, ImmutableSet<Object>> tmpMap; try { tmpMap = builder.buildOrThrow(); } catch (IllegalArgumentException e) { throw (InvalidObjectException) new InvalidObjectException(e.getMessage()).initCause(e); } deserializationReplacement = new ImmutableSetMultimap<>(tmpMap, tmpSize, valueComparator); } @GwtIncompatible @J2ktIncompatible private Object readResolve() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 19 22:57:35 GMT 2026 - 26.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
final List<LlmMessage> history = new ArrayList<>(); for (final ChatMessage msg : session.getMessages()) { if (msg.isUser()) { history.add(LlmMessage.user(msg.getContent())); } else if (msg.isAssistant()) { final String content =Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 40.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java
try { helper.completeOperation("nonexistent_operation"); } catch (final Exception e) { fail("completeOperation should not throw: " + e.getMessage()); } } @Test public void test_completeOperation_doubleCall_safe() { // Calling completeOperation twice must not throw (idempotent release)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 58.6K bytes - Click Count (0) -
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
protected void mergeRelocation_Message( Relocation target, Relocation source, boolean sourceDominant, Map<Object, Object> context) { String src = source.getMessage(); if (src != null) { if (sourceDominant || target.getMessage() == null) { target.setMessage(src); target.setLocation("message", source.getLocation("message")); } } }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Apr 03 11:21:39 GMT 2025 - 99.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} try { this.transport.wait(); } catch (InterruptedException ie) { throw new SmbException(ie.getMessage(), ie); } } try { trans.ensureConnected(); /* * Session Setup And X Request / ResponseCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 68.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
} return result; } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Silent token acquisition failed: {}", e.getMessage()); } return null; } } /** * Validates that the authentication response matches the authorization code flow.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0)