Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for name (0.5 sec)

  1. src/cmd/doc/main.go

    	symbol = elem[0]
    	return
    }
    
    // isExported reports whether the name is an exported identifier.
    // If the unexported flag (-u) is true, isExported returns true because
    // it means that we treat the name as if it is exported.
    func isExported(name string) bool {
    	return unexported || token.IsExported(name)
    }
    
    // findNextPackage returns the next full file name path that matches the
    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/compile/internal/ssa/_gen/main.go

    				// so don't try to check it in the static table.
    				if v.name != "Convert" && v.reg.inputs[0] != v.reg.outputs[0] {
    					log.Fatalf("%s: input[0] and output[0] must use the same registers for %s", a.name, v.name)
    				}
    				if v.name != "Convert" && v.commutative && v.reg.inputs[1] != v.reg.outputs[0] {
    					log.Fatalf("%s: input[1] and output[0] must use the same registers for %s", a.name, v.name)
    				}
    			}
    			if v.resultNotInArgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. misc/go_android_exec/main.go

    	if err != nil {
    		return err
    	}
    	for _, de := range dirents {
    		switch de.Name() {
    		case "bin", "pkg":
    			// We already created GOROOT/bin and GOROOT/pkg above; skip those.
    			continue
    		}
    		if err := adb("push", filepath.Join(goroot, de.Name()), path.Join(deviceGoroot, de.Name())); err != nil {
    			return err
    		}
    	}
    
    	if _, err := stat.WriteString(goVersion); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. src/cmd/go/main.go

    	// In theory all the commands we invoke should have
    	// the same default computation of these as we do,
    	// but in practice there might be skew
    	// This makes sure we all agree.
    	cfg.OrigEnv = toolchain.FilterEnv(os.Environ())
    	cfg.CmdEnv = envcmd.MkEnv()
    	for _, env := range cfg.CmdEnv {
    		if os.Getenv(env.Name) != env.Value {
    			os.Setenv(env.Name, env.Value)
    		}
    	}
    
    	cmd.Flag.Usage = func() { cmd.Usage() }
    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