Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for 00ab0000 (0.15 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	MOVW R5, (R3)(R4)               // 7ca4192e
    	MOVW R5, (R3)(R0)               // 7ca0192e
    	MOVW R5, (R3)                   // 90a30000
    	MOVH R4, 2(R3)                  // b0830002
    	MOVH R5, (R3)(R4)               // 7ca41b2e
    	MOVH R5, (R3)(R0)               // 7ca01b2e
    	MOVH R5, (R3)                   // b0a30000
    	MOVB R4, 1(R3)                  // 98830001
    	MOVB R5, (R3)(R4)               // 7ca419ae
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    	//   [65290] section_ff07      PROGBITS        00000000 03fc4c 000004 00  WA  0   0  4
    	//   [65291] section_ff08      PROGBITS        00000000 03fc50 000004 00  WA  0   0  4
    	//   [65292] .comment          PROGBITS        00000000 03fc54 000027 01  MS  0   0  1
    	//   [65293] .note.GNU-stack   PROGBITS        00000000 03fc7b 000000 00      0   0  1
    	//   [65294] .symtab           SYMTAB          00000000 03fc7c 0ff0a0 10     65296   2  4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/zero_test.go

    	a := Z8u1{false, [8]byte{255, 255, 255, 255, 255, 255, 255, 255}}
    	zero8u1_ssa(&a)
    	want := Z8u1{false, [8]byte{0, 0, 0, 0, 0, 0, 0, 0}}
    	if a != want {
    		t.Errorf("zero8u2 got=%v, want %v\n", a, want)
    	}
    	b := Z8u2{15, [8]byte{255, 255, 255, 255, 255, 255, 255, 255}}
    	zero8u2_ssa(&b)
    	wantb := Z8u2{15, [8]byte{0, 0, 0, 0, 0, 0, 0, 0}}
    	if b != wantb {
    		t.Errorf("zero8u2 got=%v, want %v\n", b, wantb)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

        --snippet-highlight-color: #f7c590;
        /* Border colors for structural elements and user defined tables */
        --border-color: #ededed;
        --table-border-color: #000000;
        /* Search input colors */
        --search-input-background-color: #ffffff;
        --search-input-text-color: #000000;
        --search-input-placeholder-color: #909090;
        /* Highlight color for active search tag target */
        --search-tag-highlight-color: #ffff00;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

          .isEqualTo("::1")
      }
    
      @Test
      fun hostIpv6AddressTrailingCompression() {
        assertThat(parse("http://[0001:0000::]").host).isEqualTo("1::")
        assertThat(parse("http://[0001::0000]").host).isEqualTo("1::")
        assertThat(parse("http://[0001::]").host).isEqualTo("1::")
        assertThat(parse("http://[1::]").host).isEqualTo("1::")
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. src/net/url/url_test.go

    		{"localhost:443", "localhost", "443"},
    		{"some.super.long.domain.example.org:8080", "some.super.long.domain.example.org", "8080"},
    		{"[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:17000", "2001:0db8:85a3:0000:0000:8a2e:0370:7334", "17000"},
    		{"[2001:0db8:85a3:0000:0000:8a2e:0370:7334]", "2001:0db8:85a3:0000:0000:8a2e:0370:7334", ""},
    
    		// Ensure that even when not valid, Host is one of "Hostname",
    		// "Hostname:Port", "[Hostname]" or "[Hostname]:Port".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	{"%#q", "☺", "`☺`"},
    	{"%#+q", "☺", "`☺`"},
    	{"%10q", "⌘", `       "⌘"`},
    	{"%+10q", "⌘", `  "\u2318"`},
    	{"%-10q", "⌘", `"⌘"       `},
    	{"%+-10q", "⌘", `"\u2318"  `},
    	{"%010q", "⌘", `0000000"⌘"`},
    	{"%+010q", "⌘", `00"\u2318"`},
    	{"%-010q", "⌘", `"⌘"       `}, // 0 has no effect when - is present.
    	{"%+-010q", "⌘", `"\u2318"  `},
    	{"%#8q", "\n", `    "\n"`},
    	{"%#+8q", "\r", `    "\r"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/asm5.go

    	{obj.APCDATA, C_LCON, C_NONE, C_LCON, 0, 0, 0, 0, 0, 0},
    	{obj.AFUNCDATA, C_LCON, C_NONE, C_ADDR, 0, 0, 0, 0, 0, 0},
    	{obj.ANOP, C_NONE, C_NONE, C_NONE, 0, 0, 0, 0, 0, 0},
    	{obj.ANOP, C_LCON, C_NONE, C_NONE, 0, 0, 0, 0, 0, 0}, // nop variants, see #40689
    	{obj.ANOP, C_REG, C_NONE, C_NONE, 0, 0, 0, 0, 0, 0},
    	{obj.ANOP, C_FREG, C_NONE, C_NONE, 0, 0, 0, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    	SSUBTYP_DWSTR   = 0x70000 // DWARF strings section
    	SSUBTYP_DWRNGES = 0x80000 // DWARF ranges section
    	SSUBTYP_DWLOC   = 0x90000 // DWARF location lists section
    	SSUBTYP_DWFRAME = 0xA0000 // DWARF frames section
    	SSUBTYP_DWMAC   = 0xB0000 // DWARF macros section
    )
    
    // Headers size
    const (
    	FILHSZ_32      = 20
    	FILHSZ_64      = 24
    	AOUTHSZ_EXEC32 = 72
    	AOUTHSZ_EXEC64 = 120
    	SCNHSZ_32      = 40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. src/net/netip/netip_test.go

    		{mustIP("::fffe:c000:0280"), false, mustIP("::fffe:c000:0280")},
    		{mustIP("::ffff:127.1.2.3"), true, mustIP("127.1.2.3")},
    		{mustIP("::ffff:7f01:0203"), true, mustIP("127.1.2.3")},
    		{mustIP("0:0:0:0:0000:ffff:127.1.2.3"), true, mustIP("127.1.2.3")},
    		{mustIP("0:0:0:0::ffff:127.1.2.3"), true, mustIP("127.1.2.3")},
    		{mustIP("::1"), false, mustIP("::1")},
    		{mustIP("1.2.3.4"), false, mustIP("1.2.3.4")},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top