Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for xds_cluster (0.11 sec)

  1. tests/testdata/multicluster/envoy_local_v2.yaml

        api_config_source:
          api_type: GRPC
          grpc_services:
            envoy_grpc:
              cluster_name: "xds_cluster"
      cds_config:
        api_config_source:
          api_type: GRPC
          grpc_services:
            envoy_grpc:
              cluster_name: "xds_cluster"
    
    static_resources:
      clusters:
      - name: xds_cluster
        connect_timeout: 0.25s
        type: STATIC
        lb_policy: ROUND_ROBIN
        http2_protocol_options: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 18 01:39:48 UTC 2018
    - 643 bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/cds.go

    	out := make([]*cluster.Cluster, 0, 1+len(subsetClusters))
    	if defaultCluster != nil {
    		out = append(out, defaultCluster)
    	}
    	return append(out, subsetClusters...)
    }
    
    // edsCluster creates a simple cluster to read endpoints from ads/eds.
    func edsCluster(name string) *cluster.Cluster {
    	return &cluster.Cluster{
    		Name:                 name,
    		ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/scope_internal.h

           bool clear_colocations);
      Impl(const Scope& other, Tags::AssignedDevice, const string& assigned_device);
      Impl(const Scope& other, Tags::XlaCluster, const string& xla_cluster);
    
      std::unordered_set<string> GetColocationConstraints(
          const Operation& colocate_with_op) const;
    
      // Helper functions to get a unique names.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top