- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 220 for setMessage (0.05 sec)
-
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
fail("Should throw IORuntimeException"); } catch (IORuntimeException e) { assertTrue(e.getCause() instanceof IOException); assertEquals("Test exception", e.getCause().getMessage()); } } public void test_getXContentString_withEmptyContent() { ToXContent xContent = new ToXContent() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java
assertTrue("processDBFluteSystem executed without exception", true); } catch (Exception e) { fail("processDBFluteSystem should handle unlock/lock properly: " + e.getMessage()); } } // Helper method to get TimeZoneProvider from DBFluteSystem using reflection private DfFinalTimeZoneProvider getDBFluteSystemTimeZoneProvider() { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/PingResponse.java
*/ public String getClusterStatus() { return clusterStatus; } /** * Gets the message. * * @return the message */ public String getMessage() { return message; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (2) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/IntsTest.java
Ints.checkedCast(value); fail("Cast to int should have failed: " + value); } catch (IllegalArgumentException ex) { assertWithMessage(value + " not found in exception text: " + ex.getMessage()) .that(ex.getMessage().contains(String.valueOf(value))) .isTrue(); } } // We need to test that our method behaves like the JDK method. @SuppressWarnings("InlineMeInliner")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
try { thumbnailJob.executeThumbnailGenerator(); fail("Should throw JobProcessingException"); } catch (JobProcessingException e) { assertTrue(e.getMessage().contains("Thumbnail Process terminated.")); } catch (NullPointerException e) { // May occur if ServletContext is not fully initialized // This is acceptable in test environment }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/QueryRescorerTest.java
try { queryRescorer.evaluate(exceptionParams); fail("Expected RuntimeException"); } catch (RuntimeException e) { assertEquals("Test exception", e.getMessage()); } } public void test_evaluate_concurrency() { queryRescorer = new QueryRescorer() { private int callCount = 0; @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.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 request
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
if (logger.isDebugEnabled()) { logger.debug(e.getMessage(), e); } saveError(e.getMessageCode()); return redirectToRoot(); } catch (final ResultOffsetExceededException e) { if (logger.isDebugEnabled()) { logger.debug(e.getMessage(), e); } saveError(messages -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
} catch (ConfigPropertyNotFoundException e) { assertTrue(e.getMessage().contains("non.existent.property")); } try { emptyEnv.is("non.existent.boolean"); fail("Should throw ConfigPropertyNotFoundException"); } catch (ConfigPropertyNotFoundException e) { assertTrue(e.getMessage().contains("non.existent.boolean")); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.5K bytes - Viewed (0)