Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for ToLower (0.48 sec)

  1. src/cmd/go/testdata/script/vendor_gopath_issue11409.txt

    	"strings"
    )
    
    func changeVolume(s string, f func(s string) string) string {
    	vol := filepath.VolumeName(s)
    	return f(vol) + s[len(vol):]
    }
    
    func main() {
    	gopath := changeVolume(os.Args[1], strings.ToLower)
    	dir := changeVolume(os.Args[2], strings.ToUpper)
    	cmd := exec.Command("go", "run", "hello.go")
    	cmd.Dir = dir
    	cmd.Env = append(os.Environ(), "GOPATH="+gopath)
    	cmd.Stdout = os.Stdout
    	cmd.Stderr = os.Stderr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 982 bytes
    - Viewed (0)
  2. src/cmd/go/internal/str/str.go

    //
    // This lets us test a large set of strings for fold-equivalent
    // duplicates without making a quadratic number of calls
    // to EqualFold. Note that strings.ToUpper and strings.ToLower
    // do not have the desired property in some corner cases.
    func ToFold(s string) string {
    	// Fast path: all ASCII, no upper case.
    	// Most paths look like this already.
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 20:08:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/path_windows.go

    var pathExts struct {
    	once sync.Once
    	list []string
    }
    
    func initPathExts() {
    	var exts []string
    	x := os.Getenv(`PATHEXT`)
    	if x != "" {
    		for _, e := range strings.Split(strings.ToLower(x), `;`) {
    			if e == "" {
    				continue
    			}
    			if e[0] != '.' {
    				e = "." + e
    			}
    			exts = append(exts, e)
    		}
    	} else {
    		exts = []string{".com", ".exe", ".bat", ".cmd"}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:15:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_cd_gopath_different.txt

    	gopath := os.Args[2]
    	switch os.Args[3] {
    		case "IDENTITY":
    		case "REPLACE_SLASH": gopath = strings.ReplaceAll(gopath, `\`, `/`)
    		case "UPPER": gopath = strings.ToUpper(gopath)
    		case "LOWER": gopath = strings.ToLower(gopath)
    		default: fmt.Fprintln(os.Stderr, "bad op"); os.Exit(1)
    	}
    	cmd := exec.Command("go", os.Args[4:]...)
    	cmd.Dir = dir
    	cmd.Env = append(os.Environ(), "GOPATH="+gopath)
    	cmd.Stdout = os.Stdout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			}
    
    		case PrefixXACQUIRE:
    			if !haveXA {
    				haveXA = true
    			} else {
    				inst.Prefix[i] = PrefixREPN
    			}
    		}
    	}
    
    	// Determine opcode.
    	op := strings.ToLower(inst.Op.String())
    	if alt := gnuOp[inst.Op]; alt != "" {
    		op = alt
    	}
    
    	// Determine opcode suffix.
    	// Libopcodes omits the suffix if the width of the operation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    func (s *scanner) init() {
    	for i, c := range s.b {
    		if c == '_' {
    			s.b[i] = '-'
    		}
    	}
    	s.scan()
    }
    
    // restToLower converts the string between start and end to lower case.
    func (s *scanner) toLower(start, end int) {
    	for i := start; i < end; i++ {
    		c := s.b[i]
    		if 'A' <= c && c <= 'Z' {
    			s.b[i] += 'a' - 'A'
    		}
    	}
    }
    
    func (s *scanner) setError(e error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    func (s *Symbolizer) Symbolize(mode string, sources plugin.MappingSources, p *profile.Profile) error {
    	remote, local, fast, force, demanglerMode := true, true, false, false, ""
    	for _, o := range strings.Split(strings.ToLower(mode), ":") {
    		switch o {
    		case "":
    			continue
    		case "none", "no":
    			return nil
    		case "local":
    			remote, local = false, true
    		case "fastlocal":
    			remote, local, fast = false, true, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/cmd/pprof/readlineui.go

    // using the github.com/chzyer/readline package.
    type readlineUI struct {
    	term *term.Terminal
    }
    
    func newReadlineUI() driver.UI {
    	// disable readline UI in dumb terminal. (golang.org/issue/26254)
    	if v := strings.ToLower(os.Getenv("TERM")); v == "" || v == "dumb" {
    		return nil
    	}
    	// test if we can use term.ReadLine
    	// that assumes operation in the raw mode.
    	oldState, err := term.MakeRaw(0)
    	if err != nil {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/version/version.go

    func isGoBinaryCandidate(file string, info fs.FileInfo) bool {
    	if info.Mode().IsRegular() && info.Mode()&0111 != 0 {
    		return true
    	}
    	name := strings.ToLower(file)
    	switch filepath.Ext(name) {
    	case ".so", ".exe", ".dll":
    		return true
    	default:
    		return strings.Contains(name, ".so.")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func (t Tag) Tag() language.Tag {
    	if t.full != nil {
    		return t.full.(language.Tag)
    	}
    	tag := t.language.Tag()
    	if t.language != t.locale {
    		loc := t.locale.Tag()
    		tag, _ = tag.SetTypeForKey("rg", strings.ToLower(loc.RegionID.String())+"zzzz")
    	}
    	return tag
    }
    
    // IsCompact reports whether this tag is fully defined in terms of ID.
    func (t *Tag) IsCompact() bool {
    	return t.full == nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top