Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,309 for labelA (0.18 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    				ObjectMeta: metav1.ObjectMeta{Name: "addedPod", Labels: selector1},
    				Spec: v1.PodSpec{
    					NodeName: "nodeB",
    					Affinity: &v1.Affinity{
    						PodAntiAffinity: antiAffinityFooBar,
    					},
    				},
    			},
    			nodes: []*v1.Node{
    				{ObjectMeta: metav1.ObjectMeta{Name: "nodeA", Labels: label1}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "nodeB", Labels: label2}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  2. operator/pkg/compare/compare_test.go

     namespace: istio-system
     labels:
       - label1
       - label2
       - label3
    `,
    			b: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
     name: istio-ingressgateway
     namespace: istio-system
     labels:
       - label1
       - label5
       - label6
    `,
    			want: `metadata:
      labels:
        '[#1]': label2 -> label5
        '[#2]': label3 -> label6
    `,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K 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/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)
  5. staging/src/k8s.io/apimachinery/pkg/labels/labels.go

    limitations under the License.
    */
    
    package labels
    
    import (
    	"fmt"
    	"sort"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/util/validation/field"
    )
    
    // Labels allows you to present labels independently from their storage.
    type Labels interface {
    	// Has returns whether the provided label exists.
    	Has(label string) (exists bool)
    
    	// Get returns the value for the provided label.
    	Get(label string) (value string)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/pprof/label.go

    	for k, v := range parentLabels {
    		childLabels[k] = v
    	}
    	for _, label := range labels.list {
    		childLabels[label.key] = label.value
    	}
    	return context.WithValue(ctx, labelContextKey{}, &childLabels)
    }
    
    // Labels takes an even number of strings representing key-value pairs
    // and makes a [LabelSet] containing them.
    // A label overwrites a prior label with the same key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/util/label/label.go

    	LabelTopologyRegion  = "topology.kubernetes.io/region"
    )
    
    // AugmentLabels adds additional labels to the those provided.
    func AugmentLabels(in labels.Instance, clusterID cluster.ID, locality, k8sNode string, networkID network.ID) labels.Instance {
    	// Copy the original labels to a new map.
    	out := make(labels.Instance, len(in)+6)
    	for k, v := range in {
    		out[k] = v
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. 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)
  10. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    					Annotations: map[string]string{},
    				},
    			},
    			nodes: []*v1.Node{
    				{ObjectMeta: metav1.ObjectMeta{Name: "node1", Labels: label1}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node2", Labels: label2}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node3", Labels: label3}},
    			},
    			expectedList: []framework.NodeScore{{Name: "node1", Score: 0}, {Name: "node2", Score: 0}, {Name: "node3", Score: 0}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
Back to top