Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for allocated (0.18 sec)

  1. doc/go1.22.html

      approximately 1% by deduplicating redundant metadata.
      Some programs may see a smaller improvement because this change adjusts the size
      class boundaries of the memory allocator, so some objects may be moved up a size
      class.
    </p>
    <p>
      A consequence of this change is that some objects' addresses that were previously
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

              []T              slice capacity
              chan T           channel buffer capacity
    </pre>
    
    <p>
    The capacity of a slice is the number of elements for which there is
    space allocated in the underlying array.
    At any time the following relationship holds:
    </p>
    
    <pre>
    0 &lt;= len(s) &lt;= cap(s)
    </pre>
    
    <p>
    The length of a <code>nil</code> slice, map or channel is 0.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/asm.html

    but assembly programs must define it explicitly.
    </p>
    
    <p>
    A data symbol marked with the <code>NOPTR</code> flag (see above)
    is treated as containing no pointers to runtime-allocated data.
    A data symbol with the <code>RODATA</code> flag
    is allocated in read-only memory and is therefore treated
    as implicitly marked <code>NOPTR</code>.
    A data symbol with a total size smaller than a pointer
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. doc/go_spec.html

    corresponds to the type argument with which <code>P</code> was
    <a href="#Instantiations">instantiated</a>.
    </p>
    
    <p>
    The capacity of a slice is the number of elements for which there is
    space allocated in the underlying array.
    At any time the following relationship holds:
    </p>
    
    <pre>
    0 &lt;= len(s) &lt;= cap(s)
    </pre>
    
    <p>
    The length of a <code>nil</code> slice, map or channel is 0.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top