Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isHex (0.12 sec)

  1. src/mime/mediatype.go

    	// Count %, check that they're well-formed.
    	percents := 0
    	for i := 0; i < len(s); {
    		if s[i] != '%' {
    			i++
    			continue
    		}
    		percents++
    		if i+2 >= len(s) || !ishex(s[i+1]) || !ishex(s[i+2]) {
    			s = s[i:]
    			if len(s) > 3 {
    				s = s[0:3]
    			}
    			return "", fmt.Errorf("mime: bogus characters after %%: %q", s)
    		}
    		i += 3
    	}
    	if percents == 0 {
    		return s, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/text/scanner/scanner.go

    		ch = s.next()
    	}
    	return ch
    }
    
    func lower(ch rune) rune     { return ('a' - 'A') | ch } // returns lower-case ch iff ch is ASCII letter
    func isDecimal(ch rune) bool { return '0' <= ch && ch <= '9' }
    func isHex(ch rune) bool     { return '0' <= ch && ch <= '9' || 'a' <= lower(ch) && lower(ch) <= 'f' }
    
    // digits accepts the sequence { digit | '_' } starting with ch0.
    // If base <= 10, digits accepts any decimal digit but records
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy.go

    	}
    	for i := 0; i < len(s); {
    		switch s[i] {
    		case ';':
    			return reencode(s)
    		case '%':
    			if i+2 >= len(s) || !ishex(s[i+1]) || !ishex(s[i+2]) {
    				return reencode(s)
    			}
    			i += 3
    		default:
    			i++
    		}
    	}
    	return s
    }
    
    func ishex(c byte) bool {
    	switch {
    	case '0' <= c && c <= '9':
    		return true
    	case 'a' <= c && c <= 'f':
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. src/net/url/url.go

    	// Count %, check that they're well-formed.
    	n := 0
    	hasPlus := false
    	for i := 0; i < len(s); {
    		switch s[i] {
    		case '%':
    			n++
    			if i+2 >= len(s) || !ishex(s[i+1]) || !ishex(s[i+2]) {
    				s = s[i:]
    				if len(s) > 3 {
    					s = s[:3]
    				}
    				return "", EscapeError(s)
    			}
    			// Per https://tools.ietf.org/html/rfc3986#page-21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
Back to top