Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for readelf (0.08 sec)

  1. src/net/http/h2_bundle.go

    		debugReadLoggerf:  log.Printf,
    		debugWriteLoggerf: log.Printf,
    	}
    	fr.getReadBuf = func(size uint32) []byte {
    		if cap(fr.readBuf) >= int(size) {
    			return fr.readBuf[:size]
    		}
    		fr.readBuf = make([]byte, size)
    		return fr.readBuf
    	}
    	fr.SetMaxReadFrameSize(http2maxFrameSize)
    	return fr
    }
    
    // SetMaxReadFrameSize sets the maximum size of a frame
    // that will be read by a subsequent call to ReadFrame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	abiSelf := abiForFunc(fn, ssaConfig.ABI0, ssaConfig.ABI1)
    
    	printssa := false
    	// match either a simple name e.g. "(*Reader).Reset", package.name e.g. "compress/gzip.(*Reader).Reset", or subpackage name "gzip.(*Reader).Reset"
    	// optionally allows an ABI suffix specification in the GOSSAHASH, e.g. "(*Reader).Reset<0>" etc
    	if strings.Contains(ssaDump, name) { // in all the cases the function name is entirely contained within the GOSSAFUNC string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top