Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ChainCount (0.24 sec)

  1. src/syscall/types_windows.go

    	EncodedCert  *byte
    	Length       uint32
    	CertInfo     *CertInfo
    	Store        Handle
    }
    
    type CertChainContext struct {
    	Size                       uint32
    	TrustStatus                CertTrustStatus
    	ChainCount                 uint32
    	Chains                     **CertSimpleChain
    	LowerQualityChainCount     uint32
    	LowerQualityChains         **CertChainContext
    	HasRevocationFreshnessTime uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/compress/flate/deflate.go

    		}
    	}
    	// Update window information.
    	d.windowEnd = n
    	d.index = n
    }
    
    // Try to find a match starting at index whose length is greater than prevSize.
    // We only look at chainCount possibilities before giving up.
    func (d *compressor) findMatch(pos int, prevHead int, prevLength int, lookahead int) (length, offset int, ok bool) {
    	minMatchLook := maxMatchLength
    	if lookahead < minMatchLook {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top