Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 596 for describes (0.26 sec)

  1. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      //   request resource.
      // Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
      //
      // Required.
      optional string expression = 2;
    }
    
    // MutatingWebhook describes an admission webhook and the resources and operations it applies to.
    message MutatingWebhook {
      // The name of the admission webhook.
      // Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    	"k8s.io/klog/v2"
    )
    
    // Backend describes the storage servers, the information here should be enough
    // for health validations.
    type Backend struct {
    	// the url of storage backend like: https://etcd.domain:2379
    	Server string
    	// the required tls config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //   request resource.
      // Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
      //
      // Required.
      optional string expression = 2;
    }
    
    // MutatingWebhook describes an admission webhook and the resources and operations it applies to.
    message MutatingWebhook {
      // The name of the admission webhook.
      // Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    var map_IngressStatus = map[string]string{
    	"":             "IngressStatus describes the current state of the Ingress.",
    	"loadBalancer": "loadBalancer contains the current status of the load-balancer.",
    }
    
    func (IngressStatus) SwaggerDoc() map[string]string {
    	return map_IngressStatus
    }
    
    var map_IngressTLS = map[string]string{
    	"":           "IngressTLS describes the transport layer security associated with an Ingress.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// For Git, this is a hash of all the refs and their hashes.
    	RepoSum string `json:",omitempty"`
    }
    
    // A Tags describes the available tags in a code repository.
    type Tags struct {
    	Origin *Origin
    	List   []Tag
    }
    
    // A Tag describes a single tag in a code repository.
    type Tag struct {
    	Name string
    	Hash string // content hash identifying tag's content, if available
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/types.go

    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    type HorizontalPodAutoscalerCondition struct {
    	// Type describes the current condition
    	Type HorizontalPodAutoscalerConditionType
    	// Status is the status of the condition (True, False, Unknown)
    	Status ConditionStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // +optional
      optional HorizontalPodAutoscalerStatus status = 3;
    }
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    message HorizontalPodAutoscalerCondition {
      // type describes the current condition
      optional string type = 1;
    
      // status is the status of the condition (True, False, Unknown)
      optional string status = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1/types.go

    	// AggregationRule is an optional field that describes how to build the Rules for this ClusterRole.
    	// If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be
    	// stomped by the controller.
    	// +optional
    	AggregationRule *AggregationRule `json:"aggregationRule,omitempty" protobuf:"bytes,3,opt,name=aggregationRule"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"resourceRules":        "ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // +optional
      repeated IngressRule rules = 3;
    }
    
    // IngressStatus describes the current state of the Ingress.
    message IngressStatus {
      // loadBalancer contains the current status of the load-balancer.
      // +optional
      optional IngressLoadBalancerStatus loadBalancer = 1;
    }
    
    // IngressTLS describes the transport layer security associated with an Ingress.
    message IngressTLS {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top