Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,898 for typeA (0.04 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types.go

    // mixing different types of rules in a single Ingress is disallowed, so exactly
    // one of the following must be set.
    type IngressRuleValue struct {
    	//TODO:
    	// 1. Consider renaming this resource and the associated rules so they
    	// aren't tied to Ingress. They can be used to route intra-cluster traffic.
    	// 2. Consider adding fields for ingress-type specific global options
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/policy/v1/types.go

    	//                   disruptions are provided by the disruptionsAllowed property.
    	//
    	// +optional
    	// +patchMergeKey=type
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,7,rep,name=conditions"`
    }
    
    const (
    	// DisruptionAllowedCondition is a condition set by the disruption controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/scheduling/v1alpha1/types.go

    // DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass.
    // PriorityClass defines mapping from a priority class name to the priority
    // integer value. The value can be any valid integer.
    type PriorityClass struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 13 13:16:35 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/scheduling/v1beta1/types.go

    // DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass.
    // PriorityClass defines mapping from a priority class name to the priority
    // integer value. The value can be any valid integer.
    type PriorityClass struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 13 13:16:35 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storagemigration/v1alpha1/types.go

    	// Indicates that the migration has failed.
    	MigrationFailed MigrationConditionType = "Failed"
    )
    
    // Describes the state of a migration at a certain point.
    type MigrationCondition struct {
    	// Type of the condition.
    	Type MigrationConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=MigrationConditionType"`
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pkg/volume/util/types/types.go

    limitations under the License.
    */
    
    // Package types defines types used only by volume components
    package types
    
    import (
    	"errors"
    
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/mount-utils"
    )
    
    // UniquePodName defines the type to key pods off of
    type UniquePodName types.UID
    
    // UniquePVCName defines the type to key pvc off
    type UniquePVCName types.UID
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1beta1/types.go

    // labels, which must be joined to produce the full set of endpoints.
    type EndpointSlice struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// addressType specifies the type of address carried by this EndpointSlice.
    	// All addresses in this slice must be the same type. This field is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1/types.go

    }
    
    // PriorityLevelConfigurationCondition defines the condition of priority level.
    type PriorityLevelConfigurationCondition struct {
    	// `type` is the type of the condition.
    	// Required.
    	Type PriorityLevelConfigurationConditionType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type"`
    	// `status` is the status of the condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types.go

    type AdmissionConfiguration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Plugins allows specifying a configuration per admission control plugin.
    	// +optional
    	Plugins []AdmissionPluginConfiguration `json:"plugins"`
    }
    
    // AdmissionPluginConfiguration provides the configuration for a single plug-in.
    type AdmissionPluginConfiguration struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 12 14:05:50 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/config/apis/webhookadmission/v1alpha1/types.go

    package v1alpha1
    
    import metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // WebhookAdmission provides configuration for the webhook admission controller.
    type WebhookAdmission struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// KubeConfigFile is the path to the kubeconfig file.
    	KubeConfigFile string `json:"kubeConfigFile"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 21 17:25:24 UTC 2017
    - 966 bytes
    - Viewed (0)
Back to top