Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PanicNilError (0.26 sec)

  1. src/runtime/panic.go

    			panic("Bad varint")
    		}
    	}
    }
    
    // A PanicNilError happens when code calls panic(nil).
    //
    // Before Go 1.21, programs that called panic(nil) observed recover returning nil.
    // Starting in Go 1.21, programs that call panic(nil) observe recover returning a *PanicNilError.
    // Programs can change back to the old behavior by setting GODEBUG=panicnil=1.
    type PanicNilError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Func).Name", Method, 0},
    		{"(*MemProfileRecord).InUseBytes", Method, 0},
    		{"(*MemProfileRecord).InUseObjects", Method, 0},
    		{"(*MemProfileRecord).Stack", Method, 0},
    		{"(*PanicNilError).Error", Method, 21},
    		{"(*PanicNilError).RuntimeError", Method, 21},
    		{"(*Pinner).Pin", Method, 21},
    		{"(*Pinner).Unpin", Method, 21},
    		{"(*StackRecord).Stack", Method, 0},
    		{"(*TypeAssertionError).Error", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top