Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Post (0.17 sec)

  1. doc/go1.17_spec.html

    <p>
    A "for" statement with a ForClause is also controlled by its condition, but
    additionally it may specify an <i>init</i>
    and a <i>post</i> statement, such as an assignment,
    an increment or decrement statement. The init statement may be a
    <a href="#Short_variable_declarations">short variable declaration</a>, but the post statement must not.
    Variables declared by the init statement are re-used in each iteration.
    </p>
    
    <pre class="ebnf">
    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. src/cmd/cgo/internal/test/callback.go

    	}
    	defer func() {
    		s := recover()
    		if s == nil {
    			t.Fatal("did not panic")
    		}
    		if s.(string) != "callback panic" {
    			t.Fatal("wrong panic:", s)
    		}
    		if !lockedOSThread() {
    			t.Fatal("lost lock on OS thread after panic")
    		}
    	}()
    	nestedCall(func() { panic("callback panic") })
    	panic("nestedCall returned")
    }
    
    // Callback with zero arguments used to make the stack misaligned,
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
Back to top