Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 104 for 48 (0.02 sec)

  1. api/go1.11.txt

    pkg debug/elf, const R_RISCV_GOT_HI20 = 20
    pkg debug/elf, const R_RISCV_GOT_HI20 R_RISCV
    pkg debug/elf, const R_RISCV_GPREL_I = 47
    pkg debug/elf, const R_RISCV_GPREL_I R_RISCV
    pkg debug/elf, const R_RISCV_GPREL_S = 48
    pkg debug/elf, const R_RISCV_GPREL_S R_RISCV
    pkg debug/elf, const R_RISCV_HI20 = 26
    pkg debug/elf, const R_RISCV_HI20 R_RISCV
    pkg debug/elf, const R_RISCV_JAL = 17
    pkg debug/elf, const R_RISCV_JAL R_RISCV
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 22 03:48:56 UTC 2018
    - 25K bytes
    - Viewed (0)
  2. docs/debugging/xl-meta/main.go

    	}
    
    	if !bytes.Equal(buf[:4], xlHeader[:]) {
    		return payload, 0, 0, fmt.Errorf("xlMeta: unknown XLv2 header, expected %v, got %v", xlHeader[:4], buf[:4])
    	}
    
    	if bytes.Equal(buf[4:8], []byte("1   ")) {
    		// Set as 1,0.
    		major, minor = 1, 0
    	} else {
    		major, minor = binary.LittleEndian.Uint16(buf[4:6]), binary.LittleEndian.Uint16(buf[6:8])
    	}
    	if major > xlVersionMajor {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	XVSRAH		$10, X2		// 42683477
    	XVSRAW		$0, X2, X1	// 41803477
    	XVSRAW		$31, X2, X1	// 41fc3477
    	XVSRAW		$16, X2		// 42c03477
    	XVSRAV		$0, X2, X1	// 41003577
    	XVSRAV		$63, X2, X1	// 41fc3577
    	XVSRAV		$48, X2		// 42c03577
    	XVROTRB		$0, X2, X1	// 4120a076
    	XVROTRB		$7, X2, X1	// 413ca076
    	XVROTRB		$3, X2		// 422ca076
    	XVROTRH		$0, X2, X1	// 4140a076
    	XVROTRH		$15, X2, X1	// 417ca076
    	XVROTRH		$13, X2		// 4274a076
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 19:24:25 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  4. api/go1.10.txt

    pkg debug/elf, const R_ARM_THM_JUMP6 = 52
    pkg debug/elf, const R_ARM_THM_JUMP6 R_ARM
    pkg debug/elf, const R_ARM_THM_JUMP8 = 103
    pkg debug/elf, const R_ARM_THM_JUMP8 R_ARM
    pkg debug/elf, const R_ARM_THM_MOVT_ABS = 48
    pkg debug/elf, const R_ARM_THM_MOVT_ABS R_ARM
    pkg debug/elf, const R_ARM_THM_MOVT_BREL = 88
    pkg debug/elf, const R_ARM_THM_MOVT_BREL R_ARM
    pkg debug/elf, const R_ARM_THM_MOVT_PREL = 50
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InetAddresses.java

        checkArgument(isTeredoAddress(ip), "Address '%s' is not a Teredo address.", toAddrString(ip));
    
        byte[] bytes = ip.getAddress();
        Inet4Address server = getInet4Address(Arrays.copyOfRange(bytes, 4, 8));
    
        int flags = ByteStreams.newDataInput(bytes, 8).readShort() & 0xffff;
    
        // Teredo obfuscates the mapped client port, per section 4 of the RFC.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/SetsTest.java

        ImmutableSortedSet<Integer> set =
            ImmutableSortedSet.<Integer>reverseOrder().add(2, 4, 6, 8, 10).build();
    
        assertThrows(IllegalArgumentException.class, () -> Sets.subSet(set, Range.closed(4, 8)));
    
        // These results are all incorrect, but there's no way (short of iterating over the result)
        // to verify that with an arbitrary ordering or comparator.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 45.3K bytes
    - Viewed (0)
  7. docs/en/data/translation_reviewers.yml

    tiangolo:
      login: tiangolo
      count: 53
      avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4
      url: https://github.com/tiangolo
    Laineyzhang55:
      login: Laineyzhang55
      count: 48
      avatarUrl: https://avatars.githubusercontent.com/u/59285379?v=4
      url: https://github.com/Laineyzhang55
    Kludex:
      login: Kludex
      count: 47
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:58:29 UTC 2025
    - 65.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

      - [alpha] Added ability to create/remove clusters w/highly available (replicated) masters on GCE using kube-up/kube-down scripts. ([docs](http://kubernetes.io/docs/admin/ha-master-gce/)) ([kubernetes/features#48](https://github.com/kubernetes/enhancements/issues/48))
    - **Federation**
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    	}
    
    	if !bytes.Equal(buf[:4], xlHeader[:]) {
    		return payload, 0, 0, fmt.Errorf("xlMeta: unknown XLv2 header, expected %v, got %v", xlHeader[:4], buf[:4])
    	}
    
    	if bytes.Equal(buf[4:8], []byte("1   ")) {
    		// Set as 1,0.
    		major, minor = 1, 0
    	} else {
    		major, minor = binary.LittleEndian.Uint16(buf[4:6]), binary.LittleEndian.Uint16(buf[6:8])
    	}
    	if major > xlVersionMajor {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 65.6K bytes
    - Viewed (1)
  10. api/go1.5.txt

    pkg debug/elf, const R_PPC64_TOC16_HA = 50
    pkg debug/elf, const R_PPC64_TOC16_HA R_PPC64
    pkg debug/elf, const R_PPC64_TOC16_HI = 49
    pkg debug/elf, const R_PPC64_TOC16_HI R_PPC64
    pkg debug/elf, const R_PPC64_TOC16_LO = 48
    pkg debug/elf, const R_PPC64_TOC16_LO R_PPC64
    pkg debug/elf, const R_PPC64_TOC16_LO_DS = 64
    pkg debug/elf, const R_PPC64_TOC16_LO_DS R_PPC64
    pkg debug/elf, const R_PPC64_TPREL16 = 69
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
Back to top