Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 257 for Atack (0.03 sec)

  1. src/runtime/metrics/doc.go

    	/gc/scan/heap:bytes
    		The total amount of heap space that is scannable.
    
    	/gc/scan/stack:bytes
    		The number of bytes of stack that were scanned last GC cycle.
    
    	/gc/scan/total:bytes
    		The total amount space that is scannable. Sum of all metrics in
    		/gc/scan.
    
    	/gc/stack/starting-size:bytes
    		The stack size of new goroutines.
    
    	/godebug/non-default-behavior/execerrdot:events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. src/net/http/httputil/persist.go

    var errClosed = errors.New("i/o operation on closed connection")
    
    // ServerConn is an artifact of Go's early HTTP implementation.
    // It is low-level, old, and unused by Go's current HTTP stack.
    // We should have deleted it before Go 1.
    //
    // Deprecated: Use the Server in package [net/http] instead.
    type ServerConn struct {
    	mu              sync.Mutex // read-write protects the following fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/compile.go

    	phaseName := "init"
    	defer func() {
    		if phaseName != "" {
    			err := recover()
    			stack := make([]byte, 16384)
    			n := runtime.Stack(stack, false)
    			stack = stack[:n]
    			if f.HTMLWriter != nil {
    				f.HTMLWriter.flushPhases()
    			}
    			f.Fatalf("panic during %s while compiling %s:\n\n%v\n\n%s\n", phaseName, f.Name, err, stack)
    		}
    	}()
    
    	// Run all the passes
    	if f.Log() {
    		printFunc(f)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/internal/reflectlite/value.go

    		return "reflect: call of " + e.Method + " on zero Value"
    	}
    	return "reflect: call of " + e.Method + " on " + e.Kind.String() + " Value"
    }
    
    // methodName returns the name of the calling method,
    // assumed to be two stack frames above.
    func methodName() string {
    	pc, _, _, _ := runtime.Caller(2)
    	f := runtime.FuncForPC(pc)
    	if f == nil {
    		return "unknown method"
    	}
    	return f.Name()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/runtime/crash_test.go

    }
    
    func TestStackOverflow(t *testing.T) {
    	output := runTestProg(t, "testprog", "StackOverflow")
    	want := []string{
    		"runtime: goroutine stack exceeds 1474560-byte limit\n",
    		"fatal error: stack overflow",
    		// information about the current SP and stack bounds
    		"runtime: sp=",
    		"stack=[",
    	}
    	if !strings.HasPrefix(output, want[0]) {
    		t.Errorf("output does not start with %q", want[0])
    	}
    	for _, s := range want[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/a.out.go

    	REGCTXT = REG_R26 // environment for closures
    	REGTMP  = REG_R27 // reserved for liblink
    	REGG    = REG_R28 // G
    	REGFP   = REG_R29 // frame pointer
    	REGLINK = REG_R30
    
    	// ARM64 uses R31 as both stack pointer and zero register,
    	// depending on the instruction. To differentiate RSP from ZR,
    	// we use a different numeric value for REGZERO and REGSP.
    	REGZERO = REG_R31
    	REGSP   = REG_RSP
    
    	FREGRET = REG_F0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    	{20, "SIGTSTP", "stopped"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/util.go

    func (p *Prog) InnermostFilename() string {
    	// TODO For now, this is only used for debugging output, and if we need more/better information, it might change.
    	// An example of what we might want to see is the full stack of positions for inlined code, so we get some visibility into what is recorded there.
    	pos := p.Ctxt.InnermostPos(p.Pos)
    	if !pos.IsKnown() {
    		return "<unknown file name>"
    	}
    	return pos.Filename()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/syscall/js/js.go

    	// in particular, note that WebGL2's texImage2D takes up to 10 arguments
    	const maxStackArgs = 16
    	if size <= maxStackArgs {
    		// as long as makeArgs is inlined, these will be stack-allocated
    		argVals = make([]Value, size, maxStackArgs)
    		argRefs = make([]ref, size, maxStackArgs)
    	} else {
    		// allocates on the heap, but exceeding maxStackArgs should be rare
    		argVals = make([]Value, size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. test/nosplit.go

    f7 16 nosplit call f8
    f8 16 nosplit call end
    end 1000
    REJECT
    
    # Two paths both go over the stack limit.
    start 0 call f1
    f1 80 nosplit call f2 call f3
    f2 40 nosplit call f4
    f3 96 nosplit
    f4 40 nosplit
    REJECT
    
    # Test cases near the 128-byte limit.
    
    # Ordinary stack split frame is always okay.
    start 112
    start 116
    start 120
    start 124
    start 128
    start 132
    start 136
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top