Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,958 for ktypes (0.12 sec)

  1. pkg/kubelet/checkpointmanager/testing/example_checkpoint_formats/v1/types.go

    	"k8s.io/kubernetes/pkg/kubelet/checkpointmanager/checksum"
    )
    
    type protocol string
    
    // PortMapping is the port mapping configurations of a sandbox.
    type PortMapping struct {
    	// protocol of the port mapping.
    	Protocol *protocol
    	// Port number within the container.
    	ContainerPort *int32
    	// Port number on the host.
    	HostPort *int32
    }
    
    // Data contains all types of data that can be stored in the checkpoint.
    type Data struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 19 03:53:33 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1/types.go

    }
    
    // PatchType is the type of patch being used to represent the mutated object
    type PatchType string
    
    // PatchType constants.
    const (
    	PatchTypeJSONPatch PatchType = "JSONPatch"
    )
    
    // Operation is the type of resource operation being checked for admission control
    type Operation string
    
    // Operation constants
    const (
    	Create  Operation = "CREATE"
    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

    type CustomResourceColumnDefinition struct {
    	// name is a human readable name for the column.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// type is an OpenAPI type definition for this column.
    	// See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
    	Type string `json:"type" protobuf:"bytes,2,opt,name=type"`
    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. pkg/kubelet/cadvisor/types.go

    limitations under the License.
    */
    
    //go:generate mockgen -source=types.go -destination=testing/cadvisor_mock.go -package=testing Interface
    package cadvisor
    
    import (
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    )
    
    // Interface is an abstract interface for testability.  It abstracts the interface to cAdvisor.
    type Interface interface {
    	Start() error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    type CustomResourceColumnDefinition struct {
    	// name is a human readable name for the column.
    	Name string
    	// type is an OpenAPI type definition for this column.
    	// See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.
    	Type string
    	// format is an optional OpenAPI type definition for this column. The 'name' format is applied
    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/api/admission/v1beta1/types.go

    }
    
    // PatchType is the type of patch being used to represent the mutated object
    type PatchType string
    
    // PatchType constants.
    const (
    	PatchTypeJSONPatch PatchType = "JSONPatch"
    )
    
    // Operation is the type of resource operation being checked for admission control
    type Operation string
    
    // Operation constants
    const (
    	Create  Operation = "CREATE"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/types.go

    type ActivePodsFunc func() []*v1.Pod
    
    // PodCleanedUpFunc returns true if all resources associated with a pod have been reclaimed.
    type PodCleanedUpFunc func(*v1.Pod) bool
    
    // statsFunc returns the usage stats if known for an input pod.
    type statsFunc func(pod *v1.Pod) (statsapi.PodStats, bool)
    
    // rankFunc sorts the pods in eviction order
    type rankFunc func(pods []*v1.Pod, stats statsFunc)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1/types.go

    // labels, which must be joined to produce the full set of endpoints.
    type EndpointSlice struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// addressType specifies the type of address carried by this EndpointSlice.
    	// All addresses in this slice must be the same type. This field is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/types.go

    	// with zero prefix size cannot be stored either.
    	HashIPPortNet Type = "hash:ip,port,net"
    	// BitmapPort represents the `bitmap:port` type ipset.  The bitmap:port set type uses a memory range, where each bit
    	// represents one TCP/UDP port.  A bitmap:port type of set can store up to 65535 ports.
    	BitmapPort Type = "bitmap:port"
    	// HashIP represents the `hash:ip` type ipset.
    	HashIP Type = "hash:ip"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pkg/apis/authentication/types.go

    	// audience of the Kubernetes apiserver.
    	Audiences []string
    }
    
    // TokenReviewStatus is the result of the token authentication request.
    // This type mirrors the authentication.Token interface
    type TokenReviewStatus struct {
    	// Authenticated indicates that the token was associated with a known user.
    	Authenticated bool
    	// User is the UserInfo associated with the provided token.
    	User UserInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top