Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 464 for schedulings (0.23 sec)

  1. staging/src/k8s.io/api/node/v1/zz_generated.deepcopy.go

    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Overhead != nil {
    		in, out := &in.Overhead, &out.Overhead
    		*out = new(Overhead)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Scheduling != nil {
    		in, out := &in.Scheduling, &out.Scheduling
    		*out = new(Scheduling)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RuntimeClass.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1beta1/zz_generated.deepcopy.go

    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Overhead != nil {
    		in, out := &in.Overhead, &out.Overhead
    		*out = new(Overhead)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Scheduling != nil {
    		in, out := &in.Scheduling, &out.Scheduling
    		*out = new(Scheduling)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RuntimeClass.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/node/v1beta1/types.go

    	// scheduling holds the scheduling constraints to ensure that pods running
    	// with this RuntimeClass are scheduled to nodes that support it.
    	// If scheduling is nil, this RuntimeClass is assumed to be supported by all
    	// nodes.
    	// +optional
    	Scheduling *Scheduling `json:"scheduling,omitempty" protobuf:"bytes,4,opt,name=scheduling"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. pkg/apis/scheduling/install/install.go

    	"k8s.io/kubernetes/pkg/apis/scheduling"
    	"k8s.io/kubernetes/pkg/apis/scheduling/v1"
    	"k8s.io/kubernetes/pkg/apis/scheduling/v1alpha1"
    	"k8s.io/kubernetes/pkg/apis/scheduling/v1beta1"
    )
    
    func init() {
    	Install(legacyscheme.Scheme)
    }
    
    // Install registers the API group and adds types to a scheme
    func Install(scheme *runtime.Scheme) {
    	utilruntime.Must(scheduling.AddToScheme(scheme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 05 21:21:45 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  5. pkg/scheduler/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-scheduling-maintainers
    reviewers:
      - sig-scheduling
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 150 bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/node/v1/generated.proto

      //  https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/
      // +optional
      optional Overhead overhead = 3;
    
      // scheduling holds the scheduling constraints to ensure that pods running
      // with this RuntimeClass are scheduled to nodes that support it.
      // If scheduling is nil, this RuntimeClass is assumed to be supported by all
      // nodes.
      // +optional
      optional Scheduling scheduling = 4;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. pkg/apis/node/types.go

    	// +optional
    	Overhead *Overhead
    
    	// scheduling holds the scheduling constraints to ensure that pods running
    	// with this RuntimeClass are scheduled to nodes that support it.
    	// If scheduling is nil, this RuntimeClass is assumed to be supported by all
    	// nodes.
    	// +optional
    	Scheduling *Scheduling
    }
    
    // Overhead structure represents the resource overhead associated with running a pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - api-approvers
    reviewers:
      - api-reviewers
      - sig-scheduling-api-reviewers
      - sig-scheduling-api-approvers
    labels:
      - kind/api-change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 222 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/node/v1alpha1/types.go

    	// scheduling holds the scheduling constraints to ensure that pods running
    	// with this RuntimeClass are scheduled to nodes that support it.
    	// If scheduling is nil, this RuntimeClass is assumed to be supported by all
    	// nodes.
    	// +optional
    	Scheduling *Scheduling `json:"scheduling,omitempty" protobuf:"bytes,3,opt,name=scheduling"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	// The podSchedulingCycle represents the current scheduling cycle number which can be
    	// returned by calling SchedulingCycle().
    	AddUnschedulableIfNotPresent(logger klog.Logger, pod *framework.QueuedPodInfo, podSchedulingCycle int64) error
    	// SchedulingCycle returns the current number of scheduling cycle which is
    	// cached by scheduling queue. Normally, incrementing this number whenever
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top