Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for omitempty (0.2 sec)

  1. cmd/iam-store.go

    }
    
    // PolicyDoc represents an IAM policy with some metadata.
    type PolicyDoc struct {
    	Version    int `json:",omitempty"`
    	Policy     policy.Policy
    	CreateDate time.Time `json:",omitempty"`
    	UpdateDate time.Time `json:",omitempty"`
    }
    
    func newPolicyDoc(p policy.Policy) PolicyDoc {
    	now := UTCNow().Round(time.Millisecond)
    	return PolicyDoc{
    		Version:    1,
    		Policy:     p,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    	Level1d int // annihilated by Embed0a's Level1d
    	Level1e int `json:"x"` // annihilated by Embed0a.Level1e
    }
    
    type Embed0a struct {
    	Level1a int `json:"Level1a,omitempty"`
    	Level1b int `json:"LEVEL1B,omitempty"`
    	Level1c int `json:"-"`
    	Level1d int // annihilated by Embed0's Level1d
    	Level1f int `json:"x"` // annihilated by Embed0's Level1e
    }
    
    type Embed0b Embed0
    
    type Embed0c Embed0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    // ProxyPushStatus represents an event captured during config push to proxies.
    // It may contain additional message and the affected proxy.
    type ProxyPushStatus struct {
    	Proxy   string `json:"proxy,omitempty"`
    	Message string `json:"message,omitempty"`
    }
    
    // AddMetric will add an case to the metric.
    func (ps *PushContext) AddMetric(metric monitoring.Metric, key string, proxyID, msg string) {
    	if ps == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    			xprintf("%s\n", p)
    		}
    		return
    	}
    
    	type jsonResult struct {
    		GOOS         string
    		GOARCH       string
    		CgoSupported bool
    		FirstClass   bool
    		Broken       bool `json:",omitempty"`
    	}
    	var results []jsonResult
    	for _, p := range plats {
    		fields := strings.Split(p, "/")
    		results = append(results, jsonResult{
    			GOOS:         fields[0],
    			GOARCH:       fields[1],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // 	    // +patchMergeKey=type
    // 	    // +patchStrategy=merge
    // 	    // +listType=map
    // 	    // +listMapKey=type
    // 	    Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
    //
    // 	    // other fields
    // 	}
    message Condition {
      // type of condition in CamelCase or in foo.example.com/CamelCase.
      // ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // 	    // +patchMergeKey=type
    // 	    // +patchStrategy=merge
    // 	    // +listType=map
    // 	    // +listMapKey=type
    // 	    Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
    //
    // 	    // other fields
    // 	}
    message Condition {
      // type of condition in CamelCase or in foo.example.com/CamelCase.
      // ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    	PublicKey          publicKeyInfo
    	UniqueId           asn1.BitString   `asn1:"optional,tag:1"`
    	SubjectUniqueId    asn1.BitString   `asn1:"optional,tag:2"`
    	Extensions         []pkix.Extension `asn1:"omitempty,optional,explicit,tag:3"`
    }
    
    type dsaAlgorithmParameters struct {
    	P, Q, G *big.Int
    }
    
    type validity struct {
    	NotBefore, NotAfter time.Time
    }
    
    type publicKeyInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top