Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 157 for 26 (0.02 sec)

  1. docs/fa/docs/index.md

    <div style="text-align: right; margin-right: 10%;">Kabir Khan - <strong>Microsoft</strong> <a href="https://github.com/fastapi/fastapi/pull/26" target="_blank"><small>(ref)</small></a></div>
    
    ---
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 26K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    // ADR
    	ADR	next, R11     // ADR R11 // 2b000010
    next:
    	NOP
    	ADR -2(PC), R10    // 0a000010
    	ADR 2(PC), R16     // 10000010
    	ADR -26(PC), R1    // 01000010
    	ADR 12(PC), R2     // 02000010
    	ADRP -2(PC), R10   // 0a000090
    	ADRP 2(PC), R16    // 10000090
    	ADRP -26(PC), R1   // 01000090
    	ADRP 12(PC), R2    // 02000090
    
    // LDP/STP
    	LDP	(R0), (R0, R1)      // 000440a9
    	LDP	(R0), (R1, R2)      // 010840a9
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 26 10:48:50 UTC 2025
    - 95.3K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg debug/elf, const R_PPC64_REL16_LO = 250
    pkg debug/elf, const R_PPC64_REL16_LO R_PPC64
    pkg debug/elf, const R_PPC64_REL24 = 10
    pkg debug/elf, const R_PPC64_REL24 R_PPC64
    pkg debug/elf, const R_PPC64_REL32 = 26
    pkg debug/elf, const R_PPC64_REL32 R_PPC64
    pkg debug/elf, const R_PPC64_REL64 = 44
    pkg debug/elf, const R_PPC64_REL64 R_PPC64
    pkg debug/elf, const R_PPC64_TLS = 67
    pkg debug/elf, const R_PPC64_TLS R_PPC64
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Longs.java

        static {
          byte[] result = new byte[128];
          Arrays.fill(result, (byte) -1);
          for (int i = 0; i < 10; i++) {
            result['0' + i] = (byte) i;
          }
          for (int i = 0; i < 26; i++) {
            result['A' + i] = (byte) (10 + i);
            result['a' + i] = (byte) (10 + i);
          }
          asciiDigits = result;
        }
    
        static int digit(char c) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.1K bytes
    - Viewed (0)
  5. api/go1.11.txt

    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
    pkg debug/elf, const R_RISCV_JUMP_SLOT = 5
    pkg debug/elf, const R_RISCV_JUMP_SLOT 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)
  6. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    </tr>
    <tr>
    <td height="26" style="height:26;padding:0;margin:0;line-height:1px;font-size:1px;"></td>
    </tr>
    </tbody>
    </table>
    <!--//////////////////////////////////////////////--> </td>
    </tr>
    </tbody>
    </table>
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  7. api/go1.10.txt

    pkg debug/elf, const R_X86_64_GOT64 = 27
    pkg debug/elf, const R_X86_64_GOT64 R_X86_64
    pkg debug/elf, const R_X86_64_GOTOFF64 = 25
    pkg debug/elf, const R_X86_64_GOTOFF64 R_X86_64
    pkg debug/elf, const R_X86_64_GOTPC32 = 26
    pkg debug/elf, const R_X86_64_GOTPC32 R_X86_64
    pkg debug/elf, const R_X86_64_GOTPC32_TLSDESC = 34
    pkg debug/elf, const R_X86_64_GOTPC32_TLSDESC R_X86_64
    pkg debug/elf, const R_X86_64_GOTPC64 = 29
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    }
    
    // User-defined self-inverse mapping function
    func rot13(r rune) rune {
    	const step = 13
    	if r >= 'a' && r <= 'z' {
    		return ((r - 'a' + step) % 26) + 'a'
    	}
    	if r >= 'A' && r <= 'Z' {
    		return ((r - 'A' + step) % 26) + 'A'
    	}
    	return r
    }
    
    func TestMap(t *testing.T) {
    	// Run a couple of awful growth/shrinkage tests
    	a := tenRunes('a')
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 28 18:13:58 UTC 2025
    - 62.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InetAddresses.java

      public static Inet4Address get6to4IPv4Address(Inet6Address ip) {
        checkArgument(is6to4Address(ip), "Address '%s' is not a 6to4 address.", toAddrString(ip));
    
        return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 2, 6));
      }
    
      /**
       * A simple immutable data class to encapsulate the information to be found in a Teredo address.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  10. api/go1.4.txt

    pkg debug/elf, const R_AARCH64_P32_ABS32 R_AARCH64
    pkg debug/elf, const R_AARCH64_P32_ADD_ABS_LO12_NC = 12
    pkg debug/elf, const R_AARCH64_P32_ADD_ABS_LO12_NC R_AARCH64
    pkg debug/elf, const R_AARCH64_P32_ADR_GOT_PAGE = 26
    pkg debug/elf, const R_AARCH64_P32_ADR_GOT_PAGE R_AARCH64
    pkg debug/elf, const R_AARCH64_P32_ADR_PREL_LO21 = 10
    pkg debug/elf, const R_AARCH64_P32_ADR_PREL_LO21 R_AARCH64
    pkg debug/elf, const R_AARCH64_P32_ADR_PREL_PG_HI21 = 11
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
Back to top