Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pp (0.01 sec)

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

        <glob pattern="*.stk"/>
      </mime-type>
      <mime-type type="application/ibe-key-request+xml"/>
      <mime-type type="application/ibe-pkg-reply+xml"/>
      <mime-type type="application/ibe-pp-data"/>
      <mime-type type="application/iges"/>
    
      <mime-type type="application/illustrator">
        <acronym>AI</acronym>
        <_comment>Adobe Illustrator Artwork</_comment>
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. doc/go_spec.html

    // which means the shifts will overflow.
    var mm int = 1.0&lt;&lt;s            // 1.0 has type int; mm == 0
    var oo = 1&lt;&lt;s == 2&lt;&lt;s          // 1 and 2 have type int; oo == true
    var pp = 1&lt;&lt;s == 1&lt;&lt;33         // illegal: 1 has type int, but 1&lt;&lt;33 overflows int
    var xx = a[1.0&lt;&lt;s]             // 1.0 has type int; xx == a[0]
    var bb = make([]byte, 1.0&lt;&lt;s)  // 1.0 has type int; len(bb) == 0
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top