Lines Matching full:recover
1116 <code>panic</code> and <code>recover</code> we'll see another
3374 deleteTempFiles() // Recover some space.
3445 <h3 id="recover">Recover</h3>
3454 use the built-in function <code>recover</code> to regain control
3459 A call to <code>recover</code> stops the unwinding and returns the
3461 runs while unwinding is inside deferred functions, <code>recover</code>
3466 One application of <code>recover</code> is to shut down a failing goroutine
3479 if err := recover(); err != nil {
3491 calling <code>recover</code> handles the condition completely.
3495 Because <code>recover</code> always returns <code>nil</code> unless called directly
3497 use <code>panic</code> and <code>recover</code> without failing. As an example,
3499 calling <code>recover</code>, and that logging code would run unaffected
3532 if e := recover(); e != nil {
3552 are using <code>panic</code> and <code>recover</code> to handle