- Sort Score
- Num 10 results
- Language All
Results 591 - 600 of 619 for getMessage (0.07 seconds)
-
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
try { suggestJob.executeSuggestCreator(); // In test environment, exception handling may vary } catch (JobProcessingException e) { assertTrue(e.getMessage().contains("SuggestCreator Process terminated")); } catch (Exception e) { // May throw different exception in test environment assertNotNull(e); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 31.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java
LogRecord record = Iterables.getOnlyElement(logHandler.getStoredLogRecords()); // We log failures that occur after startup assertThat(record.getMessage()) .contains("Service FailRunService [FAILED] has failed in the RUNNING state"); } /** * Tests that a ServiceManager can be fully shut down if one of its failure listeners is slow or
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 25.6K bytes - Click Count (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
} catch (final UnknownHostException ex) { this.uhe = ex; } catch (final Exception ex) { this.uhe = new UnknownHostException(ex.getMessage()); } finally { synchronized (this.sem) { this.sem.count--; this.sem.notify(); } } }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 38.5K bytes - Click Count (0) -
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) -
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) -
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) -
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
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)