frostfs-node/pkg/local_object_storage/writecache
Evgenii Stratonikov 03976c6ed5 [#1341] .golangci.yml: Replace exportloopref with copyloopvar
exportloopref is deprecated.
gopatch:
```
@@
var index, value identifier
var slice expression
@@
for index, value := range slice {
...
-value := value
...
}

@@
var index, value identifier
var slice expression
@@
for index, value := range slice {
...
-index := index
...
}

@@
var value identifier
var channel expression
@@
for value := range channel {
...
-value := value
...
}
```

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
2024-08-28 15:44:41 +00:00
..
benchmark [#1302] writecache: Add put->flush->put benchmark 2024-08-09 12:12:07 +03:00
cachebbolt.go [#1201] writecache: Cancel background flush without lock 2024-06-28 09:02:36 +03:00
delete.go [#959] writecache: Avoid manipulation with cache in DEGRADED mode 2024-03-11 18:35:41 +00:00
flush.go [#1298] writecache: Add shrink flag for Seal command 2024-08-08 16:32:29 +03:00
flush_test.go [#1341] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 15:44:41 +00:00
generic_test.go [#895] test: Fix NewLogger arguments list 2024-01-11 12:32:09 +00:00
get.go [#959] writecache: Avoid manipulation with cache in DEGRADED mode 2024-03-11 18:35:41 +00:00
iterate.go [#973] node: Resolve revive: unused-parameter linter 2024-03-11 17:11:49 +03:00
metrics.go [#1121] node: Change mode of shard components 2024-06-05 05:55:24 +00:00
mode.go [#1298] writecache: Add shrink flag for Seal command 2024-08-08 16:32:29 +03:00
mode_test.go [#959] node: Set mode to shard's components when open it 2024-02-09 14:04:01 +00:00
options.go [#1302] writecache: Allow to specify custom page size 2024-08-09 12:12:07 +03:00
put.go [#1296] writecache: Add count limit 2024-08-09 06:30:32 +00:00
seal.go [#1298] writecache: Add shrink flag for Seal command 2024-08-08 16:32:29 +03:00
state.go [#1296] writecache: Add count limit 2024-08-09 06:30:32 +00:00
storage.go [#1302] writecache: Allow to specify custom page size 2024-08-09 12:12:07 +03:00
util.go [#1302] writecache: Allow to specify custom page size 2024-08-09 12:12:07 +03:00
writecache.go [#1298] writecache: Add shrink flag for Seal command 2024-08-08 16:32:29 +03:00