Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 563 for cluster1 (0.23 sec)

  1. pilot/pkg/config/kube/gateway/testdata/deployment/cluster-ip.yaml

            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/default
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

    // in given cluster. Then all ops in cluster are replaced by `tf_device.launch`.
    void BuildLaunchForCluster(const TF::Cluster& c, OpBuilder* builder) {
      // Set insertion point to right after all operations in cluster.
      builder->setInsertionPoint(c.ops.back()->getNextNode());
    
      // Create a stand-alone region to hold all instructions in the cluster.
      Region region;
      region.push_back(new Block);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. tests/integration/pilot/revisions/uninstall_test.go

    	}, retry.Delay(checkResourceDelay), retry.Timeout(checkResourceTimeout))
    }
    
    // getRemainingResourcesCluster get specific resources from the cluster
    func getRemainingResourcesCluster(cs cluster.Cluster, gvr schema.GroupVersionResource, ls string) ([]unstructured.Unstructured, []string) {
    	usList, _ := cs.Dynamic().Resource(gvr).List(context.TODO(), metav1.ListOptions{LabelSelector: ls})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    						for _, cluster := range ctx.Clusters().ByNetwork()[ctx.Clusters().Default().NetworkName()] {
    							cluster := cluster
    							ctx.NewSubTest(cluster.StableName()).Run(func(ctx framework.TestContext) {
    								retry.UntilSuccessOrFail(ctx, func() error {
    									err := tracing.SendTraffic(ctx, nil, cluster)
    									if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/topology.go

    }
    
    func (c Topology) Primary() Cluster {
    	cluster, ok := c.AllClusters[c.PrimaryClusterName]
    	if !ok || cluster == nil {
    		panic(fmt.Errorf("cannot find %s, the primary cluster for %s", c.PrimaryClusterName, c.Name()))
    	}
    	return cluster
    }
    
    func (c Topology) PrimaryName() string {
    	return c.PrimaryClusterName
    }
    
    func (c Topology) Config() Cluster {
    	cluster, ok := c.AllClusters[c.ConfigClusterName]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. prow/lib.sh

      fi
    
      # https://docs.tilt.dev/choosing_clusters.html#discovering-the-registry
      for cluster in $(kind get clusters); do
        # TODO get context/config from existing variables
        kind export kubeconfig --name="${cluster}"
        for node in $(kind get nodes --name="${cluster}"); do
          kubectl annotate node "${node}" "kind.x-k8s.io/registry=localhost:${KIND_REGISTRY_PORT}" --overwrite;
        done
      done
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/customize_metrics_test.go

    					httpMetricVal, err = util.QueryPrometheus(t, cluster, httpDestinationQuery, promInst)
    					if err != nil {
    						util.PromDiff(t, promInst, cluster, httpDestinationQuery)
    						return err
    					}
    					httpChecked = true
    				}
    				_, err = util.QueryPrometheus(t, cluster, grpcDestinationQuery, promInst)
    				if err != nil {
    					util.PromDiff(t, promInst, cluster, grpcDestinationQuery)
    					return err
    				}
    				return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_util.h

    // Finds dependencies between outside compilation clusters, including both data
    // dependencies and control dependencies. cluster_deps maps the name name of an
    // outside compilation cluster to a set of names of outside compilation clusters
    // that it depends on.
    absl::StatusOr<
        std::unique_ptr<absl::flat_hash_map<string, std::vector<string>>>>
    OutsideCompilationClusterDependencies(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/registryredirector/kube.go

    )
    
    type kubeComponent struct {
    	id        resource.ID
    	ns        namespace.Instance
    	cluster   cluster.Cluster
    	address   string
    	forwarder kube.PortForwarder
    }
    
    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: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. prow/config/default.yaml

    # This configs KinD to spin up a k8s cluster with mixed protocol LB support and GRPCContainerProbe enabled
    # This should be used to create K8s clusters with versions >= 1.23
    kind: Cluster
    apiVersion: kind.x-k8s.io/v1alpha4
    kubeadmConfigPatches:
      - |
        apiVersion: kubeadm.k8s.io/v1beta3
        kind: ClusterConfiguration
        metadata:
          name: config
        etcd:
          local:
            # Run etcd in a tmpfs (in RAM) for performance improvements
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 19:17:14 UTC 2023
    - 1002 bytes
    - Viewed (0)
Back to top