Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 6,074 for Types (0.18 sec)

  1. pkg/apis/apps/types.go

    	// +optional
    	AvailableReplicas int32
    }
    
    // StatefulSetConditionType describes the condition types of StatefulSets.
    type StatefulSetConditionType string
    
    // TODO: Add valid condition types for Statefulsets.
    
    // StatefulSetCondition describes the state of a statefulset at a certain point.
    type StatefulSetCondition struct {
    	// Type of statefulset condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    type ValidatingAdmissionPolicyList struct {
    	metav1.TypeMeta
    	// Standard list metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    	// +optional
    	metav1.ListMeta
    	// List of ValidatingAdmissionPolicy.
    	Items []ValidatingAdmissionPolicy
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	// ratio between the target value and the current value by the current
    	// number of pods.  Ergo, metrics used must decrease as the pod count is
    	// increased, and vice-versa.  See the individual metric source types for
    	// more information about how each type of metric must respond.
    	// If not set, the default metric will be set to 80% average CPU utilization.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    type CrossVersionObjectReference struct {
    	// Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    	Kind string `json:"kind" protobuf:"bytes,1,opt,name=kind"`
    	// Name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/types.go

    limitations under the License.
    */
    
    package v1alpha2
    
    import (
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    const (
    	// Finalizer is the finalizer that gets set for claims
    	// which were allocated through a builtin controller.
    	// Reserved for use by Kubernetes, DRA driver controllers must
    	// use their own finalizer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/types.go

    	// When InitConfiguration is marshalled to bytes in the external version, this information IS NOT preserved (which can be seen from
    	// the `json:"-"` tag in the external variant of these API types.
    	ClusterConfiguration `json:"-"`
    
    	// BootstrapTokens is respected at "kubeadm init" time and describes a set of Bootstrap Tokens to create.
    	BootstrapTokens []bootstraptokenv1.BootstrapToken
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	// the memory manager will assume that only 9Gi is available for allocation.
    	// You can specify a different amount of NUMA node and memory types.
    	// You can omit this parameter at all, but you should be aware that the amount of reserved memory from all NUMA nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/types.go

    type CrossVersionObjectReference struct {
    	// kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
    	Kind string
    
    	// name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    	Name string
    
    	// apiVersion is the API version of the referent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  9. pkg/apis/flowcontrol/types.go

    )
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    type FlowDistinguisherMethod struct {
    	// `type` is the type of flow distinguisher method
    	// The supported types are "ByUser" and "ByNamespace".
    	// Required.
    	Type FlowDistinguisherMethodType
    }
    
    // PriorityLevelConfigurationReference contains information that points to the "request-priority" being used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// ratio between the target value and the current value by the current
    	// number of pods.  Ergo, metrics used must decrease as the pod count is
    	// increased, and vice-versa.  See the individual metric source types for
    	// more information about how each type of metric must respond.
    	// If not set, the default metric will be set to 80% average CPU utilization.
    	// +listType=atomic
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top