Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for currentThread (0.41 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                  combinerCompletedWithoutInterrupt.countDown();
                } catch (InterruptedException e) {
                  // Ensure the thread's interrupt status is preserved.
                  Thread.currentThread().interrupt();
                  throw new RuntimeException(e);
                }
              }
            };
    
        ListenableFuture<?> futureResult =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                  combinerCompletedWithoutInterrupt.countDown();
                } catch (InterruptedException e) {
                  // Ensure the thread's interrupt status is preserved.
                  Thread.currentThread().interrupt();
                  throw new RuntimeException(e);
                }
              }
            };
    
        ListenableFuture<?> futureResult =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

                directExecutor());
          } catch (Throwable t) {
            ListenableFuture<V> result = setException(t) ? futureValue : fullyFailedFuture(t);
            if (t instanceof InterruptedException) {
              Thread.currentThread().interrupt();
            }
            return result;
          }
        }
    
        public long elapsedNanos() {
          return stopwatch.elapsed(NANOSECONDS);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

                directExecutor());
          } catch (Throwable t) {
            ListenableFuture<V> result = setException(t) ? futureValue : fullyFailedFuture(t);
            if (t instanceof InterruptedException) {
              Thread.currentThread().interrupt();
            }
            return result;
          }
        }
    
        @CheckForNull
        public V compute(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top