Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for interruptCurrentThread (0.26 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        checkNotNull(t); // to satisfy NullPointerTester
        if (t instanceof InterruptedException) {
          currentThread().interrupt();
        }
      }
    
      static void interruptCurrentThread() {
        Thread.currentThread().interrupt();
      }
    
      static void rethrowIfErrorOtherThanStackOverflow(Throwable t) {
        checkNotNull(t);
        if (t instanceof Error && !(t instanceof StackOverflowError)) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.util.concurrent.NullnessCasts.uncheckedNull;
    import static com.google.common.util.concurrent.Platform.interruptCurrentThread;
    import static com.google.common.util.concurrent.Platform.rethrowIfErrorOtherThanStackOverflow;
    import static java.lang.Integer.toHexString;
    import static java.lang.System.identityHashCode;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 14:39:00 GMT 2026
    - 43.6K bytes
    - Click Count (0)
Back to Top