Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 703 for omitempty (0.17 sec)

  1. internal/config/cache/remote.go

    	CacheControl string            `json:"cacheControl,omitempty" msg:",omitempty"`
    	Expires      string            `json:"expires,omitempty" msg:",omitempty"`
    	Metadata     map[string]string `json:"metadata,omitempty" msg:",omitempty"`
    	Range        string            `json:"range,omitempty" msg:",omitempty"`
    	PartNumber   int               `json:"partNumber,omitempty" msg:",omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modinfo/info.go

    type ModulePublic struct {
    	Path       string           `json:",omitempty"` // module path
    	Version    string           `json:",omitempty"` // module version
    	Query      string           `json:",omitempty"` // version query corresponding to this version
    	Versions   []string         `json:",omitempty"` // available module versions
    	Replace    *ModulePublic    `json:",omitempty"` // replaced by this module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/api.go

    	DestinationPorts    []uint16      `json:"destinationPorts,omitempty"`
    	NotDestinationPorts []uint16      `json:"notDestinationPorts,omitempty"`
    }
    
    type StringMatch struct {
    	Exact    string `json:"Exact,omitempty"`
    	Suffix   string `json:"Suffix,omitempty"`
    	Prefix   string `json:"Prefix,omitempty"`
    	Presence any    `json:"Presence,omitempty"`
    }
    
    type ZtunnelPolicy struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	SkipPhases []string `json:"skipPhases,omitempty"`
    
    	// Patches contains options related to applying patches to components deployed by kubeadm during
    	// "kubeadm init".
    	// +optional
    	Patches *Patches `json:"patches,omitempty"`
    
    	// Timeouts holds various timeouts that apply to kubeadm commands.
    	// +optional
    	Timeouts *Timeouts `json:"timeouts,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. internal/config/identity/openid/provider/provider.go

    	JwksURI                          string   `json:"jwks_uri,omitempty"`
    	ResponseTypesSupported           []string `json:"response_types_supported,omitempty"`
    	SubjectTypesSupported            []string `json:"subject_types_supported,omitempty"`
    	IDTokenSigningAlgValuesSupported []string `json:"id_token_signing_alg_values_supported,omitempty"`
    	ScopesSupported                  []string `json:"scopes_supported,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. cmd/sts-datatypes.go

    	Result  struct {
    		Credentials auth.Credentials `xml:"Credentials,omitempty"`
    		AssumedUser string           `xml:"AssumedUser,omitempty"`
    	} `xml:"AssumeRoleWithCustomTokenResult"`
    	Metadata struct {
    		RequestID string `xml:"RequestId,omitempty"`
    	} `xml:"ResponseMetadata,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/list/context.go

    )
    
    type Context struct {
    	GOARCH        string   `json:",omitempty"` // target architecture
    	GOOS          string   `json:",omitempty"` // target operating system
    	GOROOT        string   `json:",omitempty"` // Go root
    	GOPATH        string   `json:",omitempty"` // Go path
    	CgoEnabled    bool     `json:",omitempty"` // whether cgo can be used
    	UseAllFiles   bool     `json:",omitempty"` // use files regardless of //go:build lines, file names
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 21:56:16 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pkg/model/proxy.go

    	// Namespace is the namespace in which the workload instance is running.
    	Namespace string `json:"NAMESPACE,omitempty"`
    
    	// NodeName is the name of the kubernetes node on which the workload instance is running.
    	NodeName string `json:"NODE_NAME,omitempty"`
    
    	// WorkloadName specifies the name of the workload represented by this node.
    	WorkloadName string `json:"WORKLOAD_NAME,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/testing/types.go

    	E                                     int32                `json:"E,omitempty"`
    	F                                     int64                `json:"F,omitempty"`
    	G                                     uint                 `json:"G,omitempty"`
    	H                                     uint8                `json:"H,omitempty"`
    	I                                     uint16               `json:"I,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/format/format.go

    type Event struct {
    	Name      string  `json:"name,omitempty"`
    	Phase     string  `json:"ph"`
    	Scope     string  `json:"s,omitempty"`
    	Time      float64 `json:"ts"`
    	Dur       float64 `json:"dur,omitempty"`
    	PID       uint64  `json:"pid"`
    	TID       uint64  `json:"tid"`
    	ID        uint64  `json:"id,omitempty"`
    	BindPoint string  `json:"bp,omitempty"`
    	Stack     int     `json:"sf,omitempty"`
    	EndStack  int     `json:"esf,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top