Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 503 for omitempty (0.3 sec)

  1. internal/config/identity/openid/jwks.go

    type JWKS struct {
    	Keys []*JWKS `json:"keys,omitempty"`
    
    	Kty string `json:"kty"`
    	Use string `json:"use,omitempty"`
    	Kid string `json:"kid,omitempty"`
    	Alg string `json:"alg,omitempty"`
    
    	Crv string `json:"crv,omitempty"`
    	X   string `json:"x,omitempty"`
    	Y   string `json:"y,omitempty"`
    	D   string `json:"d,omitempty"`
    	N   string `json:"n,omitempty"`
    	E   string `json:"e,omitempty"`
    	K   string `json:"k,omitempty"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 02 23:02:35 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storagemigration/v1alpha1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    	// Specification of the migration.
    	// +optional
    	Spec StorageVersionMigrationSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    	// Status of the migration.
    	// +optional
    	Status StorageVersionMigrationStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    
    	// IP address of the host to which the carp is assigned. Empty if not yet scheduled.
    	// +optional
    	HostIP string `json:"hostIP,omitempty" protobuf:"bytes,5,opt,name=hostIP"`
    	// IP address allocated to the carp. Routable at least within the cluster.
    	// Empty if not yet allocated.
    	// +optional
    	CarpIP string `json:"carpIP,omitempty" protobuf:"bytes,6,opt,name=carpIP"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    	Config any    `json:"config,omitempty"`
    }
    
    type XdsServer struct {
    	ServerURI      string         `json:"server_uri,omitempty"`
    	ChannelCreds   []ChannelCreds `json:"channel_creds,omitempty"`
    	ServerFeatures []string       `json:"server_features,omitempty"`
    }
    
    type CertificateProvider struct {
    	PluginName string `json:"plugin_name,omitempty"`
    	Config     any    `json:"config,omitempty"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert.go

    		return "", false
    	}
    	parts := strings.Split(structTag, ",")
    	tag := parts[0]
    	if tag == "-" {
    		tag = ""
    	}
    	omitempty := false
    	parts = parts[1:]
    	for _, part := range parts {
    		if part == "omitempty" {
    			omitempty = true
    			break
    		}
    	}
    	return tag, omitempty
    }
    
    func isPointerKind(kind reflect.Kind) bool {
    	return kind == reflect.Pointer
    }
    
    func isStructKind(kind reflect.Kind) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/config.go

    type WorkEstimatorConfig struct {
    	*ListWorkEstimatorConfig     `json:"listWorkEstimatorConfig,omitempty"`
    	*MutatingWorkEstimatorConfig `json:"mutatingWorkEstimatorConfig,omitempty"`
    
    	// MinimumSeats is the minimum number of seats a request must occupy.
    	MinimumSeats uint64 `json:"minimumSeats,omitempty"`
    
    	// MaximumSeatsLimit is an upper limit on the max seats a request can occupy.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. internal/config/dns/types.go

    type SrvRecord struct {
    	Host     string      `json:"host,omitempty"`
    	Port     json.Number `json:"port,omitempty"`
    	Priority int         `json:"priority,omitempty"`
    	Weight   int         `json:"weight,omitempty"`
    	Text     string      `json:"text,omitempty"`
    	Mail     bool        `json:"mail,omitempty"` // Be an MX record. Priority becomes Preference.
    	TTL      uint32      `json:"ttl,omitempty"`
    
    	// Holds info about when the entry was created first.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/events/v1beta1/types.go

    	// +optional
    	Series *EventSeries `json:"series,omitempty" protobuf:"bytes,3,opt,name=series"`
    
    	// reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
    	// This field cannot be empty for new Events.
    	// +optional
    	ReportingController string `json:"reportingController,omitempty" protobuf:"bytes,4,opt,name=reportingController"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 11:06:50 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/testing/types.go

    	// +optional
    	Other string `json:"other,omitempty"`
    	// +optional
    	Labels map[string]string `json:"labels,omitempty"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    type SimpleRoot struct {
    	metav1.TypeMeta   `json:",inline"`
    	metav1.ObjectMeta `json:"metadata"`
    	// +optional
    	Other string `json:"other,omitempty"`
    	// +optional
    	Labels map[string]string `json:"labels,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/coordination/v1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// spec contains the specification of the Lease.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
    	// +optional
    	Spec LeaseSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    }
    
    // LeaseSpec is a specification of a Lease.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top