- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setDefaultUncaughtExceptionHandler (0.85 sec)
-
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
} // Test setDefaultUncaughtExceptionHandler public void test_setDefaultUncaughtExceptionHandler() { final Thread.UncaughtExceptionHandler originalHandler = Thread.getDefaultUncaughtExceptionHandler(); try { final Thread.UncaughtExceptionHandler handler = (t, e) -> {}; IndexUpdater.setDefaultUncaughtExceptionHandler(handler);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
* * @param eh the default uncaught exception handler to set */ public static void setDefaultUncaughtExceptionHandler(final UncaughtExceptionHandler eh) { Thread.setDefaultUncaughtExceptionHandler(eh); } /** * Sets the maximum number of indexer errors allowed. * * @param maxIndexerErrorCount the maximum error count to set
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0)