Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StaleReason (0.26 sec)

  1. src/cmd/dist/build.go

    	goCmd := []string{goBinary, "list"}
    	if noOpt {
    		goCmd = append(goCmd, "-tags=noopt")
    	}
    	goCmd = appendCompilerFlags(goCmd)
    	goCmd = append(goCmd, "-f={{if .Stale}}\tSTALE {{.ImportPath}}: {{.StaleReason}}{{end}}")
    
    	out := runEnv(workdir, CheckExit, env, append(goCmd, targets...)...)
    	if strings.Contains(out, "\tSTALE ") {
    		os.Setenv("GODEBUG", "gocachehash=1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    		}
    	}
    }
    
    // isStale reports whether pkg is stale, and why
    func (tg *testgoData) isStale(pkg string) (bool, string) {
    	tg.t.Helper()
    	tg.run("list", "-f", "{{.Stale}}:{{.StaleReason}}", pkg)
    	v := strings.TrimSpace(tg.getStdout())
    	f := strings.SplitN(v, ":", 2)
    	if len(f) == 2 {
    		switch f[0] {
    		case "true":
    			return true, f[1]
    		case "false":
    			return false, f[1]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top