Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for SplitV (0.2 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // memory type live in two different blocks, which can lead to
    // multiple memory values alive simultaneously.
    //
    // Make sure we don't combine these ops if the load has another use.
    // This prevents a single load from being split into multiple loads
    // which then might return different values.  See test/atomicload.go.
    (MOV(B|H|W)Zreg <t> x:(MOV(B|H|W)load [o] {s} p mem))
      && x.Uses == 1
      && clobber(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    			}
    		}
    	}
    
    	if routeCache != nil {
    		routeCache.DestinationRules = dependentDestinationRules
    	}
    
    	return out
    }
    
    // separateVSHostsAndServices splits the virtual service hosts into Services (if they are found in the registry) and
    // plain non-registry hostnames
    func separateVSHostsAndServices(virtualService config.Config,
    	serviceRegistry map[host.Name]*model.Service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		},
    		{
    			name:   "filter returns two items split across multiple pages",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "foo"),
    				Label: labels.Everything(),
    				Limit: 2,
    			},
    			expectedOut: []example.Pod{*preset[2], *preset[4]},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    	if !s.IsValid(w, r) {
    		s.writeErrorResponse(w, errors.New("Invalid request"))
    		return
    	}
    
    	vars := mux.Vars(r)
    	profiles := strings.Split(vars[peerRESTProfiler], ",")
    	if len(profiles) == 0 {
    		s.writeErrorResponse(w, errors.New("profiler name is missing"))
    		return
    	}
    	globalProfilerMu.Lock()
    	defer globalProfilerMu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -stablehlo-lift-quantizable-spots-as-functions | FileCheck %s
    
    // CHECK-LABEL: @conv_fn(
    // CHECK-SAME:          %[[ARG_0:.*]]: tensor<1x3x3x4xf32>
    func.func @conv_fn(%arg0: tensor<1x3x3x4xf32>) -> tensor<1x3x3x4xf32> {
      %0 = stablehlo.constant dense<2.000000e+00> : tensor<3x3x4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

            // Renumber argument nodes in the graph.
            TF_RETURN_IF_ERROR(
                RenumberArguments(subgraph->get(), *input_permutation));
    
            // TODO(phawkins): add a forward is-constant analysis, similarly split
            // outputs into host-memory constants and device-memory non-constants.
    
            AddNodeAttr(kXlaCompiledKernelAttr, true, node);
            AddNodeAttr(kXlaNumConstantArgsAttr, num_consts, node);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. src/html/template/escape_test.go

    			"<!doCtYPE htMl>Hello, World!",
    			"<!doCtYPE htMl>Hello, World!",
    		},
    		{
    			"No doctype injection",
    			`<!{{"DOCTYPE"}}`,
    			"&lt;!DOCTYPE",
    		},
    		{
    			"Split HTML comment",
    			"<b>Hello, <!-- name of {{if .T}}city -->{{.C}}{{else}}world -->{{.W}}{{end}}</b>",
    			"<b>Hello, &lt;Cincinnati&gt;</b>",
    		},
    		{
    			"JS line comment",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        mlir::DictionaryAttr attr, const std::string& attr_key) {
      llvm::SmallVector<llvm::StringRef, 2> result;
      if (auto str = attr.get(attr_key).dyn_cast_or_null<mlir::StringAttr>()) {
        str.getValue().split(result, ',', /*MaxSplit=*/-1,
                             /*KeepEmpty=*/false);
      }
      return result;
    }
    
    // Sets signature attributes on the function.
    void SetSignature(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    metadata: name: istio-1-10-0 namespace: istio-system labels: istio.io/rev: 1-10-0 install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Pilot" release: istio data: # Configuration file for the mesh networks to be used by the Split Horizon EDS. meshNetworks: |- networks: {} mesh: |- defaultConfig: discoveryAddress: istiod-1-10-0.istio-system.svc:15012 proxyMetadata: {} tracing: zipkin: address: zipkin.istio-system:9411 enablePrometheusMerg: true rootNamespace: istio-system trustDomain:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    // ensure that every branch and condition is considered and accounted for -
    // the same way code is written at NASA for applications like the space
    // shuttle.
    //
    // Originally, the work of this controller was split amongst three
    // controllers. This controller is the result a large effort to simplify the
    // PV subsystem. During that effort, it became clear that we needed to ensure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top