Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. doc/go_mem.html

    then in the original program, the other goroutine can only observe any prior value of <code>*p</code> and <code>1</code>.
    In the rewritten program, the other goroutine can observe <code>2</code>, which was previously impossible.
    </p>
    
    <p>
    Not introducing data races also means not assuming that loops terminate.
    For example, a compiler must in general not move the accesses to <code>*p</code> or <code>*q</code>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    <a href="#Close"><code>close</code></a>.
    The multi-valued assignment form of the
    <a href="#Receive_operator">receive operator</a>
    reports whether a received value was sent before
    the channel was closed.
    </p>
    
    <p>
    A single channel may be used in
    <a href="#Send_statements">send statements</a>,
    <a href="#Receive_operator">receive operations</a>,
    and calls to the built-in functions
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <a href="#Close"><code>close</code></a>.
    The multi-valued assignment form of the
    <a href="#Receive_operator">receive operator</a>
    reports whether a received value was sent before
    the channel was closed.
    </p>
    
    <p>
    A single channel may be used in
    <a href="#Send_statements">send statements</a>,
    <a href="#Receive_operator">receive operations</a>,
    and calls to the built-in functions
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top