Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 109 for Change (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      auto args = [&](int operand_idx) -> SmallVector<Value, 8> {
        auto range = llvm::map_range(op.getValues(), [&](Value arg) {
          if (exceptions.count(arg)) return Value();
          return arg.getDefiningOp()->getOperand(operand_idx);
        });
        return {range.begin(), range.end()};
      };
    
      // Returns true if all binary ops operands at `operand_idx` index are tensors
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            private static final Type INSTRUMENTED_EXECUTION_ACCESS_TYPE = getType("Lorg/gradle/internal/classpath/InstrumentedExecutionAccess;");
    
            // This set is unlikely to change often, so instead of introducing an additional level of indirection,
            // we are storing it here despite its relationship to Configuration Cache logic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(qs) {
    		return nil
    	}
    	changed := false
    	qualifiers := make([]AST, len(qs.Qualifiers))
    	for i, q := range qs.Qualifiers {
    		qc := q.Copy(fn, skip)
    		if qc == nil {
    			qualifiers[i] = q
    		} else {
    			qualifiers[i] = qc
    			changed = true
    		}
    	}
    	if !changed {
    		return fn(qs)
    	}
    	qs = &Qualifiers{Qualifiers: qualifiers}
    	if r := fn(qs); r != nil {
    		return r
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    $gateway.type }} selector: {{ $gateway.labels | toYaml | indent 4 }} ports: {{- range $key, $val := $gateway.ports }} - {{- range $pkey, $pval := $val }} {{ $pkey}}: {{ $pval }} {{- end }} {{- end }} {{ range $app := $gateway.ingressPorts }} - port: {{ $app.port }} name: {{ $app.name }} {{- end }} {{- if $gateway.ipFamilyPolicy }} ipFamilyPolicy: {{ $gateway.ipFamilyPolicy }} {{- end }} {{- if $gateway.ipFamilies }} ipFamilies: {{- range $gateway.ipFamilies }} - {{ . }} {{- end }} {{- end }} --- {{ end }} ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    namespace {
    
    // Compute the length of a range (1-D) tensor given `start`, `limit`, `delta`.
    // Template parameter `FloatOrInt` must be standard C integer or floating-point
    // types.
    template <typename FloatOrInt>
    int GetLengthOfRange(FloatOrInt start, FloatOrInt limit, FloatOrInt delta) {
      // Refer to the implementation in
      // tensorflow/lite/kernels/range.cc.
      return std::is_integral<FloatOrInt>::value
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				TpPairToMatchNum: map[topologyPair]int{
    					{key: "node", value: "node-a"}: 1,
    					{key: "node", value: "node-b"}: 1,
    				},
    			},
    		},
    		{
    			name: "add a pod in a different namespace doesn't change topologyKeyToMinPodsMap",
    			preemptor: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "node", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    				Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation_test.go

    					Expression: "object.x < 100",
    				}},
    			},
    		},
    		expectedError: `undeclared reference to 'params'`,
    	}, {
    		name: "match conditions not re-checked if no change to paramKind or matchConditions",
    		oldconfig: &admissionregistration.ValidatingAdmissionPolicy{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "config",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    	if volumetypes.IsOperationFinishedError(mountError) &&
    		actualStateOfWorld.GetVolumeMountState(volumeToMount.VolumeName, markOpts.PodName) == VolumeMountUncertain {
    		// if volume was previously reconstructed we are not going to change its state as unmounted even
    		// if mount operation fails.
    		if actualStateOfWorld.IsVolumeReconstructed(volumeToMount.VolumeName, volumeToMount.PodName) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/generic.rules

    ((Add8|Or8|Xor8) right:(Rsh8Ux8  x y) left:(Lsh8x8  x z:(Sub8  (Const8  [8]) y))) && (shiftIsBounded(left) || shiftIsBounded(right)) && canRotate(config, 8) => (RotateLeft8 x z)
    
    // Rotating by y&c, with c a mask that doesn't change the bottom bits, is the same as rotating by y.
    (RotateLeft64 x (And(64|32|16|8) y (Const(64|32|16|8) [c]))) && c&63 == 63 => (RotateLeft64 x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasFolder = 1;
    }
    
    def TFL_RangeOp: TFL_Op<"range", [
        Pure,
        TFL_OperandHasRank<0, 0>,
        TFL_OperandHasRank<1, 0>,
        TFL_OperandHasRank<2, 0>,
        PredOpTrait<"operands and output must have same element type",
          And<[TCresVTEtIsSameAsOp<0, 0>, TCresVTEtIsSameAsOp<0, 1>,
               TCresVTEtIsSameAsOp<0, 2>]>>]> {
      let summary = "Range operator";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top