Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for zwnj (0.04 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⇝":                         "\u21dd",
    	"𝕫":                            "\U0001d56b",
    	"𝓏":                            "\U0001d4cf",
    	"‍":                             "\u200d",
    	"‌":                            "\u200c",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. 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)
  5. 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