Benchmark: ci-23600665687 / baseline-1
Branch: brian/trie-updates-data-size-metric
Date: 2025-06-24
Workload: 500 blocks, ~1 GGas each, ~12.7K txs each (5,048,389 total)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package panicker | |
| import ( | |
| "runtime" | |
| . "testing" | |
| "github.com/mediocregopher/radix/v3" | |
| ) | |
| func BenchmarkPanic(b *B) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "log" | |
| "time" | |
| "github.com/mediocregopher/mediocre-go-lib/mrand" | |
| radix "github.com/mediocregopher/radix.v3" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0xC34976Ee7A9dAD5d4F1802C190B0967E58b137F0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| [dependencies] | |
| clap = "2" | |
| */ | |
| extern crate clap; | |
| use clap::{Arg, App}; | |
| use std::num::Wrapping; | |
| use std::io::Read; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Package brpc, stands for better-rpc. It's better than normal RPC, because it | |
| // allows for saner chaining of rpc handlers | |
| package brpc | |
| import ( | |
| "encoding/json" | |
| "net/http" | |
| "golang.org/x/net/context" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "crypto/tls" | |
| "fmt" | |
| "io" | |
| "log" | |
| "net" | |
| "os" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| function printDep { | |
| dep="$1" | |
| if [ "$dep" == "." ]; then return 0; fi | |
| cd "$GOPATH/src/$dep" | |
| if [ -d ".git" ]; then | |
| echo "$dep (git) - $(git log --abbrev-commit --oneline -n 1)" | |
| return 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bytes" | |
| "log" | |
| "math/rand" | |
| "net/http" | |
| "time" | |
| "github.com/gorilla/rpc/v2" |
NewerOlder