Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for timestamp (0.27 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SCM_RIGHTS = 1
    pkg syscall (netbsd-arm64-cgo), const SCM_RIGHTS ideal-int
    pkg syscall (netbsd-arm64-cgo), const SCM_TIMESTAMP = 8
    pkg syscall (netbsd-arm64-cgo), const SCM_TIMESTAMP ideal-int
    pkg syscall (netbsd-arm64-cgo), const S_IEXEC = 64
    pkg syscall (netbsd-arm64-cgo), const S_IEXEC ideal-int
    pkg syscall (netbsd-arm64-cgo), const S_IFMT = 61440
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  2. src/archive/zip/struct.go

    	Method uint16
    
    	// Modified is the modified time of the file.
    	//
    	// When reading, an extended timestamp is preferred over the legacy MS-DOS
    	// date field, and the offset between the times is used as the timezone.
    	// If only the MS-DOS date is present, the timezone is assumed to be UTC.
    	//
    	// When writing, an extended timestamp (which is timezone-agnostic) is
    	// always emitted. The legacy MS-DOS date field is encoded according to the
    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)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), const SCM_RIGHTS ideal-int
    pkg syscall (darwin-arm64), const SCM_TIMESTAMP = 2
    pkg syscall (darwin-arm64), const SCM_TIMESTAMP ideal-int
    pkg syscall (darwin-arm64), const SCM_TIMESTAMP_MONOTONIC = 4
    pkg syscall (darwin-arm64), const SCM_TIMESTAMP_MONOTONIC ideal-int
    pkg syscall (darwin-arm64), const SIGBUS = 10
    pkg syscall (darwin-arm64), const SIGCHLD = 20
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    struct {
    	x, y float64 ""  // an empty tag string is like an absent tag
    	name string  "any string is permitted as a tag"
    	_    [4]byte "ceci n'est pas un champ de structure"
    }
    
    // A struct corresponding to a TimeStamp protocol buffer.
    // The tag strings define the protocol buffer field numbers;
    // they follow the convention outlined by the reflect package.
    struct {
    	microsec  uint64 `protobuf:"1"`
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (darwin-386), const RUSAGE_SELF ideal-int
    pkg syscall (darwin-386), const SCM_CREDS ideal-int
    pkg syscall (darwin-386), const SCM_RIGHTS ideal-int
    pkg syscall (darwin-386), const SCM_TIMESTAMP ideal-int
    pkg syscall (darwin-386), const SCM_TIMESTAMP_MONOTONIC ideal-int
    pkg syscall (darwin-386), const SIGCHLD Signal
    pkg syscall (darwin-386), const SIGCONT Signal
    pkg syscall (darwin-386), const SIGEMT Signal
    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)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SCM_CREDS ideal-int
    pkg syscall (freebsd-arm64), const SCM_RIGHTS = 1
    pkg syscall (freebsd-arm64), const SCM_RIGHTS ideal-int
    pkg syscall (freebsd-arm64), const SCM_TIMESTAMP = 2
    pkg syscall (freebsd-arm64), const SCM_TIMESTAMP ideal-int
    pkg syscall (freebsd-arm64), const SIGBUS = 10
    pkg syscall (freebsd-arm64), const SIGCHLD = 20
    pkg syscall (freebsd-arm64), const SIGCHLD Signal
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  7. src/archive/tar/strconv.go

    	octBits := uint(n-1) * 3
    	return x >= 0 && (n >= 22 || x < 1<<octBits)
    }
    
    // parsePAXTime takes a string of the form %d.%d as described in the PAX
    // specification. Note that this implementation allows for negative timestamps,
    // which is allowed for by the PAX specification, but not always portable.
    func parsePAXTime(s string) (time.Time, error) {
    	const maxNanoSecondDigits = 9
    
    	// Split string into seconds and sub-seconds parts.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg syscall (darwin-386), const RUSAGE_SELF = 0
    pkg syscall (darwin-386), const SCM_CREDS = 3
    pkg syscall (darwin-386), const SCM_RIGHTS = 1
    pkg syscall (darwin-386), const SCM_TIMESTAMP = 2
    pkg syscall (darwin-386), const SCM_TIMESTAMP_MONOTONIC = 4
    pkg syscall (darwin-386), const SIGBUS = 10
    pkg syscall (darwin-386), const SIGCHLD = 20
    pkg syscall (darwin-386), const SIGCONT = 19
    pkg syscall (darwin-386), const SIGEMT = 7
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  9. src/archive/zip/reader.go

    		f.Modified = modified.UTC()
    
    		// If legacy MS-DOS timestamps are set, we can use the delta between
    		// the legacy and extended versions to estimate timezone offset.
    		//
    		// A non-UTC timezone is always used (even if offset is zero).
    		// Thus, FileHeader.Modified.Location() == time.UTC is useful for
    		// determining whether extended timestamps are present.
    		// This is necessary for users that need to do additional time
    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)
  10. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const SCM_CREDENTIALS ideal-int
    pkg syscall (linux-arm-cgo), const SCM_RIGHTS ideal-int
    pkg syscall (linux-arm-cgo), const SCM_TIMESTAMP ideal-int
    pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPING ideal-int
    pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPNS ideal-int
    pkg syscall (linux-arm-cgo), const SIGCHLD Signal
    pkg syscall (linux-arm-cgo), const SIGCLD Signal
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top