Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 800 for queuesa (0.29 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/MultiEndPointQueueTest.groovy

            given:
            def message = broadcast()
            def message2 = unicast()
            def endpoint1 = queue.newEndpoint()
            def endpoint2 = queue.newEndpoint()
    
            and:
            queue.empty(endpoint1)
            queue.empty(endpoint2)
    
            when:
            queue.dispatch(message)
            queue.dispatch(message2)
            def messages1 = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter_test.go

    	fqs "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset"
    	"k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock"
    	"k8s.io/apiserver/pkg/util/flowcontrol/metrics"
    	fcrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    	"k8s.io/client-go/informers"
    	clientsetfake "k8s.io/client-go/kubernetes/fake"
    	"k8s.io/utils/ptr"
    )
    
    // TestQueueWaitTimeLatencyTracker tests the queue wait times recorded by the P&F latency tracker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	cKey, quit := c.queue.Get()
    	if quit {
    		return false
    	}
    	defer c.queue.Done(cKey)
    
    	err := c.syncEndpoints(logger, cKey)
    	c.handleErr(logger, err, cKey)
    
    	return true
    }
    
    func (c *Controller) handleErr(logger klog.Logger, err error, key string) {
    	if err == nil {
    		c.queue.Forget(key)
    		return
    	}
    
    	if c.queue.NumRequeues(key) < maxRetries {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      repeated PriorityLevelConfigurationCondition conditions = 1;
    }
    
    // QueuingConfiguration holds the configuration parameters for queuing
    message QueuingConfiguration {
      // `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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      repeated PriorityLevelConfigurationCondition conditions = 1;
    }
    
    // QueuingConfiguration holds the configuration parameters for queuing
    message QueuingConfiguration {
      // `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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. fess-crawler-es/src/main/resources/mapping/queue.json

    Shinsuke Sugaya <******@****.***> 1550973969 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Feb 24 02:06:09 UTC 2019
    - 406 bytes
    - Viewed (0)
  7. pkg/test/loadbalancersim/timer/queue.go

    package timer
    
    import (
    	"container/heap"
    	"sync"
    	"time"
    )
    
    type Queue struct {
    	heap            timerHeap
    	mutex           sync.Mutex
    	stopCh          chan struct{}
    	resetTimerCh    chan struct{}
    	stopping        bool
    	timer           *time.Timer
    	currentDeadline time.Time
    }
    
    func NewQueue() *Queue {
    	q := &Queue{
    		heap:         make(timerHeap, 0),
    		timer:        time.NewTimer(1 * time.Minute),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      repeated PriorityLevelConfigurationCondition conditions = 1;
    }
    
    // QueuingConfiguration holds the configuration parameters for queuing
    message QueuingConfiguration {
      // `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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/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: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationExecutorParallelExecutionTest.groovy

            when:
            async {
                // Successful queue
                workerThread {
                    buildOperationExecutor.runAll(worker, { queue ->
                        amountOfWork.times {
                            queue.add(success)
                        }
                    })
                    successfulQueueCompleted = true
                }
                // Failure queue
                workerThread {
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top