Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gbit16 (0.21 sec)

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

            <match value="0x0000" type="big16" offset="10"/>
          </match>
        </magic>
      </mime-type>
      <mime-type type="application/vnd.wordperfect;version=5.1">
        <sub-class-of type="application/vnd.wordperfect"/>
        <magic priority="50">
          <match value="0xFF575043" type="big32" offset="0"> <!-- ÿWPC -->
            <match value="0x0001" type="big16" offset="10"/>
          </match>
        </magic>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <pre>
    const (
    	bit0, mask0 = 1 &lt;&lt; iota, 1&lt;&lt;iota - 1  // bit0 == 1, mask0 == 0  (iota == 0)
    	bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
    	_, _                                  //                        (iota == 2, unused)
    	bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
    )
    </pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top