Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getDefaultUncaughtExceptionHandler (0.21 sec)

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            final Thread.UncaughtExceptionHandler originalHandler = Thread.getDefaultUncaughtExceptionHandler();
            try {
                final Thread.UncaughtExceptionHandler handler = (t, e) -> {};
                IndexUpdater.setDefaultUncaughtExceptionHandler(handler);
                assertSame(handler, Thread.getDefaultUncaughtExceptionHandler());
            } finally {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

      override fun beforeEach(context: ExtensionContext) {
        testName = context.displayName
    
        beforeEach()
      }
    
      private fun beforeEach() {
        defaultUncaughtExceptionHandler = Thread.getDefaultUncaughtExceptionHandler()
        Thread.setDefaultUncaughtExceptionHandler { _, throwable ->
          initUncaughtException(throwable)
        }
    
        taskQueuesWereIdle = TaskRunner.INSTANCE.activeQueues().isEmpty()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri May 30 21:28:20 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top