Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 237 for queueset (0.24 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/flowcontrol.apiserver.k8s.io.v1beta2.PriorityLevelConfiguration.yaml

      limited:
        assuredConcurrencyShares: 1
        borrowingLimitPercent: 4
        lendablePercent: 3
        limitResponse:
          queuing:
            handSize: 2
            queueLengthLimit: 3
            queues: 1
          type: typeValue
      type: typeValue
    status:
      conditions:
      - lastTransitionTime: "2003-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.json

          }
        ]
      },
      "spec": {
        "type": "typeValue",
        "limited": {
          "assuredConcurrencyShares": 1,
          "limitResponse": {
            "type": "typeValue",
            "queuing": {
              "queues": 1,
              "handSize": 2,
              "queueLengthLimit": 3
            }
          },
          "lendablePercent": 3,
          "borrowingLimitPercent": 4
        },
        "exempt": {
          "nominalConcurrencyShares": 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/flowcontrol.apiserver.k8s.io.v1beta1.PriorityLevelConfiguration.yaml

      limited:
        assuredConcurrencyShares: 1
        borrowingLimitPercent: 4
        lendablePercent: 3
        limitResponse:
          queuing:
            handSize: 2
            queueLengthLimit: 3
            queues: 1
          type: typeValue
      type: typeValue
    status:
      conditions:
      - lastTransitionTime: "2003-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/flowcontrol.apiserver.k8s.io.v1beta2.PriorityLevelConfiguration.json

          }
        ]
      },
      "spec": {
        "type": "typeValue",
        "limited": {
          "assuredConcurrencyShares": 1,
          "limitResponse": {
            "type": "typeValue",
            "queuing": {
              "queues": 1,
              "handSize": 2,
              "queueLengthLimit": 3
            }
          },
          "lendablePercent": 3,
          "borrowingLimitPercent": 4
        },
        "exempt": {
          "nominalConcurrencyShares": 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  6. 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/MultiChannelQueueTest.groovy

            endpoint1.take(messages1)
            endpoint2.take(messages2)
    
            then:
            messages1 == [message1, message3]
            messages2 == [message2]
        }
    
        def "forwards broadcast message to all channel queues"() {
            def id1 = new ChannelIdentifier("channel1")
            def id2 = new ChannelIdentifier("channel2")
            def message1 = new ChannelMessage(id1, "message 1")
            def message2 = broadcast()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. test/chan/select6.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test for select: Issue 2075
    // A bug in select corrupts channel queues of failed cases
    // if there are multiple waiters on those channels and the
    // select is the last in the queue. If further waits are made
    // on the channel without draining it first then those waiters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 783 bytes
    - Viewed (0)
  10. 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)
Back to top