Closed mmorel-35 closed 2 weeks ago
Available commands (reply to this comment):
/bns:deploy
to deploy the environment Attention: Patch coverage is 92.85714%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 55.24%. Comparing base (
b78f209
) to head (673decc
). Report is 8 commits behind head on master.
Files with missing lines | Patch % | Lines |
---|---|---|
util/lua/oslib_safe.go | 0.00% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Can you share more details about the gains perfsprint gives, please?
This suggest methods that are faster in their use and so don't use the extra memory that is necessary when using general function For example fmt.Sprintf instanciate a printer which is then freed https://cs.opensource.google/go/go/+/refs/tags/go1.23.3:src/fmt/print.go;l=237 while there is no need when using directly strconv.Itoa when you only need to convert an integer to string.
enables and fixes int-conversion and sprintf1 rules of perfsprint linter issues.