Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for priority1 (0.3 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    			podsToMake: []podToMake{
    				{name: "high-priority-high-usage", priority: highPriority, pidUsage: 900},
    				{name: "default-priority-low-usage", priority: defaultPriority, pidUsage: 100},
    				{name: "default-priority-medium-usage", priority: defaultPriority, pidUsage: 400},
    				{name: "low-priority-high-usage", priority: lowPriority, pidUsage: 600},
    				{name: "low-priority-low-usage", priority: lowPriority, pidUsage: 50},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    func TestOrderedByPriority(t *testing.T) {
    	low := newPod("low-priority", -134, []v1.Container{
    		newContainer("low-priority", newResourceList("", "", ""), newResourceList("", "", "")),
    	}, nil)
    	medium := newPod("medium-priority", 1, []v1.Container{
    		newContainer("medium-priority", newResourceList("100m", "100Mi", ""), newResourceList("200m", "200Mi", "")),
    	}, nil)
    	high := newPod("high-priority", 12534, []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		{Name: "IP", Type: "string", Priority: 1, Description: apiv1.PodStatus{}.SwaggerDoc()["podIP"]},
    		{Name: "Node", Type: "string", Priority: 1, Description: apiv1.PodSpec{}.SwaggerDoc()["nodeName"]},
    		{Name: "Nominated Node", Type: "string", Priority: 1, Description: apiv1.PodStatus{}.SwaggerDoc()["nominatedNodeName"]},
    		{Name: "Readiness Gates", Type: "string", Priority: 1, Description: apiv1.PodSpec{}.SwaggerDoc()["readinessGates"]},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				return *pod.Spec.Priority%2 == 0 && *pod.Spec.Priority >= 2
    			},
    			want: []string{"p2", "p4"},
    		},
    		{
    			name:     "move Pods with even and negative priority",
    			podInfos: podInfos,
    			event:    WildCardEvent,
    			preEnqueueCheck: func(pod *v1.Pod) bool {
    				return *pod.Spec.Priority%2 == 0 && *pod.Spec.Priority < 0
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

    this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

    this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    	}{
    		{
    			name:          "nominated pods have lower priority, predicate is called once",
    			pod:           st.MakePod().Name("1").UID("1").Priority(highPriority).Obj(),
    			expectedCount: 1,
    		},
    		{
    			name:          "nominated pods have higher priority, predicate is called twice",
    			pod:           st.MakePod().Name("1").UID("1").Priority(lowPriority).Obj(),
    			expectedCount: 2,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	var workers, failedWorkers int
    	priority := "auto"
    	maxWorkers := WorkerMaxLimit
    	if opts.Priority != "" {
    		priority = opts.Priority
    	}
    	if opts.MaxWorkers > 0 {
    		maxWorkers = opts.MaxWorkers
    	}
    	switch priority {
    	case "fast":
    		workers = WorkerMaxLimit
    		failedWorkers = MRFWorkerMaxLimit
    	case "slow":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy filter-forward { type filter hook forward priority -110 ; }
    		add chain ip kube-proxy filter-input { type filter hook input priority -110 ; }
    		add chain ip kube-proxy filter-output { type filter hook output priority -110 ; }
    		add chain ip kube-proxy filter-output-post-dnat { type filter hook output priority -90 ; }
    		add chain ip kube-proxy firewall-check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

                "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
                "type": "string"
              },
              "globalDefault": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
Back to top