Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,006 for cluster0 (0.34 sec)

  1. pkg/test/framework/config.go

    type configFactory struct {
    	ctx      resource.Context
    	clusters []cluster.Cluster
    	prefix   string
    }
    
    func newConfigFactory(ctx resource.Context, clusters cluster.Clusters) config.Factory {
    	if len(clusters) == 0 {
    		clusters = ctx.Clusters()
    	}
    	return &configFactory{
    		ctx:      ctx,
    		clusters: clusters,
    	}
    }
    
    // GlobalYAMLWrites records how many YAMLs we have applied from all sources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/environment.go

    type Environment interface {
    	Resource
    
    	EnvironmentName() string
    
    	// Clusters in this Environment. There will always be at least one.
    	Clusters() cluster.Clusters
    
    	// AllClusters in this Environment, including external control planes.
    	AllClusters() cluster.Clusters
    	IsMultiCluster() bool
    	IsMultiNetwork() bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 27 15:52:38 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    		// upstream cluster will use HTTP 1.1, if incoming traffic use HTTP2,
    		// the upstream cluster will use HTTP2.
    		cb.setUseDownstreamProtocol(cluster)
    	}
    }
    
    // normalizeClusters normalizes clusters to avoid duplicate clusters. This should be called
    // at the end before adding the cluster to list of clusters.
    func (cb *ClusterBuilder) normalizeClusters(clusters []*discovery.Resource) []*discovery.Resource {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    )
    
    // ApplyClusterMerge processes the MERGE operation and merges the supplied configuration to the matched clusters.
    func ApplyClusterMerge(pctx networking.EnvoyFilter_PatchContext, efw *model.EnvoyFilterWrapper,
    	c *cluster.Cluster, hosts []host.Name,
    ) (out *cluster.Cluster) {
    	defer runtime.HandleCrash(runtime.LogPanic, func(any) {
    		log.Errorf("clusters patch %s/%s caused panic, so the patches did not take effect", efw.Namespace, efw.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. tests/integration/pilot/multicluster_test.go

    		Run(func(t framework.TestContext) {
    			if len(t.Clusters().Primaries()) == 0 {
    				t.Skip("no primary cluster in framework (most likely only remote-config)")
    			}
    
    			// we don't need to test this per-cluster
    			primary := t.Clusters().Primaries()[0]
    			// it doesn't matter if the other cluster is a primary/remote/etc.
    			remote := t.Clusters().Exclude(primary)[0]
    
    			var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/clone_constants_for_better_clustering.h

    // Clones small host constants in the graph to make it easier to form larger
    // clusters.
    //
    // This helps us in two ways:
    //
    //  - It reduces dependencies between clusters.  Let's say a constant C is used
    //    by nodes X and Y.  If X and Y are put in different clusters (for whatever
    //    reason) Y's cluster now has to wait for all the operations in X's cluster
    //    to finish before it starts running.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 23:57:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_activity.proto

        int32 count = 2;
      }
    
      // Describes a single XLA cluster.
      //
      // Next ID: 4
      message Cluster {
        string name = 1;
    
        // The number of nodes in the cluster.
        int32 size = 2;
    
        // A histogram of the TF operations in this cluster.
        repeated OpAndCount op_histogram = 3;
      }
    
      // The number of nodes in the graph that are not inside an XLA cluster.
      int32 unclustered_node_count = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 15 03:11:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. cmd/metrics-v3-cluster-erasure-set.go

    		poolIDL, setIDL)
    )
    
    func b2f(v bool) float64 {
    	if v {
    		return 1
    	}
    	return 0
    }
    
    // loadClusterErasureSetMetrics - `MetricsLoaderFn` for cluster storage erasure
    // set metrics.
    func loadClusterErasureSetMetrics(ctx context.Context, m MetricValues, c *metricsCache) error {
    	result, _ := c.esetHealthResult.Get()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // Returns true if the devices in `cluster_a` and `cluster_b` are compatible
      // and therefore not a hindrance for combining the two clusters into a larger
      // cluster.
      absl::StatusOr<bool> AreDevicesCompatible(const Cluster& cluster_a,
                                                const Cluster& cluster_b);
    
      void DumpPostClusteringGraphs();
      void VLogClusteringSummary();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. istioctl/pkg/workload/testdata/vmconfig/ipv4/cluster.env.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 655 bytes
    - Viewed (0)
Back to top