Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for replaced (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
    
        wll be replaced by `_replication_info="cluster"` and  `_xla_compile_device_type="TPU"`.
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // to -f '{{.String}}'.
    //
    // Note that when a module has been replaced, its Replace field
    // describes the replacement module, and its Dir field is set to
    // the replacement's source code, if present. (That is, if Replace
    // is non-nil, then Dir is set to Replace.Dir, with no access to
    // the replaced source code.)
    //
    // The -u flag adds information about available upgrades.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    bool RankedAndSameRank(TensorType lhs, TensorType rhs) {
      return lhs.hasRank() && rhs.hasRank() && lhs.getRank() == rhs.getRank();
    }
    
    // Creates a compatible RankedTensorType where mismatched dimensions are
    // replaced with dynamic sizes.
    RankedTensorType GetCompatibleRankedTensorType(RankedTensorType lhs,
                                                   RankedTensorType rhs) {
      assert(lhs.getRank() == rhs.getRank());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        const int operation_index = item.index();
        if (inst.hasTrait<mlir::OpTrait::IsTerminator>()) break;
        // For "quant.stats" op, it's used to store the quantization parameters
        // info and its output should be then replaced by its input value.
        if (auto quant_stats_op =
                llvm::dyn_cast<mlir::quantfork::StatisticsOp>(inst)) {
          continue;
        }
        std::vector<int32_t> intermediates;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    			}
    		}
    	}
    
    	// source of all configuration
    	cfg := config.NewPodConfig(config.PodConfigNotificationIncremental, kubeDeps.Recorder, kubeDeps.PodStartupLatencyTracker)
    
    	// TODO:  it needs to be replaced by a proper context in the future
    	ctx := context.TODO()
    
    	// define file config source
    	if kubeCfg.StaticPodPath != "" {
    		klog.InfoS("Adding static pod path", "path", kubeCfg.StaticPodPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    				Terminating:             ptr.To[int32](0),
    				UncountedTerminatedPods: &batch.UncountedTerminatedPods{},
    				FailedIndexes:           ptr.To(""),
    			},
    		},
    		"single failed pod replaced already": {
    			enableJobBackoffLimitPerIndex: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/work/exec.go

    	// result into the cache. That's probably a net win:
    	// less cache space wasted on large binaries we are not likely to
    	// need again. (On the other hand it does make repeated go test slower.)
    	// It also makes repeated go run slower, which is a win in itself:
    	// we don't want people to treat go run like a scripting environment.
    	if err := b.updateBuildID(a, a.Target, !a.Package.Internal.OmitDebug); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	// "&#34;" is shorter than "&quot;".
    	`"`, "&#34;",
    	// "&#39;" is shorter than "&apos;" and apos was not in HTML until HTML5.
    	"'", "&#39;",
    )
    
    func htmlEscape(s string) string {
    	return htmlReplacer.Replace(s)
    }
    
    // Redirect to a fixed URL
    type redirectHandler struct {
    	url  string
    	code int
    }
    
    func (rh *redirectHandler) ServeHTTP(w ResponseWriter, r *Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top