-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem: v0.52.x is outdated #1155
base: release/v0.52.x
Are you sure you want to change the base?
Problem: v0.52.x is outdated #1155
Conversation
…port cosmos#22803) (cosmos#22834) Co-authored-by: Hieu Vu <[email protected]> Co-authored-by: Julien Robert <[email protected]>
…#22836) Co-authored-by: Julien Robert <[email protected]>
Co-authored-by: Julien Robert <[email protected]>
…ing (backport cosmos#22837) (cosmos#22848) Co-authored-by: Julien Robert <[email protected]>
) (cosmos#22851) Co-authored-by: Matt Kocubinski <[email protected]> Co-authored-by: Julien Robert <[email protected]>
) (cosmos#22860) Co-authored-by: Julien Robert <[email protected]>
…cosmos#22868) Co-authored-by: testinginprod <[email protected]>
…2880) (cosmos#22882) Co-authored-by: lilasxie <[email protected]>
) (cosmos#22883) Co-authored-by: Julien Robert <[email protected]>
…#22795) (cosmos#22886) Co-authored-by: Marko <[email protected]> Co-authored-by: Julien Robert <[email protected]>
…ackport cosmos#22892) (cosmos#22894) Co-authored-by: mmsqe <[email protected]>
* Limit recursion depth for unknown field detection * Limit unpack any * Update changelog * Another limit recursion depth for unknown field detection * Remove x/tx files
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: marbar3778 <[email protected]>
…osmos#22909) Co-authored-by: Alex | Skip <[email protected]>
Co-authored-by: Julien Robert <[email protected]>
…22920) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Julien Robert <[email protected]>
…s#22925) (cosmos#22928) Co-authored-by: Julien Robert <[email protected]>
…n unbonding entry is mature (backport cosmos#22254) (cosmos#22930) Co-authored-by: son trinh <[email protected]> Co-authored-by: Julien Robert <[email protected]>
) (cosmos#22974) Co-authored-by: Julien Robert <[email protected]>
Co-authored-by: Julien Robert <[email protected]>
…s#21858) (cosmos#22979) Co-authored-by: Marko <[email protected]> Co-authored-by: Julien Robert <[email protected]>
…os#22890) (cosmos#22980) Co-authored-by: Julián Toledano <[email protected]>
cmd.Printf( | ||
"success_tx=%d err_tx=%d seq=%d rate=%.2f/s overall=%.2f/s\n", | ||
successCount, errCount, accSeq, | ||
float64(successCount-last)/time.Since(since).Seconds(), |
Check notice
Code scanning / CodeQL
Floating point arithmetic Note test
"success_tx=%d err_tx=%d seq=%d rate=%.2f/s overall=%.2f/s\n", | ||
successCount, errCount, accSeq, | ||
float64(successCount-last)/time.Since(since).Seconds(), | ||
float64(successCount)/time.Since(begin).Seconds(), |
Check notice
Code scanning / CodeQL
Floating point arithmetic Note test
// The operation is one of insert, update, get, or delete. | ||
// The tx client calls this function to deterministically generate the next operation. | ||
func (g *Generator) Next() (uint64, *benchmark.Op, error) { | ||
if g.InsertWeight+g.UpdateWeight+g.GetWeight+g.DeleteWeight != 1 { |
Check notice
Code scanning / CodeQL
Floating point arithmetic Note test
// The operation is one of insert, update, get, or delete. | ||
// The tx client calls this function to deterministically generate the next operation. | ||
func (g *Generator) Next() (uint64, *benchmark.Op, error) { | ||
if g.InsertWeight+g.UpdateWeight+g.GetWeight+g.DeleteWeight != 1 { |
Check notice
Code scanning / CodeQL
Floating point arithmetic Note test
// The operation is one of insert, update, get, or delete. | ||
// The tx client calls this function to deterministically generate the next operation. | ||
func (g *Generator) Next() (uint64, *benchmark.Op, error) { | ||
if g.InsertWeight+g.UpdateWeight+g.GetWeight+g.DeleteWeight != 1 { |
Check notice
Code scanning / CodeQL
Floating point arithmetic Note test
op.Seed = key.Seed() | ||
op.KeyLength = key.Length() | ||
op.ValueLength = g.getLength(g.ValueMean, g.ValueStdDev) | ||
case x < g.InsertWeight+g.UpdateWeight+g.GetWeight: |
Check notice
Code scanning / CodeQL
Floating point arithmetic Note test
op.Seed = key.Seed() | ||
op.KeyLength = key.Length() | ||
op.ValueLength = g.getLength(g.ValueMean, g.ValueStdDev) | ||
case x < g.InsertWeight+g.UpdateWeight+g.GetWeight: |
Check notice
Code scanning / CodeQL
Floating point arithmetic Note test
|
||
// NormUint64 returns a random uint64 with a normal distribution. | ||
func (g *Generator) NormUint64(mean, stdDev uint64) uint64 { | ||
return uint64(g.rand.NormFloat64()*float64(stdDev) + float64(mean)) |
Check notice
Code scanning / CodeQL
Floating point arithmetic Note test
|
||
// NormUint64 returns a random uint64 with a normal distribution. | ||
func (g *Generator) NormUint64(mean, stdDev uint64) uint64 { | ||
return uint64(g.rand.NormFloat64()*float64(stdDev) + float64(mean)) |
Check notice
Code scanning / CodeQL
Floating point arithmetic Note test
package module | ||
|
||
import ( | ||
"unsafe" |
Check notice
Code scanning / CodeQL
Sensitive package import Note test
This reverts commit 17358a9.
Description
Author Checklist
All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.
I have...
!
in the type prefix if API or client breaking changeCHANGELOG.md
Reviewers Checklist
All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.
I have...