Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/kubelet/pluginmanager/cache/types.go

    // registers at foo.com/foo-1.9.9
    //
    // DeRegistration: When ReRegistration happens only the deletion of the new socket will trigger a DeRegister call
    type PluginHandler interface {
    	// Validate returns an error if the information provided by
    	// the potential plugin is erroneous (unsupported version, ...)
    	ValidatePlugin(pluginName string, endpoint string, versions []string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/types.go

    	return nil
    }
    
    func (m *ProxyMode) String() string {
    	if m != nil {
    		return string(*m)
    	}
    	return ""
    }
    
    func (m *ProxyMode) Type() string {
    	return "ProxyMode"
    }
    
    // LocalMode represents modes to detect local traffic from the node
    type LocalMode string
    
    // Currently supported modes for LocalMode
    const (
    	LocalModeClusterCIDR         LocalMode = "ClusterCIDR"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. tools/docker-builder/types.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    // Types mirrored from https://github.com/docker/buildx/blob/master/bake/bake.go
    type Group struct {
    	Targets []string `json:"targets" hcl:"targets"`
    }
    
    type BakeFile struct {
    	Target map[string]Target `json:"target,omitempty"`
    	Group  map[string]Group  `json:"group,omitempty"`
    }
    
    type Target struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    }
    
    // MetricTarget defines the target value, average value, or average utilization of a specific metric
    type MetricTarget struct {
    	// type represents whether the metric type is Utilization, Value, or AverageValue
    	Type MetricTargetType `json:"type" protobuf:"bytes,1,name=type"`
    
    	// value is the target value of the metric (as a quantity).
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types.go

    // an actual pod condition type.
    type PodFailurePolicyOnPodConditionsPattern struct {
    	// Specifies the required Pod condition type. To match a pod condition
    	// it is required that specified type equals the pod condition type.
    	Type corev1.PodConditionType `json:"type" protobuf:"bytes,1,req,name=type"`
    
    	// Specifies the required Pod condition status. To match a pod condition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top