Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 801 for cluster1 (0.15 sec)

  1. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    			Listeners: []*envoy_listener.Listener{},
    			Clusters: []*envoy_cluster.Cluster{
    				{
    					Name:     "dynamic_forward_proxy_cluster",
    					LbPolicy: envoy_cluster.Cluster_CLUSTER_PROVIDED,
    					ClusterDiscoveryType: &envoy_cluster.Cluster_ClusterType{
    						ClusterType: &envoy_cluster.Cluster_CustomClusterType{
    							Name: "envoy.clusters.dynamic_forward_proxy",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/gcemetadata/kube.go

    )
    
    type kubeComponent struct {
    	id        resource.ID
    	ns        namespace.Instance
    	cluster   cluster.Cluster
    	address   string
    	addressVM string
    }
    
    func newKube(ctx resource.Context, cfg Config) (Instance, error) {
    	c := &kubeComponent{
    		cluster: ctx.Clusters().GetOrDefault(cfg.Cluster),
    	}
    
    	c.id = ctx.TrackResource(c)
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. releasenotes/notes/46719.yaml

    issue:
      - 46719
    releaseNotes:
      - |
        **Added** gated flag `ISTIO_ENABLE_IPV4_OUTBOUND_LISTENER_FOR_IPV6_CLUSTERS` to manage an additional outbound listener for IPv6-only clusters to deal with IPv4 NAT outbound traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 03 15:28:21 UTC 2023
    - 414 bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    //   `RewriteOutsideCompilationSubgraphFn`.
    // xla_cluster_name: XLA cluster name for this XLA computation. We need it
    //   because XLA cluster name might be different from `func_name`.
    // func_name_attrs: they will be used to instantiate the XLA computation func.
    // new_func_name: new function name for rewritten XLA computation func.
    // host_compute_core: mapping from outside compilation cluster name to XLA
    //   device assignment.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. samples/ambient-argo/documentation/argo-reference-arch.dot

        istio -> ztunnel
        extras[label="istio/extras.yaml"]
        istio -> extras
        tags[label="istio/tags.yaml"]
        istio -> tags
        fontsize="32"
        label = "ArgoCD Cluster";
      }
    
      subgraph cluster_1 {
        node [style=filled,color=white]
        subgraph cluster_istio {
            fontsize="24"
            label = "NS istio-system"
            istiod18[label="Istio 1.18.5 Control"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    CreateVerifyClusteringPass();
    
    // Creates a pass that forms clusters from operations of the same
    // `_replication_info` attribute.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateTPUClusterFormationPass(bool strict_clusters = false);
    
    // Creates a pass that extracts outside compilation (Host ops inside device
    // cluster) at head/tail of Device cluster to run before/after XLA computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/runtime_lowering_gpu.mlir

        func.return
      }
      func.func @empty_func() {
        func.return
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 13 17:41:44 UTC 2023
    - 840 bytes
    - Viewed (0)
  8. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    func (a *KubeJWTAuthenticator) getKubeClient(clusterID cluster.ID) kubernetes.Interface {
    	// first match local/primary cluster
    	// or if clusterID is not sent (we assume that its a single cluster)
    	if a.clusterID == clusterID || clusterID == "" {
    		return a.kubeClient
    	}
    
    	// secondly try other remote clusters
    	if a.remoteKubeClientGetter != nil {
    		if res := a.remoteKubeClientGetter(clusterID); res != nil {
    			return res
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/cluster_scoping_pass.cc

              // we see more cases needing cluster scoping in the future.
              /*edge_filter=*/nullptr);
    }
    
    // This preserves the parallelism between pipeline stages.  For example, below
    // is a typical pattern of input pipelining in Tensorflow and this heuristic
    // ensures Node_X and Node_Y are put into different clusters.  Without the
    // heuristic, they may be put into the same cluster and it can introduce
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/multicluster/service.go

    		// Compare if service has mixed mode like headless and clusterIP
    		if !addedHeadless && (firstService.ClusterIP == corev1.ClusterIPNone) != (service.ClusterIP == corev1.ClusterIPNone) {
    			addedHeadless = true
    			for c := range services {
    				inconsistentClusters.Insert(c.String())
    			}
    			inconsistentReasons.Insert("service has mixed mode like headless and clusterIP")
    		}
    
    		// Compare service types
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top