Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for xds_cluster (0.18 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.cc

      return Scope(new Impl(*this, Impl::Tags::AssignedDevice(), assigned_device));
    }
    
    Scope Scope::WithXlaCluster(const string& xla_cluster) const {
      return Scope(new Impl(*this, Impl::Tags::XlaCluster(), xla_cluster));
    }
    
    Scope Scope::ColocateWith(const Operation& op) const {
      return Scope(new Impl(*this, Impl::Tags::Colocate(), op,
                            /* clear_colocations */ false));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope.h

      Scope WithAssignedDevice(const string& assigned_device) const;
    
      /// Returns a new scope.  All ops created within the returned scope will have
      /// their _XlaCluster attribute set to `xla_cluster`.
      Scope WithXlaCluster(const string& xla_cluster) const;
    
      /// Return a new scope. All ops created within the returned scope will be
      /// co-located on the device where op is placed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/jit/partially_decluster_pass.cc

          // If yes, decluster `n` to avoid the device-to-host memcpy.
          std::optional<absl::string_view> dst_cluster =
              result->count(dst) ? std::nullopt : GetXlaClusterForNode(*dst);
          if (from_cluster != dst_cluster) {
            CHECK(result->insert(n).second);
            break;
          }
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/istio-service-dashboard.json

            "query": "query_result( sum(istio_requests_total{reporter=\"destination\", destination_service=~\"$service\", destination_cluster=~\"$dstcluster\", destination_workload_namespace=~\"$dstns\"}) by (destination_workload) or sum(istio_tcp_sent_bytes_total{reporter=\"destination\", destination_service=~\"$service\", destination_cluster=~\"$dstcluster\", destination_workload_namespace=~\"$dstns\"}) by (destination_workload))",
            "refresh": 1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

        destination_cluster=~\\\"$dstcluster\\\", destination_workload_namespace=~\\\"$dstns\\\"})
        by (destination_workload) or sum(istio_tcp_sent_bytes_total{reporter=\\\"destination\\\",
        destination_service=~\\\"$service\\\", destination_cluster=~\\\"$dstcluster\\\",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "options": [], "query": "query_result( sum(istio_requests_total{reporter=\"destination\", destination_service=~\"$service\", destination_cluster=~\"$dstcluster\", destination_workload_namespace=~\"$dstns\"}) by (destination_workload) or sum(istio_tcp_sent_bytes_total{reporter=\"destination\", destination_service=~\"$service\", destination_cluster=~\"$dstcluster\", destination_workload_namespace=~\"$dstns\"}) by (destination_workload))", "refresh": 1, "regex": "/.*workload=\"([^\"]* "skipUrlSync": false,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top