Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for day (0.23 sec)

  1. src/archive/zip/struct.go

    // The resolution is 2s.
    // See: https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-dosdatetimetofiletime
    func msDosTimeToTime(dosDate, dosTime uint16) time.Time {
    	return time.Date(
    		// date bits 0-4: day of month; 5-8: month; 9-15: years since 1980
    		int(dosDate>>9+1980),
    		time.Month(dosDate>>5&0xf),
    		int(dosDate&0x1f),
    
    		// time bits 0-4: second/2; 5-10: minute; 11-15: hour
    		int(dosTime>>11),
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg syscall (windows-386), type SysProcAttr struct, HideWindow bool
    pkg syscall (windows-386), type Systemtime struct
    pkg syscall (windows-386), type Systemtime struct, Day uint16
    pkg syscall (windows-386), type Systemtime struct, DayOfWeek uint16
    pkg syscall (windows-386), type Systemtime struct, Hour uint16
    pkg syscall (windows-386), type Systemtime struct, Milliseconds uint16
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top