Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for UncaughtExceptionHandler (0.43 sec)

  1. android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java

        this.priority = priority;
        return this;
      }
    
      /**
       * Sets the {@link UncaughtExceptionHandler} for new threads created with this ThreadFactory.
       *
       * <p><b>Java 21+ users:</b> use {@link
       * Thread.Builder#uncaughtExceptionHandler(Thread.UncaughtExceptionHandler)} instead.
       *
       * @param uncaughtExceptionHandler the uncaught exception handler for new Threads created with
       *     this ThreadFactory
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:35:26 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/BloomFilterTest.java

    import com.google.common.testing.SerializableTester;
    import com.google.common.util.concurrent.Uninterruptibles;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.lang.Thread.UncaughtExceptionHandler;
    import java.math.RoundingMode;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Random;
    import java.util.stream.Stream;
    import junit.framework.TestCase;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

        public void test_setDefaultUncaughtExceptionHandler() {
            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)
  4. guava-tests/test/com/google/common/hash/BloomFilterTest.java

    import com.google.common.testing.SerializableTester;
    import com.google.common.util.concurrent.Uninterruptibles;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.lang.Thread.UncaughtExceptionHandler;
    import java.math.RoundingMode;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Random;
    import java.util.stream.Stream;
    import junit.framework.TestCase;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        public void setUncaughtExceptionHandler(final UncaughtExceptionHandler eh) {
            super.setUncaughtExceptionHandler(eh);
        }
    
        /**
         * Sets the default uncaught exception handler for all threads.
         *
         * @param eh the default uncaught exception handler to set
         */
        public static void setDefaultUncaughtExceptionHandler(final UncaughtExceptionHandler eh) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top