frostfs-node/pkg/local_object_storage/blobovnicza
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
..
blobovnicza.go [#602] metrics: Add blobovnicza items counter 2023-08-18 13:01:27 +03:00
blobovnicza_test.go [#895] test: Fix NewLogger arguments list 2024-01-11 12:32:09 +00:00
control.go [#1029] metabase: Add refill metrics 2024-04-10 13:05:44 +03:00
delete.go [#1166] blobovnicza: Return NoSpaceLeft error instead of syscall.ENOSPC 2024-06-07 17:15:43 +03:00
errors.go [#1166] blobovnicza: Return NoSpaceLeft error instead of syscall.ENOSPC 2024-06-07 17:15:43 +03:00
exists.go [#874] engine: Revert Check object existance concurrently 2024-04-01 08:42:34 +00:00
get.go [#874] engine: Revert Check object existance concurrently 2024-04-01 08:42:34 +00:00
get_test.go [#895] test: Use t.Cleanup only for external resources 2024-01-11 12:32:09 +00:00
iterate.go Reapply "[#972] Use min/max builtins" 2024-04-10 12:09:34 +00:00
iterate_test.go [#96] node: Drop neo-go's slices package 2023-11-17 13:24:04 +03:00
meta.go [#863] blobovnicza: Fix counters 2023-12-13 13:34:29 +03:00
metrics.go [#602] metrics: Add blobovnicza items counter 2023-08-18 13:01:27 +03:00
move.go [#1166] blobovnicza: Return NoSpaceLeft error instead of syscall.ENOSPC 2024-06-07 17:15:43 +03:00
put.go [#1166] blobovnicza: Return NoSpaceLeft error instead of syscall.ENOSPC 2024-06-07 17:15:43 +03:00
sizes.go [#661] blobovnicza: Compute size with record size 2023-12-07 15:37:33 +03:00
sizes_test.go [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00