Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 547 for cluster1 (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    				},
    			}
    
    			for _, cluster := range ctx.Clusters() {
    				ctx.NewSubTest(fmt.Sprintf("From %s", cluster.StableName())).Run(func(t framework.TestContext) {
    					// naked: only test app without sidecar, send requests from trust domain aliases
    					// client: app with sidecar, send request from cluster.local
    					// server: app with sidecar, verify requests from cluster.local or trust domain aliases
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. releasenotes/notes/remote-cluster-respect-revision.yaml

    JC <******@****.***> 1706895400 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 261 bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/context.go

    				foundInternalIP.InsertAll(svc.GetAddresses(&model.Proxy{Metadata: &model.NodeMetadata{ClusterID: gc.cluster}})...)
    				if svc.Attributes.ClusterExternalAddresses.Len() > 0 {
    					// Fetch external IPs from all clusters
    					svc.Attributes.ClusterExternalAddresses.ForEach(func(c cluster.ID, externalIPs []string) {
    						foundExternal.InsertAll(externalIPs...)
    					})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/istio.go

    	// outside its cluster.
    	RemoteDiscoveryAddressFor(cluster cluster.Cluster) (netip.AddrPort, error)
    	// CreateRemoteSecret on the cluster with the given options.
    	CreateRemoteSecret(ctx resource.Context, c cluster.Cluster, opts ...string) (string, error)
    	// InternalDiscoveryAddressFor returns an internal (port-forwarded) address for an Istiod instance in the
    	// cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top