Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for conservative (0.12 sec)

  1. src/net/http/h2_bundle.go

    	// So, take the net/http.Server value and pad it up a bit, assuming 10 headers.
    	const perFieldOverhead = 32 // per http2 spec
    	const typicalHeaders = 10   // conservative
    	return uint32(n + typicalHeaders*perFieldOverhead)
    }
    
    func (sc *http2serverConn) curOpenStreams() uint32 {
    	sc.serveG.check()
    	return sc.curClientStreams + sc.curPushedStreams
    }
    
    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

    		// and then the prove pass will remove the bounds check.
    		// In theory the prove pass could potentially remove certain
    		// Spectre masks, but it's very delicate and probably better
    		// to be conservative and leave them all in.
    		return idx
    	}
    
    	bNext := s.f.NewBlock(ssa.BlockPlain)
    	bPanic := s.f.NewBlock(ssa.BlockExit)
    
    	if !idx.Type.IsSigned() {
    		switch kind {
    		case ssa.BoundsIndex:
    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