Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 227 for labelA (0.21 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. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: return %[[VAL34]]
      func.return %0 : tensor<?x?xf32>
    }
    
    // CHECK-LABEL: SoftmaxCrossEntropyWithLogits
    // CHECK-SAME: %[[FEATURES:.*]]: tensor<2x3xf32>, %[[LABELS:.*]]: tensor<2x3xf32>
    func.func @SoftmaxCrossEntropyWithLogits(%features: tensor<2x3xf32>, %labels: tensor<2x3xf32>) -> (tensor<2xf32>, tensor<2x3xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  3. common/scripts/metallb-native.yaml

                    items:
                      description: A label selector is a label query over a set of resources.
                        The result of matchLabels and matchExpressions are ANDed. An empty
                        label selector matches all objects. A null label selector matches
                        no objects.
                      properties:
                        matchExpressions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		}
    	}
    
    	getAttrs := func(obj runtime.Object) (labels.Set, fields.Set, error) {
    		pod, ok := obj.(*example.Pod)
    		if !ok {
    			return nil, nil, fmt.Errorf("invalid object")
    		}
    		return labels.Set(pod.Labels), nil, nil
    	}
    	predicate := storage.SelectionPredicate{
    		Label:    labels.Set{"even": "true"}.AsSelector(),
    		GetAttrs: getAttrs,
    		Limit:    4,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		Spec:   gatewaySpec,
    		Status: k8sbeta.GatewayStatus{},
    	}
    	labels := make(map[string]string, 2)
    	if trafficType != "" && validTrafficTypes.Contains(trafficType) {
    		labels[constants.AmbientWaypointForTrafficTypeLabel] = trafficType
    	} else {
    		labels[constants.AmbientWaypointForTrafficTypeLabel] = constants.ServiceTraffic
    	}
    	gateway.Labels = labels
    
    	if ready {
    		addrType := k8sbeta.IPAddressType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    	// Check debug profile
    	goroutineProf.WriteTo(&w, 1)
    	prof := w.String()
    
    	labels := labelMap{"label": "value"}
    	labelStr := "\n# labels: " + labels.String()
    	selfLabel := labelMap{"self-label": "self-value"}
    	selfLabelStr := "\n# labels: " + selfLabel.String()
    	fingLabel := labelMap{"fing-label": "fing-value"}
    	fingLabelStr := "\n# labels: " + fingLabel.String()
    	orderedPrefix := []string{
    		"\n50 @ ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    				if len(endpoints[i].Labels) == len(endpoints[j].Labels) {
    					iLabels := labelsToSlice(endpoints[i].Labels)
    					jLabels := labelsToSlice(endpoints[j].Labels)
    					for k := range iLabels {
    						if iLabels[k] < jLabels[k] {
    							return true
    						}
    					}
    				}
    				return len(endpoints[i].Labels) < len(endpoints[j].Labels)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    }{
    	{
    		// Reconcile the beta and the stable OS label using the stable label as the source of truth.
    		// TODO(#89477): no earlier than 1.22: drop the beta labels if they differ from the GA labels
    		primaryKey:            v1.LabelOSStable,
    		secondaryKey:          kubeletapis.LabelOS,
    		ensureSecondaryExists: true,
    	},
    	{
    		// Reconcile the beta and the stable arch label using the stable label as the source of truth.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. pkg/controller/disruption/disruption_test.go

    		}
    	}
    
    	d, _ := newDeployment(t, collectionSize)
    	d.Spec.Selector = newSel(dLabels)
    	add(t, dc.dStore, d)
    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 1, minimumOne+1, minimumOne, collectionSize, map[string]metav1.Time{})
    
    	rs, _ := newReplicaSet(t, collectionSize)
    	rs.Spec.Selector = newSel(dLabels)
    	rs.Labels = dLabels
    	add(t, dc.rsStore, rs)
    	dc.sync(ctx, pdbName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Selector is a label query over pods that should match the replica count.
    	// Label keys and values that must match in order to be controlled by this replica set.
    	// It must match the pod template's labels.
    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
Back to top