Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 116 for 01234567 (0.23 sec)

  1. doc/go1.17_spec.html

    copy(dst, src []T) int
    copy(dst []byte, src string) int
    </pre>
    
    <p>
    Examples:
    </p>
    
    <pre>
    var a = [...]int{0, 1, 2, 3, 4, 5, 6, 7}
    var s = make([]int, 6)
    var b = make([]byte, 5)
    n1 := copy(s, a[0:])            // n1 == 6, s == []int{0, 1, 2, 3, 4, 5}
    n2 := copy(s, s[2:])            // n2 == 4, s == []int{2, 3, 4, 5, 4, 5}
    n3 := copy(b, "Hello, World!")  // n3 == 5, b == []byte("Hello")
    </pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/Collections2Test.java

        assertPermutationsCount(6, Collections2.permutations(newArrayList(1, 2, 3)));
        assertPermutationsCount(5040, Collections2.permutations(newArrayList(1, 2, 3, 4, 5, 6, 7)));
        assertPermutationsCount(40320, Collections2.permutations(newArrayList(1, 2, 3, 4, 5, 6, 7, 8)));
      }
    
      public void testPermutationSetSizeOverflow() {
        // 13 elements overflow an int
        assertEquals(
            Integer.MAX_VALUE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. src/net/netip/fuzz_test.go

    	"127.1",
    	// IPv4 field has value >255.
    	"192.168.300.1",
    	// IPv4 with too many fields.
    	"192.168.0.1.5.6",
    	// IPv6 with not enough fields.
    	"1:2:3:4:5:6:7",
    	// IPv6 with too many fields.
    	"1:2:3:4:5:6:7:8:9",
    	// IPv6 with 8 fields and a :: expander.
    	"1:2:3:4::5:6:7:8",
    	// IPv6 with a field bigger than 2b.
    	"fe801::1",
    	// IPv6 with non-hex values in field.
    	"fe80:tail:scal:e::",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  4. src/strconv/quote_test.go

    	{string(rune(28)), false},
    	{string(rune(29)), false},
    	{string(rune(30)), false},
    	{string(rune(31)), false},
    	{string(rune(0x7F)), false},
    	{`' !"#$%&'()*+,-./:;<=>?@[\]^_{|}~`, true},
    	{`0123456789`, true},
    	{`ABCDEFGHIJKLMNOPQRSTUVWXYZ`, true},
    	{`abcdefghijklmnopqrstuvwxyz`, true},
    	{`☺`, true},
    	{"\x80", false},
    	{"a\xe0\xa0z", false},
    	{"\ufeffabc", false},
    	{"a\ufeffz", false},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  5. src/go/token/position_test.go

    }
    
    var tests = []struct {
    	filename string
    	source   []byte // may be nil
    	size     int
    	lines    []int
    }{
    	{"a", []byte{}, 0, []int{}},
    	{"b", []byte("01234"), 5, []int{0}},
    	{"c", []byte("\n\n\n\n\n\n\n\n\n"), 9, []int{0, 1, 2, 3, 4, 5, 6, 7, 8}},
    	{"d", nil, 100, []int{0, 5, 10, 20, 30, 70, 71, 72, 80, 85, 90, 99}},
    	{"e", nil, 777, []int{0, 80, 100, 120, 130, 180, 267, 455, 500, 567, 620}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/encoding/gob/encoder_test.go

    func TestBasicEncoderDecoder(t *testing.T) {
    	var values = []any{
    		true,
    		int(123),
    		int8(123),
    		int16(-12345),
    		int32(123456),
    		int64(-1234567),
    		uint(123),
    		uint8(123),
    		uint16(12345),
    		uint32(123456),
    		uint64(1234567),
    		uintptr(12345678),
    		float32(1.2345),
    		float64(1.2345678),
    		complex64(1.2345 + 2.3456i),
    		complex128(1.2345678 + 2.3456789i),
    		[]byte("hello"),
    		string("hello"),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/text/template/parse/lex.go

    	digits := "0123456789_"
    	if l.accept("0") {
    		// Note: Leading 0 does not mean octal in floats.
    		if l.accept("xX") {
    			digits = "0123456789abcdefABCDEF_"
    		} else if l.accept("oO") {
    			digits = "01234567_"
    		} else if l.accept("bB") {
    			digits = "01_"
    		}
    	}
    	l.acceptRun(digits)
    	if l.accept(".") {
    		l.acceptRun(digits)
    	}
    	if len(digits) == 10+1 && l.accept("eE") {
    		l.accept("+-")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  8. src/hash/maphash/smhasher_test.go

    		t.Skip("Too slow on wasm")
    	}
    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	permutation(t, h, []uint32{0, 1, 2, 3, 4, 5, 6, 7}, 8)
    	permutation(t, h, []uint32{0, 1 << 29, 2 << 29, 3 << 29, 4 << 29, 5 << 29, 6 << 29, 7 << 29}, 8)
    	permutation(t, h, []uint32{0, 1}, 20)
    	permutation(t, h, []uint32{0, 1 << 31}, 20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/strconv/atoi_test.go

    	{"-0_1_2_3_4_5", 0, -012345, nil}, // octal
    	{"0_1_2_3_4_5", 0, 012345, nil},   // octal
    	{"-_012345", 0, 0, ErrSyntax},
    	{"_-012345", 0, 0, ErrSyntax},
    	{"_012345", 0, 0, ErrSyntax},
    	{"0__12345", 0, 0, ErrSyntax},
    	{"01234__5", 0, 0, ErrSyntax},
    	{"012345_", 0, 0, ErrSyntax},
    
    	{"+0xf", 0, 0xf, nil},
    	{"-0xf", 0, -0xf, nil},
    	{"0x+f", 0, 0, ErrSyntax},
    	{"0x-f", 0, 0, ErrSyntax},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/registry/registry_test.go

    	}{
    		{registry.DWORD, "Dword1", nil},
    		{registry.DWORD, "Dword2", []byte{1, 2, 3}},
    		{registry.QWORD, "Qword1", nil},
    		{registry.QWORD, "Qword2", []byte{1, 2, 3}},
    		{registry.QWORD, "Qword3", []byte{1, 2, 3, 4, 5, 6, 7}},
    		{registry.MULTI_SZ, "MultiString1", nil},
    		{registry.MULTI_SZ, "MultiString2", []byte{0}},
    		{registry.MULTI_SZ, "MultiString3", []byte{'a', 'b', 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top