Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 237 for queueset (0.15 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/flowcontrol.apiserver.k8s.io.v1beta3.PriorityLevelConfiguration.yaml

        lendablePercent: 2
        nominalConcurrencyShares: 1
      limited:
        borrowingLimitPercent: 4
        lendablePercent: 3
        limitResponse:
          queuing:
            handSize: 2
            queueLengthLimit: 3
            queues: 1
          type: typeValue
        nominalConcurrencyShares: 1
      type: typeValue
    status:
      conditions:
      - lastTransitionTime: "2003-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/v1beta3/defaults.go

    	}
    }
    
    func SetDefaults_QueuingConfiguration(cfg *v1beta3.QueuingConfiguration) {
    	if cfg.HandSize == 0 {
    		cfg.HandSize = PriorityLevelConfigurationDefaultHandSize
    	}
    	if cfg.Queues == 0 {
    		cfg.Queues = PriorityLevelConfigurationDefaultQueues
    	}
    	if cfg.QueueLengthLimit == 0 {
    		cfg.QueueLengthLimit = PriorityLevelConfigurationDefaultQueueLengthLimit
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 3K 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. android/guava-tests/test/com/google/common/cache/CacheLoaderTest.java

     * limitations under the License.
     */
    
    package com.google.common.cache;
    
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.Queues;
    import com.google.common.util.concurrent.Futures;
    import com.google.common.util.concurrent.ListenableFuture;
    import java.util.Deque;
    import java.util.Map;
    import java.util.concurrent.Executor;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/TestQueueGenerator.java

     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    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> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. 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)
  9. pkg/scheduler/framework/plugins/queuesort/priority_sort.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package queuesort
    
    import (
    	"context"
    	"k8s.io/apimachinery/pkg/runtime"
    	corev1helpers "k8s.io/component-helpers/scheduling/corev1"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/preemption/preemption_test.go

    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			logger, _ := ktesting.NewTestContext(t)
    			registeredPlugins := append([]tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New)},
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			)
    			var objs []runtime.Object
    			for _, p := range append(tt.testPods, tt.initPods...) {
    				objs = append(objs, p)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top