MCPcopy
hub / github.com/rclone/rclone / DisableList

Method DisableList

fs/features.go:284–289  ·  view source on GitHub ↗

DisableList nil's out the comma separated list of named features. If it isn't found then it will log a message.

(list []string)

Source from the content-addressed store, hash-verified

282// DisableList nil's out the comma separated list of named features.
283// If it isn't found then it will log a message.
284func (ft *Features) DisableList(list []string) *Features {
285 for _, feature := range list {
286 ft.Disable(strings.TrimSpace(feature))
287 }
288 return ft
289}
290
291// Fill fills in the function pointers in the Features struct from the
292// optional interfaces. It returns the original updated Features

Callers 4

FillMethod · 0.95
MaskMethod · 0.95
TestFeaturesDisableListFunction · 0.80
TestManualTransformFileFunction · 0.80

Calls 1

DisableMethod · 0.95

Tested by 2

TestFeaturesDisableListFunction · 0.64
TestManualTransformFileFunction · 0.64