Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for Nd (0.03 sec)

  1. src/unicode/script_test.go

    	{0x200B, "Cf"},
    	{0xf0000, "Co"},
    	{0xdb80, "Cs"},
    	{0x0236, "Ll"},
    	{0x1d9d, "Lm"},
    	{0x07cf, "Lo"},
    	{0x1f8a, "Lt"},
    	{0x03ff, "Lu"},
    	{0x0bc1, "Mc"},
    	{0x20df, "Me"},
    	{0x07f0, "Mn"},
    	{0x1bb2, "Nd"},
    	{0x10147, "Nl"},
    	{0x2478, "No"},
    	{0xfe33, "Pc"},
    	{0x2011, "Pd"},
    	{0x301e, "Pe"},
    	{0x2e03, "Pf"},
    	{0x2e02, "Pi"},
    	{0x0022, "Po"},
    	{0x2770, "Ps"},
    	{0x00a4, "Sc"},
    	{0xa711, "Sk"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:09:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  2. src/internal/godebugs/godebugs_test.go

    		}
    		if !info.Opaque && !incs[info.Name] {
    			t.Errorf("Name=%s missing IncNonDefault calls; see 'go doc internal/godebug'", info.Name)
    		}
    	}
    }
    
    var incNonDefaultRE = regexp.MustCompile(`([\pL\p{Nd}_]+)\.IncNonDefault\(\)`)
    
    func incNonDefaults(t *testing.T) map[string]bool {
    	// Build list of all files importing internal/godebug.
    	// Tried a more sophisticated search in go list looking for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/NumberUtil.java

        private static final List<String> UNITS = unmodifiableList(asList(" B", " KiB", " MiB", " GiB", " TiB", " PiB", " EiB"));
        private static final List<String> ORDINAL_SUFFIXES = unmodifiableList(asList("th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th"));
    
    
        /**
         * Percentage (0-...) of given input.
         *
         * @param fraction the fraction of total, must be &gt;= 0. if 0, the result will be 100.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    		}
    
    		// Consume all existing comments.
    		if strings.HasPrefix(line, "//") {
    			continue
    		}
    		ues.newgolines = append(ues.newgolines, line)
    	}
    
    	if didx != nd {
    		t.Logf("didx=%d wanted %d", didx, nd)
    	}
    
    	// Open new Go file and write contents.
    	of, err := os.OpenFile(newgopath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
    	if err != nil {
    		t.Fatalf("opening %s: %v", newgopath, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. docs/language_names.yml

    mg: fiteny malagasy
    mh: Kajin M̧ajeļ
    mi: te reo Māori
    mk: македонски јазик
    ml: മലയാളം
    mn: Монгол хэл
    mr: मराठी
    ms: Bahasa Malaysia
    mt: Malti
    my: ဗမာစာ
    na: Ekakairũ Naoero
    nb: Norsk bokmål
    nd: isiNdebele
    ne: नेपाली
    ng: Owambo
    nl: Nederlands
    nn: Norsk nynorsk
    'no': Norsk
    nr: isiNdebele
    nv: Diné bizaad
    ny: chiCheŵa
    oc: occitan
    oj: ᐊᓂᔑᓈᐯᒧᐎᓐ
    om: Afaan Oromoo
    or: ଓଡ଼ିଆ
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/encoding/pem/pem_test.go

    	{"abc", "abc", ""},
    	{"abc\r", "abc\r", ""},
    	{"abc\n", "abc", ""},
    	{"abc\r\n", "abc", ""},
    	{"abc\nd", "abc", "d"},
    	{"abc\r\nd", "abc", "d"},
    	{"\nabc", "", "abc"},
    	{"\r\nabc", "", "abc"},
    	{"abc\t \nd", "abc", "d"},
    	{"\t abc\nd", "\t abc", "d"},
    	{"abc\n\t d", "abc", "\t d"},
    	{"abc\nd\t ", "abc", "d\t "},
    }
    
    func TestGetLine(t *testing.T) {
    	for i, test := range getLineTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    					ds = append(ds, d)
    				} else {
    					// Synthesize a GenDecl with just the Specs we need.
    					nd := *d // copy the GenDecl
    					nd.Specs = specs
    					if len(specs) == 1 {
    						// Remove grouping parens if there is only one spec.
    						nd.Lparen = 0
    					}
    					ds = append(ds, &nd)
    				}
    			}
    		}
    	}
    	return ds, unresolved
    }
    
    func hasIota(s ast.Spec) bool {
    	has := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	for i, t := range (ts)[:count] {
    		tagGroups[i] = []*Tag{t}
    	}
    	for _, t := range (ts)[count:] {
    		g, d := 0, tagDistance(t, tagGroups[0][0])
    		for i := 1; i < count; i++ {
    			if nd := tagDistance(t, tagGroups[i][0]); nd < d {
    				g, d = i, nd
    			}
    		}
    		tagGroups[g] = append(tagGroups[g], t)
    	}
    
    	var nts []*Tag
    	for _, g := range tagGroups {
    		l, w, c := b.tagGroupLabel(g)
    		nts = append(nts, &Tag{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_openbsd_amd64.go

    	SYS_SETITIMER      = 69  // { int sys_setitimer(int which, \
    	SYS_GETITIMER      = 70  // { int sys_getitimer(int which, \
    	SYS_SELECT         = 71  // { int sys_select(int nd, fd_set *in, fd_set *ou, \
    	SYS_KEVENT         = 72  // { int sys_kevent(int fd, \
    	SYS_MUNMAP         = 73  // { int sys_munmap(void *addr, size_t len); }
    	SYS_MPROTECT       = 74  // { int sys_mprotect(void *addr, size_t len, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse_test.go

    			nre, err := Parse(s, testFlags)
    			if err != nil {
    				t.Errorf("Parse(%#q.String() = %#q): %v", tt.Regexp, s, err)
    				continue
    			}
    			nd := dump(nre)
    			if d != nd {
    				t.Errorf("Parse(%#q) -> %#q; %#q vs %#q", tt.Regexp, s, d, nd)
    			}
    
    			ns := nre.String()
    			if s != ns {
    				t.Errorf("Parse(%#q) -> %#q -> %#q", tt.Regexp, s, ns)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top