Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setDefaultUncaughtExceptionHandler (0.11 sec)

  1. 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 Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Nov 04 19:13:52 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 32.9K bytes
    - Viewed (0)
Back to top