Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for skipped (0.19 sec)

  1. doc/go_mem.html

    <p class="rule">
    A receive from an unbuffered channel is synchronized before the completion of
    the corresponding send on that channel.
    </p>
    
    <p>
    This program (as above, but with the send and receive statements swapped and
    using an unbuffered channel):
    </p>
    
    <pre>
    var c = make(chan int)
    var a string
    
    func f() {
    	a = "hello, world"
    	&lt;-c
    }
    
    func main() {
    	go f()
    	c &lt;- 0
    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.22.html

          <code>/sched/pauses/total/other:seconds</code> provide additional details
          about stop-the-world pauses.
          The "stopping" metrics report the time taken from deciding to stop the
          world until all goroutines are stopped.
          The "total" metrics report the time taken from deciding to stop the world
          until it is started again.
        </p>
    
        <p><!-- https://go.dev/issue/63340 -->
    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)
  3. doc/go1.17_spec.html

    are evaluated left-to-right and top-to-bottom; the first one that equals the
    switch expression
    triggers execution of the statements of the associated case;
    the other cases are skipped.
    If no case matches and there is a "default" case,
    its statements are executed.
    There can be at most one default case and it may appear anywhere in the
    "switch" statement.
    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)
  4. doc/go_spec.html

    are evaluated left-to-right and top-to-bottom; the first one that equals the
    switch expression
    triggers execution of the statements of the associated case;
    the other cases are skipped.
    If no case matches and there is a "default" case,
    its statements are executed.
    There can be at most one default case and it may appear anywhere in the
    "switch" statement.
    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