Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 524 for cluster0 (0.23 sec)

  1. 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)
  2. 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)
  3. pkg/workloadapi/workload.proto

      // For k8s resources, it is recommended to use the more readable format:
      //
      // cluster/group/kind/namespace/name/section-name
      //
      // As an example, a ServiceEntry with two WorkloadEntries inlined could become
      // two Workloads with the following UIDs:
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint1
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint2
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/cluster_formation.mlir

            tf_executor.yield %4 : tensor<?xi32>
          }
          tf_executor.fetch %1#0 : tensor<?xi32>
        }
        func.return %0 : tensor<?xi32>
      }
    }
    
    // -----
    
    // Multiple clusters of different devices. Clusters depend on each other.
    
    module {
      // CHECK-LABEL: func @multiplerelatedclusters
      // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<?xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_traffic_policy.go

    	}
    
    	return mesh.H2UpgradePolicy == meshconfig.MeshConfig_UPGRADE
    }
    
    func (cb *ClusterBuilder) applyDefaultConnectionPool(cluster *cluster.Cluster) {
    	cluster.ConnectTimeout = proto.Clone(cb.req.Push.Mesh.ConnectTimeout).(*durationpb.Duration)
    }
    
    func applyLoadBalancer(c *cluster.Cluster, lb *networking.LoadBalancerSettings, port *model.Port,
    	locality *core.Locality, proxyLabels map[string]string, meshConfig *meshconfig.MeshConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. tests/integration/security/reachability_test.go

    											expectedClusters := cluster.Clusters{from.Config().Cluster}
    											if !check.IsDNSCaptureEnabled(t) && opts.To.Config().Headless {
    												opts.Check = check.And(opts.Check, check.ReachedSourceCluster(t.Clusters()))
    											} else {
    												opts.Check = check.And(opts.Check, check.ReachedClusters(t.Clusters(), expectedClusters))
    											}
    										}
    									} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

        return signalPassFailure();
    
      OpBuilder builder(&getContext());
      llvm::SmallVector<mlir::tf_device::ClusterOp, 4> clusters;
      module.walk(
          [&](mlir::tf_device::ClusterOp cluster) { clusters.push_back(cluster); });
    
      for (mlir::tf_device::ClusterOp cluster : clusters) {
        std::string host_device;
        bool cluster_updated = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/analyze_test.go

    	t.Helper()
    	if err := t.Clusters().Default().ApplyYAMLFiles(ns, filename); err != nil {
    		t.Fatal(err)
    	}
    	t.Cleanup(func() {
    		_ = t.Clusters().Default().DeleteYAMLFiles(ns, filename)
    	})
    }
    
    func TestMultiCluster(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			if len(t.Environment().Clusters()) < 2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. pilot/pkg/credentials/kube/secrets_test.go

    	mc.Add("remote2", remoteClient, stop)
    	cases := []struct {
    		cluster cluster2.ID
    		allowed bool
    	}{
    		{"local", true},
    		{"remote", true},
    		{"remote2", true},
    		{"invalid", false},
    	}
    	for _, tt := range cases {
    		t.Run(string(tt.cluster), func(t *testing.T) {
    			_, err := sc.ForCluster(tt.cluster)
    			if (err == nil) != tt.allowed {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. pkg/test/framework/testcontext.go

    }
    
    func (c *testContext) Environment() resource.Environment {
    	return c.suite.environment
    }
    
    func (c *testContext) Clusters() cluster.Clusters {
    	if c == nil || c.Environment() == nil {
    		return nil
    	}
    	return c.Environment().Clusters()
    }
    
    func (c *testContext) AllClusters() cluster.Clusters {
    	if c == nil || c.Environment() == nil {
    		return nil
    	}
    	return c.Environment().AllClusters()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top