├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── PATENTS ├── README ├── cmd ├── bench │ ├── bent.go │ ├── gotest.go │ ├── idle_linux.go │ ├── idle_other.go │ ├── main.go │ └── sweet.go └── bent │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── bent.go │ ├── bent_test.go │ ├── configs │ ├── benchmarks-50.toml │ ├── benchmarks-all.toml │ ├── benchmarks-gc.toml │ ├── benchmarks-gcplus.toml │ ├── benchmarks-trial.toml │ ├── configurations-cmpjob.toml │ ├── configurations-cronjob.toml │ ├── configurations-gollvm.toml │ ├── configurations-pgo.toml │ ├── configurations-random.toml │ ├── configurations-sample.toml │ └── suites.toml │ ├── configuration.go │ ├── patches │ ├── ericlagergren_decimal │ └── ethereum_core │ └── scripts │ ├── bar │ ├── benchdwarf │ ├── benchsize │ ├── benchtime │ ├── cmpcl-phase.sh │ ├── cmpcl.sh │ ├── cmpjob.sh │ ├── cpuprofile │ ├── cronjob.sh │ ├── foo │ ├── localfix-intelbox-1 │ ├── localfix-odroid-c2 │ ├── localfix-odroid-n2 │ ├── make_assets │ ├── memprofile │ ├── tmpclr │ └── tweet-results ├── codereview.cfg ├── driver ├── driver.go ├── driver_darwin.go ├── driver_go10.go ├── driver_go12.go ├── driver_go15.go ├── driver_linux.go ├── driver_plan9.go ├── driver_stub.go ├── driver_unix.go ├── driver_wasm.go └── driver_windows.go ├── garbage ├── .gitignore ├── garbage.go └── nethttp.go ├── gc_latency ├── latency.go ├── latency_test.go └── main.go ├── go.mod ├── go.sum ├── http ├── .gitignore └── http.go ├── json ├── .gitignore ├── json.go └── json_data.go ├── stats ├── edm.go ├── edm_test.go ├── edmx.go ├── itree.go └── itree_test.go ├── sweet ├── .gitignore ├── README.md ├── benchmarks │ ├── biogo-igor │ │ ├── README.md │ │ └── igor.go │ ├── biogo-krishna │ │ ├── README.md │ │ └── krishna.go │ ├── bleve-index │ │ ├── README.md │ │ └── main.go │ ├── cockroachdb │ │ └── main.go │ ├── esbuild │ │ └── main.go │ ├── etcd │ │ └── main.go │ ├── go-build │ │ └── main.go │ ├── gopher-lua │ │ └── main.go │ ├── gvisor │ │ ├── common.go │ │ ├── http_server.go │ │ ├── main.go │ │ ├── startup.go │ │ └── syscall.go │ ├── internal │ │ ├── cgroups │ │ │ └── cgroups.go │ │ ├── driver │ │ │ ├── diagnostics.go │ │ │ ├── driver.go │ │ │ ├── mem.go │ │ │ └── mem_linux.go │ │ ├── par │ │ │ └── funcs.go │ │ ├── pool │ │ │ ├── pool.go │ │ │ └── pool_test.go │ │ └── server │ │ │ └── server.go │ ├── markdown │ │ └── main.go │ └── tile38 │ │ ├── README.md │ │ └── main.go ├── cli │ ├── assets │ │ ├── cache.go │ │ └── version.go │ └── subcommands │ │ └── sc.go ├── cmd │ └── sweet │ │ ├── benchmark.go │ │ ├── benchmark_test.go │ │ ├── gen.go │ │ ├── get.go │ │ ├── get_cipd.go │ │ ├── get_nocipd.go │ │ ├── integration_test.go │ │ ├── main.go │ │ ├── put.go │ │ └── run.go ├── common │ ├── config.go │ ├── config_test.go │ ├── diagnostics │ │ ├── config.go │ │ └── driver.go │ ├── env.go │ ├── env_test.go │ ├── fileutil │ │ └── copy.go │ ├── generator.go │ ├── gotool.go │ ├── harness.go │ ├── log │ │ └── log.go │ ├── platforms.go │ ├── profile │ │ └── profile.go │ └── version.go ├── generators │ ├── copy.go │ ├── gvisor.go │ ├── none.go │ └── tile38.go ├── harnesses │ ├── cockroachdb.go │ ├── common.go │ ├── esbuild.go │ ├── etcd.go │ ├── go-build.go │ ├── gvisor.go │ ├── local.go │ └── tile38.go └── source-assets │ └── gvisor │ ├── http │ ├── README.md │ └── server.go │ └── syscall │ ├── README.md │ └── syscall-bench.go └── third_party ├── biogo-examples ├── LICENSE ├── README.md ├── igor │ ├── igor │ │ ├── cluster.go │ │ ├── group.go │ │ ├── pile.go │ │ └── write.go │ └── turner │ │ └── cluster.go └── krishna │ ├── krishna.go │ ├── packseqs.go │ └── write.go └── bleve-bench ├── LICENSE ├── README.md └── mapping.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/PATENTS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/README -------------------------------------------------------------------------------- /cmd/bench/bent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bench/bent.go -------------------------------------------------------------------------------- /cmd/bench/gotest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bench/gotest.go -------------------------------------------------------------------------------- /cmd/bench/idle_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bench/idle_linux.go -------------------------------------------------------------------------------- /cmd/bench/idle_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bench/idle_other.go -------------------------------------------------------------------------------- /cmd/bench/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bench/main.go -------------------------------------------------------------------------------- /cmd/bench/sweet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bench/sweet.go -------------------------------------------------------------------------------- /cmd/bent/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/CONTRIBUTING.md -------------------------------------------------------------------------------- /cmd/bent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/LICENSE -------------------------------------------------------------------------------- /cmd/bent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/README.md -------------------------------------------------------------------------------- /cmd/bent/bent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/bent.go -------------------------------------------------------------------------------- /cmd/bent/bent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/bent_test.go -------------------------------------------------------------------------------- /cmd/bent/configs/benchmarks-50.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/benchmarks-50.toml -------------------------------------------------------------------------------- /cmd/bent/configs/benchmarks-all.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/benchmarks-all.toml -------------------------------------------------------------------------------- /cmd/bent/configs/benchmarks-gc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/benchmarks-gc.toml -------------------------------------------------------------------------------- /cmd/bent/configs/benchmarks-gcplus.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/benchmarks-gcplus.toml -------------------------------------------------------------------------------- /cmd/bent/configs/benchmarks-trial.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/benchmarks-trial.toml -------------------------------------------------------------------------------- /cmd/bent/configs/configurations-cmpjob.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/configurations-cmpjob.toml -------------------------------------------------------------------------------- /cmd/bent/configs/configurations-cronjob.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/configurations-cronjob.toml -------------------------------------------------------------------------------- /cmd/bent/configs/configurations-gollvm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/configurations-gollvm.toml -------------------------------------------------------------------------------- /cmd/bent/configs/configurations-pgo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/configurations-pgo.toml -------------------------------------------------------------------------------- /cmd/bent/configs/configurations-random.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/configurations-random.toml -------------------------------------------------------------------------------- /cmd/bent/configs/configurations-sample.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/configurations-sample.toml -------------------------------------------------------------------------------- /cmd/bent/configs/suites.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configs/suites.toml -------------------------------------------------------------------------------- /cmd/bent/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/configuration.go -------------------------------------------------------------------------------- /cmd/bent/patches/ericlagergren_decimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/patches/ericlagergren_decimal -------------------------------------------------------------------------------- /cmd/bent/patches/ethereum_core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/patches/ethereum_core -------------------------------------------------------------------------------- /cmd/bent/scripts/bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/bar -------------------------------------------------------------------------------- /cmd/bent/scripts/benchdwarf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/benchdwarf -------------------------------------------------------------------------------- /cmd/bent/scripts/benchsize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/benchsize -------------------------------------------------------------------------------- /cmd/bent/scripts/benchtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/benchtime -------------------------------------------------------------------------------- /cmd/bent/scripts/cmpcl-phase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/cmpcl-phase.sh -------------------------------------------------------------------------------- /cmd/bent/scripts/cmpcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/cmpcl.sh -------------------------------------------------------------------------------- /cmd/bent/scripts/cmpjob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/cmpjob.sh -------------------------------------------------------------------------------- /cmd/bent/scripts/cpuprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/cpuprofile -------------------------------------------------------------------------------- /cmd/bent/scripts/cronjob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/cronjob.sh -------------------------------------------------------------------------------- /cmd/bent/scripts/foo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/foo -------------------------------------------------------------------------------- /cmd/bent/scripts/localfix-intelbox-1: -------------------------------------------------------------------------------- 1 | BUILDER_TYPE="Xeon-E5-1650v3@3.5Ghz*12" 2 | -------------------------------------------------------------------------------- /cmd/bent/scripts/localfix-odroid-c2: -------------------------------------------------------------------------------- 1 | B=3 2 | N=15 3 | BUILDER_TYPE="Odroid-C2-arm" 4 | export BENTARCH="arm" # referenced in configurations-cronjob.toml 5 | -------------------------------------------------------------------------------- /cmd/bent/scripts/localfix-odroid-n2: -------------------------------------------------------------------------------- 1 | NUMACTL='numactl -C 2-5 --' 2 | export GOMAXPROCS=4 3 | B=3 4 | N=15 5 | BUILDER_TYPE="Odroid-N2-arm64" 6 | -------------------------------------------------------------------------------- /cmd/bent/scripts/make_assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/make_assets -------------------------------------------------------------------------------- /cmd/bent/scripts/memprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/memprofile -------------------------------------------------------------------------------- /cmd/bent/scripts/tmpclr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/tmpclr -------------------------------------------------------------------------------- /cmd/bent/scripts/tweet-results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/cmd/bent/scripts/tweet-results -------------------------------------------------------------------------------- /codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /driver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver.go -------------------------------------------------------------------------------- /driver/driver_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_darwin.go -------------------------------------------------------------------------------- /driver/driver_go10.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_go10.go -------------------------------------------------------------------------------- /driver/driver_go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_go12.go -------------------------------------------------------------------------------- /driver/driver_go15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_go15.go -------------------------------------------------------------------------------- /driver/driver_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_linux.go -------------------------------------------------------------------------------- /driver/driver_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_plan9.go -------------------------------------------------------------------------------- /driver/driver_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_stub.go -------------------------------------------------------------------------------- /driver/driver_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_unix.go -------------------------------------------------------------------------------- /driver/driver_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_wasm.go -------------------------------------------------------------------------------- /driver/driver_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/driver/driver_windows.go -------------------------------------------------------------------------------- /garbage/.gitignore: -------------------------------------------------------------------------------- 1 | /garbage 2 | -------------------------------------------------------------------------------- /garbage/garbage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/garbage/garbage.go -------------------------------------------------------------------------------- /garbage/nethttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/garbage/nethttp.go -------------------------------------------------------------------------------- /gc_latency/latency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/gc_latency/latency.go -------------------------------------------------------------------------------- /gc_latency/latency_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/gc_latency/latency_test.go -------------------------------------------------------------------------------- /gc_latency/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/gc_latency/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/go.sum -------------------------------------------------------------------------------- /http/.gitignore: -------------------------------------------------------------------------------- 1 | /http 2 | -------------------------------------------------------------------------------- /http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/http/http.go -------------------------------------------------------------------------------- /json/.gitignore: -------------------------------------------------------------------------------- 1 | /json 2 | -------------------------------------------------------------------------------- /json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/json/json.go -------------------------------------------------------------------------------- /json/json_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/json/json_data.go -------------------------------------------------------------------------------- /stats/edm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/stats/edm.go -------------------------------------------------------------------------------- /stats/edm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/stats/edm_test.go -------------------------------------------------------------------------------- /stats/edmx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/stats/edmx.go -------------------------------------------------------------------------------- /stats/itree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/stats/itree.go -------------------------------------------------------------------------------- /stats/itree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/stats/itree_test.go -------------------------------------------------------------------------------- /sweet/.gitignore: -------------------------------------------------------------------------------- 1 | *.toml 2 | results/ 3 | -------------------------------------------------------------------------------- /sweet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/README.md -------------------------------------------------------------------------------- /sweet/benchmarks/biogo-igor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/biogo-igor/README.md -------------------------------------------------------------------------------- /sweet/benchmarks/biogo-igor/igor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/biogo-igor/igor.go -------------------------------------------------------------------------------- /sweet/benchmarks/biogo-krishna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/biogo-krishna/README.md -------------------------------------------------------------------------------- /sweet/benchmarks/biogo-krishna/krishna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/biogo-krishna/krishna.go -------------------------------------------------------------------------------- /sweet/benchmarks/bleve-index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/bleve-index/README.md -------------------------------------------------------------------------------- /sweet/benchmarks/bleve-index/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/bleve-index/main.go -------------------------------------------------------------------------------- /sweet/benchmarks/cockroachdb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/cockroachdb/main.go -------------------------------------------------------------------------------- /sweet/benchmarks/esbuild/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/esbuild/main.go -------------------------------------------------------------------------------- /sweet/benchmarks/etcd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/etcd/main.go -------------------------------------------------------------------------------- /sweet/benchmarks/go-build/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/go-build/main.go -------------------------------------------------------------------------------- /sweet/benchmarks/gopher-lua/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/gopher-lua/main.go -------------------------------------------------------------------------------- /sweet/benchmarks/gvisor/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/gvisor/common.go -------------------------------------------------------------------------------- /sweet/benchmarks/gvisor/http_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/gvisor/http_server.go -------------------------------------------------------------------------------- /sweet/benchmarks/gvisor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/gvisor/main.go -------------------------------------------------------------------------------- /sweet/benchmarks/gvisor/startup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/gvisor/startup.go -------------------------------------------------------------------------------- /sweet/benchmarks/gvisor/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/gvisor/syscall.go -------------------------------------------------------------------------------- /sweet/benchmarks/internal/cgroups/cgroups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/internal/cgroups/cgroups.go -------------------------------------------------------------------------------- /sweet/benchmarks/internal/driver/diagnostics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/internal/driver/diagnostics.go -------------------------------------------------------------------------------- /sweet/benchmarks/internal/driver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/internal/driver/driver.go -------------------------------------------------------------------------------- /sweet/benchmarks/internal/driver/mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/internal/driver/mem.go -------------------------------------------------------------------------------- /sweet/benchmarks/internal/driver/mem_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/internal/driver/mem_linux.go -------------------------------------------------------------------------------- /sweet/benchmarks/internal/par/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/internal/par/funcs.go -------------------------------------------------------------------------------- /sweet/benchmarks/internal/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/internal/pool/pool.go -------------------------------------------------------------------------------- /sweet/benchmarks/internal/pool/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/internal/pool/pool_test.go -------------------------------------------------------------------------------- /sweet/benchmarks/internal/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/internal/server/server.go -------------------------------------------------------------------------------- /sweet/benchmarks/markdown/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/markdown/main.go -------------------------------------------------------------------------------- /sweet/benchmarks/tile38/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/tile38/README.md -------------------------------------------------------------------------------- /sweet/benchmarks/tile38/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/benchmarks/tile38/main.go -------------------------------------------------------------------------------- /sweet/cli/assets/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cli/assets/cache.go -------------------------------------------------------------------------------- /sweet/cli/assets/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cli/assets/version.go -------------------------------------------------------------------------------- /sweet/cli/subcommands/sc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cli/subcommands/sc.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/benchmark.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/benchmark_test.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/gen.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/get.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/get_cipd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/get_cipd.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/get_nocipd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/get_nocipd.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/integration_test.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/main.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/put.go -------------------------------------------------------------------------------- /sweet/cmd/sweet/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/cmd/sweet/run.go -------------------------------------------------------------------------------- /sweet/common/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/config.go -------------------------------------------------------------------------------- /sweet/common/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/config_test.go -------------------------------------------------------------------------------- /sweet/common/diagnostics/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/diagnostics/config.go -------------------------------------------------------------------------------- /sweet/common/diagnostics/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/diagnostics/driver.go -------------------------------------------------------------------------------- /sweet/common/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/env.go -------------------------------------------------------------------------------- /sweet/common/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/env_test.go -------------------------------------------------------------------------------- /sweet/common/fileutil/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/fileutil/copy.go -------------------------------------------------------------------------------- /sweet/common/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/generator.go -------------------------------------------------------------------------------- /sweet/common/gotool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/gotool.go -------------------------------------------------------------------------------- /sweet/common/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/harness.go -------------------------------------------------------------------------------- /sweet/common/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/log/log.go -------------------------------------------------------------------------------- /sweet/common/platforms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/platforms.go -------------------------------------------------------------------------------- /sweet/common/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/profile/profile.go -------------------------------------------------------------------------------- /sweet/common/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/common/version.go -------------------------------------------------------------------------------- /sweet/generators/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/generators/copy.go -------------------------------------------------------------------------------- /sweet/generators/gvisor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/generators/gvisor.go -------------------------------------------------------------------------------- /sweet/generators/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/generators/none.go -------------------------------------------------------------------------------- /sweet/generators/tile38.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/generators/tile38.go -------------------------------------------------------------------------------- /sweet/harnesses/cockroachdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/harnesses/cockroachdb.go -------------------------------------------------------------------------------- /sweet/harnesses/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/harnesses/common.go -------------------------------------------------------------------------------- /sweet/harnesses/esbuild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/harnesses/esbuild.go -------------------------------------------------------------------------------- /sweet/harnesses/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/harnesses/etcd.go -------------------------------------------------------------------------------- /sweet/harnesses/go-build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/harnesses/go-build.go -------------------------------------------------------------------------------- /sweet/harnesses/gvisor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/harnesses/gvisor.go -------------------------------------------------------------------------------- /sweet/harnesses/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/harnesses/local.go -------------------------------------------------------------------------------- /sweet/harnesses/tile38.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/harnesses/tile38.go -------------------------------------------------------------------------------- /sweet/source-assets/gvisor/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/source-assets/gvisor/http/README.md -------------------------------------------------------------------------------- /sweet/source-assets/gvisor/http/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/source-assets/gvisor/http/server.go -------------------------------------------------------------------------------- /sweet/source-assets/gvisor/syscall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/source-assets/gvisor/syscall/README.md -------------------------------------------------------------------------------- /sweet/source-assets/gvisor/syscall/syscall-bench.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/sweet/source-assets/gvisor/syscall/syscall-bench.go -------------------------------------------------------------------------------- /third_party/biogo-examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/LICENSE -------------------------------------------------------------------------------- /third_party/biogo-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/README.md -------------------------------------------------------------------------------- /third_party/biogo-examples/igor/igor/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/igor/igor/cluster.go -------------------------------------------------------------------------------- /third_party/biogo-examples/igor/igor/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/igor/igor/group.go -------------------------------------------------------------------------------- /third_party/biogo-examples/igor/igor/pile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/igor/igor/pile.go -------------------------------------------------------------------------------- /third_party/biogo-examples/igor/igor/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/igor/igor/write.go -------------------------------------------------------------------------------- /third_party/biogo-examples/igor/turner/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/igor/turner/cluster.go -------------------------------------------------------------------------------- /third_party/biogo-examples/krishna/krishna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/krishna/krishna.go -------------------------------------------------------------------------------- /third_party/biogo-examples/krishna/packseqs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/krishna/packseqs.go -------------------------------------------------------------------------------- /third_party/biogo-examples/krishna/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/biogo-examples/krishna/write.go -------------------------------------------------------------------------------- /third_party/bleve-bench/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/bleve-bench/LICENSE -------------------------------------------------------------------------------- /third_party/bleve-bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/bleve-bench/README.md -------------------------------------------------------------------------------- /third_party/bleve-bench/mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang/benchmarks/HEAD/third_party/bleve-bench/mapping.go --------------------------------------------------------------------------------