Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,680 for cluster1 (0.14 sec)

  1. pkg/config/analysis/analyzers/multicluster_analyzers_test.go

    	return sa, nil
    }
    
    type fakeClientImpl struct {
    	kube.CLIClient
    	clusterID cluster.ID
    }
    
    func (f *fakeClientImpl) ClusterID() cluster.ID {
    	return f.clusterID
    }
    
    func addStore(sa *local.IstiodAnalyzer, clusterName string, yamls []string) error {
    	client := &fakeClientImpl{
    		CLIClient: kube.NewFakeClient(),
    		clusterID: cluster.ID(clusterName),
    	}
    	// Gather test files
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass_test.cc

        func.func @main() -> () {
         %0 = "tf_device.cluster"() ({
            "tf_device.launch"() ({
              "tf.B"() : () -> ()
              tf_device.return // end device
            }) {device = "/job:worker/replica:0/task:0/device:CPU:0"} : () -> ()
    
            tf_device.return // end cluster
          }) {cluster_attr = "cluster_attr"} : () -> tensor<*xi32>
          func.return
        }
      })";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.proto

      // For k8s resources, it is recommended to use the more readable format:
      //
      // cluster/group/kind/namespace/name/section-name
      //
      // As an example, a ServiceEntry with two WorkloadEntries inlined could become
      // two Workloads with the following UIDs:
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint1
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint2
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      let description = [{
        This pass extracts a CPU computation cluster with `_xla_outside_compilation`
        annotation from the head or tail of a Device cluster.
    
        For example:
    
        ```mlir
          %cluster = "tf_device.cluster"() ( {
            %a = "tf.A"(%arg0) {_xla_outside_compilation = "cluster1"} : (tensor<i32>) -> tensor<i32>
            %b = "tf.B"(%a) : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-NEXT: _replication_info = "replicate"
    // CHECK-SAME: device = "/device:TPU:0"
    // CHECK-SAME: topology = "topology"
    // CHECK:      return %[[CLUSTER]]#0, %[[CLUSTER]]#1, %[[CLUSTER]]#2
    
    
    // Test a nested user of an op in a cluster has its operand be updated to
    // `tf_device.cluster` result.
    // CHECK-LABEL: func @nested_cluster_op_user
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<i1>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. pkg/test/framework/components/zipkin/kube.go

    	if err != nil {
    		return err
    	}
    	return nil
    }
    
    func newKube(ctx resource.Context, cfgIn Config) (Instance, error) {
    	c := &kubeComponent{
    		cluster: ctx.Clusters().GetOrDefault(cfgIn.Cluster),
    	}
    	c.id = ctx.TrackResource(c)
    
    	// Find the zipkin pod and service, and start forwarding a local port.
    	cfg, err := istio.DefaultConfig(ctx)
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. pilot/pkg/model/service_test.go

    		{
    			first: &Service{
    				ClusterVIPs: AddressMap{
    					Addresses: map[cluster.ID][]string{
    						"cluster-1": {"c1-vip1,c1-vip2"},
    						"cluster-2": {"c2-vip1,c2-vip2"},
    					},
    				},
    			},
    			other: &Service{
    				ClusterVIPs: AddressMap{
    					Addresses: map[cluster.ID][]string{
    						"cluster-1": {"c1-vip1,c1-vip2"},
    						"cluster-2": {"c2-vip1,c2-vip2"},
    					},
    				},
    			},
    			shouldEq: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. istioctl/pkg/tag/generate_test.go

    						Namespace: "default",
    						Name:      "istiod-revision",
    					},
    					CABundle: []byte("ca"),
    				},
    			},
    		},
    	}
    	remoteInjectionURL             = "https://random.host.com/inject/cluster/cluster1/net/net1"
    	revisionCanonicalWebhookRemote = admitv1.MutatingWebhookConfiguration{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   "istio-sidecar-injector-revision",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. common/scripts/kind_provisioner.sh

        fi
      done
    }
    
    # load_cluster_topology function reads cluster configuration topology file and
    # sets up environment variables used by other functions. So this should be called
    # before anything else.
    #
    # Note: Cluster configuration topology file specifies basic configuration of each
    # KinD cluster like its name, pod and service subnets and network_id. If two cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation_test.go

    									RegistryServiceName: "istio-ingressgateway.istio-system.svc.cluster.local",
    								},
    								Port: 80,
    							},
    						},
    					},
    					"n2": {
    						Endpoints: []*meshconfig.Network_NetworkEndpoints{
    							{
    								Ne: &meshconfig.Network_NetworkEndpoints_FromRegistry{
    									FromRegistry: "cluster1",
    								},
    							},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top