-
-
Notifications
You must be signed in to change notification settings - Fork 871
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix issue #2796 before v2.5.0 release * Validate against other 'sync_list' use cases with verification * Update Client Side Filtering documentation
- Loading branch information
Showing
4 changed files
with
320 additions
and
86 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
@startuml | ||
|Decision Tree| | ||
:Start Client Side Filtering Evaluation; | ||
if (check_nosync?) then (true) | ||
:Skip item (no sync); | ||
else (false) | ||
if (skip_dotfiles?) then (true) | ||
:Skip file (dotfile); | ||
else (false) | ||
if (skip_symlinks?) then (true) | ||
:Skip item (symlink); | ||
else (false) | ||
if (skip_dir?) then (true) | ||
:Skip directory; | ||
else (false) | ||
if (skip_file?) then (true) | ||
:Skip file; | ||
else (false) | ||
if (in sync_list?) then (false) | ||
:Skip item (not in sync list); | ||
else (true) | ||
if (skip_size?) then (true) | ||
:Skip file (size too large); | ||
else (false) | ||
:File or Directory flagged\nto be synced; | ||
endif | ||
endif | ||
endif | ||
endif | ||
endif | ||
endif | ||
endif | ||
:End Client Side Filtering Evaluation; | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.