Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 237 for queueset (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/borrowing_test.go

    	"k8s.io/apiserver/pkg/endpoints/request"
    	fq "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing"
    	"k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/eventclock"
    	fqs "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset"
    	"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"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    	"k8s.io/apiserver/pkg/server/mux"
    	fq "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing"
    	"k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/eventclock"
    	fqs "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset"
    	"k8s.io/apiserver/pkg/util/flowcontrol/metrics"
    	fcrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    	kubeinformers "k8s.io/client-go/informers"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/clock"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	// qsCompleter holds the QueueSetCompleter derived from `config`
    	// and `queues`.
    	qsCompleter fq.QueueSetCompleter
    
    	// The QueueSet for this priority level.
    	// Never nil.
    	queues fq.QueueSet
    
    	// quiescing==true indicates that this priority level should be
    	// removed when its queues have all drained.
    	quiescing bool
    
    	// number of goroutines between Controller::Match and calling the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    				if len(missingQueueSetNames) > 0 {
    					t.Errorf("Fail: missing QueueSets %v", missingQueueSetNames)
    				}
    				nonIdleQueueSetNames := cts.getNonIdleQueueSetNames()
    				extraQueueSetNames := nonIdleQueueSetNames.Difference(expectedQueueSetNames)
    				if len(extraQueueSetNames) > 0 {
    					t.Errorf("Fail: unexpected QueueSets %v", extraQueueSetNames)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    // automatically even if the server doesn't cancel is explicitly.
    // This is required to ensure we won't be leaking goroutines that wait for context
    // cancelling (e.g. in queueset::StartRequest method).
    // Even though in production we are not using httptest.Server, this logic is shared
    // across these two.
    func TestContextClosesOnRequestProcessed(t *testing.T) {
    	epmetrics.Register()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/QueuesTest.java

    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/QueuesTest.java

    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Queues.java

     *
     * @author Kurt Alfred Kluever
     * @since 11.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Queues {
      private Queues() {}
    
      // ArrayBlockingQueue
    
      /**
       * Creates an empty {@code ArrayBlockingQueue} with the given (fixed) capacity and nonfair access
       * policy.
       */
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Queues.java

     *
     * @author Kurt Alfred Kluever
     * @since 11.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Queues {
      private Queues() {}
    
      // ArrayBlockingQueue
    
      /**
       * Creates an empty {@code ArrayBlockingQueue} with the given (fixed) capacity and nonfair access
       * policy.
       */
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. test/fixedbugs/issue33355.go

    	var gws []*client
    	gw := c.srv.gateway
    	for i := 0; i < len(gw.outo); i++ {
    		gws = append(gws, gw.outo[i])
    	}
    	var (
    		subj       = string(subject)
    		queuesa    = [512]byte{}
    		queues     = queuesa[:0]
    		mreply     []byte
    		dstPfx     []byte
    		checkReply = len(reply) > 0
    	)
    
    	sub := subPool.Get().(*subscription)
    
    	if subjectStartsWithGatewayReplyPrefix(subject) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
Back to top