Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Tanghe (0.33 sec)

  1. src/archive/tar/reader.go

    	}
    	return readGNUSparseMap0x1(hdr.PAXRecords)
    }
    
    // mergePAX merges paxHdrs into hdr for all relevant fields of Header.
    func mergePAX(hdr *Header, paxHdrs map[string]string) (err error) {
    	for k, v := range paxHdrs {
    		if v == "" {
    			continue // Keep the original USTAR value
    		}
    		var id64 int64
    		switch k {
    		case paxPath:
    			hdr.Name = v
    		case paxLinkpath:
    			hdr.Linkname = v
    		case paxUname:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. src/compress/lzw/reader.go

    	litWidth int                           // width in bits of literal codes
    	err      error
    
    	// The first 1<<litWidth codes are literal codes.
    	// The next two codes mean clear and EOF.
    	// Other valid codes are in the range [lo, hi] where lo := clear + 2,
    	// with the upper bound incrementing on each code seen.
    	//
    	// overflow is the code at which hi overflows the code width. It always
    	// equals 1 << width.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top