frostfs-node/cmd/frostfs-adm/internal/modules/morph/helper
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
..
actor.go [#1108] ape: Update policy-engine version for listing by iteration 2024-05-14 12:17:56 +03:00
contract.go [#1210] adm: Fix error handling when contract not found 2024-07-02 13:03:40 +00:00
download.go [#973] node: Resolve perfsprint linter 2024-03-11 17:55:50 +03:00
frostfsid.go [#932] adm: Rename util to helper 2024-02-13 09:59:27 +03:00
group.go [#932] adm: Rename util to helper 2024-02-13 09:59:27 +03:00
initialize.go [#932] adm: Add commands to manipulate with NNS contract 2024-02-28 18:57:16 +00:00
initialize_ctx.go [#973] node: Resolve perfsprint linter 2024-03-11 17:55:50 +03:00
initialize_test.go [#948] adm: Move TestNextPollInterval to package helper 2024-02-13 10:08:49 +03:00
local_client.go [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
n3client.go [#1170] adm: Support morph mTLS 2024-06-14 09:27:06 +03:00
netmap.go [#1210] adm: Fix error handling when contract not found 2024-07-02 13:03:40 +00:00
util.go [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
wallet.go [#932] adm: Rename util to helper 2024-02-13 09:59:27 +03:00