Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,074 for Types (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    // PodList is a list of Pods.
    type PodList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard list metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// List of pods.
    	// More info: http://kubernetes.io/docs/user-guide/pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/apis/resource/types.go

    limitations under the License.
    */
    
    package resource
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ResourceClaim describes which resources are needed by a resource consumer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. pkg/apis/certificates/types.go

    	//  2. Permitted subjects: and behavior when a disallowed subject is requested.
    	//  3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.
    	//  4. Required, permitted, or forbidden key usages / extended key usages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. pkg/apis/batch/types.go

    type UncountedTerminatedPods struct {
    	// succeeded holds UIDs of succeeded Pods.
    	// +listType=set
    	// +optional
    	Succeeded []types.UID
    
    	// failed holds UIDs of failed Pods.
    	// +listType=set
    	// +optional
    	Failed []types.UID
    }
    
    // JobConditionType is a valid value for JobCondition.Type
    type JobConditionType string
    
    // These are valid conditions of a job.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v1/types.go

    // +structType=atomic
    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 `json:"kind" protobuf:"bytes,1,opt,name=kind"`
    
    	// name is the 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: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. pkg/proxy/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/proxy/config"
    )
    
    // Provider is the interface provided by proxier implementations.
    type Provider interface {
    	config.EndpointSliceHandler
    	config.ServiceHandler
    	config.NodeHandler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package dra
    
    import (
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/kubelet/config"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // Manager manages all the DRA resource plugins running on a node.
    type Manager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// AuditLevel at which event was generated
    	Level Level `json:"level" protobuf:"bytes,1,opt,name=level,casttype=Level"`
    
    	// Unique audit ID, generated for each request.
    	AuditID types.UID `json:"auditID" protobuf:"bytes,2,opt,name=auditID,casttype=k8s.io/apimachinery/pkg/types.UID"`
    	// Stage of the request handling when this event instance was generated.
    	Stage Stage `json:"stage" protobuf:"bytes,3,opt,name=stage,casttype=Stage"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/types.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package runtime
    
    // Note that the types provided in this file are not versioned and are intended to be
    // safe to use from within all versions of every API object.
    
    // TypeMeta is shared by all top level objects. The proper way to use it is to inline it in your type,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:58 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1/types.go

    	// Name of the referent.
    	// +optional
    	Name string `json:"name,omitempty" protobuf:"bytes,3,opt,name=name"`
    	// UID of the referent.
    	// +optional
    	UID types.UID `json:"uid,omitempty" protobuf:"bytes,4,opt,name=uID,casttype=k8s.io/apimachinery/pkg/types.UID"`
    }
    
    // +genclient
    // +genclient:nonNamespaced
    // +genclient:onlyVerbs=create
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top