Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for showOutput (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/TransformLoggingIntegrationTest.groovy

                abstract class Multiplier implements TransformAction<TransformParameters.None> {
                    private final boolean showOutput = System.getProperty("showOutput") != null
                    private final String target
    
                    Multiplier(String target) {
                        if (showOutput) {
                            println("Creating multiplier")
                        }
                        this.target = target
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/dist/util.go

    	return keep
    }
    
    const (
    	CheckExit = 1 << iota
    	ShowOutput
    	Background
    )
    
    var outputLock sync.Mutex
    
    // run is like runEnv with no additional environment.
    func run(dir string, mode int, cmd ...string) string {
    	return runEnv(dir, mode, nil, cmd...)
    }
    
    // runEnv runs the command line cmd in dir with additional environment env.
    // If mode has ShowOutput set and Background unset, run passes cmd's output to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	setNoOpt()
    	goldflags = os.Getenv("GO_LDFLAGS") // we were using $BOOT_GO_LDFLAGS until now
    	goBootstrap := pathf("%s/go_bootstrap", tooldir)
    	if debug {
    		run("", ShowOutput|CheckExit, pathf("%s/compile", tooldir), "-V=full")
    		copyfile(pathf("%s/compile1", tooldir), pathf("%s/compile", tooldir), writeExec)
    	}
    
    	// To recap, so far we have built the new toolchain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/cmd/dist/buildtool.go

    	}
    	if vflag > 0 {
    		cmd = append(cmd, "-v")
    	}
    	if tool := os.Getenv("GOBOOTSTRAP_TOOLEXEC"); tool != "" {
    		cmd = append(cmd, "-toolexec="+tool)
    	}
    	cmd = append(cmd, "bootstrap/cmd/...")
    	run(base, ShowOutput|CheckExit, cmd...)
    
    	// Copy binaries into tool binary directory.
    	for _, name := range bootstrapDirs {
    		if !strings.HasPrefix(name, "cmd/") {
    			continue
    		}
    		name = name[len("cmd/"):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    					have[file] = true
    				}
    			}
    			if have[file] {
    				continue
    			}
    		}
    		files = append(files, file)
    	}
    	return files
    }
    
    // Desc returns the package "description", for use in b.showOutput.
    func (p *Package) Desc() string {
    	if p.ForTest != "" {
    		return p.ImportPath + " [" + p.ForTest + ".test]"
    	}
    	if p.Internal.ForMain != "" {
    		return p.ImportPath + " [" + p.Internal.ForMain + "]"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top