Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AbstractFutureState (1.7 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

        abstract @Nullable Waiter gasWaiters(AbstractFutureState<?> future, Waiter update);
    
        /** Performs a GAS operation on {@link AbstractFutureState#listenersField}. */
        abstract @Nullable Listener gasListeners(AbstractFutureState<?> future, Listener update);
    
        /** Performs a CAS operation on {@link AbstractFutureState#valueField}. */
        abstract boolean casValue(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

        abstract @Nullable Waiter gasWaiters(AbstractFutureState<?> future, Waiter update);
    
        /** Performs a GAS operation on {@link AbstractFutureState#listenersField}. */
        abstract @Nullable Listener gasListeners(AbstractFutureState<?> future, Listener update);
    
        /** Performs a CAS operation on {@link AbstractFutureState#valueField}. */
        abstract boolean casValue(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureDefaultAtomicHelperTest.java

    public class AbstractFutureDefaultAtomicHelperTest extends TestCase {
      public void testUsingExpectedAtomicHelper() throws Exception {
        if (isAndroid()) {
          assertThat(AbstractFutureState.atomicHelperTypeForTest()).isEqualTo("UnsafeAtomicHelper");
        } else {
          assertThat(AbstractFutureState.atomicHelperTypeForTest())
              .isEqualTo("AtomicReferenceFieldUpdaterAtomicHelper");
        }
      }
    
      private static boolean isJava8() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Apr 12 13:08:45 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

         * AggregateFutureStateFallbackAtomicHelperTest, as discussed in a comment in
         * AggregateFutureState.
         *
         * Here, we check that we're able to force AbstractFutureState to select SynchronizedHelper, and
         * below, we actually run the AbstractFutureTest methods under that scenario.
         */
        checkHelperVersion(NO_ATOMIC_REFERENCE_FIELD_UPDATER, "SynchronizedHelper");
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

          throws Exception {
        // Make sure we are actually running with the expected helper implementation
        Class<?> abstractFutureStateClass = classLoader.loadClass(AbstractFutureState.class.getName());
        Method helperMethod = abstractFutureStateClass.getDeclaredMethod("atomicHelperTypeForTest");
        helperMethod.setAccessible(true);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

        extends AbstractFuture.TrustedFuture<OutputT> {
      /*
       * The following fields are package-private, even though we intend never to use them outside this
       * file. For discussion, see AbstractFutureState.
       */
    
      // Lazily initialized the first time we see an exception; not released until all the input futures
      // have completed and we have processed them all.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.5K bytes
    - Viewed (0)
Back to top