Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 050 (0.02 sec)

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

        <sub-class-of type="text/x-tika-text-based-message"/>
      </mime-type>
    
      <mime-type type="application/x-endnote-refer">
        <magic priority="80">
          <match value="%A " type="string" offset="0:50">
            <match value="\n%D " type="string" offset="0:1000">
              <match value="\n%T " type="string" offset="0:1000"/>
            </match>
          </match>
        </magic>
        <glob pattern="*.enw"/>
    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

    </pre>
    
    <p>
    produces the same slice as allocating an array and <a href="#Slice_expressions">slicing</a>
    it, so these two expressions are equivalent:
    </p>
    
    <pre>
    make([]int, 50, 100)
    new([100]int)[0:50]
    </pre>
    
    <p>
    Like arrays, slices are always one-dimensional but may be composed to construct
    higher-dimensional objects.
    With arrays of arrays, the inner arrays are, by construction, always the same length;
    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