Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for cluster_sets (0.3 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      CHECK(cluster_names == nullptr || cluster_names->empty());
      absl::flat_hash_map<string, std::vector<string>> cluster_sets;
      for (const auto& p : GetClusters(g)) {
        cluster_sets[p.second].push_back(p.first);
      }
      for (auto& p : cluster_sets) {
        if (cluster_names != nullptr) {
          cluster_names->push_back(p.first);
        }
        std::sort(p.second.begin(), p.second.end());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    			resolution:    model.ClientSideLB,
    			lbType:        defaultLBAlgorithm(),
    			discoveryType: cluster.Cluster_EDS,
    		},
    		{
    			name:          "redis disabled passthrough",
    			redisEnabled:  false,
    			resolution:    model.Passthrough,
    			lbType:        defaultLBAlgorithm(),
    			discoveryType: cluster.Cluster_EDS,
    		},
    		{
    			name:          "redis enabled",
    			redisEnabled:  true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/cluster/cluster_test.go

    Xiaopeng Han <******@****.***> 1688664212 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/cluster_test.go

    John Howard <******@****.***> 1590784921 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 605 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/cluster_test.go

    Lubomir I. Ivanov <******@****.***> 1704035812 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    							expectedClusters := cluster.Clusters{from.Config().Cluster}
    							checker = checkClustersReached(t.AllClusters(), expectedClusters)
    						} else {
    							// For calls to clusterset.local, we should fail DNS lookup. The clusterset.local host
    							// is only available for a service when it is exported in at least one cluster.
    							checker = checkDNSLookupFailed()
    						}
    						callAndValidate(t, ht, from, to, checker)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    				ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    				EdsClusterConfig:     &cluster.Cluster_EdsClusterConfig{ServiceName: "outbound|8080|v1|foo.default.svc.cluster.local"},
    			}},
    		},
    		{
    			name:        "subset destination rule with tls mode MUTUAL",
    			cluster:     &cluster.Cluster{Name: "foo", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS}},
    			clusterMode: DefaultClusterMode,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // ServiceImport in all clusters of the ClusterSet (i.e. mesh). While the serviceExportCache reads
    // ServiceExport to control the discoverability policy for individual endpoints, this controller
    // reads ServiceImport in the cluster in order to extract the ClusterSet VIP and generate a
    // synthetic service for the MCS host (i.e. clusterset.local). The aggregate.Controller will then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_traffic_policy_test.go

    		validateTLSContext func(t *testing.T, ctx *tls.UpstreamTlsContext)
    	}{
    		{
    			name:          "user specified without tls",
    			mtlsCtx:       userSupplied,
    			discoveryType: cluster.Cluster_EDS,
    			tls:           nil,
    			proxyProtocolSettings: &networking.TrafficPolicy_ProxyProtocol{
    				Version: networking.TrafficPolicy_ProxyProtocol_V2,
    			},
    			expectTransportSocket:      false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_util.cc

        if (src_outside_compilation && dst_outside_compilation &&
            *src_outside_compilation != *dst_outside_compilation) {
          auto dst_deps_it = cluster_deps->find(*dst_outside_compilation);
          if (dst_deps_it == cluster_deps->end()) {
            cluster_deps->insert(std::make_pair(
                *dst_outside_compilation,
                absl::flat_hash_set<string>({*src_outside_compilation})));
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top