- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for globalSync (0.09 sec)
-
cmd/os_windows.go
} case data.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0: name += SlashSeparator } count-- entries = append(entries, name) } return entries, nil } func globalSync() { // no-op on windows } func syscallErrToFileErr(dirPath string, err error) error { switch err { case nil: return nil case syscall.ERROR_FILE_NOT_FOUND: return errFileNotFound
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 18 18:08:15 UTC 2023 - 5.1K bytes - Viewed (0) -
cmd/os_other.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Sep 13 15:14:36 UTC 2023 - 4K bytes - Viewed (0) -
cmd/os_unix.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 9.3K bytes - Viewed (0) -
cmd/xl-storage.go
dstFilePath := pathJoin(filePath, xlStorageFormatFile) // Renaming xl.json to xl.meta should be fully synced to disk. defer func() { if err == nil && s.globalSync { // Sync to disk only upon success. globalSync() } }() if err = Rename(srcFilePath, dstFilePath); err != nil { switch { case isSysErrNotDir(err): return errFileNotFound
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 91.3K bytes - Viewed (0)