Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Hangul (0.16 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/input.go

    }
    
    func (in *input) charinfoNFKC(p int) (uint16, int) {
    	if in.bytes == nil {
    		return nfkcData.lookupString(in.str[p:])
    	}
    	return nfkcData.lookup(in.bytes[p:])
    }
    
    func (in *input) hangul(p int) (r rune) {
    	var size int
    	if in.bytes == nil {
    		if !isHangulString(in.str[p:]) {
    			return 0
    		}
    		r, size = utf8.DecodeRuneInString(in.str[p:])
    	} else {
    		if !isHangul(in.bytes[p:]) {
    			return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/input.go

    }
    
    func (in *input) charinfoNFKC(p int) (uint16, int) {
    	if in.bytes == nil {
    		return nfkcData.lookupString(in.str[p:])
    	}
    	return nfkcData.lookup(in.bytes[p:])
    }
    
    func (in *input) hangul(p int) (r rune) {
    	var size int
    	if in.bytes == nil {
    		if !isHangulString(in.str[p:]) {
    			return 0
    		}
    		r, size = utf8.DecodeRuneInString(in.str[p:])
    	} else {
    		if !isHangul(in.bytes[p:]) {
    			return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/punycode_test.go

    		"\u306A\u305C\u307F\u3093\u306A\u65E5\u672C\u8A9E\u3092" +
    			"\u8A71\u3057\u3066\u304F\u308C\u306A\u3044\u306E\u304B",
    		"n8jok5ay5dzabd5bym9f0cm5685rrjetr6pdxa",
    	},
    	{
    		// (H) Korean (Hangul syllables).
    		"\uC138\uACC4\uC758\uBAA8\uB4E0\uC0AC\uB78C\uB4E4\uC774" +
    			"\uD55C\uAD6D\uC5B4\uB97C\uC774\uD574\uD55C\uB2E4\uBA74" +
    			"\uC5BC\uB9C8\uB098\uC88B\uC744\uAE4C",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 4.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt

        )
    
        // (G) Japanese (kanji and hiragana)
        testEncodeDecode(
          unicode = "なぜみんな日本語を話してくれないのか",
          punycode = "xn--n8jok5ay5dzabd5bym9f0cm5685rrjetr6pdxa",
        )
    
        // (H) Korean (Hangul syllables)
        testEncodeDecode(
          unicode = "세계의모든사람들이한국어를이해한다면얼마나좋을까",
          punycode = "xn--989aomsvi5e83db1d2a355cv1e0vak1dwrv93d5xbh15a0dt30a5jpsd879ccm6fea98c",
        )
    
        // (I) Russian (Cyrillic)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Glagolitic <type 1>;
    var Gothic <type 1>;
    var Grantha <type 1>;
    var GraphicRanges <type 20 [] <type 21 *<type 2>>>;
    var Greek <type 1>;
    var Gujarati <type 1>;
    var Gurmukhi <type 1>;
    var Han <type 1>;
    var Hangul <type 1>;
    var Hanunoo <type 1>;
    var Hatran <type 1>;
    var Hebrew <type 1>;
    var Hex_Digit <type 1>;
    var Hiragana <type 1>;
    var Hyphen <type 1>;
    var IDS_Binary_Operator <type 1>;
    var IDS_Trinary_Operator <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	return uint8(p.flags & 0x03)
    }
    
    // Decomposition returns the decomposition for the underlying rune
    // or nil if there is none.
    func (p Properties) Decomposition() []byte {
    	// TODO: create the decomposition for Hangul?
    	if p.index == 0 {
    		return nil
    	}
    	i := p.index
    	n := decomps[i] & headerLenMask
    	i++
    	return decomps[i : i+uint16(n)]
    }
    
    // Size returns the length of UTF-8 encoding of the rune.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	return uint8(p.flags & 0x03)
    }
    
    // Decomposition returns the decomposition for the underlying rune
    // or nil if there is none.
    func (p Properties) Decomposition() []byte {
    	// TODO: create the decomposition for Hangul?
    	if p.index == 0 {
    		return nil
    	}
    	i := p.index
    	n := decomps[i] & headerLenMask
    	i++
    	return decomps[i : i+uint16(n)]
    }
    
    // Size returns the length of UTF-8 encoding of the rune.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/os/signal/signal_plan9_test.go

    	// from c does not block everything.
    	t.Logf("hangup...")
    	postNote(syscall.Getpid(), "hangup")
    	waitSig(t, c1, syscall.Note("hangup"))
    	t.Logf("hangup...")
    	postNote(syscall.Getpid(), "hangup")
    	waitSig(t, c1, syscall.Note("hangup"))
    
    	// The first SIGHUP should be waiting for us on c.
    	waitSig(t, c, syscall.Note("hangup"))
    }
    
    func TestStress(t *testing.T) {
    	dur := 3 * time.Second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. src/internal/poll/fd_io_plan9.go

    	if e != nil {
    		return
    	}
    	syscall.Write(f, []byte("hangup"))
    	syscall.Close(f)
    }
    
    // Wait for the I/O operation to complete.
    func (aio *asyncIO) Wait() (int, error) {
    	res := <-aio.res
    	return res.n, res.err
    }
    
    // The following functions, provided by the runtime, are used to
    // ignore and unignore the "hangup" signal received by the process.
    func runtime_ignoreHangup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. README.fr.md

    Nous acceuillons avec plaisir les pull request pour votre langue.
    
    ## Powered By
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top