Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 369 for typeA (0.24 sec)

  1. staging/src/k8s.io/api/scheduling/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.14
    
    // PriorityClass defines mapping from a priority class name to the priority
    // integer value. The value can be any valid integer.
    type PriorityClass struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	StartTime *metav1.Time `json:"startTime,omitempty" protobuf:"bytes,7,opt,name=startTime"`
    }
    
    type CarpCondition struct {
    	// Type is the type of the condition.
    	// Currently only Ready.
    	// More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
    	Type CarpConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=CarpConditionType"`
    	// Status is the status of the condition.
    	// Can be True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    // BootstrapToken represents information for the bootstrap token output produced by kubeadm
    type BootstrapToken struct {
    	metav1.TypeMeta `json:",inline"`
    
    	bootstraptokenv1.BootstrapToken
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Images represents information for the output produced by 'kubeadm config images list'
    type Images struct {
    	metav1.TypeMeta `json:",inline"`
    
    	Images []string `json:"images"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. pkg/apis/apiserverinternal/types.go

    type StorageVersionConditionType string
    
    const (
    	//AllEncodingVersionsEqual Indicates that encoding storage versions reported by all servers are equal.
    	AllEncodingVersionsEqual StorageVersionConditionType = "AllEncodingVersionsEqual"
    )
    
    // ConditionStatus indicates status of condition from "True", "False", or "Unknown"
    type ConditionStatus string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/config/types.go

    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // PersistentVolumeBinderControllerConfiguration contains elements describing
    // PersistentVolumeBinderController.
    type PersistentVolumeBinderControllerConfiguration struct {
    	// pvClaimBinderSyncPeriod is the period for syncing persistent volumes
    	// and persistent volume claims.
    	PVClaimBinderSyncPeriod metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    	// acceptedTypes describes the kinds that this endpoint accepts.
    	// Subresources may accept the standard content types or define
    	// custom negotiation schemes. The list may not be exhaustive for
    	// all operations.
    	// +listType=map
    	// +listMapKey=group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/events/v1/types.go

    	// type is the type of this event (Normal, Warning), new types could be added in the future.
    	// It is machine-readable.
    	// This field cannot be empty for new Events.
    	Type string `json:"type,omitempty" protobuf:"bytes,11,opt,name=type"`
    
    	// deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/coordination/v1/types.go

    )
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.14
    
    // Lease defines a lease concept.
    type Lease struct {
    	metav1.TypeMeta `json:",inline"`
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    		return true
    
    	case *types.Basic:
    		switch typ.Kind() {
    		case types.UntypedBool,
    			types.Bool:
    			return m.t&argBool != 0
    
    		case types.UntypedInt,
    			types.Int,
    			types.Int8,
    			types.Int16,
    			types.Int32,
    			types.Int64,
    			types.Uint,
    			types.Uint8,
    			types.Uint16,
    			types.Uint32,
    			types.Uint64,
    			types.Uintptr:
    			return m.t&argInt != 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // AttachDetachControllerConfiguration contains elements describing AttachDetachController.
    type AttachDetachControllerConfiguration struct {
    	// Reconciler runs a periodic loop to reconcile the desired state of the with
    	// the actual state of the world by triggering attach detach operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top