Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for omitempty (0.13 sec)

  1. pkg/bootstrap/option/convert.go

    type TransportSocket struct {
    	Name        string          `json:"name,omitempty"`
    	TypedConfig *pstruct.Struct `json:"typed_config,omitempty"`
    }
    
    // TCPKeepalive wraps is a thin JSON for xDS proto
    type TCPKeepalive struct {
    	KeepaliveProbes   *wrappers.UInt32Value `json:"keepalive_probes,omitempty"`
    	KeepaliveTime     *wrappers.UInt32Value `json:"keepalive_time,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. cmd/storage-datatypes.go

    // the duration of each API.
    type DiskMetrics struct {
    	LastMinute              map[string]AccElem `json:"apiLatencies,omitempty"`
    	APICalls                map[string]uint64  `json:"apiCalls,omitempty"`
    	TotalWaiting            uint32             `json:"totalWaiting,omitempty"`
    	TotalErrorsAvailability uint64             `json:"totalErrsAvailability"`
    	TotalErrorsTimeout      uint64             `json:"totalErrsTimeout"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/codehost.go

    // to see whether the result remains up-to-date.
    type Origin struct {
    	VCS    string `json:",omitempty"` // "git" etc
    	URL    string `json:",omitempty"` // URL of repository
    	Subdir string `json:",omitempty"` // subdirectory in repo
    
    	Hash string `json:",omitempty"` // commit hash or ID
    
    	// If TagSum is non-empty, then the resolution of this module version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. pkg/dns/proto/nds.pb.go

    	Ips []string `protobuf:"bytes,1,rep,name=ips,proto3" json:"ips,omitempty"`
    	// The name of the service registry containing the service (e.g. 'Kubernetes').
    	Registry string `protobuf:"bytes,2,opt,name=registry,proto3" json:"registry,omitempty"`
    	// The k8s service name. Only applies when registry=`Kubernetes`
    	Shortname string `protobuf:"bytes,3,opt,name=shortname,proto3" json:"shortname,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/bucket-lifecycle.go

    type S3Location struct {
    	BucketName   string          `xml:"BucketName,omitempty"`
    	Encryption   Encryption      `xml:"Encryption,omitempty"`
    	Prefix       string          `xml:"Prefix,omitempty"`
    	StorageClass string          `xml:"StorageClass,omitempty"`
    	Tagging      *tags.Tags      `xml:"Tagging,omitempty"`
    	UserMetadata []MetadataEntry `xml:"UserMetadata"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. cmd/batch-rotate.go

    	NewerThan     time.Duration `yaml:"newerThan,omitempty" json:"newerThan"`
    	OlderThan     time.Duration `yaml:"olderThan,omitempty" json:"olderThan"`
    	CreatedAfter  time.Time     `yaml:"createdAfter,omitempty" json:"createdAfter"`
    	CreatedBefore time.Time     `yaml:"createdBefore,omitempty" json:"createdBefore"`
    	Tags          []BatchJobKV  `yaml:"tags,omitempty" json:"tags"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. internal/bucket/object/lock/lock.go

    type ObjectRetention struct {
    	XMLNS           string        `xml:"xmlns,attr,omitempty"`
    	XMLName         xml.Name      `xml:"Retention"`
    	Mode            RetMode       `xml:"Mode,omitempty"`
    	RetainUntilDate RetentionDate `xml:"RetainUntilDate,omitempty"`
    }
    
    // Maximum 4KiB size per object retention config.
    const maxObjectRetentionSize = 1 << 12
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/encoding/json/encode_test.go

    	Sr string `json:"sr"`
    	So string `json:"so,omitempty"`
    	Sw string `json:"-"`
    
    	Ir int `json:"omitempty"` // actually named omitempty, not an option
    	Io int `json:"io,omitempty"`
    
    	Slr []string `json:"slr,random"`
    	Slo []string `json:"slo,omitempty"`
    
    	Mr map[string]any `json:"mr"`
    	Mo map[string]any `json:",omitempty"`
    
    	Fr float64 `json:"fr"`
    	Fo float64 `json:"fo,omitempty"`
    
    	Br bool `json:"br"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/edit.go

    	Go        string `json:",omitempty"`
    	Toolchain string `json:",omitempty"`
    	Require   []requireJSON
    	Exclude   []module.Version
    	Replace   []replaceJSON
    	Retract   []retractJSON
    }
    
    type editModuleJSON struct {
    	Path       string
    	Deprecated string `json:",omitempty"`
    }
    
    type requireJSON struct {
    	Path     string
    	Version  string `json:",omitempty"`
    	Indirect bool   `json:",omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/service.go

    }
    
    type WorkloadInstance struct {
    	Name      string `json:"name,omitempty"`
    	Namespace string `json:"namespace,omitempty"`
    	// Where the workloadInstance come from, valid values are`Pod` or `WorkloadEntry`
    	Kind     workloadKind      `json:"kind"`
    	Endpoint *IstioEndpoint    `json:"endpoint,omitempty"`
    	PortMap  map[string]uint32 `json:"portMap,omitempty"`
    	// Can only be selected by service entry of DNS type.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top