Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for zwnj (0.04 sec)

  1. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerTest.groovy

            where:
            type          | fileName
            "ascii-only"  | "input-file.txt"
            "chinese"     | "输入文件.txt"
            "hungarian"   | "Dezső.txt"
            "space"       | "input file.txt"
            "zwnj"        | "input\u200cfile.txt"
            "url-quoted"  | "input%<file>#2.txt"
        }
    
        def "can pack trees having #type characters in name"() {
            def sourceOutputDir = temporaryFolder.file("source").createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/caching/internal/packaging/BuildCacheEntryPackingIntegrationTest.groovy

    class BuildCacheEntryPackingIntegrationTest extends DaemonIntegrationSpec implements DirectoryBuildCacheFixture {
    
        private static final NON_ASCII_NAME = [
            "ascii-only": "ascii",
            "space": " ",
            "zwnj": "\u200c",
            "chinese": "敏捷的棕色狐狸跳过了懒狗",
            "cyrillic": "здравствуйте",
            "hungarian": "Árvíztűrő tükörfúrógép",
        ].values().join("-")
    
        private static final DEFAULT_ENCODINGS = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    		return &labelError{s, "V5"}
    	}
    	// Quickly return in the absence of zero-width (non) joiners.
    	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
    		return nil
    	}
    	st := stateStart
    	for i := 0; ; {
    		jt := x.joinType()
    		if s[i:i+sz] == zwj {
    			jt = joinZWJ
    		} else if s[i:i+sz] == zwnj {
    			jt = joinZWNJ
    		}
    		st = joinStates[st][jt]
    		if x.isViramaModifier() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    		return &labelError{s, "V5"}
    	}
    	// Quickly return in the absence of zero-width (non) joiners.
    	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
    		return nil
    	}
    	st := stateStart
    	for i := 0; ; {
    		jt := x.joinType()
    		if s[i:i+sz] == zwj {
    			jt = joinZWJ
    		} else if s[i:i+sz] == zwnj {
    			jt = joinZWNJ
    		}
    		st = joinStates[st][jt]
    		if x.isViramaModifier() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. src/mdo/reader-stax.vm

            entities.put("tilde", "\u02dc");
            entities.put("ensp", "\u2002");
            entities.put("emsp", "\u2003");
            entities.put("thinsp", "\u2009");
            entities.put("zwnj", "\u200c");
            entities.put("zwj", "\u200d");
            entities.put("lrm", "\u200e");
            entities.put("rlm", "\u200f");
            entities.put("ndash", "\u2013");
            entities.put("mdash", "\u2014");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&zigrarr;":                         "\u21dd",
    	"&zopf;":                            "\U0001d56b",
    	"&zscr;":                            "\U0001d4cf",
    	"&zwj;":                             "\u200d",
    	"&zwnj;":                            "\u200c",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. src/mdo/reader.vm

            entities.put("tilde", "\u02dc");
            entities.put("ensp", "\u2002");
            entities.put("emsp", "\u2003");
            entities.put("thinsp", "\u2009");
            entities.put("zwnj", "\u200c");
            entities.put("zwj", "\u200d");
            entities.put("lrm", "\u200e");
            entities.put("rlm", "\u200f");
            entities.put("ndash", "\u2013");
            entities.put("mdash", "\u2014");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  8. src/html/entity.go

    		"zigrarr;":                         '\U000021DD',
    		"zopf;":                            '\U0001D56B',
    		"zscr;":                            '\U0001D4CF',
    		"zwj;":                             '\U0000200D',
    		"zwnj;":                            '\U0000200C',
    		"AElig":                            '\U000000C6',
    		"AMP":                              '\U00000026',
    		"Aacute":                           '\U000000C1',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  9. src/encoding/xml/xml.go

    	"Scaron":   "\u0160",
    	"scaron":   "\u0161",
    	"Yuml":     "\u0178",
    	"circ":     "\u02C6",
    	"tilde":    "\u02DC",
    	"ensp":     "\u2002",
    	"emsp":     "\u2003",
    	"thinsp":   "\u2009",
    	"zwnj":     "\u200C",
    	"zwj":      "\u200D",
    	"lrm":      "\u200E",
    	"rlm":      "\u200F",
    	"ndash":    "\u2013",
    	"mdash":    "\u2014",
    	"lsquo":    "\u2018",
    	"rsquo":    "\u2019",
    	"sbquo":    "\u201A",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/info.go

    //
    // For our approximation, we group the Word Break types into the following
    // categories, with associated rules:
    //
    // 1) Letter:
    //    ALetter, Hebrew_Letter, Numeric, ExtendNumLet, Extend, Format_FE, ZWJ.
    //    Rule: Never break between consecutive runes of this category.
    //
    // 2) Mid:
    //    MidLetter, MidNumLet, Single_Quote.
    //    (Cf. case-ignorable: MidLetter, MidNumLet, Single_Quote or cat is Mn,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top