Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 0927 (0.04 sec)

  1. src/crypto/tls/testdata/Server-TLSv12-ECDHE-ECDSA-AES

    000000a0  00 00 00 00 00 13 3e 42  a5 61 84 ae 49 8b b9 91  |......>B.a..I...|
    000000b0  c2 a3 76 74 1e 4f 53 0a  fc 71 de 0d d2 44 c8 ac  |..vt.OS..q...D..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. test/codegen/bitfield.go

    	return uint64(x >> 15) // arm64:"UBFX\t[$]15, R[0-9]+, [$]17",-"LSR"
    }
    
    func ubfx3(x uint16) uint64 {
    	return uint64(x >> 9) // arm64:"UBFX\t[$]9, R[0-9]+, [$]7",-"LSR"
    }
    
    func ubfx4(x uint8) uint64 {
    	return uint64(x >> 3) // arm64:"UBFX\t[$]3, R[0-9]+, [$]5",-"LSR"
    }
    
    func ubfx5(x uint32) uint64 {
    	return uint64(x) >> 30 // arm64:"UBFX\t[$]30, R[0-9]+, [$]2"
    }
    
    func ubfx6(x uint16) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. test/codegen/compare_and_branch.go

    	// take in doNotOptimize as an argument to avoid the loops being rewritten to count down
    	// s390x:"CGIJ\t[$]12, R[0-9]+, [$]127, "
    	for i := doNotOptimize; i < 128; i++ {
    		dummy()
    	}
    
    	// s390x:"CGIJ\t[$]10, R[0-9]+, [$]-128, "
    	for i := doNotOptimize; i > -129; i-- {
    		dummy()
    	}
    
    	// s390x:"CGIJ\t[$]2, R[0-9]+, [$]127, "
    	for i := doNotOptimize; i >= 128; i++ {
    		dummy()
    	}
    
    	// s390x:"CGIJ\t[$]4, R[0-9]+, [$]-128, "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/ModuleForcingResolveRuleSpec.groovy

            0 * details._
    
            where:
            requested                                            | forcedVersion
            newSelector(mid("org", "module2"), "0.9")            | "2.0"
            newSelector(mid("org", "module2"), "2.1")            | "2.0"
            newSelector(mid("org", "module:with:colon"), "2.0")  | "3.0"
            newSelector(mid("org:with:colon", "module2"), "5.0") | "4.0"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/os/user/listgroups_unix_test.go

    }
    
    var listGroupsTests = []struct {
    	// input
    	in   string
    	user string
    	gid  string
    	// output
    	gids []string
    	err  bool
    }{
    	{in: testGroupFile, user: "root", gid: "0", gids: []string{"0", "1", "2", "7"}},
    	{in: testGroupFile, user: "jill", gid: "33", gids: []string{"33", "777"}},
    	{in: testGroupFile, user: "jody", gid: "34", gids: []string{"34", "777"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. test/codegen/bits.go

    	// ppc64x: "RLDICR\t[$]0, R[0-9]*, [$]47, R"
    	io64[0] = io64[0] & 0xFFFFFFFFFFFF0000
    	// ppc64x: "RLDICL\t[$]0, R[0-9]*, [$]16, R"
    	io64[1] = io64[1] & 0x0000FFFFFFFFFFFF
    	// ppc64x: -"SRD", -"AND", "RLDICL\t[$]60, R[0-9]*, [$]16, R"
    	io64[2] = (io64[2] >> 4) & 0x0000FFFFFFFFFFFF
    	// ppc64x: -"SRD", -"AND", "RLDICL\t[$]36, R[0-9]*, [$]28, R"
    	io64[3] = (io64[3] >> 28) & 0x0000FFFFFFFFFFFF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/compress/zlib/reader_test.go

    		"Hello, World!\n",
    		[]byte{
    			0x78, 0xbb, 0x1c, 0x32, 0x04, 0x27, 0xf3, 0x00,
    			0xb1, 0x75, 0x20, 0x1c, 0x45, 0x2e, 0x00, 0x24,
    			0x12, 0x04, 0x74,
    		},
    		[]byte{
    			0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x57, 0x6f, 0x72, 0x6c, 0x64, 0x0a,
    		},
    		nil,
    	},
    	{
    		"wrong dictionary",
    		"",
    		[]byte{
    			0x78, 0xbb, 0x1c, 0x32, 0x04, 0x27, 0xf3, 0x00,
    			0xb1, 0x75, 0x20, 0x1c, 0x45, 0x2e, 0x00, 0x24,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 02:16:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. src/net/fd_windows.go

    			return nil, os.NewSyscallError("bind", err)
    		}
    	}
    
    	var isloopback bool
    	switch ra := ra.(type) {
    	case *syscall.SockaddrInet4:
    		isloopback = ra.Addr[0] == 127
    	case *syscall.SockaddrInet6:
    		isloopback = ra.Addr == [16]byte(IPv6loopback)
    	default:
    		panic("unexpected type in connect")
    	}
    	if isloopback {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_1x.md

    Previously OkHttp added a synthetic response header, `OkHttp-Selected-Transport`. It
    has been replaced with a new synthetic header, `OkHttp-Selected-Protocol`.
    
    ##### Changes
    
     * New: Support for `HTTP-draft-09/2.0`.
     * New: Support for `spdy/3.1`. Dropped support for `spdy/3`.
     * New: Use ALPN on Android platforms that support it (4.4+)
     * New: CacheControl model and parser.
     * New: Protocol selection in MockWebServer.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv10-ECDHE-ECDSA-AES

    00000070  d9 dd 1d 5b 81 2f 10 a5  65 28 83 93 b3 b1 3a 72  |...[./..e(....:r|
    00000080  f0 15 9a e5 9f 21 80 f1  59 a5 0e f1 0c 2b d1 0c  |.....!..Y....+..|
    00000090  d4 27 73 f3 7e 15 03 01  00 20 6f 08 27 3a d2 60  |.'s.~.... o.':.`|
    000000a0  c3 27 bc 73 55 bb 43 53  e2 e0 87 16 ca 8f 49 f0  |.'.sU.CS......I.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top