Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,006 for cluster0 (0.15 sec)

  1. hack/e2e-internal/e2e-grow-cluster.sh

    xichengliudui <******@****.***> 1550548203 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 1K bytes
    - Viewed (0)
  2. prow/integ-suite-kind.sh

      if [[ "${TOPOLOGY}" == "SINGLE_CLUSTER" ]]; then
        trace "setup kind cluster" setup_kind_cluster_retry "istio-testing" "${NODE_IMAGE}" "${KIND_CONFIG}"
      else
        trace "load cluster topology" load_cluster_topology "${CLUSTER_TOPOLOGY_CONFIG_FILE}"
        trace "setup kind clusters" setup_kind_clusters "${NODE_IMAGE}" "${IP_FAMILY}"
    
        TOPOLOGY_JSON=$(cat "${CLUSTER_TOPOLOGY_CONFIG_FILE}")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/tpu_cluster_util.h

    namespace mlir {
    namespace TFTPU {
    
    // For each TPU cluster in `module`, walk over all ops inside the cluster
    // and reachable in the call graph from the cluster.
    // For each op walked, `callback` is applied to the op, the root cluster, and
    // the root cluster's host device. `callback` returning WasInterrupted
    // indicates failure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/networkfilter.go

    	// because it is set on listener, not on a cluster.
    	tunnelingconfig.Apply(tcpProxy, destinationRule, "")
    
    	// TODO: Need to handle multiple cluster names for Redis
    	clusterName := clusterSpecifier.WeightedClusters.Clusters[0].Name
    	class := model.OutboundListenerClass(lb.node.Type)
    	tcpFilter := setAccessLogAndBuildTCPFilter(lb.push, lb.node, tcpProxy, class, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. tests/integration/security/ca_custom_root/secure_naming_test.go

    			to := match.Namespace(testNamespace).GetMatches(apps.EchoNamespace.B)
    			for _, cluster := range t.Clusters() {
    				t.NewSubTest(fmt.Sprintf("From %s", cluster.StableName())).Run(func(t framework.TestContext) {
    					a := match.And(match.Cluster(cluster), match.Namespace(testNamespace)).GetMatches(apps.EchoNamespace.A)[0]
    					b := match.And(match.Cluster(cluster), match.Namespace(testNamespace)).GetMatches(apps.EchoNamespace.B)[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/tests/keras_imagenet_main.golden_summary

    Clustered nodes: 2725
    Unclustered nodes: 606
    Number of clusters: 2
    
    unclustered size 606
     AssignAddVariableOp 1
     Const 108
     DivNoNan 1
     Identity 2
     Merge 53
     PlaceholderWithDefault 1
     ReadVariableOp 2
     Switch 1
     _Arg 435
     _Retval 2
    cluster 0 size 1910
     Add 16
     AddN 71
     ArgMax 1
     AssignAddVariableOp 1
     BiasAdd 1
     BiasAddGrad 1
     Cast 115
     Const 407
     Conv2D 53
     Conv2DBackpropFilter 53
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 874 bytes
    - Viewed (0)
  7. pilot/test/xdstest/extract.go

    	return h
    }
    
    func ExtractClusters(cc []*cluster.Cluster) map[string]*cluster.Cluster {
    	res := map[string]*cluster.Cluster{}
    	for _, c := range cc {
    		res[c.Name] = c
    	}
    	return res
    }
    
    func ExtractCluster(name string, cc []*cluster.Cluster) *cluster.Cluster {
    	return ExtractClusters(cc)[name]
    }
    
    func ExtractClusterEndpoints(clusters []*cluster.Cluster) map[string][]string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/renewal/readwriter.go

    	}
    
    	// get cluster info for current context and ensure a server certificate is embedded in it
    	clusterName := kubeConfig.Contexts[kubeConfig.CurrentContext].Cluster
    	if _, ok := kubeConfig.Clusters[clusterName]; !ok {
    		return nil, errors.Errorf("invalid kubeConfig file %s: missing cluster %s", rw.kubeConfigFilePath, clusterName)
    	}
    
    	cluster := kubeConfig.Clusters[clusterName]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 01 03:09:53 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/xds_test.go

    		serviceCluster      string
    		wantClusterLocal    map[cluster.ID][]string
    		wantNonClusterLocal map[cluster.ID][]string
    	}{
    		// set up a k8s service in each cluster, with a pod in each cluster and a workloadentry in cluster-1
    		"k8s service with pod and workloadentry": {
    			fakeOpts: func() xds.FakeOptions {
    				k8sObjects := map[cluster.ID]string{
    					"cluster-1": "",
    					"cluster-2": "",
    				}
    				i := 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. cluster/gce/config-test.sh

    # to resolve the partially qualified name.
    export SERVICEACCOUNT_ISSUER='https://kubernetes.default.svc.cluster.local'
    
    # Taint Windows nodes by default to prevent Linux workloads from being
    # scheduled onto them.
    WINDOWS_NODE_TAINTS=${WINDOWS_NODE_TAINTS:-node.kubernetes.io/os=win1809:NoSchedule}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top