mirror of https://github.com/go-gitea/gitea.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
`hex.EncodeToString` has better performance than `fmt.Sprintf("%x", []byte)`, we should use it as much as possible. I'm not an extreme fan of performance, so I think there are some exceptions: - `fmt.Sprintf("%x", func(...)[N]byte())` - We can't slice the function return value directly, and it's not worth adding lines. ```diff func A()[20]byte { ... } - a := fmt.Sprintf("%x", A()) - a := hex.EncodeToString(A()[:]) // invalid + tmp := A() + a := hex.EncodeToString(tmp[:]) ``` - `fmt.Sprintf("%X", []byte)` - `strings.ToUpper(hex.EncodeToString(bytes))` has even worse performance. |
2 years ago | |
---|---|---|
.. | ||
base | 2 years ago | |
fixtures | 2 years ago | |
v1_6 | 2 years ago | |
v1_7 | 2 years ago | |
v1_8 | 2 years ago | |
v1_9 | 2 years ago | |
v1_10 | 2 years ago | |
v1_11 | 2 years ago | |
v1_12 | 2 years ago | |
v1_13 | 2 years ago | |
v1_14 | 2 years ago | |
v1_15 | 2 years ago | |
v1_16 | 2 years ago | |
v1_17 | 2 years ago | |
v1_18 | 2 years ago | |
v1_19 | 2 years ago | |
migrations.go | 2 years ago |