Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for qhold (0.2 sec)

  1. doc/go_mem.html

    <b>Requirement 3</b>:
    For an ordinary (non-synchronizing) data read <i>r</i> on a memory location <i>x</i>,
    <i>W</i>(<i>r</i>) must be a write <i>w</i> that is <i>visible</i> to <i>r</i>,
    where visible means that both of the following hold:
    </p>
    
    <ol>
    	<li><i>w</i> happens before <i>r</i>.</li>
    	<li><i>w</i> does not happen before any other write <i>w'</i> (to <i>x</i>) that happens before <i>r</i>.</li>
    </ol>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    m := make(map[string]int, 100)  // map with initial space for approximately 100 elements
    </pre>
    
    <p>
    Calling <code>make</code> with a map type and size hint <code>n</code> will
    create a map with initial space to hold <code>n</code> map elements.
    The precise behavior is implementation-dependent.
    </p>
    
    
    <h3 id="Appending_and_copying_slices">Appending to and copying slices</h3>
    
    <p>
    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

    (The prototype will also let <code>go</code> <code>vet</code> check the argument references.)
    At the start of the function, the arguments are assumed
    to be initialized but the results are assumed uninitialized.
    If the results will hold live pointers during a call instruction,
    the function should start by zeroing the results and then
    executing the pseudo-instruction <code>GO_RESULTS_INITIALIZED</code>.
    This instruction records that the results are now initialized
    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

    m := make(map[string]int, 100)  // map with initial space for approximately 100 elements
    </pre>
    
    <p>
    Calling <code>make</code> with a map type and size hint <code>n</code> will
    create a map with initial space to hold <code>n</code> map elements.
    The precise behavior is implementation-dependent.
    </p>
    
    
    <h3 id="Min_and_max">Min and max</h3>
    
    <p>
    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