Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 800 for queuesa (0.19 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    }
    
    var map_QueuingConfiguration = map[string]string{
    	"":                 "QueuingConfiguration holds the configuration parameters for queuing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    }
    
    var map_QueuingConfiguration = map[string]string{
    	"":                 "QueuingConfiguration holds the configuration parameters for queuing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    }
    
    var map_QueuingConfiguration = map[string]string{
    	"":                 "QueuingConfiguration holds the configuration parameters for queuing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    type QueuingConfiguration struct {
    	// `queues` is the number of queues for this priority level. The
    	// queues exist independently at each apiserver. The value must be
    	// positive.  Setting it to 1 effectively precludes
    	// shufflesharding and thus makes the distinguisher method of
    	// associated flow schemas irrelevant.  This field has a default
    	// value of 64.
    	// +optional
    	Queues int32 `json:"queues" protobuf:"varint,1,opt,name=queues"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/TestQueueGenerator.java

    import java.util.Queue;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Creates queues, containing sample elements, to be tested.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface TestQueueGenerator<E extends @Nullable Object> extends TestCollectionGenerator<E> {
      @Override
      Queue<E> create(Object... elements);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

        final L listener;
        final Executor executor;
    
        @GuardedBy("this")
        final Queue<ListenerCallQueue.Event<L>> waitQueue = Queues.newArrayDeque();
    
        @GuardedBy("this")
        final Queue<Object> labelQueue = Queues.newArrayDeque();
    
        @GuardedBy("this")
        boolean isThreadScheduled;
    
        PerListenerQueue(L listener, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/cc/training/queue_runner.h

      /// for sess->Run. It also collects and stores the cost model.
      Status StartAndCollectCostGraph(Session* sess,
                                      const RunOptions& run_options = RunOptions());
    
      /// Starts the queue runner with the given session, and wait for up to the
      /// specified time (in milliseconds) for the queues to start to fill up.
      Status Start(Session* sess, int wait_for_ms);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    func AddRequestsInQueues(ctx context.Context, priorityLevel, flowSchema string, delta int) {
    	apiserverCurrentInqueueRequests.WithLabelValues(priorityLevel, flowSchema).Add(float64(delta))
    }
    
    // AddSeatsInQueues adds the given delta to the gauge of the # of seats in the queues of the specified flowSchema and priorityLevel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/scheduler/rate_limited_queue_test.go

    	if len(evictor.queue.queue) != len(queuePattern) {
    		t.Fatalf("Queue %v should have length %d", evictor.queue.queue, len(queuePattern))
    	}
    	if !CheckQueueEq(queuePattern, evictor.queue.queue) {
    		t.Errorf("Invalid queue. Got %v, expected %v", evictor.queue.queue, queuePattern)
    	}
    
    	setPattern := sets.NewString("first", "second", "third")
    	if len(evictor.queue.set) != len(setPattern) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 17:40:33 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/composite/internal/BuildController.java

        void addFinalization(BiConsumer<EntryTaskSelector.Context, QueryableExecutionPlan> finalization);
    
        /**
         * Queues the given task for execution. Does not schedule the task, use {@link #scheduleQueuedTasks()} for this.
         */
        void queueForExecution(ExportedTaskNode taskNode);
    
        /**
         * Schedules any queued tasks. When this method returns true, then some tasks where scheduled for this build and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top