Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for autosize (0.19 sec)

  1. src/archive/zip/reader.go

    			for len(fieldBuf) >= 4 { // need at least tag and size
    				attrTag := fieldBuf.uint16()
    				attrSize := int(fieldBuf.uint16())
    				if len(fieldBuf) < attrSize {
    					continue parseExtras
    				}
    				attrBuf := fieldBuf.sub(attrSize)
    				if attrTag != 1 || attrSize != 24 {
    					continue // Ignore irrelevant attributes
    				}
    
    				const ticksPerSecond = 1e7    // Windows timestamp resolution
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
Back to top