Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for desert (0.15 sec)

  1. src/net/http/h2_bundle.go

    		http2testHookOnPanicMu.Lock()
    		defer http2testHookOnPanicMu.Unlock()
    	}
    	if http2testHookOnPanic != nil {
    		if e := recover(); e != nil {
    			if http2testHookOnPanic(sc, e) {
    				panic(e)
    			}
    		}
    	}
    }
    
    func (sc *http2serverConn) serve() {
    	sc.serveG.check()
    	defer sc.notePanic()
    	defer sc.conn.Close()
    	defer sc.closeAllStreamsOnConnClose()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <pre>
    lock(l)
    defer unlock(l)  // unlocking happens before surrounding function returns
    
    // prints 3 2 1 0 before surrounding function returns
    for i := 0; i &lt;= 3; i++ {
    	defer fmt.Print(i)
    }
    
    // f returns 42
    func f() (result int) {
    	defer func() {
    		// result is accessed after it was set to 6 by the return statement
    		result *= 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * 🔧 Rename label "awaiting review" to "awaiting-review" to simplify search queries. PR [#10343](https://github.com/tiangolo/fastapi/pull/10343) by [@tiangolo](https://github.com/tiangolo).
    * 🔧 Update sponsors, enable Svix (revert #10228). PR [#10253](https://github.com/tiangolo/fastapi/pull/10253) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top