Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,663 for Types (0.09 sec)

  1. pkg/apis/scheduling/types.go

    type PriorityClassList 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
    
    	// items is the list of PriorityClasses.
    	Items []PriorityClass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1/types.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	authenticationv1 "k8s.io/api/authentication/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // AdmissionReview describes an admission review request/response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // ConversionStrategyType describes different conversion types.
    type ConversionStrategyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/types.go

    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	PathType *PathType `json:"pathType" protobuf:"bytes,3,opt,name=pathType"`
    
    	// backend defines the referenced service endpoint to which the traffic
    	// will be forwarded to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	Type string
    	// format is an optional OpenAPI type definition for this column. The 'name' format is applied
    	// to the primary identifier column to assist in clients identifying column is the resource name.
    	// See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.
    	Format string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    	// Timeout for the list/watch call.
    	TimeoutSeconds *int64
    	// Limit specifies the maximum number of results to return from the server. The server may
    	// not support this field on all resource types, but if it does and more results remain it
    	// will set the continue field on the returned list object.
    	Limit int64
    	// Continue is a token returned by the server that lets a client retrieve chunks of results
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	// +optional
    	Transport *Transport `json:"transport,omitempty"`
    }
    
    // ProtocolType is a set of valid values for Connection.ProtocolType
    type ProtocolType string
    
    // Valid types for ProtocolType for konnectivity server
    const (
    	// Use HTTPConnect to connect to konnectivity server
    	ProtocolHTTPConnect ProtocolType = "HTTPConnect"
    	// Use grpc to connect to konnectivity server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"varint,2,opt,name=defaultMode"`
    }
    
    // Projection that may be projected along with other supported volume types
    type VolumeProjection struct {
    	// all types below are the supported types for projection into the same volume
    
    	// secret information about the secret data to project
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/api/types.go

    // from either above or below, never both). There is thus no reason to expose the
    // operator in the Kubelet's public API. Instead, we internally map signal types to operators.
    var OpForSignal = map[Signal]ThresholdOperator{
    	SignalMemoryAvailable:            OpLessThan,
    	SignalNodeFsAvailable:            OpLessThan,
    	SignalNodeFsInodesFree:           OpLessThan,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    limitations under the License.
    */
    
    package audit
    
    import (
    	authnv1 "k8s.io/api/authentication/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // Header keys used by the audit system.
    const (
    	// Header to hold the audit ID as the request is propagated through the serving hierarchy. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top