frostfs-node/pkg/services/object/get
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 [#1340] getSvc: Fix access denied error handling 2024-08-28 14:02:28 +03:00
assemble.go [#1295] getSvc: Assemble complex EC object headers without linking object 2024-08-06 16:48:12 +03:00
assembleec.go [#1271] getSvc: Fix head --raw assemble for EC 2024-07-24 08:52:08 +03:00
assembler.go [#1295] getSvc: Assemble complex EC object headers without linking object 2024-08-06 16:48:12 +03:00
assemblerec.go [#1341] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 15:44:41 +00:00
container.go [#277] getsvc: Refactor errors 2023-04-28 14:03:12 +00:00
errors.go [#277] getsvc: Rename and reorder code 2023-04-28 14:03:12 +00:00
get.go [#1340] getSvc: Fix access denied error handling 2024-08-28 14:02:28 +03:00
get_test.go [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
getrangeec_test.go [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
local.go [#1253] getSvc: Fix EC objects get 2024-07-17 14:24:27 +03:00
prm.go [#1307] object: Implement Patch method 2024-08-16 14:13:09 +00:00
remote.go [#1340] getSvc: Fix access denied error handling 2024-08-28 14:02:28 +03:00
remote_getter.go [#1129] policer: Pull required EC chunks 2024-05-16 16:28:49 +03:00
request.go [#1295] getSvc: Assemble complex EC object headers without linking object 2024-08-06 16:48:12 +03:00
service.go [#1103] node: Implement Get\Head requests for EC object 2024-04-24 18:15:53 +03:00
status.go [#1103] node: Implement Get\Head requests for EC object 2024-04-24 18:15:53 +03:00
types.go [#1253] getSvc: Fix EC objects get 2024-07-17 14:24:27 +03:00
writer.go [#539] getsvc: Write payload direct to out stream 2023-07-27 17:02:08 +03:00