Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for LastWriteTime (0.46 sec)

  1. src/os/types_windows.go

    func (fs *fileStat) ModTime() time.Time {
    	return time.Unix(0, fs.LastWriteTime.Nanoseconds())
    }
    
    // Sys returns syscall.Win32FileAttributeData for file fs.
    func (fs *fileStat) Sys() any {
    	return &syscall.Win32FileAttributeData{
    		FileAttributes: fs.FileAttributes,
    		CreationTime:   fs.CreationTime,
    		LastAccessTime: fs.LastAccessTime,
    		LastWriteTime:  fs.LastWriteTime,
    		FileSizeHigh:   fs.FileSizeHigh,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    }
    
    func copyFindData(dst *Win32finddata, src *win32finddata1) {
    	dst.FileAttributes = src.FileAttributes
    	dst.CreationTime = src.CreationTime
    	dst.LastAccessTime = src.LastAccessTime
    	dst.LastWriteTime = src.LastWriteTime
    	dst.FileSizeHigh = src.FileSizeHigh
    	dst.FileSizeLow = src.FileSizeLow
    	dst.Reserved0 = src.Reserved0
    	dst.Reserved1 = src.Reserved1
    
    	// The src is 1 element bigger than dst, but it must be NUL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/syscall_windows.go

    type SecurityAttributes struct {
    	Length             uint16
    	SecurityDescriptor uintptr
    	InheritHandle      bool
    }
    
    type FILE_BASIC_INFO struct {
    	CreationTime   int64
    	LastAccessTime int64
    	LastWriteTime  int64
    	ChangedTime    int64
    	FileAttributes uint32
    
    	// Pad out to 8-byte alignment.
    	//
    	// Without this padding, TestChmod fails due to an argument validation error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    }
    
    func copyFindData(dst *Win32finddata, src *win32finddata1) {
    	dst.FileAttributes = src.FileAttributes
    	dst.CreationTime = src.CreationTime
    	dst.LastAccessTime = src.LastAccessTime
    	dst.LastWriteTime = src.LastWriteTime
    	dst.FileSizeHigh = src.FileSizeHigh
    	dst.FileSizeLow = src.FileSizeLow
    	dst.Reserved0 = src.Reserved0
    	dst.Reserved1 = src.Reserved1
    
    	// The src is 1 element bigger than dst, but it must be NUL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_windows.go

    	r0, _, _ := Syscall9(procRegEnumKeyExW.Addr(), 8, uintptr(key), uintptr(index), uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(nameLen)), uintptr(unsafe.Pointer(reserved)), uintptr(unsafe.Pointer(class)), uintptr(unsafe.Pointer(classLen)), uintptr(unsafe.Pointer(lastWriteTime)), 0)
    	if r0 != 0 {
    		regerrno = Errno(r0)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    //sys	regEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) = advapi32.RegEnumKeyExW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall9(procRegEnumKeyExW.Addr(), 8, uintptr(key), uintptr(index), uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(nameLen)), uintptr(unsafe.Pointer(reserved)), uintptr(unsafe.Pointer(class)), uintptr(unsafe.Pointer(classLen)), uintptr(unsafe.Pointer(lastWriteTime)), 0)
    	if r0 != 0 {
    		regerrno = syscall.Errno(r0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) = advapi32.RegEnumKeyExW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ByHandleFileInformation.FileSizeHigh", Field, 0},
    		{"ByHandleFileInformation.FileSizeLow", Field, 0},
    		{"ByHandleFileInformation.LastAccessTime", Field, 0},
    		{"ByHandleFileInformation.LastWriteTime", Field, 0},
    		{"ByHandleFileInformation.NumberOfLinks", Field, 0},
    		{"ByHandleFileInformation.VolumeSerialNumber", Field, 0},
    		{"BytePtrFromString", Func, 1},
    		{"ByteSliceFromString", Func, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top