Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for omitempty (0.33 sec)

  1. 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)
  2. 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)
  3. cmd/veeam-sos-api.go

    	} `mxl:"ProtocolCapabilities"`
    	APIEndpoints          *apiEndpoints `xml:"APIEndpoints,omitempty"`
    	SystemRecommendations struct {
    		S3ConcurrentTaskLimit    int `xml:"S3ConcurrentTaskLimit,omitempty"`
    		S3MultiObjectDeleteLimit int `xml:"S3MultiObjectDeleteLimit,omitempty"`
    		StorageCurrentTaskLimit  int `xml:"StorageCurrentTaskLimit,omitempty"`
    		KBBlockSize              int `xml:"KbBlockSize"`
    	} `xml:"SystemRecommendations"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/zdsapi/zds.pb.go

    	unknownFields protoimpl.UnknownFields
    
    	Name           string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
    	Namespace      string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    	ServiceAccount string `protobuf:"bytes,3,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"`
    }
    
    func (x *WorkloadInfo) Reset() {
    	*x = WorkloadInfo{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. istioctl/pkg/admin/istiodconfig.go

    	}}
    }
    
    type ScopeInfo struct {
    	Name            string `json:"name"`
    	Description     string `json:"description,omitempty"`
    	OutputLevel     string `json:"output_level,omitempty"`
    	StackTraceLevel string `json:"stack_trace_level,omitempty"`
    	LogCallers      bool   `json:"log_callers,omitempty"`
    }
    
    type ScopeLevelPair struct {
    	scope    string
    	logLevel string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. cmd/acl-handlers.go

    type grantee struct {
    	XMLNS       string `xml:"xmlns:xsi,attr"`
    	XMLXSI      string `xml:"xsi:type,attr"`
    	Type        string `xml:"Type"`
    	ID          string `xml:"ID,omitempty"`
    	DisplayName string `xml:"DisplayName,omitempty"`
    	URI         string `xml:"URI,omitempty"`
    }
    
    type grant struct {
    	Grantee    grantee `xml:"Grantee"`
    	Permission string  `xml:"Permission"`
    }
    
    type accessControlPolicy struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top