Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,898 for typeA (0.54 sec)

  1. internal/logger/target/types/types.go

    package types
    
    // TargetType indicates type of the target e.g. console, http, kafka
    type TargetType uint8
    
    //go:generate stringer -type=TargetType -trimprefix=Target $GOFILE
    
    // Constants for target types
    const (
    	_ TargetType = iota
    	TargetConsole
    	TargetHTTP
    	TargetKafka
    )
    
    // TargetStats contains statistics for a target.
    type TargetStats struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 10 18:20:21 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1beta1/types.go

    	// +optional
    	Version string `json:"version,omitempty" protobuf:"bytes,4,opt,name=version"`
    	// Resource is one of the existing resource types.  "*" means all.
    	// +optional
    	Resource string `json:"resource,omitempty" protobuf:"bytes,5,opt,name=resource"`
    	// Subresource is one of the existing resource types.  "" means none.
    	// +optional
    	Subresource string `json:"subresource,omitempty" protobuf:"bytes,6,opt,name=subresource"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    )
    
    type AuthorizerType string
    
    type AuthorizerConfiguration struct {
    	// Type refers to the type of the authorizer
    	// "Webhook" is supported in the generic API server
    	// Other API servers may support additional authorizer
    	// types like Node, RBAC, ABAC, etc.
    	Type AuthorizerType
    
    	// Name used to describe the webhook
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1/types.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Configuration provides configuration for the ResourceQuota admission controller.
    type Configuration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// LimitedResources whose consumption is limited by default.
    	// +optional
    	LimitedResources []LimitedResource `json:"limitedResources"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1alpha1/types.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Configuration provides configuration for the ResourceQuota admission controller.
    type Configuration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// LimitedResources whose consumption is limited by default.
    	// +optional
    	LimitedResources []LimitedResource `json:"limitedResources"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/config/apis/webhookadmission/types.go

    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
    
    	// KubeConfigFile is the path to the kubeconfig file.
    	KubeConfigFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 21 17:25:24 UTC 2017
    - 933 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    type Event struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// 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"`
    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/apiserver/pkg/apis/example2/v1/types.go

    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ReplicaSet ensures that a specified number of pod replicas are running at any given time.
    type ReplicaSet struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// If the Labels of a ReplicaSet are empty, they are defaulted to
    	// be the same as the Pod(s) that the ReplicaSet manages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 00:35:16 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	ConditionUnknown ConditionStatus = "Unknown"
    )
    
    // Describes the state of the storageVersion at a certain point.
    type StorageVersionCondition struct {
    	// Type of the condition.
    	// +required
    	Type StorageVersionConditionType `json:"type" protobuf:"bytes,1,opt,name=type"`
    	// Status of the condition, one of True, False, Unknown.
    	// +required
    	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top