Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Kappen (0.19 sec)

  1. src/cmd/doc/main.go

    		if buildPackage.ImportPath == "builtin" {
    			unexported = true
    		}
    
    		symbol, method = parseSymbol(sym)
    		pkg := parsePackage(writer, buildPackage, userPath)
    		paths = append(paths, pkg.prettyPath())
    
    		defer func() {
    			pkg.flush()
    			e := recover()
    			if e == nil {
    				return
    			}
    			pkgError, ok := e.(PackageError)
    			if ok {
    				err = pkgError
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/go/main.go

    	args := flag.Args()
    	if len(args) < 1 {
    		base.Usage()
    	}
    
    	cfg.CmdName = args[0] // for error messages
    	if args[0] == "help" {
    		telemetry.Inc("go/subcommand:" + strings.Join(append([]string{"help"}, args[1:]...), "-"))
    		help.Help(os.Stdout, args[1:])
    		return
    	}
    
    	if cfg.GOROOT == "" {
    		fmt.Fprintf(os.Stderr, "go: cannot find GOROOT directory: 'go' binary is trimmed and GOROOT is not set\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top