frostfs-node/pkg/local_object_storage/blobstor/blobovniczatree
Ekaterina Lebedeva a685fcdc96
All checks were successful
DCO action / DCO (pull_request) Successful in 2m41s
Tests and linters / Run gofumpt (pull_request) Successful in 2m32s
Vulncheck / Vulncheck (pull_request) Successful in 2m38s
Build / Build Components (1.23) (pull_request) Successful in 3m0s
Build / Build Components (1.22) (pull_request) Successful in 3m3s
Pre-commit hooks / Pre-commit (pull_request) Successful in 3m33s
Tests and linters / Tests (1.22) (pull_request) Successful in 3m34s
Tests and linters / Tests (1.23) (pull_request) Successful in 3m36s
Tests and linters / Staticcheck (pull_request) Successful in 3m35s
Tests and linters / Lint (pull_request) Successful in 4m18s
Tests and linters / Tests with -race (pull_request) Successful in 4m20s
Tests and linters / gopls check (pull_request) Successful in 4m25s
[#1317] go.mod: Use range over int
Since Go 1.22 a "for" statement with a "range" clause is able
to iterate through integer values from zero to an upper limit.

gopatch script:
@@
var i, e expression
@@
-for i := 0; i <= e - 1; i++ {
+for i := range e {
    ...
}

@@
var i, e expression
@@
-for i := 0; i <= e; i++ {
+for i := range e + 1 {
    ...
}

@@
var i, e expression
@@
-for i := 0; i < e; i++ {
+for i := range e {
    ...
}

Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
2024-09-03 13:00:54 +03:00
..
active.go [#1226] blobovniczatree: Drop leaf width limitation 2024-07-04 12:22:06 +03:00
blobovnicza.go [#1226] blobovniczatree: Drop leaf width limitation 2024-07-04 12:22:06 +03:00
cache.go [#1217] Fix grammar mistakes and misspelling 2024-07-01 19:14:25 +03:00
concurrency_test.go [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
control.go [#1226] blobovniczatree: Delete fix db extensions in Init() 2024-07-04 12:22:06 +03:00
control_test.go [#1226] blobovniczatree: Delete fix db extensions in Init() 2024-07-04 12:22:06 +03:00
count.go [#1029] metabase: Add refill metrics 2024-04-10 13:05:44 +03:00
delete.go [#661] blobovniczatree: Make Rebuild failover safe 2023-12-07 15:37:33 +03:00
errors.go [#536] blobovnicza: Drop cache 2023-09-01 13:51:26 +03:00
exists.go [#661] blobovniczatree: Allow to change depth or width 2023-12-07 15:37:32 +03:00
exists_test.go [#1121] node: Change mode of shard components 2024-06-05 05:55:24 +00:00
generic_test.go [#1004] blobovnicza: Use TTL for blobovnicza tree cache 2024-04-26 19:54:29 +03:00
get.go [#874] engine: Revert Check object existance concurrently 2024-04-01 08:42:34 +00:00
get_range.go [#661] blobovniczatree: Allow to change depth or width 2023-12-07 15:37:32 +03:00
id.go [#661] blobovniczatree: Use .db extension for db files 2023-12-07 15:37:32 +03:00
iterate.go [#1226] blobovniczatree: Drop leaf width limitation 2024-07-04 12:22:06 +03:00
manager.go [#661] blobovniczatree: Add Rebuild implementation 2023-12-07 15:37:32 +03:00
metrics.go [#1121] node: Change mode of shard components 2024-06-05 05:55:24 +00:00
option.go [#1226] blobovniczatree: Drop leaf width limitation 2024-07-04 12:22:06 +03:00
put.go [#1166] blobovniczatree: Handle blobovnicza's NoSpaceLeft error 2024-06-07 17:15:43 +03:00
rebuild.go [#1341] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 15:44:41 +00:00
rebuild_failover_test.go [#1121] node: Change mode of shard components 2024-06-05 05:55:24 +00:00
rebuild_test.go [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00