Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for new2 (0.07 sec)

  1. src/runtime/asm_amd64.s

    // Called during function prolog when more stack is needed.
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    // calling the scheduler calling newm calling gc), so we must
    // record an argument size. For that purpose, it has no arguments.
    TEXT runtime·morestack(SB),NOSPLIT|NOFRAME,$0-0
    	// Cannot grow scheduler stack (m->g0).
    	get_tls(CX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    var http2dataChunkPools = [...]sync.Pool{
    	{New: func() interface{} { return new([1 << 10]byte) }},
    	{New: func() interface{} { return new([2 << 10]byte) }},
    	{New: func() interface{} { return new([4 << 10]byte) }},
    	{New: func() interface{} { return new([8 << 10]byte) }},
    	{New: func() interface{} { return new([16 << 10]byte) }},
    }
    
    func http2getDataBufferChunk(size int64) []byte {
    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