Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for PriorityClass (0.38 sec)

  1. pkg/quota/v1/evaluator/core/pods_test.go

    	tests := []struct {
    		name     string
    		selector corev1.ScopedResourceSelectorRequirement
    	}{
    		{
    			name: "PriorityClass selector w/o operator",
    			selector: corev1.ScopedResourceSelectorRequirement{
    				ScopeName: corev1.ResourceQuotaScopePriorityClass,
    			},
    		},
    		{
    			name: "PriorityClass selector w/ 'Exists' operator",
    			selector: corev1.ScopedResourceSelectorRequirement{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/values.yaml

        # Kubernetes >=v1.11.0 will create two PriorityClass, including system-cluster-critical and
        # system-node-critical, it is better to configure this in order to make sure your Istio pods
        # will not be killed because of low priority class.
        # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
        # for more detail.
        priorityClassName: ""
    
        proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/values.yaml

        # Kubernetes >=v1.11.0 will create two PriorityClass, including system-cluster-critical and
        # system-node-critical, it is better to configure this in order to make sure your Istio pods
        # will not be killed because of low priority class.
        # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
        # for more detail.
        priorityClassName: ""
        proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintPriorityClass(t *testing.T) {
    	tests := []struct {
    		pc       scheduling.PriorityClass
    		expected []metav1.TableRow
    	}{
    		{
    			pc: scheduling.PriorityClass{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "pc1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Value: 1,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Value", Type: "integer", Description: schedulingv1.PriorityClass{}.SwaggerDoc()["value"]},
    		{Name: "Global-Default", Type: "boolean", Description: schedulingv1.PriorityClass{}.SwaggerDoc()["globalDefault"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            }
          },
          "type": "object"
        },
        "io.k8s.api.scheduling.v1.PriorityClass": {
          "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Specifies the k8s priorityClassName for the istio control plane components.
      //
      // See https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
      string priorityClassName = 27 [deprecated = true];
    
      // Specifies how proxies are configured within Istio.
      ProxyConfig proxy = 28;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

            }
          },
          "type": "object"
        },
        "io.k8s.api.scheduling.v1.PriorityClass": {
          "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func SetPriorityClass(process Handle, priorityClass uint32) (err error) {
    	r1, _, e1 := syscall.Syscall(procSetPriorityClass.Addr(), 2, uintptr(process), uintptr(priorityClass), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func SetProcessPriorityBoost(process Handle, disable bool) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	SetErrorMode(mode uint32) (ret uint32) = kernel32.SetErrorMode
    //sys	ResumeThread(thread Handle) (ret uint32, err error) [failretval==0xffffffff] = kernel32.ResumeThread
    //sys	SetPriorityClass(process Handle, priorityClass uint32) (err error) = kernel32.SetPriorityClass
    //sys	GetPriorityClass(process Handle) (ret uint32, err error) = kernel32.GetPriorityClass
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top