Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for badexec (0.1 sec)

  1. src/syscall/zerrors_darwin_arm64.go

    	EADDRNOTAVAIL   = Errno(0x31)
    	EAFNOSUPPORT    = Errno(0x2f)
    	EAGAIN          = Errno(0x23)
    	EALREADY        = Errno(0x25)
    	EAUTH           = Errno(0x50)
    	EBADARCH        = Errno(0x56)
    	EBADEXEC        = Errno(0x55)
    	EBADF           = Errno(0x9)
    	EBADMACHO       = Errno(0x58)
    	EBADMSG         = Errno(0x5e)
    	EBADRPC         = Errno(0x48)
    	EBUSY           = Errno(0x10)
    	ECANCELED       = Errno(0x59)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typexpr.go

    				check.trace(e0.Pos(), "=> %s // %s", T, goTypeName(T))
    			} else {
    				check.trace(e0.Pos(), "=> %s (under = %s) // %s", T, under, goTypeName(T))
    			}
    		}()
    	}
    
    	switch e := e0.(type) {
    	case *syntax.BadExpr:
    		// ignore - error reported before
    
    	case *syntax.Name:
    		var x operand
    		check.ident(&x, e, def, true)
    
    		switch x.mode {
    		case typexpr:
    			typ := x.typ
    			setDefType(def, typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/go/types/typexpr.go

    				check.trace(e0.Pos(), "=> %s // %s", T, goTypeName(T))
    			} else {
    				check.trace(e0.Pos(), "=> %s (under = %s) // %s", T, under, goTypeName(T))
    			}
    		}()
    	}
    
    	switch e := e0.(type) {
    	case *ast.BadExpr:
    		// ignore - error reported before
    
    	case *ast.Ident:
    		var x operand
    		check.ident(&x, e, def, true)
    
    		switch x.mode {
    		case typexpr:
    			typ := x.typ
    			setDefType(def, typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. src/syscall/zerrors_darwin_amd64.go

    	EADDRNOTAVAIL   = Errno(0x31)
    	EAFNOSUPPORT    = Errno(0x2f)
    	EAGAIN          = Errno(0x23)
    	EALREADY        = Errno(0x25)
    	EAUTH           = Errno(0x50)
    	EBADARCH        = Errno(0x56)
    	EBADEXEC        = Errno(0x55)
    	EBADF           = Errno(0x9)
    	EBADMACHO       = Errno(0x58)
    	EBADMSG         = Errno(0x5e)
    	EBADRPC         = Errno(0x48)
    	EBUSY           = Errno(0x10)
    	ECANCELED       = Errno(0x59)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/printer.go

    	// 	//p.print(newline)
    	// }
    }
    
    func (p *printer) printRawNode(n Node) {
    	switch n := n.(type) {
    	case nil:
    		// we should not reach here but don't crash
    
    	// expressions and types
    	case *BadExpr:
    		p.print(_Name, "<bad expr>")
    
    	case *Name:
    		p.print(_Name, n.Value) // _Name requires actual value following immediately
    
    	case *BasicLit:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    	old, found := check.untyped[x]
    	if !found {
    		return // nothing to do
    	}
    
    	// update operands of x if necessary
    	switch x := x.(type) {
    	case *ast.BadExpr,
    		*ast.FuncLit,
    		*ast.CompositeLit,
    		*ast.IndexExpr,
    		*ast.SliceExpr,
    		*ast.TypeAssertExpr,
    		*ast.StarExpr,
    		*ast.KeyValueExpr,
    		*ast.ArrayType,
    		*ast.StructType,
    		*ast.FuncType,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/go/parser/parser_test.go

    		t.Errorf("for File.FileEnd, got %s, want %s", got, want)
    	}
    }
    
    // TestIncompleteSelection ensures that an incomplete selector
    // expression is parsed as a (blank) *ast.SelectorExpr, not a
    // *ast.BadExpr.
    func TestIncompleteSelection(t *testing.T) {
    	for _, src := range []string{
    		"package p; var _ = fmt.",             // at EOF
    		"package p; var _ = fmt.\ntype X int", // not at EOF
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    	_, ok := expr.(*ast.BinaryExpr)
    	return ok
    }
    
    func (p *printer) expr1(expr ast.Expr, prec1, depth int) {
    	p.setPos(expr.Pos())
    
    	switch x := expr.(type) {
    	case *ast.BadExpr:
    		p.print("BadExpr")
    
    	case *ast.Ident:
    		p.print(x)
    
    	case *ast.BinaryExpr:
    		if depth < 1 {
    			p.internalError("depth < 1:", depth)
    			depth = 1
    		}
    		p.binaryExpr(x, prec1, cutoff(x, depth), depth)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/resolver.go

    		rtyp = ptyp.X
    		if unpackParams {
    			for _, arg := range syntax.UnpackListExpr(ptyp.Index) {
    				var par *syntax.Name
    				switch arg := arg.(type) {
    				case *syntax.Name:
    					par = arg
    				case *syntax.BadExpr:
    					// ignore - error already reported by parser
    				case nil:
    					check.error(ptyp, InvalidSyntaxTree, "parameterized receiver contains nil parameters")
    				default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/go/types/resolver.go

    		rtyp = ix.X
    		if unpackParams {
    			for _, arg := range ix.Indices {
    				var par *ast.Ident
    				switch arg := arg.(type) {
    				case *ast.Ident:
    					par = arg
    				case *ast.BadExpr:
    					// ignore - error already reported by parser
    				case nil:
    					check.error(ix.Orig, InvalidSyntaxTree, "parameterized receiver contains nil parameters")
    				default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top