Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 266 for clusterIPs (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/cluster_outlining.mlir

    // CHECK: %[[E_OUTPUT:[0-9]*]] = "tf.E"(%[[CLUSTER_1_ARG_0]])
    // CHECK: %[[F_OUTPUT:[0-9]*]] = "tf.F"(%[[CLUSTER_1_ARG_1]], %[[E_OUTPUT]])
    // CHECK: return %[[F_OUTPUT]]
    
    // -----
    
    // Tests outlining clusters with no live-in values.
    
    // CHECK-LABEL: func @cluster_operands
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<?xi32>)
    func.func @cluster_operands(%arg0: tensor<?xi32>) -> tensor<?xi32> {
      %0 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

        return signalPassFailure();
    
      OpBuilder builder(&getContext());
      llvm::SmallVector<mlir::tf_device::ClusterOp, 4> clusters;
      module.walk(
          [&](mlir::tf_device::ClusterOp cluster) { clusters.push_back(cluster); });
    
      for (mlir::tf_device::ClusterOp cluster : clusters) {
        std::string host_device;
        bool cluster_updated = false;
        if (failed(LiftHeadOutsideCompiledOps(&builder, side_effect_analysis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pkg/xds/server.go

    	// ResourceNames tracks the list of resources that are actively watched.
    	// For LDS and CDS, all resources of the TypeUrl type are watched if it is empty.
    	// For endpoints the resource names will have list of clusters and for clusters it is empty.
    	// For Delta Xds, all resources of the TypeUrl that a client has subscribed to.
    	ResourceNames []string
    
    	// Wildcard indicates the subscription is a wildcard subscription. This only applies to types that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. 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)
  5. cmd/kubeadm/test/kubeconfig/util.go

    func AssertKubeConfigCurrentCluster(t *testing.T, config *clientcmdapi.Config, expectedAPIServerAddress string, expectedAPIServerCaCert *x509.Certificate) {
    	currentContext := config.Contexts[config.CurrentContext]
    	currentCluster := config.Clusters[currentContext.Cluster]
    
    	// Assert expectedAPIServerAddress
    	if currentCluster.Server != expectedAPIServerAddress {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. tests/integration/ambient/waypoint_test.go

    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestWaypointStatus(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			client := t.Clusters().Default().GatewayAPI().GatewayV1beta1().GatewayClasses()
    
    			check := func() error {
    				gwc, _ := client.Get(context.Background(), constants.WaypointGatewayClassName, metav1.GetOptions{})
    				if gwc == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        include verifying that clusters have been created and have been outside
        compiled, the result is device agnostic and in TF functional dialect &
        that the device attribute exists.
      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateVerifyClusteringPass()";
    }
    
    def TPUClusterFormationPass : Pass<"tf-tpu-cluster-formation", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/setup_test.go

    	if err := cdeployment.SetupSingleNamespace(&apps, cdeployment.Config{Configs: echo.ConfigFuture(&echos)})(ctx); err != nil {
    		return err
    	}
    
    	if err != nil {
    		return err
    	}
    	for _, c := range ctx.Clusters() {
    		ingr = append(ingr, ist.IngressFor(c))
    	}
    	mockProm = match.ServiceName(echo.NamespacedName{Name: "mock-prom", Namespace: apps.Namespace}).GetMatches(apps.Echos().All.Instances())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    		consistentHash = hash != nil
    	} else {
    		weighted := make([]*route.WeightedCluster_ClusterWeight, 0)
    		for _, dst := range in.Route {
    			if dst.Weight == 0 {
    				// Ignore 0 weighted clusters if there are other clusters in the route.
    				continue
    			}
    			destinationweight, hostname := processWeightedDestination(dst, serviceRegistry, listenerPort, hashByDestination, action)
    			weighted = append(weighted, destinationweight)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/tracing_zipkin_golden.json

          "grpc_services": [
            {
              "envoy_grpc": {
                "cluster_name": "xds-grpc"
              }
            }
          ]
        }
      },
      "static_resources": {
        "clusters": [
          {
            "name": "prometheus_stats",
            "type": "STATIC",
            "connect_timeout": "0.250s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top