Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 282 for omitempty (0.46 sec)

  1. staging/src/k8s.io/api/discovery/v1beta1/types.go

    	// Label (RFC 1123) validation.
    	// +optional
    	Hostname *string `json:"hostname,omitempty" protobuf:"bytes,3,opt,name=hostname"`
    
    	// targetRef is a reference to a Kubernetes object that represents this
    	// endpoint.
    	// +optional
    	TargetRef *v1.ObjectReference `json:"targetRef,omitempty" protobuf:"bytes,4,opt,name=targetRef"`
    
    	// topology contains arbitrary topology information associated with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/roundtrip_test.go

    		},
    		{
    			name: "int64 omitempty",
    			obj: struct {
    				V int64 `json:"v,omitempty"`
    			}{},
    		},
    		{
    			name: "float64 omitempty",
    			obj: struct {
    				V float64 `json:"v,omitempty"`
    			}{},
    		},
    		{
    			name: "string omitempty",
    			obj: struct {
    				V string `json:"v,omitempty"`
    			}{},
    		},
    		{
    			name: "bool omitempty",
    			obj: struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 21:48:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	// +optional
    	CommonEncodingVersion *string `json:"commonEncodingVersion,omitempty" protobuf:"bytes,2,opt,name=commonEncodingVersion"`
    
    	// The latest available observations of the storageVersion's state.
    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []StorageVersionCondition `json:"conditions,omitempty" protobuf:"bytes,3,opt,name=conditions"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobspec.go

    	BackoffLimit            *int32                                    `json:"backoffLimit,omitempty"`
    	BackoffLimitPerIndex    *int32                                    `json:"backoffLimitPerIndex,omitempty"`
    	MaxFailedIndexes        *int32                                    `json:"maxFailedIndexes,omitempty"`
    	Selector                *metav1.LabelSelectorApplyConfiguration   `json:"selector,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionversion.go

    	Schema                   *CustomResourceValidationApplyConfiguration        `json:"schema,omitempty"`
    	Subresources             *CustomResourceSubresourcesApplyConfiguration      `json:"subresources,omitempty"`
    	AdditionalPrinterColumns []CustomResourceColumnDefinitionApplyConfiguration `json:"additionalPrinterColumns,omitempty"`
    	SelectableFields         []SelectableFieldApplyConfiguration                `json:"selectableFields,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1/types.go

    	// Label (RFC 1123) validation.
    	// +optional
    	Hostname *string `json:"hostname,omitempty" protobuf:"bytes,3,opt,name=hostname"`
    
    	// targetRef is a reference to a Kubernetes object that represents this
    	// endpoint.
    	// +optional
    	TargetRef *v1.ObjectReference `json:"targetRef,omitempty" protobuf:"bytes,4,opt,name=targetRef"`
    
    	// deprecatedTopology contains topology information part of the v1beta1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1/types.go

    	// +optional
    	Result *metav1.Status `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    
    	// The patch body. Currently we only support "JSONPatch" which implements RFC 6902.
    	// +optional
    	Patch []byte `json:"patch,omitempty" protobuf:"bytes,4,opt,name=patch"`
    
    	// The type of Patch. Currently we only allow "JSONPatch".
    	// +optional
    	PatchType *PatchType `json:"patchType,omitempty" protobuf:"bytes,5,opt,name=patchType"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podsecuritycontext.go

    	SupplementalGroups       []int64                                          `json:"supplementalGroups,omitempty"`
    	SupplementalGroupsPolicy *corev1.SupplementalGroupsPolicy                 `json:"supplementalGroupsPolicy,omitempty"`
    	FSGroup                  *int64                                           `json:"fsGroup,omitempty"`
    	Sysctls                  []SysctlApplyConfiguration                       `json:"sysctls,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	// reason is the reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// message is a human-readable explanation containing details about
    	// the transition
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1/types.go

    	// +optional
    	// +listType=atomic
    	APIGroups []string `json:"apiGroups,omitempty" protobuf:"bytes,2,rep,name=apiGroups"`
    	// Resources is a list of resources this rule applies to. '*' represents all resources.
    	// +optional
    	// +listType=atomic
    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top