Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 343 for layers (0.1 sec)

  1. pkg/controller/daemon/util/daemonset_util_test.go

    			templateGeneration,
    			newPod("pod1", "node1", labels),
    			"",
    			true,
    		},
    		{
    			"templateGeneration doesn't match, hash does",
    			badGeneration,
    			newPod("pod1", "node1", labels),
    			hash,
    			true,
    		},
    		{
    			"templateGeneration and hash don't match",
    			badGeneration,
    			newPod("pod1", "node1", labels),
    			hash + "123",
    			false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/helper/helpers.go

    // that implements labels.Selector.
    func TopologySelectorRequirementsAsSelector(tsm []v1.TopologySelectorLabelRequirement) (labels.Selector, error) {
    	if len(tsm) == 0 {
    		return labels.Nothing(), nil
    	}
    
    	selector := labels.NewSelector()
    	for _, expr := range tsm {
    		r, err := labels.NewRequirement(expr.Key, selection.In, expr.Values)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    }
    
    // SetWorkloadLabels will set the node.Labels.
    // It merges both node meta labels and workload labels and give preference to workload labels.
    func (node *Proxy) SetWorkloadLabels(env *Environment) {
    	// If this is VM proxy, do not override labels at all, because in istio test we use pod to simulate VM.
    	if node.IsVM() {
    		node.Labels = node.Metadata.Labels
    		return
    	}
    	labels := env.GetProxyWorkloadLabels(node)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

                                          AnyRankedTensor:$labels),
      [(TF_SumOp (TF_MulNoNanOp:$sum_input
                         (TF_LogSoftmaxOp $features),
                         (TF_NegOp $labels)),
                 (TF_ConstOp (GetI64ScalarElementsAttr<-1>)),
                 /*keep_dims=*/ConstBoolAttrFalse),
       (TF_SubOp (TF_SoftmaxOp $features), $labels)],
      [(NonScalarType $features), (NonScalarType $labels)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller.go

    // ConvertWorkloadEntry convert wle from Config.Spec and populate the metadata labels into it.
    func ConvertWorkloadEntry(cfg config.Config) *networking.WorkloadEntry {
    	wle := cfg.Spec.(*networking.WorkloadEntry)
    	if wle == nil {
    		return nil
    	}
    
    	// we will merge labels from metadata with spec, with precedence to the metadata
    	labels := maps.MergeCopy(wle.Labels, cfg.Labels)
    	// shallow copy
    	copied := &networking.WorkloadEntry{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. pkg/bootstrap/config.go

    	// Add all instance labels with lower precedence than pod labels
    	extractInstanceLabels(options.Platform, meta)
    
    	// Add all pod labels found from filesystem
    	// These are typically volume mounted by the downward API
    	lbls, err := readPodLabels()
    	if err == nil {
    		meta.Labels = map[string]string{}
    		for k, v := range meta.StaticLabels {
    			meta.Labels[k] = v
    		}
    		for k, v := range lbls {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/informers_test.go

    			Namespace: "test",
    			UID:       "1234",
    			Labels:    map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeNone},
    		},
    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    		},
    	}
    	ns := &corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   "test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. samples/addons/kiali.yaml

    ---
    # Source: kiali-server/templates/serviceaccount.yaml
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: kiali
      namespace: istio-system
      labels:
        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/name: kiali
        app.kubernetes.io/instance: kiali
        version: "v1.85.0"
        app.kubernetes.io/version: "v1.85.0"
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: "kiali"
    ...
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller.go

    // kubernetesNode represents a kubernetes node that is reachable externally
    type kubernetesNode struct {
    	address string
    	labels  labels.Instance
    }
    
    // controllerInterface is a simplified interface for the Controller used for testing.
    type controllerInterface interface {
    	Network(endpointIP string, labels labels.Instance) network.ID
    }
    
    var (
    	_ controllerInterface      = &Controller{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

    metadata:
      labels:
        {{/* security.istio.io/tlsMode: istio must be set by user, if gRPC is using mTLS initialization code. We can't set it automatically. */}}
        service.istio.io/canonical-name: {{ index .ObjectMeta.Labels `service.istio.io/canonical-name` | default (index .ObjectMeta.Labels `app.kubernetes.io/name`) | default (index .ObjectMeta.Labels `app`) | default .DeploymentMeta.Name  | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top