Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 134 for 01234567 (0.16 sec)

  1. src/runtime/map_test.go

    	m[0] = 12345
    	m[0] += 67890
    	m[0] /= 123
    	m[0] %= 456
    
    	const want = (12345 + 67890) / 123 % 456
    	if got := m[0]; got != want {
    		t.Errorf("got %d, want %d", got, want)
    	}
    }
    
    var sinkAppend bool
    
    func TestMapAppendAssignment(t *testing.T) {
    	m := make(map[int][]int, 0)
    
    	m[0] = nil
    	m[0] = append(m[0], 12345)
    	m[0] = append(m[0], 67890)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    //                 |     |     |     |     |
    //                 -------     -------     |
    //                    |           |        |
    //                    5           6        |
    //                    |           |        |
    //                    -------------        |
    //                          |              |
    //                          7              |
    //                          |              |
    //                          ----------------
    //                                 |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    		// 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: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	LINUX_REBOOT_CMD_HALT                       = 0xcdef0123
    	LINUX_REBOOT_CMD_KEXEC                      = 0x45584543
    	LINUX_REBOOT_CMD_POWER_OFF                  = 0x4321fedc
    	LINUX_REBOOT_CMD_RESTART                    = 0x1234567
    	LINUX_REBOOT_CMD_RESTART2                   = 0xa1b2c3d4
    	LINUX_REBOOT_CMD_SW_SUSPEND                 = 0xd000fce2
    	LINUX_REBOOT_MAGIC1                         = 0xfee1dead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  5. src/archive/tar/reader_test.go

    		// if there is data following that NUL character.
    		// This is reasonable as GNU long names are C-strings.
    		file: "testdata/gnu-long-nul.tar",
    		headers: []*Header{{
    			Name:     "0123456789",
    			Mode:     0644,
    			Uid:      1000,
    			Gid:      1000,
    			ModTime:  time.Unix(1486082191, 0),
    			Typeflag: '0',
    			Uname:    "rawr",
    			Gname:    "dsnet",
    			Format:   FormatGNU,
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    			// \q, but we don't. We once rejected \_, but too many
    			// programs and people insist on using it, so allow \_.
    			return c, t, nil
    		}
    
    	// Octal escapes.
    	case '1', '2', '3', '4', '5', '6', '7':
    		// Single non-zero digit is a backreference; not supported
    		if t == "" || t[0] < '0' || t[0] > '7' {
    			break
    		}
    		fallthrough
    	case '0':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    }
    
    func TestLRUClientSessionCache(t *testing.T) {
    	// Initialize cache of capacity 4.
    	cache := NewLRUClientSessionCache(4)
    	cs := make([]ClientSessionState, 6)
    	keys := []string{"0", "1", "2", "3", "4", "5", "6"}
    
    	// Add 4 entries to the cache and look them up.
    	for i := 0; i < 4; i++ {
    		cache.Put(keys[i], &cs[i])
    	}
    	for i := 0; i < 4; i++ {
    		if s, ok := cache.Get(keys[i]); !ok || s != &cs[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/test.go

    	return NULL;
    }
    void test5337() {
    	pthread_t tid;
    	pthread_create(&tid, 0, thread1, NULL);
    	pthread_join(tid, 0);
    }
    #endif
    
    // issue 5603
    
    const long long issue5603exp = 0x12345678;
    long long issue5603foo0() { return issue5603exp; }
    long long issue5603foo1(void *p) { return issue5603exp; }
    long long issue5603foo2(void *p, void *q) { return issue5603exp; }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  9. src/go/build/build.go

    // The % is for Jenkins. See golang.org/issue/16959.
    // The ! is because module paths may use them. See golang.org/issue/26716.
    // The ~ and ^ are for sr.ht. See golang.org/issue/32260.
    const safeString = "+-.,/0123456789=ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz:$@%! ~^"
    
    func safeCgoName(s string) bool {
    	if s == "" {
    		return false
    	}
    	for i := 0; i < len(s); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			}
    			st.advance(1)
    			ret = &TransformedType{Name: ret.(*Name).Name, Base: base}
    		}
    	case 'F':
    		ret = st.functionType()
    	case 'N', 'W', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		ret, _ = st.name()
    	case 'A':
    		ret = st.arrayType(isCast)
    	case 'M':
    		ret = st.pointerToMemberType(isCast)
    	case 'T':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top