Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Sleep (0.22 sec)

  1. doc/go1.17_spec.html

    When the function terminates, its goroutine also terminates.
    If the function has any return values, they are discarded when the
    function completes.
    </p>
    
    <pre>
    go Server()
    go func(ch chan&lt;- bool) { for { sleep(10); ch &lt;- true }} (c)
    </pre>
    
    
    <h3 id="Select_statements">Select statements</h3>
    
    <p>
    A "select" statement chooses which of a set of possible
    <a href="#Send_statements">send</a> or
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    When the function terminates, its goroutine also terminates.
    If the function has any return values, they are discarded when the
    function completes.
    </p>
    
    <pre>
    go Server()
    go func(ch chan&lt;- bool) { for { sleep(10); ch &lt;- true }} (c)
    </pre>
    
    
    <h3 id="Select_statements">Select statements</h3>
    
    <p>
    A "select" statement chooses which of a set of possible
    <a href="#Send_statements">send</a> or
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top