Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 264 for replaced (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

        // We will "steal" the body of the island and replace it with a call to the
        // new function later.
        {
          YieldOp yield_op = island_op.GetYield();
          outlined_func.getBody().takeBody(island_op.getBody());
    
          // Replace the yield with a return
          OpBuilder replacer(yield_op);
          island_op.getBody().push_back(new Block);
          replacer.create<mlir::func::ReturnOp>(yield_op.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/process/ArgWriter.java

                if (i > 0) {
                    writer.print(' ');
                }
                String str = arg.toString();
                if (backslashEscape) {
                    str = str.replace("\\", "\\\\").replace("\"", "\\\"");
                }
                if (str.isEmpty()) {
                    writer.print("\"\"");
                } else if (needsQuoting(str)) {
                    writer.print('\"');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:14:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/globalflags.go

    	addCredentialProviderFlags(fs)
    	verflag.AddFlags(fs)
    	logs.AddFlags(fs, logs.SkipLoggingConfigurationFlags())
    }
    
    // normalize replaces underscores with hyphens
    // we should always use hyphens instead of underscores when registering kubelet flags
    func normalize(s string) string {
    	return strings.Replace(s, "_", "-", -1)
    }
    
    // register adds a flag to local that targets the Value associated with the Flag named globalName in global
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_asset_sinking_pass.cc

        for (auto asset : llvm::make_early_inc_range(module.getOps<AssetOp>())) {
          if (symbol_table.symbolKnownUseEmpty(asset, module)) {
            asset.erase();
          }
        }
      }
    
     private:
      // Replaces bounded-input arguments of the function with constant ops in the
      // body and removes the arguments.
      void RewriteFunction(const SymbolTable& symbol_table, func::FuncOp func) {
        if (func.getNumArguments() == 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_edit.txt

    -- go.work.want_add_replaces --
    go 1.18
    
    use ./n
    
    replace (
    	x.1 v1.3.0 => y.1 v1.4.0
    	x.1 v1.4.0 => ../z
    )
    -- go.work.want_multiuse --
    go 1.18
    
    use (
    	../a
    	./c
    	./n
    	/b
    )
    
    replace (
    	x.1 v1.3.0 => y.1 v1.4.0
    	x.1 v1.4.0 => ../z
    )
    -- go.work.want_multidropuse --
    go 1.18
    
    use (
    	../a
    	./c
    )
    
    replace (
    	x.1 v1.3.0 => y.1 v1.4.0
    	x.1 v1.4.0 => ../z
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_edit.txt

    cmp stdout $WORK/go.mod.empty.json
    
    # go mod edit -replace
    go mod edit -replace=x.1@v1.3.0=y.1/v2@v2.3.5 -replace=x.1@v1.4.0=y.1/v2@v2.3.5
    cmpenv go.mod $WORK/go.mod.edit3
    go mod edit -replace=x.1=y.1/v2@v2.3.6
    cmpenv go.mod $WORK/go.mod.edit4
    go mod edit -dropreplace=x.1
    cmpenv go.mod $WORK/go.mod.edit5
    go mod edit -replace=x.1=../y.1/@v2
    cmpenv go.mod $WORK/go.mod.edit6
    ! go mod edit -replace=x.1=y.1/@v2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. cmd/http-tracer.go

    	op = strings.Replace(op, "objectAPIHandlers", "s3", 1)
    	op = strings.Replace(op, "adminAPIHandlers", "admin", 1)
    	op = strings.Replace(op, "(*storageRESTServer)", "storageR", 1)
    	op = strings.Replace(op, "(*peerRESTServer)", "peer", 1)
    	op = strings.Replace(op, "(*lockRESTServer)", "lockR", 1)
    	op = strings.Replace(op, "(*stsAPIHandlers)", "sts", 1)
    	op = strings.Replace(op, "(*peerS3Server)", "s3", 1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                        .replace("\"sha512\":\\s+\"\\w+\"".toRegex(), "\"sha512\": \"\"")
                        .replace("\"sha1\":\\s+\"\\w+\"".toRegex(), "\"sha1\": \"\"")
                        .replace("\"sha256\":\\s+\"\\w+\"".toRegex(), "\"sha256\": \"\"")
                        .replace("\"md5\":\\s+\"\\w+\"".toRegex(), "\"md5\": \"\"")
                    it.writeText(content)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    	w := 0
    	for _, r := range f.Use {
    		if r.Path != "" {
    			f.Use[w] = r
    			w++
    		}
    	}
    	f.Use = f.Use[:w]
    
    	w = 0
    	for _, r := range f.Replace {
    		if r.Old.Path != "" {
    			f.Replace[w] = r
    			w++
    		}
    	}
    	f.Replace = f.Replace[:w]
    
    	f.Syntax.Cleanup()
    }
    
    func (f *WorkFile) AddGoStmt(version string) error {
    	if !GoVersionRE.MatchString(version) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

        /**
         * Creates a set of logging services which are suitable to use globally in a process. In particular:
         *
         * <ul>
         * <li>Replaces System.out and System.err with implementations that route output through the logging system as per {@link LoggingManagerInternal#captureSystemSources()}.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top