Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0_80 (0.09 sec)

  1. src/net/netip/netip_test.go

    		want      bool
    		wantUnmap Addr
    	}{
    		{Addr{}, false, Addr{}},
    		{mustIP("::ffff:c000:0280"), true, mustIP("192.0.2.128")},
    		{mustIP("::ffff:192.0.2.128"), true, mustIP("192.0.2.128")},
    		{mustIP("::ffff:192.0.2.128%eth0"), true, mustIP("192.0.2.128")},
    		{mustIP("::fffe:c000:0280"), false, mustIP("::fffe:c000:0280")},
    		{mustIP("::ffff:127.1.2.3"), true, mustIP("127.1.2.3")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. src/reflect/type.go

    				prog = append(prog, 0x81)
    				prog = appendVarint(prog, elemWords-elemPtrs-1)
    			}
    		}
    		// Repeat length-1 times.
    		if elemWords < 0x80 {
    			prog = append(prog, byte(elemWords|0x80))
    		} else {
    			prog = append(prog, 0x80)
    			prog = appendVarint(prog, elemWords)
    		}
    		prog = appendVarint(prog, uintptr(length)-1)
    		prog = append(prog, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="org.jetbrains.kotlinx" name="kotlinx-html-jvm" version="0.8.0">
             <artifact name="kotlinx-html-jvm-0.8.0.jar">
                <pgp value="8E3A02905A1AE67E7B0F9ACD3967D4EDA591B991"/>
             </artifact>
          </component>
          <component group="org.jline" name="jline" version="3.22.0">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    DATA masks<>+0x60(SB)/8, $0x0000ffffffffffff
    DATA masks<>+0x68(SB)/8, $0x0000000000000000
    DATA masks<>+0x70(SB)/8, $0x00ffffffffffffff
    DATA masks<>+0x78(SB)/8, $0x0000000000000000
    DATA masks<>+0x80(SB)/8, $0xffffffffffffffff
    DATA masks<>+0x88(SB)/8, $0x0000000000000000
    DATA masks<>+0x90(SB)/8, $0xffffffffffffffff
    DATA masks<>+0x98(SB)/8, $0x00000000000000ff
    DATA masks<>+0xa0(SB)/8, $0xffffffffffffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/time/format.go

    }
    
    // These are borrowed from unicode/utf8 and strconv and replicate behavior in
    // that package, since we can't take a dependency on either.
    const (
    	lowerhex  = "0123456789abcdef"
    	runeSelf  = 0x80
    	runeError = '\uFFFD'
    )
    
    func quote(s string) string {
    	buf := make([]byte, 1, len(s)+2) // slice will be at least len(s) + quotes
    	buf[0] = '"'
    	for i, c := range s {
    		if c >= runeSelf || c < ' ' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top