Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FormatLabels (0.26 sec)

  1. staging/src/k8s.io/apimachinery/pkg/labels/labels.go

    // instead, which does not copy.
    func (ls Set) AsSelectorPreValidated() Selector {
    	return SelectorFromValidatedSet(ls)
    }
    
    // FormatLabels converts label map into plain string
    func FormatLabels(labelMap map[string]string) string {
    	l := Set(labelMap).String()
    	if l == "" {
    		l = "<none>"
    	}
    	return l
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top