Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for 10 (0.12 sec)

  1. src/cmd/asm/internal/arch/arm64.go

    		curSize = 3
    		curQ = 0
    	case "D2":
    		curSize = 3
    		curQ = 1
    	default:
    		return 0, errors.New("invalid arrangement in ARM64 register list")
    	}
    	return (int64(curQ) & 1 << 30) | (int64(curSize&3) << 10), nil
    }
    
    // ARM64RegisterListOffset generates offset encoding according to AArch64 specification.
    func ARM64RegisterListOffset(firstReg, regCnt int, arrangement int64) (int64, error) {
    	offset := int64(firstReg)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/cgo_test.go

    func Test9510(t *testing.T)                  { test9510(t) }
    func Test9557(t *testing.T)                  { test9557(t) }
    func Test10303(t *testing.T)                 { test10303(t, 10) }
    func Test11925(t *testing.T)                 { test11925(t) }
    func Test12030(t *testing.T)                 { test12030(t) }
    func Test14838(t *testing.T)                 { test14838(t) }
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed May 17 21:53:11 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  3. misc/cgo/gmp/gmp.go

    		return os.ErrInvalid
    	}
    	return nil
    }
    
    // String returns the decimal representation of z.
    func (z *Int) String() string {
    	if z == nil {
    		return "nil"
    	}
    	z.doinit()
    	p := C.mpz_get_str(nil, 10, &z.i[0])
    	s := C.GoString(p)
    	C.free(unsafe.Pointer(p))
    	return s
    }
    
    func (z *Int) destroy() {
    	if z.init {
    		C.mpz_clear(&z.i[0])
    	}
    	z.init = false
    }
    
    /*
     * arithmetic
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 9.5K bytes
    - Viewed (0)
  4. src/bufio/scan_test.go

    }
    
    // Test that the scanner doesn't panic and returns ErrBadReadCount
    // on a reader that returns a negative count of bytes read (issue 38053).
    func TestNegativeEOFReader(t *testing.T) {
    	r := negativeEOFReader(10)
    	scanner := NewScanner(&r)
    	c := 0
    	for scanner.Scan() {
    		c++
    		if c > 1 {
    			t.Error("read too many lines")
    			break
    		}
    	}
    	if got, want := scanner.Err(), ErrBadReadCount; got != want {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Sep 22 16:22:42 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  5. api/go1.4.txt

    pkg compress/gzip, method (*Reader) Multistream(bool)
    
    # CL 138800043 crypto: Add SHA3 functions in go.crypto/sha3 to the Hash enum., David Leon Gil <******@****.***>
    pkg crypto, const SHA3_224 = 10
    pkg crypto, const SHA3_224 Hash
    pkg crypto, const SHA3_256 = 11
    pkg crypto, const SHA3_256 Hash
    pkg crypto, const SHA3_384 = 12
    pkg crypto, const SHA3_384 Hash
    pkg crypto, const SHA3_512 = 13
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  6. src/archive/tar/tar_test.go

    	}, {
    		in: []sparseEntry{{3, 3}}, size: 5,
    		wantValid: false,
    	}, {
    		in: []sparseEntry{{2, 0}, {1, 0}, {0, 0}}, size: 3,
    		wantValid: false,
    	}, {
    		in: []sparseEntry{{1, 3}, {2, 2}}, size: 10,
    		wantValid: false,
    	}}
    
    	for i, v := range vectors {
    		gotValid := validateSparseEntries(v.in, v.size)
    		if gotValid != v.wantValid {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24K bytes
    - Viewed (0)
  7. misc/ios/go_ios_exec.go

    <plist version="1.0">
    <dict>
    	<key>rules</key>
    	<dict>
    		<key>.*</key>
    		<true/>
    		<key>Info.plist</key>
    		<dict>
    			<key>omit</key>
    			<true/>
    			<key>weight</key>
    			<integer>10</integer>
    		</dict>
    		<key>ResourceRules.plist</key>
    		<dict>
    			<key>omit</key>
    			<true/>
    			<key>weight</key>
    			<integer>100</integer>
    		</dict>
    	</dict>
    </dict>
    </plist>
    `
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/endtoend_test.go

    	testEndToEnd(t, "loong64", "loong64")
    }
    
    func TestPPC64EndToEnd(t *testing.T) {
    	defer func(old int) { buildcfg.GOPPC64 = old }(buildcfg.GOPPC64)
    	for _, goppc64 := range []int{8, 9, 10} {
    		t.Logf("GOPPC64=power%d", goppc64)
    		buildcfg.GOPPC64 = goppc64
    		// Some pseudo-ops may assemble differently depending on GOPPC64
    		testEndToEnd(t, "ppc64", "ppc64")
    		testEndToEnd(t, "ppc64", "ppc64_p10")
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  9. api/go1.11.txt

    pkg debug/elf, const R_RISCV_TLS_GD_HI20 R_RISCV
    pkg debug/elf, const R_RISCV_TLS_GOT_HI20 = 21
    pkg debug/elf, const R_RISCV_TLS_GOT_HI20 R_RISCV
    pkg debug/elf, const R_RISCV_TLS_TPREL32 = 10
    pkg debug/elf, const R_RISCV_TLS_TPREL32 R_RISCV
    pkg debug/elf, const R_RISCV_TLS_TPREL64 = 11
    pkg debug/elf, const R_RISCV_TLS_TPREL64 R_RISCV
    pkg debug/elf, const R_RISCV_TPREL_ADD = 32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  10. doc/go_mem.html

    </p>
    
    <p class="rule">
    A send on a channel is synchronized before the completion of the
    corresponding receive from that channel.
    </p>
    
    <p>
    This program:
    </p>
    
    <pre>
    var c = make(chan int, 10)
    var a string
    
    func f() {
    	a = "hello, world"
    	c &lt;- 0
    }
    
    func main() {
    	go f()
    	&lt;-c
    	print(a)
    }
    </pre>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
Back to top