Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Atack (0.04 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	stksize    int64                // stack size for current frame
    	stkptrsize int64                // prefix of stack containing pointers
    
    	// alignment for current frame.
    	// NOTE: when stkalign > PtrSize, currently this only ensures the offsets of
    	// objects in the stack frame are aligned. The stack pointer is still aligned
    	// only PtrSize.
    	stkalign int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	}
    }
    
    var http2goroutineSpace = []byte("goroutine ")
    
    func http2curGoroutineID() uint64 {
    	bp := http2littleBuf.Get().(*[]byte)
    	defer http2littleBuf.Put(bp)
    	b := *bp
    	b = b[:runtime.Stack(b, false)]
    	// Parse the 4707 out of "goroutine 4707 ["
    	b = bytes.TrimPrefix(b, http2goroutineSpace)
    	i := bytes.IndexByte(b, ' ')
    	if i < 0 {
    		panic(fmt.Sprintf("No space found in %q", b))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top