Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0xfe37 (0.03 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="WEBVTT\n" type="string" offset="0"/>
          <!-- With Byte Order Mark -->
          <match value="0xfeff" offset="0">
             <match value="WEBVTT\r" type="string" offset="2"/>
             <match value="WEBVTT\n" type="string" offset="2"/>
          </match>
          <match value="0xfeff" offset="0">
             <match value="WEBVTT\r" type="string" offset="2"/>
             <match value="WEBVTT\n" type="string" offset="2"/>
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Mar 13 08:18:01 UTC 2025
    - 320.1K bytes
    - Viewed (1)
  2. doc/go_spec.html

    </p>
    
    <pre>
    ^1         // untyped integer constant, equal to -2
    uint8(^1)  // illegal: same as uint8(-2), -2 cannot be represented as a uint8
    ^uint8(1)  // typed uint8 constant, same as 0xFF ^ uint8(1) = uint8(0xFE)
    int8(^1)   // same as int8(-2)
    ^int8(1)   // same as -1 ^ int8(1) = -2
    </pre>
    
    <p>
    Implementation restriction: A compiler may use rounding while
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
Back to top