From dd150efdd74829f86c8a4eb09331cfef7e8b4eff Mon Sep 17 00:00:00 2001 From: Bryce Larson Date: Mon, 14 Oct 2019 19:14:10 -0600 Subject: [PATCH] docs: fix --use-server-modtime spelling in docs --- MANUAL.html | 4 ++-- MANUAL.md | 4 ++-- MANUAL.txt | 4 ++-- docs/content/docs.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/MANUAL.html b/MANUAL.html index f6d17fff1..3539ab34b 100644 --- a/MANUAL.html +++ b/MANUAL.html @@ -2608,8 +2608,8 @@ rclone sync /path/to/files remote:current-backup

-u, –update

This forces rclone to skip any files which exist on the destination and have a modified time that is newer than the source file.

If an existing destination file has a modification time equal (within the computed modify window precision) to the source file’s, it will be updated if the sizes are different.

-

On remotes which don’t support mod time directly (or when using --use-server-mod-time) the time checked will be the uploaded time. This means that if uploading to one of these remotes, rclone will skip any files which exist on the destination and have an uploaded time that is newer than the modification time of the source file.

-

This can be useful when transferring to a remote which doesn’t support mod times directly (or when using --use-server-mod-time to avoid extra API calls) as it is more accurate than a --size-only check and faster than using --checksum.

+

On remotes which don’t support mod time directly (or when using --use-server-modtime) the time checked will be the uploaded time. This means that if uploading to one of these remotes, rclone will skip any files which exist on the destination and have an uploaded time that is newer than the modification time of the source file.

+

This can be useful when transferring to a remote which doesn’t support mod times directly (or when using --use-server-modtime to avoid extra API calls) as it is more accurate than a --size-only check and faster than using --checksum.

–use-mmap

If this flag is set then rclone will use anonymous memory allocated by mmap on Unix based platforms and VirtualAlloc on Windows for its transfer buffers (size controlled by --buffer-size). Memory allocated like this does not go on the Go heap and can be returned to the OS immediately when it is finished with.

If this flag is not set then rclone will allocate and free the buffers using the Go memory allocator which may use more memory as memory pages are returned less aggressively to the OS.

diff --git a/MANUAL.md b/MANUAL.md index 1bcdfff5b..8f26cf2b6 100644 --- a/MANUAL.md +++ b/MANUAL.md @@ -5629,13 +5629,13 @@ the computed modify window precision) to the source file's, it will be updated if the sizes are different. On remotes which don't support mod time directly (or when using -`--use-server-mod-time`) the time checked will be the uploaded time. +`--use-server-modtime`) the time checked will be the uploaded time. This means that if uploading to one of these remotes, rclone will skip any files which exist on the destination and have an uploaded time that is newer than the modification time of the source file. This can be useful when transferring to a remote which doesn't support -mod times directly (or when using `--use-server-mod-time` to avoid extra +mod times directly (or when using `--use-server-modtime` to avoid extra API calls) as it is more accurate than a `--size-only` check and faster than using `--checksum`. diff --git a/MANUAL.txt b/MANUAL.txt index 7165cb195..84ead92d9 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -5267,13 +5267,13 @@ the computed modify window precision) to the source file’s, it will be updated if the sizes are different. On remotes which don’t support mod time directly (or when using ---use-server-mod-time) the time checked will be the uploaded time. This +--use-server-modtime) the time checked will be the uploaded time. This means that if uploading to one of these remotes, rclone will skip any files which exist on the destination and have an uploaded time that is newer than the modification time of the source file. This can be useful when transferring to a remote which doesn’t support -mod times directly (or when using --use-server-mod-time to avoid extra +mod times directly (or when using --use-server-modtime to avoid extra API calls) as it is more accurate than a --size-only check and faster than using --checksum. diff --git a/docs/content/docs.md b/docs/content/docs.md index 4c912e1c6..46a7955e3 100644 --- a/docs/content/docs.md +++ b/docs/content/docs.md @@ -1099,7 +1099,7 @@ This forces rclone to skip any files which exist on the destination and have a modified time that is newer than the source file. This can be useful when transferring to a remote which doesn't support -mod times directly (or when using `--use-server-mod-time` to avoid extra +mod times directly (or when using `--use-server-modtime` to avoid extra API calls) as it is more accurate than a `--size-only` check and faster than using `--checksum`. @@ -1112,7 +1112,7 @@ If an existing destination file is older than the source file then it will be updated if the size or checksum differs from the source file. On remotes which don't support mod time directly (or when using -`--use-server-mod-time`) the time checked will be the uploaded time. +`--use-server-modtime`) the time checked will be the uploaded time. This means that if uploading to one of these remotes, rclone will skip any files which exist on the destination and have an uploaded time that is newer than the modification time of the source file.