Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getAndSet (0.27 sec)

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

        @Nullable Listener gasListeners(AbstractFutureState<?> future, Listener update) {
          return (Listener) listenersUpdater.getAndSet(future, update);
        }
    
        @Override
        @Nullable Waiter gasWaiters(AbstractFutureState<?> future, Waiter update) {
          return (Waiter) waitersUpdater.getAndSet(future, update);
        }
    
        @Override
    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

        @Override
        @Nullable Listener gasListeners(AbstractFutureState<?> future, Listener update) {
          return listenersUpdater.getAndSet(future, update);
        }
    
        @Override
        @Nullable Waiter gasWaiters(AbstractFutureState<?> future, Waiter update) {
          return waitersUpdater.getAndSet(future, update);
        }
    
        @Override
        boolean casValue(AbstractFutureState<?> future, @Nullable Object expect, Object update) {
    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/src/com/google/common/util/concurrent/InterruptibleTask.java

            // not all.  See the test cases for examples on how this can happen.
            try {
              ((Thread) currentRunner).interrupt();
            } finally {
              Runnable prev = getAndSet(DONE);
              if (prev == PARKED) {
                LockSupport.unpark((Thread) currentRunner);
              }
            }
          }
        }
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exec/Crawler.java

         * It's called both during normal shutdown and in error conditions.
         */
        private static void destroyContainer() {
            if (running.getAndSet(false)) {
                TimeoutManager.getInstance().stop();
                if (logger.isDebugEnabled()) {
                    logger.debug("Destroying LaContainer...");
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

         * cancelled before the callable started execution.
         */
        SettableFuture<@Nullable Void> newFuture = SettableFuture.create();
    
        ListenableFuture<@Nullable Void> oldFuture = ref.getAndSet(newFuture);
    
        // Invoke our task once the previous future completes.
        TrustedListenableFutureTask<T> taskFuture = TrustedListenableFutureTask.create(task);
        oldFuture.addListener(taskFuture, taskExecutor);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         * @param status The current cluster status.
         * @return true if the state has changed, false otherwise.
         */
        public boolean isChangedClusterState(final int status) {
            return previousClusterState.getAndSet(status) != status;
        }
    
        /**
         * Creates a new action validator.
         *
         * @param requestManager  The request manager.
         * @param messagesCreator The messages creator.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top