Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for RuneSelf (0.37 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/module.go

    // if used in a URL.
    //
    // TODO(rsc): We would like to allow Unicode letters, but that requires additional
    // care in the safe encoding (see "escaped paths" above).
    func modPathOK(r rune) bool {
    	if r < utf8.RuneSelf {
    		return r == '-' || r == '.' || r == '_' || r == '~' ||
    			'0' <= r && r <= '9' ||
    			'A' <= r && r <= 'Z' ||
    			'a' <= r && r <= 'z'
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    // should only be given s. It's not curried for performance reasons.
    func foldFunc(s []byte) func(s, t []byte) bool {
    	nonLetter := false
    	special := false // special letter
    	for _, b := range s {
    		if b >= utf8.RuneSelf {
    			return bytes.EqualFold
    		}
    		upper := b & caseMask
    		if upper < 'A' || upper > 'Z' {
    			nonLetter = true
    		} else if upper == 'K' || upper == 'S' {
    			// See above for why these letters are special.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  3. src/text/template/funcs.go

    	last := 0
    	for i := 0; i < len(b); i++ {
    		c := b[i]
    
    		if !jsIsSpecial(rune(c)) {
    			// fast path: nothing to do
    			continue
    		}
    		w.Write(b[last:i])
    
    		if c < utf8.RuneSelf {
    			// Quotes, slashes and angle brackets get quoted.
    			// Control characters get written as \u00XX.
    			switch c {
    			case '\\':
    				w.Write(jsBackslash)
    			case '\'':
    				w.Write(jsApos)
    			case '"':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/mime/encodedword.go

    	case strings.EqualFold("iso-8859-1", charset):
    		for _, c := range content {
    			buf.WriteRune(rune(c))
    		}
    	case strings.EqualFold("us-ascii", charset):
    		for _, c := range content {
    			if c >= utf8.RuneSelf {
    				buf.WriteRune(unicode.ReplacementChar)
    			} else {
    				buf.WriteByte(c)
    			}
    		}
    	default:
    		if d.CharsetReader == nil {
    			return fmt.Errorf("mime: unhandled charset %q", charset)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// work, but it will not cause an allocation.
    	if isASCII(v) {
    		return v, nil
    	}
    	return idna.Lookup.ToASCII(v)
    }
    
    func isASCII(s string) bool {
    	for i := 0; i < len(s); i++ {
    		if s[i] >= utf8.RuneSelf {
    			return false
    		}
    	}
    	return true
    }
    
    // matcher represents the matching rule for a given value in the NO_PROXY list
    type matcher interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/bufio/bufio.go

    		b.fill() // b.w-b.r < len(buf) => buffer is not full
    	}
    	b.lastRuneSize = -1
    	if b.r == b.w {
    		return 0, 0, b.readErr()
    	}
    	r, size = rune(b.buf[b.r]), 1
    	if r >= utf8.RuneSelf {
    		r, size = utf8.DecodeRune(b.buf[b.r:b.w])
    	}
    	b.r += size
    	b.lastByte = int(b.buf[b.r-1])
    	b.lastRuneSize = size
    	return r, size, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/noder/noder.go

    func safeArg(name string) bool {
    	if name == "" {
    		return false
    	}
    	c := name[0]
    	return '0' <= c && c <= '9' || 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || c == '.' || c == '_' || c == '/' || c >= utf8.RuneSelf
    }
    
    // parseGoEmbed parses the text following "//go:embed" to extract the glob patterns.
    // It accepts unquoted space-separated patterns as well as double-quoted and back-quoted Go strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/build_read.go

    			Filename: name,
    			Line:     1,
    			Column:   1,
    		},
    	}
    }
    
    func isIdent(c byte) bool {
    	return 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || '0' <= c && c <= '9' || c == '_' || c >= utf8.RuneSelf
    }
    
    var (
    	errSyntax = errors.New("syntax error")
    	errNUL    = errors.New("unexpected NUL in input")
    )
    
    // syntaxError records a syntax error, but only if an I/O error has not already been recorded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. src/go/build/read.go

    			Filename: name,
    			Line:     1,
    			Column:   1,
    		},
    	}
    }
    
    func isIdent(c byte) bool {
    	return 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || '0' <= c && c <= '9' || c == '_' || c >= utf8.RuneSelf
    }
    
    var (
    	errSyntax = errors.New("syntax error")
    	errNUL    = errors.New("unexpected NUL in input")
    )
    
    // syntaxError records a syntax error, but only if an I/O error has not already been recorded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/fmt/format.go

    func (f *fmt) truncate(b []byte) []byte {
    	if f.precPresent {
    		n := f.prec
    		for i := 0; i < len(b); {
    			n--
    			if n < 0 {
    				return b[:i]
    			}
    			wid := 1
    			if b[i] >= utf8.RuneSelf {
    				_, wid = utf8.DecodeRune(b[i:])
    			}
    			i += wid
    		}
    	}
    	return b
    }
    
    // fmtS formats a string.
    func (f *fmt) fmtS(s string) {
    	s = f.truncateString(s)
    	f.padString(s)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top