Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 377 for cluster0 (0.12 sec)

  1. cmd/site-replication.go

    		}
    	}
    
    	// validate that all clusters are using the same IDP settings.
    	err = c.validateIDPSettings(ctx, sites)
    	if err != nil {
    		return madmin.ReplicateAddStatus{}, err
    	}
    
    	// For this `add` API, either all clusters must be empty or the local
    	// cluster must be the only one having some buckets.
    	if localHasBuckets && nonLocalPeerWithBuckets != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. tests/integration/helm/util.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/helm"
    	kubetest "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    	t         *testing.T
    	Listeners []*listener.Listener
    	Clusters  []*cluster.Cluster
    	Routes    []*route.RouteConfiguration
    }
    
    func NewSimulationFromConfigGen(t *testing.T, s *core.ConfigGenTest, proxy *model.Proxy) *Simulation {
    	l := s.Listeners(proxy)
    	sim := &Simulation{
    		t:         t,
    		Listeners: l,
    		Clusters:  s.Clusters(proxy),
    		Routes:    s.RoutesFromListeners(proxy, l),
    	}
    	return sim
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

        // Op does not belong to a TPU cluster.
        return std::nullopt;
      }
      // Op belongs to a TPU cluster.
      if (auto replication_info =
              op->getAttrOfType<StringAttr>(TF::kReplicationInfoAttr)) {
        // Borrow cluster name from replication info.
        return replication_info.getValue();
      }
      // Use special cluster name for non-replicated case.
      return kNoReplicationCluster;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pilot/test/xds/fake.go

    	DefaultClusterName cluster.ID
    	// If provided, the minor version will be overridden for calls to GetKubernetesVersion to 1.minor
    	KubernetesVersion string
    	// If provided, a service registry with the name of each map key will be created with the given objects.
    	KubernetesObjectsByCluster map[cluster.ID][]runtime.Object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/core.go

    		}
    	}
    
    	// only --node-cidr-mask-size-ipv4 and --node-cidr-mask-size-ipv6 supported with dual stack clusters.
    	// --node-cidr-mask-size flag is incompatible with dual stack clusters.
    	nodeCIDRMaskSizes, err := setNodeCIDRMaskSizes(controllerContext.ComponentConfig.NodeIPAMController, clusterCIDRs)
    	if err != nil {
    		return nil, false, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. tests/integration/pilot/cni/cniversionskew_test.go

    			if !i.Settings().EnableCNI {
    				t.Skip("CNI version skew test is only tested when CNI is enabled.")
    			}
    			for _, v := range versions {
    				installCNIOrFail(t, v)
    				podFetchFn := kube.NewSinglePodFetch(t.Clusters().Default(), i.Settings().SystemNamespace, "k8s-app=istio-cni-node")
    				// Make sure CNI pod is using image with applied version.
    				retry.UntilSuccessOrFail(t, func() error {
    					pods, err := podFetchFn()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    // Cluster that can deploy echo instances.
    // TODO putting this here for now to deal with circular imports, needs to be moved
    type Cluster interface {
    	cluster.Cluster
    
    	CanDeploy(Config) (Config, bool)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    	// ClusterExternalAddresses is a mapping between a cluster name and the external
    	// address(es) to access the service from outside the cluster.
    	// Used by the aggregator to aggregate the Attributes.ClusterExternalAddresses
    	// for clusters where the service resides
    	ClusterExternalAddresses *AddressMap
    
    	// ClusterExternalPorts is a mapping between a cluster name and the service port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/network.go

    					network: *nw,
    				}
    				_ = ranger.Insert(rangerEntry)
    			}
    			if ep.GetFromRegistry() != "" && cluster.ID(ep.GetFromRegistry()) == n.clusterID {
    				fromRegistry = true
    			}
    		}
    
    		// fromRegistry field specified this cluster
    		if fromRegistry {
    			// treat endpoints in this cluster as part of this network
    			if n.networkFromMeshConfig != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top