Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,786 for labels0 (0.25 sec)

  1. src/internal/types/testdata/check/stmt0.go

    	}
    	for y := range 1.5 /* ERROR "cannot range over 1.5 (untyped float constant)" */ {
    		_ = "" /* ERROR "mismatched types untyped string and untyped int" */ + 1
    	}
    }
    
    func labels0() {
    	goto L0
    	goto L1
    	L0:
    	L1:
    	L1 /* ERROR "already declared" */ :
    	if true {
    		goto L2
    		L2:
    		L0 /* ERROR "already declared" */ :
    	}
    	_ = func() {
    		goto L0
    		goto L1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/labels.go

    		mergedMap[k] = v
    	}
    	for k, v := range labels2 {
    		mergedMap[k] = v
    	}
    	return mergedMap
    }
    
    // Equals returns true if the given maps are equal
    func Equals(labels1, labels2 Set) bool {
    	if len(labels1) != len(labels2) {
    		return false
    	}
    
    	for k, v := range labels1 {
    		value, ok := labels2[k]
    		if !ok {
    			return false
    		}
    		if value != v {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/labels.go

    // insert records a new label declaration for the current block.
    // The label must not have been declared before in any block.
    func (b *block) insert(s *syntax.LabeledStmt) {
    	name := s.Label.Value
    	if debug {
    		assert(b.gotoTarget(name) == nil)
    	}
    	labels := b.labels
    	if labels == nil {
    		labels = make(map[string]*syntax.LabeledStmt)
    		b.labels = labels
    	}
    	labels[name] = s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/runtime/pprof/label.go

    	"slices"
    	"strings"
    )
    
    type label struct {
    	key   string
    	value string
    }
    
    // LabelSet is a set of labels.
    type LabelSet struct {
    	list []label
    }
    
    // labelContextKey is the type of contextKeys used for profiler labels.
    type labelContextKey struct{}
    
    func labelValue(ctx context.Context) labelMap {
    	labels, _ := ctx.Value(labelContextKey{}).(*labelMap)
    	if labels == nil {
    		return labelMap(nil)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/go/types/labels.go

    // insert records a new label declaration for the current block.
    // The label must not have been declared before in any block.
    func (b *block) insert(s *ast.LabeledStmt) {
    	name := s.Label.Name
    	if debug {
    		assert(b.gotoTarget(name) == nil)
    	}
    	labels := b.labels
    	if labels == nil {
    		labels = make(map[string]*ast.LabeledStmt)
    		b.labels = labels
    	}
    	labels[name] = s
    }
    
    // gotoTarget returns the labeled statement in the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. pkg/util/labels/labels.go

    	for key, value := range labels {
    		newLabels[key] = value
    	}
    	delete(newLabels, labelKey)
    	return newLabels
    }
    
    // AddLabel returns a map with the given key and value added to the given map.
    func AddLabel(labels map[string]string, labelKey, labelValue string) map[string]string {
    	if labelKey == "" {
    		// Don't need to add a label.
    		return labels
    	}
    	if labels == nil {
    		labels = make(map[string]string)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 17:34:12 UTC 2017
    - 3.7K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/labels.go

    // This file is a modified concatenation of the files
    // $GOROOT/test/label.go and $GOROOT/test/label1.go.
    
    package labels
    
    var x int
    
    func f0() {
    L1 /* ERROR "label L1 declared and not used" */ :
    	for {
    	}
    L2 /* ERROR "label L2 declared and not used" */ :
    	select {
    	}
    L3 /* ERROR "label L3 declared and not used" */ :
    	switch {
    	}
    L4 /* ERROR "label L4 declared and not used" */ :
    	if true {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. pkg/kube/labels/labels.go

    		if value, ok := labels[key]; ok {
    			return value, true
    		}
    	}
    	return "", false
    }
    
    func HasCanonicalServiceName(labels map[string]string) bool {
    	_, ok := lookupLabelValue(labels, nameLabels...)
    	return ok
    }
    
    func HasCanonicalServiceRevision(labels map[string]string) bool {
    	_, ok := lookupLabelValue(labels, revisionLabels...)
    	return ok
    }
    
    func canonicalServiceRevision(labels map[string]string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/labels.go

    }
    
    // newPodLabels creates pod labels from v1.Pod.
    func newPodLabels(pod *v1.Pod) map[string]string {
    	labels := map[string]string{}
    
    	// Get labels from v1.Pod
    	for k, v := range pod.Labels {
    		labels[k] = v
    	}
    
    	labels[types.KubernetesPodNameLabel] = pod.Name
    	labels[types.KubernetesPodNamespaceLabel] = pod.Namespace
    	labels[types.KubernetesPodUIDLabel] = string(pod.UID)
    
    	return labels
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. operator/pkg/util/label.go

    // SetLabel is a helper function which sets the specified label and value on the specified object.
    func SetLabel(resource runtime.Object, label, value string) error {
    	resourceAccessor, err := meta.Accessor(resource)
    	if err != nil {
    		return err
    	}
    	labels := resourceAccessor.GetLabels()
    	if labels == nil {
    		labels = map[string]string{}
    	}
    	labels[label] = value
    	resourceAccessor.SetLabels(labels)
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top