Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for Atack (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/ir/func.go

    	if base.Debug.Closure > 0 {
    		if clo.Esc() == EscHeap {
    			base.WarnfAt(clo.Pos(), "heap closure, captured vars = %v", clo.Func.ClosureVars)
    		} else {
    			base.WarnfAt(clo.Pos(), "stack closure, captured vars = %v", clo.Func.ClosureVars)
    		}
    	}
    	if base.Flag.CompilingRuntime && clo.Esc() == EscHeap && !clo.IsGoWrap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/compress/flate/deflate.go

    		if d.hashOffset > maxHashOffset {
    			delta := d.hashOffset - 1
    			d.hashOffset -= delta
    			d.chainHead -= delta
    
    			// Iterate over slices instead of arrays to avoid copying
    			// the entire table onto the stack (Issue #18625).
    			for i, v := range d.hashPrev[:] {
    				if int(v) > delta {
    					d.hashPrev[i] = uint32(int(v) - delta)
    				} else {
    					d.hashPrev[i] = 0
    				}
    			}
    			for i, v := range d.hashHead[:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/runtime/metrics.go

    		},
    		"/gc/pauses:seconds": {
    			compute: func(_ *statAggregate, out *metricValue) {
    				// N.B. this is identical to /sched/pauses/total/gc:seconds.
    				sched.stwTotalTimeGC.write(out)
    			},
    		},
    		"/gc/stack/starting-size:bytes": {
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    				out.scalar = uint64(startingStackSize)
    			},
    		},
    		"/memory/classes/heap/free:bytes": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. src/net/http/clientserver_test.go

    		}
    		if gotLog == "" {
    			if d > 0 {
    				t.Logf("wanted a stack trace logged; got nothing after %v", d)
    			}
    			return false
    		}
    		if !strings.Contains(gotLog, "created by ") && strings.Count(gotLog, "\n") < 6 {
    			if d > 0 {
    				t.Logf("output doesn't look like a panic stack trace after %v. Got: %s", d, gotLog)
    			}
    			return false
    		}
    		return true
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // Trace state.
    
    // trace is global tracing context.
    var trace struct {
    	// trace.lock must only be acquired on the system stack where
    	// stack splits cannot happen while it is held.
    	lock mutex
    
    	// Trace buffer management.
    	//
    	// First we check the empty list for any free buffers. If not, buffers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/module/module.go

    // needing different casings of a file path, but it would be fairly illegible
    // to most programmers when those paths appeared in the file system
    // (including in file paths in compiler errors and stack traces)
    // in web server logs, and so on. Instead, we want a safe escaped form that
    // leaves most paths unaltered.
    //
    // The safe escaped form is to replace every uppercase letter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/runtime/metrics_test.go

    					}) {
    						// stk is a call stack that is still on the user stack when
    						// it calls runtime.unlock. Add the extra function that
    						// we'll see, when the static lock ranking implementation of
    						// runtime.unlockWithRank switches to the system stack.
    						stk = append([]string{"runtime.unlockWithRank"}, stk...)
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top