frostfs-node/pkg/services/object/put
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
..
v2 [#294] putsvcv2: Refactor service constructor 2023-07-12 07:42:10 +00:00
builder.go [#1064] putsvc: Refactor distributed target 2024-04-09 07:08:53 +00:00
common.go [#1341] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 15:44:41 +00:00
distributed.go [#1329] putSvc: Reset SuccessAfter for non-EC objects in EC container broadcasting 2024-08-23 13:51:16 +03:00
ec.go [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
local.go [#6] services/object: Simplify local/remote targets 2023-07-21 18:39:12 +03:00
pool.go [#424] object: Do not store large slices in pool 2023-06-13 07:19:55 +00:00
prm.go [#1307] object: Implement Patch method 2024-08-16 14:13:09 +00:00
remote.go [#6] services/object: Simplify local/remote targets 2023-07-21 18:39:12 +03:00
res.go Rename package name 2023-03-07 16:38:26 +03:00
service.go [#772] node: Apply gofumpt 2023-10-31 17:03:03 +03:00
single.go [#1329] putSvc: Reset SuccessAfter for non-EC objects in EC container broadcasting 2024-08-23 13:51:16 +03:00
streamer.go [#1329] putSvc: Reset SuccessAfter for non-EC objects in EC container broadcasting 2024-08-23 13:51:16 +03:00
validation.go [#509] go.mod: Update sdk-go 2023-07-11 17:38:00 +03:00
writer.go [#1064] putsvc: Add EC put 2024-04-09 07:08:53 +00:00