Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for Time (0.17 sec)

  1. src/archive/zip/testdata/time-win7.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 114 bytes
    - Viewed (0)
  2. src/archive/zip/testdata/time-winrar.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 150 bytes
    - Viewed (0)
  3. doc/next/6-stdlib/1-time.md

    ### Timer changes
    
    Go 1.23 makes two significant changes to the implementation of
    [time.Timer] and [time.Ticker].
    
    First, `Timer`s and `Ticker`s that are no longer referred to by the program
    become eligible for garbage collection immediately, even if their
    `Stop` methods have not been called.
    Earlier versions of Go did not collect unstopped `Timer`s until after
    they had fired and never collected unstopped `Ticker`s.
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/archive/zip/testdata/time-winzip.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 150 bytes
    - Viewed (0)
  5. src/archive/zip/testdata/time-7zip.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 150 bytes
    - Viewed (0)
  6. src/archive/zip/testdata/time-go.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 148 bytes
    - Viewed (0)
  7. src/archive/zip/testdata/time-infozip.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 166 bytes
    - Viewed (0)
  8. src/archive/zip/testdata/time-osx.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 142 bytes
    - Viewed (0)
  9. src/archive/zip/testdata/time-22738.zip

    Russ Cox <******@****.***> 1511973652 -0500
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 01 00:22:21 GMT 2017
    - 140 bytes
    - Viewed (0)
  10. src/archive/zip/struct.go

    		offset = 0
    	}
    	return time.FixedZone("", int(offset/time.Second))
    }
    
    // msDosTimeToTime converts an MS-DOS date and time into a time.Time.
    // 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(
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
Back to top