Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ExecutionSequencer (0.05 sec)

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

     *
     * @since 26.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    public final class ExecutionSequencer {
    
      private ExecutionSequencer() {}
    
      /** Creates a new instance. */
      public static ExecutionSequencer create() {
        return new ExecutionSequencer();
      }
    
      /** This reference acts as a pointer tracking the head of a linked list of ListenableFutures. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. cycle_suppress_list.txt

    FIELD com.google.common.util.concurrent.AbstractService.listeners
    # NonReentrantExecutor is not exposed to this field
    FIELD com.google.common.util.concurrent.ExecutionSequencer.ThreadConfinedTaskQueue.nextExecutor com.google.common.util.concurrent.ExecutionSequencer.TaskNonReentrantExecutor
    # Real cycle, but the runningState field is null'ed on completion of the future.
    FIELD com.google.common.util.concurrent.AggregateFuture.runningState
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 24 01:59:49 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    import org.jspecify.annotations.Nullable;
    
    /** Tests for {@link ExecutionSequencer} */
    @NullUnmarked
    public class ExecutionSequencerTest extends TestCase {
    
      ExecutorService executor;
    
      private ExecutionSequencer serializer;
      private SettableFuture<@Nullable Void> firstFuture;
      private TestCallable firstCallable;
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 16.1K bytes
    - Viewed (0)
Back to top