Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for 42 (0.3 sec)

  1. src/arena/arena_test.go

    	tt.n = 1
    
    	ts := arena.MakeSlice[T1](a, 99, 100)
    	if len(ts) != 99 {
    		t.Errorf("Slice() len = %d, want 99", len(ts))
    	}
    	if cap(ts) != 100 {
    		t.Errorf("Slice() cap = %d, want 100", cap(ts))
    	}
    	ts[1].n = 42
    }
    
    func TestSmokeLarge(t *testing.T) {
    	a := arena.NewArena()
    	defer a.Free()
    	for i := 0; i < 10*64; i++ {
    		_ = arena.New[T2](a)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 742 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/avx512enc/avx512bw.s

    	VPCMPB $42, Y7, Y17, K7, K4                        // 62f375273fe72a
    	VPCMPB $42, (CX), Y17, K7, K4                      // 62f375273f212a
    	VPCMPB $42, 99(R15), Y17, K7, K4                   // 62d375273fa7630000002a
    	VPCMPB $42, Y7, Y17, K7, K6                        // 62f375273ff72a
    	VPCMPB $42, (CX), Y17, K7, K6                      // 62f375273f312a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 159.2K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ENOLINK Errno
    pkg syscall (netbsd-arm64-cgo), const ENOMEM = 12
    pkg syscall (netbsd-arm64-cgo), const ENOMSG = 83
    pkg syscall (netbsd-arm64-cgo), const ENOPROTOOPT = 42
    pkg syscall (netbsd-arm64-cgo), const ENOSPC = 28
    pkg syscall (netbsd-arm64-cgo), const ENOSR = 90
    pkg syscall (netbsd-arm64-cgo), const ENOSR Errno
    pkg syscall (netbsd-arm64-cgo), const ENOSTR = 91
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    	c = 3          // c == 3  (iota == 2, unused)
    	d = 1 &lt;&lt; iota  // d == 8  (iota == 3)
    )
    
    const (
    	u         = iota * 42  // u == 0     (untyped integer constant)
    	v float64 = iota * 42  // v == 42.0  (float64 constant)
    	w         = iota * 42  // w == 84    (untyped integer constant)
    )
    
    const x = iota  // x == 0
    const y = iota  // y == 0
    </pre>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    	}
    }
    
    func TestClone(t *testing.T) {
    	var cloneTests = [][]byte{
    		[]byte(nil),
    		[]byte{},
    		Clone([]byte{}),
    		[]byte(strings.Repeat("a", 42))[:0],
    		[]byte(strings.Repeat("a", 42))[:0:0],
    		[]byte("short"),
    		[]byte(strings.Repeat("a", 42)),
    	}
    	for _, input := range cloneTests {
    		clone := Clone(input)
    		if !Equal(clone, input) {
    			t.Errorf("Clone(%q) = %q; want %q", input, clone, input)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  6. src/archive/zip/zip_test.go

    )
    
    func TestOver65kFiles(t *testing.T) {
    	if testing.Short() && testenv.Builder() == "" {
    		t.Skip("skipping in short mode")
    	}
    	buf := new(strings.Builder)
    	w := NewWriter(buf)
    	const nFiles = (1 << 16) + 42
    	for i := 0; i < nFiles; i++ {
    		_, err := w.CreateHeader(&FileHeader{
    			Name:   fmt.Sprintf("%d.dat", i),
    			Method: Store, // Deflate is too slow when it is compiled with -race flag
    		})
    		if err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg debug/dwarf, const AttrPriority = 69
    pkg debug/dwarf, const AttrProducer = 37
    pkg debug/dwarf, const AttrPrototyped = 39
    pkg debug/dwarf, const AttrRanges = 85
    pkg debug/dwarf, const AttrReturnAddr = 42
    pkg debug/dwarf, const AttrSegment = 70
    pkg debug/dwarf, const AttrSibling = 1
    pkg debug/dwarf, const AttrSpecification = 71
    pkg debug/dwarf, const AttrStartScope = 44
    pkg debug/dwarf, const AttrStaticLink = 72
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const AF_INET_SDP = 40
    pkg syscall (freebsd-arm64), const AF_INET_SDP ideal-int
    pkg syscall (freebsd-arm64), const AF_INET6 = 28
    pkg syscall (freebsd-arm64), const AF_INET6_SDP = 42
    pkg syscall (freebsd-arm64), const AF_INET6_SDP ideal-int
    pkg syscall (freebsd-arm64), const AF_IPX = 23
    pkg syscall (freebsd-arm64), const AF_IPX ideal-int
    pkg syscall (freebsd-arm64), const AF_ISDN = 26
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	MOVD 14616(R10), R9                        // 498d5cf9
    	MOVWU (R4)(R12.SXTW<<2), R7                // 87d86cb8
    	MOVD (R7)(R11.UXTW<<3), R25                // f9586bf8
    	MOVBU.P 42(R2), R12                        // 4ca44238
    	MOVBU.W -27(R2), R14                       // 4e5c5e38
    	MOVBU 2916(R24), R3                        // 03936d39
    	MOVBU (R19)(R14<<0), R23                   // 776a6e38
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  10. api/go1.16.txt

    pkg syscall (darwin-arm64), const ENOMSG = 91
    pkg syscall (darwin-arm64), const ENOPOLICY = 103
    pkg syscall (darwin-arm64), const ENOPOLICY Errno
    pkg syscall (darwin-arm64), const ENOPROTOOPT = 42
    pkg syscall (darwin-arm64), const ENOSPC = 28
    pkg syscall (darwin-arm64), const ENOSR = 98
    pkg syscall (darwin-arm64), const ENOSR Errno
    pkg syscall (darwin-arm64), const ENOSTR = 99
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
Back to top