Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 801 for cluster1 (0.18 sec)

  1. pkg/test/framework/components/prometheus/kube.go

    	return c.api[c.clusters.Default().Name()]
    }
    
    func (c *kubeComponent) APIForCluster(cluster cluster.Cluster) prometheusApiV1.API {
    	return c.api[cluster.Name()]
    }
    
    func (c *kubeComponent) RawQuery(cluster cluster.Cluster, promQL string) (model.Value, error) {
    	scopes.Framework.Debugf("Query running: %s", promQL)
    
    	v, _, err := c.api[cluster.Name()].Query(context.Background(), promQL, time.Now())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. istioctl/pkg/workload/testdata/vmconfig/ipv6/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
    - 657 bytes
    - Viewed (0)
  9. cluster/gce/manifests/cluster-autoscaler.manifest

    {
        "kind": "Pod",
        "apiVersion": "v1",
        "metadata": {
            "name": "cluster-autoscaler",
            "namespace": "kube-system",
            "labels": {
                "tier": "cluster-management",
                "component": "cluster-autoscaler"
            }
        },
        "spec": {
            "securityContext": {
                {{runAsUser}}
                {{runAsGroup}}
                {{supplementalGroups}}
                "seccompProfile": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. pilot/pkg/credentials/kube/multicluster.go

    	cc := m.component.ForCluster(clusterID)
    	if cc == nil {
    		return nil, fmt.Errorf("cluster %v is not configured", clusterID)
    	}
    	agg := &AggregateController{}
    	agg.controllers = []*CredentialsController{}
    	agg.authController = *cc
    	if clusterID != m.configCluster {
    		// If the request cluster is not the config cluster, we will append it and use it for auth
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top