Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Panicker (2.58 sec)

  1. finisher_api.go

    				if panicked || err != nil {
    					db.RollbackTo(fmt.Sprintf("sp%p", fc))
    				}
    			}()
    		}
    		err = fc(db.Session(&Session{NewDB: db.clone == 1}))
    	} else {
    		tx := db.Begin(opts...)
    		if tx.Error != nil {
    			return tx.Error
    		}
    
    		defer func() {
    			// Make sure to rollback when panic, Block error or Commit error
    			if panicked || err != nil {
    				tx.Rollback()
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/rangefunc/rewrite.go

    abi.RF_DONE = 0      // body of loop has exited in a non-panic way
    abi.RF_READY = 1     // body of loop has not exited yet, is not running
    abi.RF_PANIC = 2     // body of loop is either currently running, or has panicked
    abi.RF_EXHAUSTED = 3 // iterator function call, e.g. f(func(x t){...}), returned so the sequence is "exhausted".
    
    abi.RF_MISSING_PANIC = 4 // used to report errors.
    
    The value of #stateK transitions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/test.go

            return f;
    }
    
    void init() {
            SansTypeface = loadfont();
    }
    
    // issue 5242
    // Cgo incorrectly computed the alignment of structs
    // with no Go accessible fields as 0, and then panicked on
    // modulo-by-zero computations.
    
    // issue 50987
    // disable arm64 GCC warnings
    #cgo CFLAGS: -Wno-psabi -Wno-unknown-warning-option
    
    typedef struct {
    } foo;
    
    typedef struct {
    	int x : 1;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top