Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for beans (0.2 sec)

  1. doc/go_mem.html

    </p>
    
    <p>
    <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>
    
    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

    var b = make([]byte, 1.0&lt;&lt;s)   // 1.0 has type int; len(b) == 1&lt;&lt;33
    
    // The results of the following examples are given for 32-bit ints,
    // 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
    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/go_spec.html

    </p>
    
    <p>
    Each such pair of matched types corresponds to a <i>type equation</i> containing
    one or multiple type parameters, from one or possibly multiple generic functions.
    Inferring the missing type arguments means solving the resulting set of type
    equations for the respective type parameters.
    </p>
    
    <p>
    For example, given
    </p>
    
    <pre>
    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