frostfs-node/pkg/innerring/processors
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
..
alphabet [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
balance [#895] test: Fix NewLogger arguments list 2024-01-11 12:32:09 +00:00
container [#1278] ir: Do not allow to create container without FrostFSID record 2024-07-29 16:01:37 +03:00
frostfs Reapply "[#972] Drop x/exp/slices dependency" 2024-04-10 12:09:34 +00:00
governance [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
netmap [#1259] Move pkg/util/locode to frostfs-locode-db 2024-07-23 14:59:14 +03:00
util.go [#374] Add inner-ring event metrics 2023-05-31 10:11:48 +00:00