Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for 0bxxxxx (0.32 sec)

  1. src/net/url/url_test.go

    		},
    		{
    			name: "nil User",
    			url: &URL{
    				Scheme: "http",
    				Host:   "host.tld",
    				Path:   "this:that",
    				User:   UserPassword("", "password"),
    			},
    			want: "http://:xxxxx@host.tld/this:that",
    		},
    		{
    			name: "blank Username, blank Password",
    			url: &URL{
    				Scheme: "http",
    				Host:   "host.tld",
    				Path:   "this:that",
    			},
    			want: "http://host.tld/this:that",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    // by R bits, and repeated with period of 64, 32, 16, 8, 4, or 2.
    // it is encoded in logical instructions with 3 bitfields
    // N (1 bit) : R (6 bits) : S (6 bits), where
    // N=1           -- period=64
    // N=0, S=0xxxxx -- period=32
    // N=0, S=10xxxx -- period=16
    // N=0, S=110xxx -- period=8
    // N=0, S=1110xx -- period=4
    // N=0, S=11110x -- period=2
    // R is the shift amount, low bits of S = n-1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top