Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 0x1000000 (0.02 sec)

  1. src/archive/tar/strconv.go

    		return time.Unix(secs, 0), nil // No sub-second values
    	}
    
    	// Parse the nanoseconds.
    	// Initialize an array with '0's to handle right padding automatically.
    	nanoDigits := [maxNanoSecondDigits]byte{'0', '0', '0', '0', '0', '0', '0', '0', '0'}
    	for i := range len(sn) {
    		switch c := sn[i]; {
    		case c < '0' || c > '9':
    			return time.Time{}, ErrHeader
    		case i < len(nanoDigits):
    			nanoDigits[i] = c
    		}
    	}
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Sep 08 17:08:20 UTC 2025
    - 9.1K bytes
    - Viewed (0)
Back to top