Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 105 for Replacer (0.36 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    apper:".uk-countdown-%unit%"},computed:{date:function(t){var e=t.date;return Date.parse(e)},days:function(t,e){return Ce(t.clsWrapper.replace("%unit%","days"),e)},hours:function(t,e){return Ce(t.clsWrapper.replace("%unit%","hours"),e)},minutes:function(t,e){return Ce(t.clsWrapper.replace("%unit%","minutes"),e)},seconds:function(t,e){return Ce(t.clsWrapper.replace("%unit%","seconds"),e)},units:function(){var e=this;return["days","hours","minutes","seconds"].filter(function(t){return e[t]})}},conn...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status EmitErrorWithLocationStr(const Node& node, const Status& error_status);
    
      // Inserts a placeholder node in the graph to replace a feed output tensor,
      // and returns the new placeholder node and a boolean indicating if the
      // original input node was removed from the graph. Uses of the feed output
      // tensor are replaced with this placeholder node. If the feed output tensor
      // is of a single output node, the control dependencies are forwarded to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

      else
        sed -i -e "s@{{ *pillar\.get('etcd_version', '\(.*\)') *}}@\1@g" "${temp_file}"
      fi
      # Replace the volume host path.
      sed -i -e "s@/mnt/master-pd/var/etcd@/mnt/disks/master-pd/var/etcd@g" "${temp_file}"
      # Replace the run as user and run as group
      container_security_context=""
      if [[ -n "${ETCD_RUNASUSER:-}" && -n "${ETCD_RUNASGROUP:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        }
    
        // Replace the pack's output to the unpack's input.
        rewriter.replaceOp(pack_op, input_unpack_op.getOperand());
        // At this point, we don't manually remove the redundant pack op & unpack op
        // (we cannot actually), but trust the PatterRewriter to garbage collect
        // these two ops.
        return success();
      }
    };
    
    // Replace PackOp with a reshape when there is only one operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

            if (splatAttrIsZero) {
              // When `y` is a zero splat constant (i.e., all the elements in `y`
              // are zero, replace the op (tf.divNoNan or tf.MulNoNan) with `y`.
              rewriter.replaceOp(op, y);
            } else {
              // When `y` is a non-zero splat constant, replace tf.DivNoNan with
              // tf.Div and tf.MulNoNan with tf.Mul.
              ReplaceTfOpWithNewOp<RetT>(rewriter, op, op->getResult(0).getType(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    	// Storage class is special, it can be replaced regardless of the
    	// metadata directive, if set should be preserved and replaced
    	// to the destination metadata.
    	sc := r.Header.Get(xhttp.AmzStorageClass)
    	if sc == "" {
    		sc = r.Form.Get(xhttp.AmzStorageClass)
    	}
    
    	// if x-amz-metadata-directive says REPLACE then
    	// we extract metadata from the input headers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      //   %height = tf.StridedSlice(%shape, 1, 2, 1)
      //
      // In this case %height can be replaced with a constant 2.
      //
      // Or,
      //
      //   %shape  = tf.Shape(%arg)                   // %arg: tensor<?x2x3x1xf32>
      //   %spatial_shape = tf.StridedSlice(%shape, 1, 3, 1)
      //
      // In this case %spatial_shape can be replaced with a constant [2, 3].
    
      // Input to strided slice op is defined by shape operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    		version := mi.Version
    		if version == "" {
    			version = "(devel)"
    		}
    		dm := &debug.Module{
    			Path:    mi.Path,
    			Version: version,
    		}
    		if mi.Replace != nil {
    			dm.Replace = debugModFromModinfo(mi.Replace)
    		} else if mi.Version != "" && cfg.BuildMod != "vendor" {
    			dm.Sum = modfetch.Sum(ctx, module.Version{Path: mi.Path, Version: mi.Version})
    		}
    		return dm
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    				{7, time.Now().Add(-time.Second * time.Duration(61)), false}, // outdated event, should be replaced
    			},
    			newScaleEvents: []timestampedScaleEvent{
    				{7, time.Now(), false}, // no behavior -> we don't touch stored events
    			},
    			expectedReplicasChange: 0,
    		},
    		{
    			name:          "one outdated entry to be replaced with behavior",
    			replicaChange: 5,
    			prevScaleEvents: []timestampedScaleEvent{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        // "mhlo::ReduceOp" only has one operand, one init_value and one result.
    
        // If the init value matches with the init value expected for the target
        // TfReduceOp, then replace the BinaryOp with a TfReduceOp. Otherwise,
        // replace the BinaryOp with a TfBinaryOp and a TfReduceOp.
        if (succeeded(MatchInitValue(reduce_op.getInitValues()[0]))) {
          rewriter.replaceOpWithNewOp<TfReduceOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top