Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Wiles (0.03 sec)

  1. src/cmd/fix/main.go

    	"force these fixes to run even if the code looks updated")
    
    var allowed, force map[string]bool
    
    var (
    	doDiff    = flag.Bool("diff", false, "display diffs instead of rewriting files")
    	goVersion = flag.String("go", "", "go language version for files")
    )
    
    // enable for debugging fix failures
    const debug = false // display incorrectly reformatted source and exit
    
    func usage() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/dist/main.go

    )
    
    func usage() {
    	xprintf(`usage: go tool dist [command]
    Commands are:
    
    banner                  print installation banner
    bootstrap               rebuild everything
    clean                   deletes all built files
    env [-p]                print environment (-p: include $PATH)
    install [dir]           install individual directory
    list [-json] [-broken]  list all supported platforms
    test [-h]               run Go test(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/main.go

    		telemetry.Inc("go/goroot:usr-lib-golang")
    	case `c:\program files\go`: // Location used by Windows installer.
    		telemetry.Inc("go/goroot:program-files-go")
    	case `c:\program files (x86)\go`: // Location used by 386 Windows installer on amd64 platform.
    		telemetry.Inc("go/goroot:program-files-x86-go")
    	default:
    		telemetry.Inc("go/goroot:other")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. misc/go_android_exec/main.go

    		modPath = parts[2]
    		modDir = parts[3]
    	}
    
    	return importPath, isStd, modPath, modDir, nil
    }
    
    // adbCopyTree copies testdata, go.mod, go.sum files from subdir
    // and from parent directories all the way up to the root of subdir.
    // go.mod and go.sum files are needed for the go tool modules queries,
    // and the testdata directories for tests.  It is common for tests to
    // reach out into testdata from parent packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top