Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for doPanic (0.33 sec)

  1. docs/pl/docs/help-fastapi.md

    * Pomóż mi sprawdzić, czy PR ma **testy**.
    
    * Sprawdź, czy testy **nie przechodzą** przed PR. 🚨
    
    * Następnie sprawdź, czy testy **przechodzą** po PR. ✅
    
    * Wiele PR-ów nie ma testów, możesz **przypomnieć** im o dodaniu testów, a nawet **zaproponować** samemu jakieś testy. To jedna z rzeczy, które pochłaniają najwięcej czasu i możesz w tym bardzo pomóc.
    
    * Następnie skomentuj również to, czego spróbowałeś, wtedy będę wiedział, że to sprawdziłeś. 🤓
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/expr.go

    	case ir.OANDAND, ir.OOROR:
    		n := n.(*ir.LogicalExpr)
    		return walkLogical(n, init)
    
    	case ir.OPRINT, ir.OPRINTLN:
    		return walkPrint(n.(*ir.CallExpr), init)
    
    	case ir.OPANIC:
    		n := n.(*ir.UnaryExpr)
    		return mkcall("gopanic", nil, init, n.X)
    
    	case ir.ORECOVERFP:
    		return walkRecoverFP(n.(*ir.CallExpr), init)
    
    	case ir.OCFUNC:
    		return n
    
    	case ir.OCALLINTER, ir.OCALLFUNC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/func.go

    			n.SetOp(l.BuiltinOp)
    			n.Fun = nil
    			n.SetTypecheck(0) // re-typechecking new op is OK, not a loop
    			return typecheck(n, top)
    
    		case ir.OCAP, ir.OCLEAR, ir.OCLOSE, ir.OIMAG, ir.OLEN, ir.OPANIC, ir.OREAL, ir.OUNSAFESTRINGDATA, ir.OUNSAFESLICEDATA:
    			typecheckargs(n)
    			fallthrough
    		case ir.ONEW:
    			arg, ok := needOneArg(n, "%v", n.Op())
    			if !ok {
    				n.SetType(nil)
    				return n
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/const.go

    		ir.OCALLMETH,
    		ir.OCAP,
    		ir.OCLEAR,
    		ir.OCLOSE,
    		ir.OCOMPLEX,
    		ir.OCOPY,
    		ir.ODELETE,
    		ir.OIMAG,
    		ir.OLEN,
    		ir.OMAKE,
    		ir.OMAX,
    		ir.OMIN,
    		ir.ONEW,
    		ir.OPANIC,
    		ir.OPRINT,
    		ir.OPRINTLN,
    		ir.OREAL,
    		ir.ORECOVER,
    		ir.ORECOVERFP,
    		ir.ORECV,
    		ir.OUNSAFEADD,
    		ir.OUNSAFESLICE,
    		ir.OUNSAFESLICEDATA,
    		ir.OUNSAFESTRING,
    		ir.OUNSAFESTRINGDATA:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/builtin.go

    	{"mallocgc", funcTag, 8},
    	{"panicdivide", funcTag, 9},
    	{"panicshift", funcTag, 9},
    	{"panicmakeslicelen", funcTag, 9},
    	{"panicmakeslicecap", funcTag, 9},
    	{"throwinit", funcTag, 9},
    	{"panicwrap", funcTag, 9},
    	{"gopanic", funcTag, 11},
    	{"gorecover", funcTag, 14},
    	{"goschedguarded", funcTag, 9},
    	{"goPanicIndex", funcTag, 16},
    	{"goPanicIndexU", funcTag, 18},
    	{"goPanicSliceAlen", funcTag, 16},
    	{"goPanicSliceAlenU", funcTag, 18},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    		return false
    	}
    
    	name := sf.name()
    
    	// Special case: always show runtime.gopanic frame
    	// in the middle of a stack trace, so that we can
    	// see the boundary between ordinary code and
    	// panic-induced deferred code.
    	// See golang.org/issue/5832.
    	if name == "runtime.gopanic" && !firstFrame {
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/stmt.go

    		visitList(call.Args)
    		visit(&call.RType)
    
    	case ir.OCOPY:
    		call := call.(*ir.BinaryExpr)
    		visit(&call.X)
    		visit(&call.Y)
    		visit(&call.RType)
    
    	case ir.OCLEAR, ir.OCLOSE, ir.OPANIC:
    		call := call.(*ir.UnaryExpr)
    		visit(&call.X)
    	}
    
    	if len(argps) != 0 {
    		// Found one or more operands that need to be evaluated upfront
    		// and spilled to temporary variables, which can be captured by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  8. src/runtime/stack_test.go

    	}
    }
    
    func TestStackPanic(t *testing.T) {
    	// Test that stack copying copies panics correctly. This is difficult
    	// to test because it is very unlikely that the stack will be copied
    	// in the middle of gopanic. But it can happen.
    	// To make this test effective, edit panic.go:gopanic and uncomment
    	// the GC() call just before freedefer(d).
    	defer func() {
    		if x := recover(); x == nil {
    			t.Errorf("recover failed")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/typecheck.go

    		n := n.(*ir.CallExpr)
    		return tcMake(n)
    
    	case ir.ONEW:
    		n := n.(*ir.UnaryExpr)
    		return tcNew(n)
    
    	case ir.OPRINT, ir.OPRINTLN:
    		n := n.(*ir.CallExpr)
    		return tcPrint(n)
    
    	case ir.OPANIC:
    		n := n.(*ir.UnaryExpr)
    		return tcPanic(n)
    
    	case ir.ORECOVER:
    		n := n.(*ir.CallExpr)
    		return tcRecover(n)
    
    	case ir.OUNSAFEADD:
    		n := n.(*ir.BinaryExpr)
    		return tcUnsafeAdd(n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/genericOps.go

    //    Plain                []            [next]
    //       If   [boolean Value]      [then, else]
    //    First                []   [always, never]
    //    Defer             [mem]  [nopanic, panic]                  (control opcode should be OpStaticCall to runtime.deferproc)
    // JumpTable   [integer Value]  [succ1,succ2,..]
    
    var genericBlocks = []blockData{
    	{name: "Plain"},                  // a single successor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top