Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for CLUSTER_ID (0.4 sec)

  1. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

      graph_opts.expect_device_spec = true;
      graph_opts.allow_internal_ops = true;
      TF_RETURN_IF_ERROR(
          ConvertGraphDefToGraph(graph_opts, auto_clustered_graph_def, &graph));
    
      // cluster_id -> (operation name -> # of operations)
      const int kNoCluster = -1;
      std::map<int, std::map<string, int>> clusters;
      std::map<int, int> cluster_size;
      int clustered_nodes = 0;
      for (Node* n : graph.op_nodes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. hack/ginkgo-e2e.sh

      --gce-zone="${ZONE:-}" \
      --gce-region="${REGION:-}" \
      --gce-multizone="${MULTIZONE:-false}" \
      --gke-cluster="${CLUSTER_NAME:-}" \
      --kube-master="${KUBE_MASTER:-}" \
      --cluster-tag="${CLUSTER_ID:-}" \
      --cloud-config-file="${CLOUD_CONFIG:-}" \
      --repo-root="${KUBE_ROOT}" \
      --node-instance-group="${NODE_INSTANCE_GROUP:-}" \
      --prefix="${KUBE_GCE_INSTANCE_PREFIX:-e2e}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. pilot/pkg/features/pilot.go

    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    			" distribute ./etc/certs/root-cert.pem. Only used if custom certificates are not mounted.").Get()
    
    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    		"Defines the cluster and service registry that this Istiod instance belongs to").Get()
    
    	ExternalIstiod = env.Register("EXTERNAL_ISTIOD", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                    "value": "namespace-istio-waypoint"
                                  }
                                },
                                {
                                  "tag": "istio.cluster_id",
                                  "literal": {
                                    "value": "Kubernetes"
                                  }
                                },
                                {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      repeated string authorization_policies = 16;
    
      WorkloadStatus status = 17;
    
      // The cluster ID that the workload instance belongs to
      string cluster_id = 18;
    
      // The Locality defines information about where a workload is geographically deployed
      Locality locality = 24;
    
      // Reservations for deleted fields.
      reserved 15;
    }
    
    message Locality {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pkg/kube/multicluster/secretcontroller.go

    		}
    
    		c.deleteCluster(secretKey, cluster)
    	}
    
    	log.Infof("Number of remote clusters: %d", c.cs.Len())
    }
    
    func (c *Controller) deleteCluster(secretKey string, cluster *Cluster) {
    	log.Infof("Deleting cluster_id=%v configured by secret=%v", cluster.ID, secretKey)
    	cluster.Stop()
    	c.handleDelete(cluster.ID)
    	c.cs.Delete(secretKey, cluster.ID)
    
    	log.Infof("Number of remote clusters: %d", c.cs.Len())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/compare/testdata/configdump.json

                                    "value": "namespace-istio-waypoint"
                                  }
                                },
                                {
                                  "tag": "istio.cluster_id",
                                  "literal": {
                                    "value": "Kubernetes"
                                  }
                                },
                                {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/aggregate/controller.go

    	nodeClusterID := nodeClusterID(node)
    	for _, r := range c.GetRegistries() {
    		if skipSearchingRegistryForProxy(nodeClusterID, r) {
    			log.Debugf("GetProxyServiceTargets(): not searching registry %v: proxy %v CLUSTER_ID is %v",
    				r.Cluster(), node.ID, nodeClusterID)
    			continue
    		}
    
    		instances := r.GetProxyServiceTargets(node)
    		if len(instances) > 0 {
    			out = append(out, instances...)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. pkg/model/proxy.go

    	// MeshID specifies the mesh ID environment variable.
    	MeshID string `json:"MESH_ID,omitempty"`
    
    	// ClusterID defines the cluster the node belongs to.
    	ClusterID cluster.ID `json:"CLUSTER_ID,omitempty"`
    
    	// Network defines the network the node belongs to. It is an optional metadata,
    	// set at injection time. When set, the Endpoints returned to a node and not on same network
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/tracing.go

    			},
    		},
    		{
    			Tag: "istio.namespace",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: namespace,
    				},
    			},
    		},
    		{
    			Tag: "istio.cluster_id",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: clusterID,
    				},
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top