- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setDefaultUncaughtExceptionHandler (0.12 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) -
okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt
testName = context.displayName beforeEach() } private fun beforeEach() { defaultUncaughtExceptionHandler = Thread.getDefaultUncaughtExceptionHandler() Thread.setDefaultUncaughtExceptionHandler { _, throwable -> initUncaughtException(throwable) } taskQueuesWereIdle = TaskRunner.INSTANCE.activeQueues().isEmpty() applyLogger { addHandler(testLogHandler)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 10.5K 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)