Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lookupString (0.17 sec)

  1. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    }
    
    func validateRegistration(p *Profile, s string) (string, error) {
    	if !norm.NFC.IsNormalString(s) {
    		return s, &labelError{s, "V1"}
    	}
    	for i := 0; i < len(s); {
    		v, sz := trie.lookupString(s[i:])
    		// Copy bytes not copied so far.
    		switch p.simplify(info(v).category()) {
    		// TODO: handle the NV8 defined in the Unicode idna data set to allow
    		// for strict conformance to IDNA2008.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    	// TODO: filter need for normalization in loop below.
    	if !norm.NFC.IsNormalString(s) {
    		return s, false, &labelError{s, "V1"}
    	}
    	for i := 0; i < len(s); {
    		v, sz := trie.lookupString(s[i:])
    		if sz == 0 {
    			return s, bidi, runeError(utf8.RuneError)
    		}
    		bidi = bidi || info(v).isBidi(s[i:])
    		// Copy bytes not copied so far.
    		switch p.simplify(info(v).category()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top