Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 694 for Atack (0.08 sec)

  1. test/fixedbugs/issue40954.go

    	// we stored an integer in that pointer. That integer just happens
    	// to be the address of i.
    	// v is also the address of i.
    	// p has a base type which is marked not-in-heap, so it
    	// should not be adjusted when the stack is copied.
    	recurse(100, p, v)
    }
    func recurse(n int, p *S, v uintptr) {
    	if n > 0 {
    		recurse(n-1, p, v)
    	}
    	if uintptr(unsafe.Pointer(p)) != v {
    		panic("adjusted notinheap pointer")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 15:27:18 UTC 2022
    - 874 bytes
    - Viewed (0)
  2. src/net/http/pprof/pprof.go

    }
    
    var profileDescriptions = map[string]string{
    	"allocs":       "A sampling of all past memory allocations",
    	"block":        "Stack traces that led to blocking on synchronization primitives",
    	"cmdline":      "The command line invocation of the current program",
    	"goroutine":    "Stack traces of all current goroutines. Use debug=2 as a query parameter to export in the same format as an unrecovered panic.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. test/abi/bad_internal_offsets.go

    	F1 string
    	F2 StructF0S1
    }
    
    type StructF0S1 struct {
    	_ uint16
    }
    
    // 0 returns 3 params
    //go:registerparams
    //go:noinline
    func Test0(p0 uint32, p1 StructF0S0, p2 int32) {
    	// consume some stack space, so as to trigger morestack
    	var pad [256]uint64
    	pad[FailCount]++
    	if p0 == 0 {
    		return
    	}
    	p1f0c := int16(-3096)
    	if p1.F0 != p1f0c {
    		NoteFailureElem(0, "genChecker0", "parm", 1, 0, pad[0])
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/zerorange_test.go

    // ensure that output param is allocated on the heap. Also, since there is a
    // defer, the pointer to each output param must be zeroed in the prologue (see
    // plive.go:epilogue()). So, we will get a block of one or more stack slots that
    // need to be zeroed. Hence, we are testing compilation completes successfully when
    // zerorange calls of various sizes (8-136 bytes) are generated. We are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/inl.go

    		Parent: parent,
    		Pos:    pos,
    		Func:   func_,
    		Name:   name,
    	}
    	tree.nodes = append(tree.nodes, call)
    	return r
    }
    
    // AllParents invokes do on each InlinedCall in the inlining call
    // stack, from outermost to innermost.
    //
    // That is, if inlIndex corresponds to f inlining g inlining h,
    // AllParents invokes do with the call for inlining g into f, and then
    // inlining h into g.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/internal/trace/oldtrace.go

    		// timestamp, M, P, G, stack. However, after they get turned into Event,
    		// they have the arguments stack, M, P, G.
    		//
    		// In Go 1.21, CPU samples did not have Ms.
    		mappedArgs = timedEventArgs{uint64(ev.StkID), ^uint64(0), uint64(ev.P), ev.G}
    	default:
    		return Event{}, fmt.Errorf("unexpected event type %v", ev.Type)
    	}
    
    	if oldtrace.EventDescriptions[ev.Type].Stack {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/inline.go

    	return p.list
    }
    
    func (ps *parseState) emph(dst, src []Inline) []Inline {
    	const chars = "_*~\"'"
    	var stack [len(chars)][]*emphPlain
    	stackOf := func(c byte) int {
    		return strings.IndexByte(chars, c)
    	}
    
    	trimStack := func() {
    		for i := range stack {
    			stk := &stack[i]
    			for len(*stk) > 0 && (*stk)[len(*stk)-1].i >= len(dst) {
    				*stk = (*stk)[:len(*stk)-1]
    			}
    		}
    	}
    
    Src:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. src/runtime/proc_test.go

    	// to notice if NumGoroutine and Stack are _always_ out of sync.
    	for i := 0; ; i++ {
    		// Give goroutines about to exit a chance to exit.
    		// The NumGoroutine and Stack below need to see
    		// the same state of the world, so anything we can do
    		// to keep it quiet is good.
    		runtime.Gosched()
    
    		n := runtime.NumGoroutine()
    		buf = buf[:runtime.Stack(buf, true)]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/format/format.go

    	Time      float64 `json:"ts"`
    	Dur       float64 `json:"dur,omitempty"`
    	PID       uint64  `json:"pid"`
    	TID       uint64  `json:"tid"`
    	ID        uint64  `json:"id,omitempty"`
    	BindPoint string  `json:"bp,omitempty"`
    	Stack     int     `json:"sf,omitempty"`
    	EndStack  int     `json:"esf,omitempty"`
    	Arg       any     `json:"args,omitempty"`
    	Cname     string  `json:"cname,omitempty"`
    	Category  string  `json:"cat,omitempty"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/runtime/signal_plan9.go

    	{_SigNotify + _SigKill, "hangup"},
    
    	// Alarms can be handled if desired, otherwise they're ignored.
    	{_SigNotify, "alarm"},
    
    	// Aborts can be handled if desired, otherwise they cause a stack trace.
    	{_SigNotify + _SigThrow, "abort"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 16:25:17 UTC 2016
    - 1.9K bytes
    - Viewed (0)
Back to top