Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 401 for priority1 (0.14 sec)

  1. src/strings/replace.go

    	// this node is not a complete key.
    	value string
    	// priority is the priority (higher is more important) of the trie node's
    	// key/value pair; keys are not necessarily matched shortest- or longest-
    	// first. Priority is positive if this node is a complete key, and zero
    	// otherwise. In the example above, positive/zero priorities are marked
    	// with a trailing "+" or "-".
    	priority int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // limitation on request execution.  A value of `"Exempt"` means
      // that requests of this priority level are not subject to a limit
      // (and thus are never queued) and do not detract from the
      // capacity made available to other priority levels.  A value of
      // `"Limited"` means that (a) requests of this priority level
      // _are_ subject to limits and (b) some of the server's limited
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // limitation on request execution.  A value of `"Exempt"` means
      // that requests of this priority level are not subject to a limit
      // (and thus are never queued) and do not detract from the
      // capacity made available to other priority levels.  A value of
      // `"Limited"` means that (a) requests of this priority level
      // _are_ subject to limits and (b) some of the server's limited
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    		{
    			name:      "suggested priority level configuration does not exist - the object should always be re-created",
    			strategy:  NewSuggestedEnsureStrategy[*flowcontrolv1.PriorityLevelConfiguration],
    			bootstrap: newPLConfiguration("pl1").WithLimited(10).Object(),
    			current:   nil,
    			expected:  newPLConfiguration("pl1").WithLimited(10).Object(),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                        }
                    },
                    toDependencies(method.getDeclaringClass(), method));
    
            Priority priority = method.getAnnotation(Priority.class);
            if (priority != null) {
                binding = binding.prioritize(priority.value());
            }
    
            return binding;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    					{
    						Priority:                   1,
    						ShutdownGracePeriodSeconds: 10,
    					},
    					{
    						Priority:                   2,
    						ShutdownGracePeriodSeconds: 20,
    					},
    					{
    						Priority:                   3,
    						ShutdownGracePeriodSeconds: 30,
    					},
    					{
    						Priority:                   4,
    						ShutdownGracePeriodSeconds: 40,
    					},
    				},
    				pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption_test.go

    			},
    			testPods: []*v1.Pod{
    				st.MakePod().Name("p").UID("p").Priority(highPriority).Obj(),
    			},
    			initPods: []*v1.Pod{
    				st.MakePod().Name("p1").UID("p1").Node("node1").Priority(midPriority).Obj(),
    				st.MakePod().Name("p2").UID("p2").Node("node2").Priority(midPriority).Obj(),
    			},
    			expected: [][]Candidate{
    				{
    					&candidate{
    						victims: &extenderv1.Victims{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    	}{
    		// Test a basic single row table. Columns with priority > 0 are not printed.
    		{
    			columns: []metav1.TableColumnDefinition{
    				{Name: "Name", Type: "string"},
    				{Name: "Ready", Type: "string"},
    				{Name: "Status", Type: "string"},
    				{Name: "Retries", Type: "integer", Priority: 1}, // Priority > 0
    				{Name: "Age", Type: "string", Priority: 1},      // Priority > 0
    			},
    			rows: []metav1.TableRow{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  9. docs/bucket/replication/setup_3site_replication.sh

    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync" --priority 2
    sleep 1
    
    echo "adding replication rule for c -> a : ${remote_arn}"
    ./mc replicate add sitec/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9001/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync" --priority 2
    sleep 1
    
    echo "adding replication rule for b -> c : ${remote_arn}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    						{Name: "Gamma", Type: "integer", Description: "a column with wrongly typed values", JSONPath: ".spec.gamma"},
    						{Name: "Epsilon", Type: "string", Description: "an array of integers as string", JSONPath: ".spec.epsilon"},
    						{Name: "Zeta", Type: "integer", Description: "the zeta field", Format: "int64", Priority: 42, JSONPath: ".spec.zeta"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
Back to top