├── .cargo └── config.toml ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── scripts │ ├── setup.sh │ ├── start_cli.sh │ └── start_ui.sh ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── backup.yml │ └── bencher.yml ├── .gitignore ├── .vscode ├── extensions.json ├── keybindings.json ├── launch.json └── settings.json ├── Cargo.lock ├── Cargo.toml ├── DEVELOPMENT.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── action.yml ├── changelog.md ├── clippy.toml ├── deny.toml ├── docker-compose.yml ├── docker ├── docker-compose.yml └── run.sh ├── examples ├── README.md ├── cpp │ └── google_benchmark │ │ ├── .gitignore │ │ ├── bench.sh │ │ ├── benchmark_game.cpp │ │ ├── game.cpp │ │ ├── play.sh │ │ ├── play_game.cpp │ │ └── play_game.h ├── ebpf │ ├── perf_event │ │ ├── .cargo │ │ │ └── config.toml │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── profiler-common │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── profiler-ebpf │ │ │ ├── .cargo │ │ │ │ └── config.toml │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── rust-toolchain.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── profiler │ │ │ ├── Cargo.toml │ │ │ ├── benches │ │ │ │ └── profiler.rs │ │ │ └── src │ │ │ │ ├── lib.rs │ │ │ │ └── main.rs │ │ └── xtask │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── build.rs │ │ │ ├── build_ebpf.rs │ │ │ ├── main.rs │ │ │ └── run.rs │ └── xdp │ │ ├── .cargo │ │ └── config.toml │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── ebpf-common │ │ ├── Cargo.toml │ │ ├── benches │ │ │ └── source_addr.rs │ │ └── src │ │ │ ├── lib.rs │ │ │ └── source_addr.rs │ │ ├── ebpf-ebpf │ │ ├── .cargo │ │ │ └── config.toml │ │ ├── .vim │ │ │ └── coc-settings.json │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Cargo.toml │ │ ├── rust-toolchain.toml │ │ └── src │ │ │ └── main.rs │ │ ├── ebpf │ │ ├── Cargo.toml │ │ ├── benches │ │ │ └── xdp.rs │ │ └── src │ │ │ ├── lib.rs │ │ │ └── main.rs │ │ ├── llvm.sh │ │ └── xtask │ │ ├── Cargo.toml │ │ └── src │ │ ├── bench.rs │ │ ├── build_ebpf.rs │ │ ├── main.rs │ │ └── run.rs ├── go │ ├── fib.go │ ├── fib_test.go │ └── go.mod ├── python │ └── pytest_benchmark │ │ ├── Pipfile │ │ ├── Pipfile.lock │ │ ├── README.md │ │ └── game.py └── rust │ ├── bench │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── rust-toolchain.toml │ └── src │ │ └── main.rs │ ├── criterion │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── benches │ │ └── play_game.rs │ └── src │ │ ├── lib.rs │ │ └── main.rs │ ├── custom │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── benches │ │ └── play_game.rs │ └── src │ │ └── lib.rs │ ├── iai │ ├── Cargo.lock │ ├── Cargo.toml │ ├── benches │ │ └── play_game.rs │ └── src │ │ ├── lib.rs │ │ └── main.rs │ └── iai_callgrind │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── benches │ └── rust_iai_callgrind.rs │ └── src │ └── lib.rs ├── lib ├── api_auth │ ├── Cargo.toml │ └── src │ │ ├── accept.rs │ │ ├── confirm.rs │ │ ├── lib.rs │ │ ├── login.rs │ │ ├── oauth │ │ ├── github.rs │ │ ├── google.rs │ │ ├── mod.rs │ │ └── oauth_state.rs │ │ └── signup.rs ├── api_checkout │ ├── Cargo.toml │ └── src │ │ ├── checkout.rs │ │ └── lib.rs ├── api_organizations │ ├── Cargo.toml │ └── src │ │ ├── allowed.rs │ │ ├── claim.rs │ │ ├── lib.rs │ │ ├── members.rs │ │ ├── organizations.rs │ │ ├── plan.rs │ │ ├── projects.rs │ │ └── usage.rs ├── api_projects │ ├── Cargo.toml │ └── src │ │ ├── alerts.rs │ │ ├── allowed.rs │ │ ├── benchmarks.rs │ │ ├── branches.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── measures.rs │ │ ├── metrics.rs │ │ ├── perf │ │ ├── img.rs │ │ └── mod.rs │ │ ├── plots.rs │ │ ├── projects.rs │ │ ├── reports.rs │ │ ├── testbeds.rs │ │ └── thresholds.rs ├── api_run │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── run.rs ├── api_server │ ├── Cargo.toml │ └── src │ │ ├── backup.rs │ │ ├── config.rs │ │ ├── lib.rs │ │ ├── restart.rs │ │ ├── root.rs │ │ ├── spec.rs │ │ ├── stats.rs │ │ └── version.rs ├── api_users │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── tokens.rs │ │ └── users.rs ├── bencher_adapter │ ├── Cargo.toml │ ├── benches │ │ └── adapter.rs │ ├── src │ │ ├── adapters │ │ │ ├── c_sharp │ │ │ │ ├── dot_net.rs │ │ │ │ └── mod.rs │ │ │ ├── cpp │ │ │ │ ├── catch2.rs │ │ │ │ ├── google.rs │ │ │ │ └── mod.rs │ │ │ ├── go │ │ │ │ ├── bench.rs │ │ │ │ └── mod.rs │ │ │ ├── java │ │ │ │ ├── jmh.rs │ │ │ │ └── mod.rs │ │ │ ├── js │ │ │ │ ├── benchmark.rs │ │ │ │ ├── mod.rs │ │ │ │ └── time.rs │ │ │ ├── json.rs │ │ │ ├── magic.rs │ │ │ ├── mod.rs │ │ │ ├── python │ │ │ │ ├── asv.rs │ │ │ │ ├── mod.rs │ │ │ │ └── pytest.rs │ │ │ ├── ruby │ │ │ │ ├── benchmark.rs │ │ │ │ └── mod.rs │ │ │ ├── rust │ │ │ │ ├── bench.rs │ │ │ │ ├── criterion.rs │ │ │ │ ├── gungraun.rs │ │ │ │ ├── iai.rs │ │ │ │ └── mod.rs │ │ │ ├── shell │ │ │ │ ├── hyperfine.rs │ │ │ │ └── mod.rs │ │ │ └── util.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ └── results │ │ │ ├── adapter_metrics.rs │ │ │ ├── adapter_results.rs │ │ │ ├── mod.rs │ │ │ └── results_reducer.rs │ └── tool_output │ │ ├── c_sharp │ │ └── dot_net │ │ │ ├── null_namespace.json │ │ │ ├── two.json │ │ │ └── two_more.json │ │ ├── cpp │ │ ├── catch2 │ │ │ ├── four.txt │ │ │ ├── issue_351.txt │ │ │ └── two.txt │ │ └── google │ │ │ └── two.txt │ │ ├── go │ │ └── bench │ │ │ ├── five.txt │ │ │ └── three.txt │ │ ├── java │ │ └── jmh │ │ │ ├── latency.json │ │ │ ├── six.json │ │ │ └── throughput.json │ │ ├── js │ │ ├── benchmark │ │ │ ├── four.txt │ │ │ └── issue_506.txt │ │ └── time │ │ │ └── four.txt │ │ ├── json │ │ ├── report_dhat.json │ │ └── report_latency.json │ │ ├── python │ │ ├── asv │ │ │ └── six.txt │ │ └── pytest │ │ │ ├── four.json │ │ │ └── two.json │ │ ├── ruby │ │ └── benchmark │ │ │ ├── five.txt │ │ │ └── two.txt │ │ ├── rust │ │ ├── bench │ │ │ ├── failed.txt │ │ │ ├── ignore.txt │ │ │ ├── issue_390.txt │ │ │ ├── many.txt │ │ │ ├── multi_target.txt │ │ │ ├── one.txt │ │ │ └── zero.txt │ │ ├── criterion │ │ │ ├── dogfood.txt │ │ │ ├── failed.txt │ │ │ └── many.txt │ │ ├── gungraun │ │ │ ├── ansi-escapes.txt │ │ │ ├── cachegrind.txt │ │ │ ├── callgrind-all.txt │ │ │ ├── callgrind-ll-hits.txt │ │ │ ├── callgrind-mixed-order.txt │ │ │ ├── delta.txt │ │ │ ├── delta_with_inf.txt │ │ │ ├── dhat-then-callgrind.txt │ │ │ ├── drd.txt │ │ │ ├── helgrind.txt │ │ │ ├── memcheck.txt │ │ │ ├── name_on_multiple_lines.txt │ │ │ ├── name_on_multiple_lines_mixed.txt │ │ │ ├── with-dhat-and-global-bus-events.txt │ │ │ ├── with-dhat.txt │ │ │ ├── with-ge.txt │ │ │ ├── with-gungraun-summary.txt │ │ │ ├── with-summary-and-regressions.txt │ │ │ ├── without-cachesim.txt │ │ │ └── without-optional-metrics.txt │ │ └── iai │ │ │ ├── change.txt │ │ │ └── two.txt │ │ └── shell │ │ └── hyperfine │ │ ├── one.json │ │ └── two.json ├── bencher_boundary │ ├── Cargo.toml │ └── src │ │ ├── boundary.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── limits │ │ ├── limit.rs │ │ └── mod.rs │ │ ├── ln.rs │ │ ├── mean.rs │ │ └── quartiles.rs ├── bencher_client │ ├── .gitignore │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ ├── client.rs │ │ ├── lib.rs │ │ └── tls.rs ├── bencher_comment │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── bencher_config │ ├── Cargo.toml │ └── src │ │ ├── config_tx.rs │ │ ├── lib.rs │ │ └── plus.rs ├── bencher_context │ ├── Cargo.toml │ └── src │ │ ├── client │ │ ├── fingerprint │ │ │ ├── linux.rs │ │ │ ├── macos.rs │ │ │ ├── mod.rs │ │ │ └── windows.rs │ │ ├── mod.rs │ │ └── operating_system.rs │ │ ├── lib.rs │ │ └── server │ │ └── mod.rs ├── bencher_endpoint │ ├── Cargo.toml │ └── src │ │ ├── endpoint.rs │ │ ├── headers.rs │ │ ├── lib.rs │ │ ├── registrar.rs │ │ └── total_count.rs ├── bencher_json │ ├── Cargo.toml │ └── src │ │ ├── big_int.rs │ │ ├── lib.rs │ │ ├── organization │ │ ├── claim.rs │ │ ├── member.rs │ │ ├── mod.rs │ │ ├── plan.rs │ │ └── usage.rs │ │ ├── pagination.rs │ │ ├── project │ │ ├── alert.rs │ │ ├── benchmark.rs │ │ ├── boundary.rs │ │ ├── branch.rs │ │ ├── head.rs │ │ ├── measure │ │ │ ├── built_in.rs │ │ │ └── mod.rs │ │ ├── metric │ │ │ ├── mean.rs │ │ │ ├── median.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── model.rs │ │ ├── perf.rs │ │ ├── plot.rs │ │ ├── report.rs │ │ ├── testbed.rs │ │ └── threshold.rs │ │ ├── run.rs │ │ ├── system │ │ ├── auth.rs │ │ ├── backup.rs │ │ ├── config │ │ │ ├── console.rs │ │ │ ├── database.rs │ │ │ ├── logging.rs │ │ │ ├── mod.rs │ │ │ ├── plus │ │ │ │ ├── cloud │ │ │ │ │ ├── billing.rs │ │ │ │ │ ├── index.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── otel.rs │ │ │ │ │ └── recaptcha.rs │ │ │ │ ├── github.rs │ │ │ │ ├── google.rs │ │ │ │ ├── litestream.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── rate_limiting.rs │ │ │ │ └── stats.rs │ │ │ ├── security.rs │ │ │ ├── server.rs │ │ │ └── smtp.rs │ │ ├── mod.rs │ │ ├── payment.rs │ │ ├── restart.rs │ │ ├── server.rs │ │ ├── spec.rs │ │ └── version.rs │ │ ├── typed_db.rs │ │ ├── typed_slug.rs │ │ ├── typed_uuid.rs │ │ ├── urlencoded.rs │ │ └── user │ │ ├── mod.rs │ │ └── token.rs ├── bencher_logger │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── bencher_plot │ ├── .gitignore │ ├── Cargo.toml │ ├── decimal.json │ ├── perf.json │ ├── perf_dual_axes.json │ ├── perf_log.json │ ├── src │ │ ├── error.rs │ │ ├── lib.rs │ │ └── line.rs │ └── wordmark.png ├── bencher_rank │ ├── Cargo.toml │ └── src │ │ ├── db.rs │ │ ├── generator.rs │ │ └── lib.rs ├── bencher_rbac │ ├── Cargo.toml │ ├── bencher.polar │ └── src │ │ ├── lib.rs │ │ ├── organization.rs │ │ ├── project.rs │ │ ├── server.rs │ │ └── user.rs ├── bencher_schema │ ├── Cargo.toml │ ├── diesel.toml │ ├── env.ps1 │ ├── env.sh │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2022-07-08-181756_report │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2022-11-06-164423_gpu │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2022-11-06-172507_max_sample_size │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2022-11-06-174837_min_sample_size │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2022-11-06-180609_metric_kind │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2022-11-06-194805_metric │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2022-12-04-171633_description │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2022-12-07-112340_testbed │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2022-12-10-183843_units │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-01-15-185835_perf_cascade │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-01-17-135550_branch_version │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-02-17-190849_branch_name_unique │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-02-17-193524_testbed_name_unique │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-02-17-193813_metric_kind_name_unique │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-02-18-212705_all_public │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-02-19-184548_org_plan │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-02-24-020753_project_name_unique │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-06-20-133706_report_branch │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-06-23-142746_statistic │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-06-23-143743_boundary │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-06-23-143852_alert │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-07-01-131712_cascade │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-07-15-235737_benchmark │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-07-15-235738_threshold_statistic │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-08-01-134259_sample_size │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-09-25-133957_metric_value │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-10-21-114252_plan │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-10-30-105714_user_timestamps │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-12-02-231731_boundary_average │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-12-03-150215_boundary_baseline │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2023-12-04-101416_measure │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-01-18-105430_baseline_optional │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-02-16-220538_is_valid │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-03-02-105752_model │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-03-21-155519_start_point │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-04-10-104239_report_benchmark │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-04-10-124315_metric_boundary │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-05-25-132137_plot │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-07-07-133201_archived │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-09-16-101117_metric_boundary │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-09-16-102151_head │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2024-10-06-174650_branch_head │ │ │ ├── down.sql │ │ │ └── up.sql │ │ ├── 2025-03-04-041505_report_user │ │ │ ├── down.sql │ │ │ └── up.sql │ │ └── 2025-06-19-054914_empty_slug │ │ │ ├── down.sql │ │ │ └── up.sql │ └── src │ │ ├── context │ │ ├── database.rs │ │ ├── indexer.rs │ │ ├── messenger │ │ │ ├── body │ │ │ │ ├── button.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── new_user.rs │ │ │ │ └── server_stats.rs │ │ │ ├── email.rs │ │ │ ├── message.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── rate_limiting │ │ │ ├── mod.rs │ │ │ ├── public.rs │ │ │ ├── rate_limiter │ │ │ │ ├── inner.rs │ │ │ │ └── mod.rs │ │ │ ├── remote_ip.rs │ │ │ └── user.rs │ │ ├── rbac.rs │ │ └── stats.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── macros │ │ ├── fn_get.rs │ │ ├── mod.rs │ │ ├── name_id.rs │ │ ├── rate_limit.rs │ │ ├── resource_id.rs │ │ ├── slug.rs │ │ └── typed_id.rs │ │ ├── model │ │ ├── mod.rs │ │ ├── organization │ │ │ ├── member.rs │ │ │ ├── mod.rs │ │ │ ├── organization_role.rs │ │ │ └── plan.rs │ │ ├── project │ │ │ ├── benchmark.rs │ │ │ ├── branch │ │ │ │ ├── head.rs │ │ │ │ ├── head_version.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── start_point.rs │ │ │ │ └── version.rs │ │ │ ├── measure.rs │ │ │ ├── metric.rs │ │ │ ├── metric_boundary.rs │ │ │ ├── mod.rs │ │ │ ├── plot │ │ │ │ ├── benchmark.rs │ │ │ │ ├── branch.rs │ │ │ │ ├── measure.rs │ │ │ │ ├── mod.rs │ │ │ │ └── testbed.rs │ │ │ ├── project_role.rs │ │ │ ├── report │ │ │ │ ├── mod.rs │ │ │ │ ├── report_benchmark.rs │ │ │ │ └── results │ │ │ │ │ ├── detector │ │ │ │ │ ├── data.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── threshold.rs │ │ │ │ │ └── mod.rs │ │ │ ├── testbed.rs │ │ │ └── threshold │ │ │ │ ├── alert.rs │ │ │ │ ├── boundary.rs │ │ │ │ ├── mod.rs │ │ │ │ └── model.rs │ │ ├── server │ │ │ ├── backup.rs │ │ │ ├── mod.rs │ │ │ └── plus │ │ │ │ ├── mod.rs │ │ │ │ └── stats │ │ │ │ ├── metrics_stats.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── organization_stats.rs │ │ │ │ ├── projects_stats.rs │ │ │ │ ├── reports_stats.rs │ │ │ │ └── users_stats.rs │ │ └── user │ │ │ ├── admin.rs │ │ │ ├── auth.rs │ │ │ ├── mod.rs │ │ │ └── token.rs │ │ ├── schema.rs │ │ └── view.rs ├── bencher_token │ ├── Cargo.toml │ └── src │ │ ├── audience.rs │ │ ├── claims.rs │ │ ├── error.rs │ │ ├── key.rs │ │ └── lib.rs └── bencher_valid │ ├── .gitignore │ ├── Cargo.toml │ ├── src │ ├── benchmark_name.rs │ ├── branch_name.rs │ ├── date_time.rs │ ├── email.rs │ ├── error.rs │ ├── git_hash.rs │ ├── index.rs │ ├── jwt.rs │ ├── lib.rs │ ├── model │ │ ├── boundary.rs │ │ ├── mod.rs │ │ ├── model_test.rs │ │ ├── sample_size.rs │ │ └── window.rs │ ├── name_id.rs │ ├── non_empty.rs │ ├── plus │ │ ├── brand.rs │ │ ├── cvc.rs │ │ ├── entitlements.rs │ │ ├── last_four.rs │ │ ├── mod.rs │ │ ├── month.rs │ │ ├── number.rs │ │ ├── plan_id.rs │ │ ├── plan_level.rs │ │ ├── plan_status.rs │ │ ├── recaptcha_action.rs │ │ ├── recaptcha_score.rs │ │ └── year.rs │ ├── resource_id.rs │ ├── resource_name.rs │ ├── search.rs │ ├── secret.rs │ ├── slug.rs │ ├── units.rs │ ├── url.rs │ ├── user_name.rs │ └── wasm │ │ └── mod.rs │ └── tests │ └── web.rs ├── license ├── LICENSE-APACHE ├── LICENSE-MIT └── LICENSE-PLUS ├── netlify.toml ├── plus ├── bencher_billing │ ├── Cargo.toml │ └── src │ │ ├── biller.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ └── products.rs ├── bencher_bing_index │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── bencher_github_client │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── bencher_google_client │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── bencher_google_index │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── bencher_license │ ├── Cargo.toml │ ├── public.pem │ └── src │ │ ├── audience.rs │ │ ├── billing_cycle.rs │ │ ├── claims.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── licensor.rs │ │ └── test │ │ ├── README.md │ │ ├── private.pem │ │ └── public.pem ├── bencher_otel │ ├── Cargo.toml │ └── src │ │ ├── api_meter.rs │ │ └── lib.rs ├── bencher_otel_provider │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── bencher_recaptcha │ ├── Cargo.toml │ └── src │ └── lib.rs ├── rust-toolchain.toml ├── rustfmt.toml ├── scripts ├── clippy.sh ├── push.sh ├── tag.sh └── untag.sh ├── services ├── action │ ├── .gitignore │ ├── biome.json │ ├── dist │ │ └── index.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── main.ts │ └── tsconfig.json ├── api │ ├── .gitignore │ ├── Cargo.toml │ ├── Dockerfile │ ├── Dockerfile.dockerignore │ ├── data │ │ └── .gitignore │ ├── etc │ │ ├── .gitignore │ │ └── bencher_config.sh │ ├── fly │ │ ├── fly.dev.toml │ │ ├── fly.test.toml │ │ ├── fly.toml │ │ └── fly_config.sh │ ├── openapi.json │ ├── rollback.sh │ └── src │ │ ├── api.rs │ │ ├── lib.rs │ │ └── main.rs ├── benchers │ ├── Cargo.lock │ ├── Cargo.toml │ ├── LICENSE.md │ ├── README.md │ ├── build.rs │ └── src │ │ └── main.rs ├── cargo-bencher │ ├── Cargo.lock │ ├── Cargo.toml │ ├── LICENSE.md │ ├── README.md │ ├── build.rs │ └── src │ │ └── main.rs ├── cli │ ├── Cargo.toml │ ├── env.ps1 │ ├── env.sh │ ├── src │ │ ├── bencher │ │ │ ├── backend.rs │ │ │ ├── mod.rs │ │ │ └── sub │ │ │ │ ├── compose │ │ │ │ ├── container.rs │ │ │ │ ├── down.rs │ │ │ │ ├── logs.rs │ │ │ │ ├── mod.rs │ │ │ │ └── up.rs │ │ │ │ ├── mock.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── organization │ │ │ │ ├── member │ │ │ │ │ ├── invite.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── remove.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── organization │ │ │ │ │ ├── allowed.rs │ │ │ │ │ ├── claim.rs │ │ │ │ │ ├── create.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ ├── usage.rs │ │ │ │ │ └── view.rs │ │ │ │ └── plan │ │ │ │ │ ├── create.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── project │ │ │ │ ├── alert │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── archive │ │ │ │ │ ├── action.rs │ │ │ │ │ ├── dimension.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── benchmark │ │ │ │ │ ├── create.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── branch │ │ │ │ │ ├── create.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── start_point.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── measure │ │ │ │ │ ├── create.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── metric │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── perf │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── table_style.rs │ │ │ │ ├── plot │ │ │ │ │ ├── create.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── project │ │ │ │ │ ├── allowed.rs │ │ │ │ │ ├── create.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── report │ │ │ │ │ ├── create │ │ │ │ │ │ ├── adapter.rs │ │ │ │ │ │ ├── average.rs │ │ │ │ │ │ ├── fold.rs │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ └── thresholds.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── testbed │ │ │ │ │ ├── create.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ └── threshold │ │ │ │ │ ├── create.rs │ │ │ │ │ ├── delete.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── model.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ ├── run │ │ │ │ ├── branch.rs │ │ │ │ ├── ci │ │ │ │ │ ├── github_actions.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── error.rs │ │ │ │ ├── format.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── project.rs │ │ │ │ ├── runner │ │ │ │ │ ├── build_time.rs │ │ │ │ │ ├── command.rs │ │ │ │ │ ├── file_path.rs │ │ │ │ │ ├── file_size.rs │ │ │ │ │ ├── flag.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── output.rs │ │ │ │ │ ├── pipe.rs │ │ │ │ │ └── shell.rs │ │ │ │ └── sub_adapter.rs │ │ │ │ ├── sub_cmd.rs │ │ │ │ ├── system │ │ │ │ ├── auth │ │ │ │ │ ├── accept.rs │ │ │ │ │ ├── confirm.rs │ │ │ │ │ ├── login.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── signup.rs │ │ │ │ ├── mod.rs │ │ │ │ └── server │ │ │ │ │ ├── backup.rs │ │ │ │ │ ├── config │ │ │ │ │ ├── console.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── update.rs │ │ │ │ │ └── view.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── restart.rs │ │ │ │ │ ├── spec.rs │ │ │ │ │ ├── stats.rs │ │ │ │ │ └── version.rs │ │ │ │ └── user │ │ │ │ ├── mod.rs │ │ │ │ ├── token │ │ │ │ ├── create.rs │ │ │ │ ├── list.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── update.rs │ │ │ │ └── view.rs │ │ │ │ └── user │ │ │ │ ├── list.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── update.rs │ │ │ │ └── view.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ └── parser │ │ │ ├── compose.rs │ │ │ ├── mock.rs │ │ │ ├── mod.rs │ │ │ ├── organization │ │ │ ├── claim.rs │ │ │ ├── member.rs │ │ │ ├── mod.rs │ │ │ ├── plan.rs │ │ │ └── usage.rs │ │ │ ├── project │ │ │ ├── alert.rs │ │ │ ├── archive.rs │ │ │ ├── benchmark.rs │ │ │ ├── branch.rs │ │ │ ├── measure.rs │ │ │ ├── metric.rs │ │ │ ├── mod.rs │ │ │ ├── perf.rs │ │ │ ├── plot.rs │ │ │ ├── report.rs │ │ │ ├── testbed.rs │ │ │ └── threshold.rs │ │ │ ├── run.rs │ │ │ ├── system │ │ │ ├── auth.rs │ │ │ ├── mod.rs │ │ │ └── server.rs │ │ │ └── user │ │ │ ├── mod.rs │ │ │ └── token.rs │ └── templates │ │ ├── install-cli.ps1.j2 │ │ ├── install-cli.sh.j2 │ │ └── output │ │ ├── install-cli.ps1 │ │ └── install-cli.sh ├── console │ ├── .env.development │ ├── .env.production │ ├── .env.runtime │ ├── .gitignore │ ├── Dockerfile │ ├── Dockerfile.dockerignore │ ├── adapter.js │ ├── astro.config.mjs │ ├── biome.json │ ├── build_wasm.sh │ ├── knip.json │ ├── lychee.toml │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── bimi.svg │ │ ├── bmf.json │ │ ├── favicon.png │ │ ├── favicon.svg │ │ ├── indexnow.txt │ │ ├── robots.txt │ │ ├── site.webmanifest │ │ ├── wordmark-dark.svg │ │ ├── wordmark-light.svg │ │ └── wordmark.svg │ ├── site.js │ ├── src │ │ ├── chunks │ │ │ ├── benchmarking-cpp │ │ │ │ ├── de │ │ │ │ │ ├── benchmarking-cpp.mdx │ │ │ │ │ ├── fizz-buzz-cpp.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-cpp.mdx │ │ │ │ │ └── step-by-step-cpp.mdx │ │ │ │ ├── en │ │ │ │ │ ├── benchmarking-cpp.mdx │ │ │ │ │ ├── fizz-buzz-cpp.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-cpp.mdx │ │ │ │ │ └── step-by-step-cpp.mdx │ │ │ │ ├── es │ │ │ │ │ ├── benchmarking-cpp.mdx │ │ │ │ │ ├── fizz-buzz-cpp.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-cpp.mdx │ │ │ │ │ └── step-by-step-cpp.mdx │ │ │ │ ├── fizz-buzz-code.mdx │ │ │ │ ├── fizz-buzz-fibonacci-code.mdx │ │ │ │ ├── fizz-buzz-fibonacci-open-code.mdx │ │ │ │ ├── fizz-buzz-header-code.mdx │ │ │ │ ├── fizz-buzz-output.mdx │ │ │ │ ├── fizz-buzz-refactor-code.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── benchmarking-cpp.mdx │ │ │ │ │ ├── fizz-buzz-cpp.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-cpp.mdx │ │ │ │ │ └── step-by-step-cpp.mdx │ │ │ │ ├── google-benchmark │ │ │ │ │ ├── benchmark-game-code.mdx │ │ │ │ │ ├── benchmark-game-fibonacci-output.mdx │ │ │ │ │ ├── benchmark-game-fix-output.mdx │ │ │ │ │ ├── benchmark-game-on-fire-code.mdx │ │ │ │ │ ├── benchmark-game-on-fire-output-start.mdx │ │ │ │ │ ├── benchmark-game-on-fire-output.mdx │ │ │ │ │ ├── benchmark-game-output.mdx │ │ │ │ │ ├── catch-in-ci-output.mdx │ │ │ │ │ ├── cd-back.mdx │ │ │ │ │ ├── cd-benchmark.mdx │ │ │ │ │ ├── cmake-cmake.mdx │ │ │ │ │ ├── cmake-make-directory.mdx │ │ │ │ │ ├── cmake-release.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-open-cpp.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-open-cpp.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-open-cpp.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-output-default.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-output.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-open-cpp.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── git-clone.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-open-cpp.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-open-cpp.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── play-game-code.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-open-cpp.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-open-cpp.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-open-cpp.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ ├── is-fibonacci-number-code.mdx │ │ │ │ ├── is-fibonacci-number-fix-code.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── benchmarking-cpp.mdx │ │ │ │ │ ├── fizz-buzz-cpp.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-cpp.mdx │ │ │ │ │ └── step-by-step-cpp.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── benchmarking-cpp.mdx │ │ │ │ │ ├── fizz-buzz-cpp.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-cpp.mdx │ │ │ │ │ └── step-by-step-cpp.mdx │ │ │ │ ├── play-game-code.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── benchmarking-cpp.mdx │ │ │ │ │ ├── fizz-buzz-cpp.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-cpp.mdx │ │ │ │ │ └── step-by-step-cpp.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── benchmarking-cpp.mdx │ │ │ │ │ ├── fizz-buzz-cpp.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-cpp.mdx │ │ │ │ │ └── step-by-step-cpp.mdx │ │ │ │ └── zh │ │ │ │ │ ├── benchmarking-cpp.mdx │ │ │ │ │ ├── fizz-buzz-cpp.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-cpp.mdx │ │ │ │ │ └── step-by-step-cpp.mdx │ │ │ ├── benchmarking-python │ │ │ │ ├── de │ │ │ │ │ ├── benchmarking-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-python.mdx │ │ │ │ │ ├── fizz-buzz-python.mdx │ │ │ │ │ └── step-by-step-python.mdx │ │ │ │ ├── en │ │ │ │ │ ├── benchmarking-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-python.mdx │ │ │ │ │ ├── fizz-buzz-python.mdx │ │ │ │ │ └── step-by-step-python.mdx │ │ │ │ ├── es │ │ │ │ │ ├── benchmarking-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-python.mdx │ │ │ │ │ ├── fizz-buzz-python.mdx │ │ │ │ │ └── step-by-step-python.mdx │ │ │ │ ├── fizz-buzz-code.mdx │ │ │ │ ├── fizz-buzz-fibonacci-code.mdx │ │ │ │ ├── fizz-buzz-fibonacci-open-code.mdx │ │ │ │ ├── fizz-buzz-fibonacci-open-output-default.mdx │ │ │ │ ├── fizz-buzz-fibonacci-open-output.mdx │ │ │ │ ├── fizz-buzz-output.mdx │ │ │ │ ├── fizz-buzz-refactor-code.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── benchmarking-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-python.mdx │ │ │ │ │ ├── fizz-buzz-python.mdx │ │ │ │ │ └── step-by-step-python.mdx │ │ │ │ ├── is-fibonacci-number-code.mdx │ │ │ │ ├── is-fibonacci-number-fix-code.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── benchmarking-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-python.mdx │ │ │ │ │ ├── fizz-buzz-python.mdx │ │ │ │ │ └── step-by-step-python.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── benchmarking-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-python.mdx │ │ │ │ │ ├── fizz-buzz-python.mdx │ │ │ │ │ └── step-by-step-python.mdx │ │ │ │ ├── pipenv-shell-output.mdx │ │ │ │ ├── play-game-code.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── benchmarking-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-python.mdx │ │ │ │ │ ├── fizz-buzz-python.mdx │ │ │ │ │ └── step-by-step-python.mdx │ │ │ │ ├── pytest-benchmark │ │ │ │ │ ├── catch-in-ci-output.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── pipenv-install-output.mdx │ │ │ │ │ ├── play-game-code.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── pytest-game-fibonacci-output.mdx │ │ │ │ │ ├── pytest-game-fix-output.mdx │ │ │ │ │ ├── pytest-game-on-fire-output-start.mdx │ │ │ │ │ ├── pytest-game-on-fire-output.mdx │ │ │ │ │ ├── pytest-game-output.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── test-game-code.mdx │ │ │ │ │ ├── test-game-on-fire-code.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── benchmarking-fizz-buzz-fibonacci.mdx │ │ │ │ │ │ ├── benchmarking-fizz-buzz.mdx │ │ │ │ │ │ ├── fizz-buzz-fibonacci-fix.mdx │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── benchmarking-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-python.mdx │ │ │ │ │ ├── fizz-buzz-python.mdx │ │ │ │ │ └── step-by-step-python.mdx │ │ │ │ └── zh │ │ │ │ │ ├── benchmarking-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-python.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-python.mdx │ │ │ │ │ ├── fizz-buzz-python.mdx │ │ │ │ │ └── step-by-step-python.mdx │ │ │ ├── benchmarking-rust │ │ │ │ ├── bench │ │ │ │ │ ├── bench-play-game-fibonacci-rust-bench-output.mdx │ │ │ │ │ ├── bench-play-game-fix-rust-bench-output.mdx │ │ │ │ │ ├── bench-play-game-on-fire-rust-bench-code.mdx │ │ │ │ │ ├── bench-play-game-on-fire-rust-bench-output-start.mdx │ │ │ │ │ ├── bench-play-game-on-fire-rust-bench-output.mdx │ │ │ │ │ ├── bench-play-game-rust-bench-code.mdx │ │ │ │ │ ├── bench-play-game-rust-bench-output.mdx │ │ │ │ │ ├── catch-in-ci-rust-bench-output.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ └── fizz-buzz-refactor-rust.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ └── fizz-buzz-refactor-rust.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ └── fizz-buzz-refactor-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust-code.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ └── fizz-buzz-refactor-rust.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ └── fizz-buzz-refactor-rust.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ └── fizz-buzz-refactor-rust.mdx │ │ │ │ │ ├── play-game-rust-code.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ └── fizz-buzz-refactor-rust.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ └── fizz-buzz-refactor-rust.mdx │ │ │ │ │ ├── rust-toolchain-rust-bench-code.mdx │ │ │ │ │ ├── rust-toolchain-rust-bench-tree.mdx │ │ │ │ │ ├── test-crate-rust-bench-code.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ └── fizz-buzz-refactor-rust.mdx │ │ │ │ ├── catch-in-ci-plot-rust-bench.mdx │ │ │ │ ├── criterion │ │ │ │ │ ├── bench-play-game-fibonacci-output.mdx │ │ │ │ │ ├── bench-play-game-fix-output.mdx │ │ │ │ │ ├── bench-play-game-on-fire-code.mdx │ │ │ │ │ ├── bench-play-game-on-fire-output-start.mdx │ │ │ │ │ ├── bench-play-game-on-fire-output.mdx │ │ │ │ │ ├── bench-play-game-output.mdx │ │ │ │ │ ├── catch-in-ci-output.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust-code.mdx │ │ │ │ │ ├── fizz-buzz-refactor-benches-code.mdx │ │ │ │ │ ├── fizz-buzz-refactor-lib-code.mdx │ │ │ │ │ ├── fizz-buzz-refactor-main-code.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── game-benches-tree.mdx │ │ │ │ │ ├── game-cargo-toml.mdx │ │ │ │ │ ├── game-lib-tree.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── play-game-rust-code.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ └── fizz-buzz-refactor.mdx │ │ │ │ ├── custom-harness │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── cargo-bench-json.mdx │ │ │ │ │ ├── cargo-bench.mdx │ │ │ │ │ ├── cargo-toml-bench-name.mdx │ │ │ │ │ ├── cargo-toml-dev-dependencies.mdx │ │ │ │ │ ├── cargo-toml-serde-json.mdx │ │ │ │ │ ├── cargo-toml.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── create-a-benchmark-function.mdx │ │ │ │ │ │ ├── create-a-custom-allocator.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-collector.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-runner.mdx │ │ │ │ │ │ ├── create-a-custom-benchmarking-harness.mdx │ │ │ │ │ │ ├── how-cargo-bench-works.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── register-the-benchmark-function.mdx │ │ │ │ │ │ ├── run-the-custom-benchmark-harness.mdx │ │ │ │ │ │ ├── track-custom-benchmark-results.mdx │ │ │ │ │ │ ├── use-a-custom-benchmarking-harness-with-cargo-bench.mdx │ │ │ │ │ │ ├── wrap-up.mdx │ │ │ │ │ │ └── write-code-to-benchmark.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── create-a-benchmark-function.mdx │ │ │ │ │ │ ├── create-a-custom-allocator.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-collector.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-runner.mdx │ │ │ │ │ │ ├── create-a-custom-benchmarking-harness.mdx │ │ │ │ │ │ ├── how-cargo-bench-works.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── register-the-benchmark-function.mdx │ │ │ │ │ │ ├── run-the-custom-benchmark-harness.mdx │ │ │ │ │ │ ├── track-custom-benchmark-results.mdx │ │ │ │ │ │ ├── use-a-custom-benchmarking-harness-with-cargo-bench.mdx │ │ │ │ │ │ ├── wrap-up.mdx │ │ │ │ │ │ └── write-code-to-benchmark.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── create-a-benchmark-function.mdx │ │ │ │ │ │ ├── create-a-custom-allocator.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-collector.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-runner.mdx │ │ │ │ │ │ ├── create-a-custom-benchmarking-harness.mdx │ │ │ │ │ │ ├── how-cargo-bench-works.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── register-the-benchmark-function.mdx │ │ │ │ │ │ ├── run-the-custom-benchmark-harness.mdx │ │ │ │ │ │ ├── track-custom-benchmark-results.mdx │ │ │ │ │ │ ├── use-a-custom-benchmarking-harness-with-cargo-bench.mdx │ │ │ │ │ │ ├── wrap-up.mdx │ │ │ │ │ │ └── write-code-to-benchmark.mdx │ │ │ │ │ ├── file-tree.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── create-a-benchmark-function.mdx │ │ │ │ │ │ ├── create-a-custom-allocator.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-collector.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-runner.mdx │ │ │ │ │ │ ├── create-a-custom-benchmarking-harness.mdx │ │ │ │ │ │ ├── how-cargo-bench-works.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── register-the-benchmark-function.mdx │ │ │ │ │ │ ├── run-the-custom-benchmark-harness.mdx │ │ │ │ │ │ ├── track-custom-benchmark-results.mdx │ │ │ │ │ │ ├── use-a-custom-benchmarking-harness-with-cargo-bench.mdx │ │ │ │ │ │ ├── wrap-up.mdx │ │ │ │ │ │ └── write-code-to-benchmark.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── create-a-benchmark-function.mdx │ │ │ │ │ │ ├── create-a-custom-allocator.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-collector.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-runner.mdx │ │ │ │ │ │ ├── create-a-custom-benchmarking-harness.mdx │ │ │ │ │ │ ├── how-cargo-bench-works.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── register-the-benchmark-function.mdx │ │ │ │ │ │ ├── run-the-custom-benchmark-harness.mdx │ │ │ │ │ │ ├── track-custom-benchmark-results.mdx │ │ │ │ │ │ ├── use-a-custom-benchmarking-harness-with-cargo-bench.mdx │ │ │ │ │ │ ├── wrap-up.mdx │ │ │ │ │ │ └── write-code-to-benchmark.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── create-a-benchmark-function.mdx │ │ │ │ │ │ ├── create-a-custom-allocator.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-collector.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-runner.mdx │ │ │ │ │ │ ├── create-a-custom-benchmarking-harness.mdx │ │ │ │ │ │ ├── how-cargo-bench-works.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── register-the-benchmark-function.mdx │ │ │ │ │ │ ├── run-the-custom-benchmark-harness.mdx │ │ │ │ │ │ ├── track-custom-benchmark-results.mdx │ │ │ │ │ │ ├── use-a-custom-benchmarking-harness-with-cargo-bench.mdx │ │ │ │ │ │ ├── wrap-up.mdx │ │ │ │ │ │ └── write-code-to-benchmark.mdx │ │ │ │ │ ├── lib-rs.mdx │ │ │ │ │ ├── play-game-rs-alloc.mdx │ │ │ │ │ ├── play-game-rs-bench-play-game.mdx │ │ │ │ │ ├── play-game-rs-custom-benchmark.mdx │ │ │ │ │ ├── play-game-rs-inventory-collect.mdx │ │ │ │ │ ├── play-game-rs-inventory-submit.mdx │ │ │ │ │ ├── play-game-rs-main.mdx │ │ │ │ │ ├── play-game-rs-run.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── create-a-benchmark-function.mdx │ │ │ │ │ │ ├── create-a-custom-allocator.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-collector.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-runner.mdx │ │ │ │ │ │ ├── create-a-custom-benchmarking-harness.mdx │ │ │ │ │ │ ├── how-cargo-bench-works.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── register-the-benchmark-function.mdx │ │ │ │ │ │ ├── run-the-custom-benchmark-harness.mdx │ │ │ │ │ │ ├── track-custom-benchmark-results.mdx │ │ │ │ │ │ ├── use-a-custom-benchmarking-harness-with-cargo-bench.mdx │ │ │ │ │ │ ├── wrap-up.mdx │ │ │ │ │ │ └── write-code-to-benchmark.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── create-a-benchmark-function.mdx │ │ │ │ │ │ ├── create-a-custom-allocator.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-collector.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-runner.mdx │ │ │ │ │ │ ├── create-a-custom-benchmarking-harness.mdx │ │ │ │ │ │ ├── how-cargo-bench-works.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── register-the-benchmark-function.mdx │ │ │ │ │ │ ├── run-the-custom-benchmark-harness.mdx │ │ │ │ │ │ ├── track-custom-benchmark-results.mdx │ │ │ │ │ │ ├── use-a-custom-benchmarking-harness-with-cargo-bench.mdx │ │ │ │ │ │ ├── wrap-up.mdx │ │ │ │ │ │ └── write-code-to-benchmark.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── create-a-benchmark-function.mdx │ │ │ │ │ │ ├── create-a-custom-allocator.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-collector.mdx │ │ │ │ │ │ ├── create-a-custom-benchmark-runner.mdx │ │ │ │ │ │ ├── create-a-custom-benchmarking-harness.mdx │ │ │ │ │ │ ├── how-cargo-bench-works.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── register-the-benchmark-function.mdx │ │ │ │ │ │ ├── run-the-custom-benchmark-harness.mdx │ │ │ │ │ │ ├── track-custom-benchmark-results.mdx │ │ │ │ │ │ ├── use-a-custom-benchmarking-harness-with-cargo-bench.mdx │ │ │ │ │ │ ├── wrap-up.mdx │ │ │ │ │ │ └── write-code-to-benchmark.mdx │ │ │ │ ├── de │ │ │ │ │ ├── benchmarking-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-fix-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rust.mdx │ │ │ │ │ ├── fizz-buzz-rust.mdx │ │ │ │ │ └── step-by-step-rust.mdx │ │ │ │ ├── en │ │ │ │ │ ├── benchmarking-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-fix-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rust.mdx │ │ │ │ │ ├── fizz-buzz-rust.mdx │ │ │ │ │ └── step-by-step-rust.mdx │ │ │ │ ├── es │ │ │ │ │ ├── benchmarking-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-fix-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rust.mdx │ │ │ │ │ ├── fizz-buzz-rust.mdx │ │ │ │ │ └── step-by-step-rust.mdx │ │ │ │ ├── fizz-buzz-fibonacci-open-rust-code.mdx │ │ │ │ ├── fizz-buzz-fibonacci-open-rust-output-default.mdx │ │ │ │ ├── fizz-buzz-fibonacci-open-rust-output.mdx │ │ │ │ ├── fizz-buzz-fibonacci-rust-code.mdx │ │ │ │ ├── fizz-buzz-output.mdx │ │ │ │ ├── fizz-buzz-refactor-rust-code.mdx │ │ │ │ ├── fizz-buzz-rust-code.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── benchmarking-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-fix-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rust.mdx │ │ │ │ │ ├── fizz-buzz-rust.mdx │ │ │ │ │ └── step-by-step-rust.mdx │ │ │ │ ├── game-lock-tree.mdx │ │ │ │ ├── game-tree.mdx │ │ │ │ ├── hello-world-rust-code.mdx │ │ │ │ ├── iai │ │ │ │ │ ├── bench-play-game-fibonacci-output.mdx │ │ │ │ │ ├── bench-play-game-fix-output.mdx │ │ │ │ │ ├── bench-play-game-on-fire-code.mdx │ │ │ │ │ ├── bench-play-game-on-fire-output-start.mdx │ │ │ │ │ ├── bench-play-game-on-fire-output.mdx │ │ │ │ │ ├── bench-play-game-output.mdx │ │ │ │ │ ├── catch-in-ci-output.mdx │ │ │ │ │ ├── fizz-buzz-refactor-benches-code.mdx │ │ │ │ │ └── game-cargo-toml.mdx │ │ │ │ ├── is-fibonacci-number-fix-rust-code.mdx │ │ │ │ ├── is-fibonacci-number-rust-code.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── benchmarking-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-fix-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rust.mdx │ │ │ │ │ ├── fizz-buzz-rust.mdx │ │ │ │ │ └── step-by-step-rust.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── benchmarking-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-fix-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rust.mdx │ │ │ │ │ ├── fizz-buzz-rust.mdx │ │ │ │ │ └── step-by-step-rust.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── benchmarking-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-fix-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rust.mdx │ │ │ │ │ ├── fizz-buzz-rust.mdx │ │ │ │ │ └── step-by-step-rust.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── benchmarking-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-fix-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rust.mdx │ │ │ │ │ ├── fizz-buzz-rust.mdx │ │ │ │ │ └── step-by-step-rust.mdx │ │ │ │ └── zh │ │ │ │ │ ├── benchmarking-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-fix-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rust.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rust.mdx │ │ │ │ │ ├── fizz-buzz-rust.mdx │ │ │ │ │ └── step-by-step-rust.mdx │ │ │ ├── benchmarking │ │ │ │ ├── de │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── catch-in-ci-plot.mdx │ │ │ │ │ ├── catch-in-ci.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rules.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rules.mdx │ │ │ │ │ ├── fizz-buzz-rules.mdx │ │ │ │ │ ├── micro-vs-macro.mdx │ │ │ │ │ ├── on-fire.mdx │ │ │ │ │ └── the-end.mdx │ │ │ │ ├── en │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── catch-in-ci-plot.mdx │ │ │ │ │ ├── catch-in-ci.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rules.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rules.mdx │ │ │ │ │ ├── fizz-buzz-rules.mdx │ │ │ │ │ ├── micro-vs-macro.mdx │ │ │ │ │ ├── on-fire.mdx │ │ │ │ │ └── the-end.mdx │ │ │ │ ├── es │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── catch-in-ci-plot.mdx │ │ │ │ │ ├── catch-in-ci.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rules.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rules.mdx │ │ │ │ │ ├── fizz-buzz-rules.mdx │ │ │ │ │ ├── micro-vs-macro.mdx │ │ │ │ │ ├── on-fire.mdx │ │ │ │ │ └── the-end.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── catch-in-ci-plot.mdx │ │ │ │ │ ├── catch-in-ci.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rules.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rules.mdx │ │ │ │ │ ├── fizz-buzz-rules.mdx │ │ │ │ │ ├── micro-vs-macro.mdx │ │ │ │ │ ├── on-fire.mdx │ │ │ │ │ └── the-end.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── catch-in-ci-plot.mdx │ │ │ │ │ ├── catch-in-ci.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rules.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rules.mdx │ │ │ │ │ ├── fizz-buzz-rules.mdx │ │ │ │ │ ├── micro-vs-macro.mdx │ │ │ │ │ ├── on-fire.mdx │ │ │ │ │ └── the-end.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── catch-in-ci-plot.mdx │ │ │ │ │ ├── catch-in-ci.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rules.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rules.mdx │ │ │ │ │ ├── fizz-buzz-rules.mdx │ │ │ │ │ ├── micro-vs-macro.mdx │ │ │ │ │ ├── on-fire.mdx │ │ │ │ │ └── the-end.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── catch-in-ci-plot.mdx │ │ │ │ │ ├── catch-in-ci.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rules.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rules.mdx │ │ │ │ │ ├── fizz-buzz-rules.mdx │ │ │ │ │ ├── micro-vs-macro.mdx │ │ │ │ │ ├── on-fire.mdx │ │ │ │ │ └── the-end.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── catch-in-ci-plot.mdx │ │ │ │ │ ├── catch-in-ci.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rules.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rules.mdx │ │ │ │ │ ├── fizz-buzz-rules.mdx │ │ │ │ │ ├── micro-vs-macro.mdx │ │ │ │ │ ├── on-fire.mdx │ │ │ │ │ └── the-end.mdx │ │ │ │ └── zh │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── catch-in-ci-plot.mdx │ │ │ │ │ ├── catch-in-ci.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-open-rules.mdx │ │ │ │ │ ├── fizz-buzz-fibonacci-rules.mdx │ │ │ │ │ ├── fizz-buzz-rules.mdx │ │ │ │ │ ├── micro-vs-macro.mdx │ │ │ │ │ ├── on-fire.mdx │ │ │ │ │ └── the-end.mdx │ │ │ ├── case-study │ │ │ │ ├── diesel │ │ │ │ │ ├── de │ │ │ │ │ │ ├── benchmarking-diesel.mdx │ │ │ │ │ │ ├── continuous-benchmarking-for-diesel.mdx │ │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ │ ├── what-is-diesel.mdx │ │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── benchmarking-diesel.mdx │ │ │ │ │ │ ├── continuous-benchmarking-for-diesel.mdx │ │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ │ ├── what-is-diesel.mdx │ │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── benchmarking-diesel.mdx │ │ │ │ │ │ ├── continuous-benchmarking-for-diesel.mdx │ │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ │ ├── what-is-diesel.mdx │ │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── benchmarking-diesel.mdx │ │ │ │ │ │ ├── continuous-benchmarking-for-diesel.mdx │ │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ │ ├── what-is-diesel.mdx │ │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── benchmarking-diesel.mdx │ │ │ │ │ │ ├── continuous-benchmarking-for-diesel.mdx │ │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ │ ├── what-is-diesel.mdx │ │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── benchmarking-diesel.mdx │ │ │ │ │ │ ├── continuous-benchmarking-for-diesel.mdx │ │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ │ ├── what-is-diesel.mdx │ │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── benchmarking-diesel.mdx │ │ │ │ │ │ ├── continuous-benchmarking-for-diesel.mdx │ │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ │ ├── what-is-diesel.mdx │ │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── benchmarking-diesel.mdx │ │ │ │ │ │ ├── continuous-benchmarking-for-diesel.mdx │ │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ │ ├── what-is-diesel.mdx │ │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── benchmarking-diesel.mdx │ │ │ │ │ │ ├── continuous-benchmarking-for-diesel.mdx │ │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ │ ├── what-is-diesel.mdx │ │ │ │ │ │ └── wrap-up.mdx │ │ │ │ └── rustls │ │ │ │ │ ├── de │ │ │ │ │ ├── bare-metal-server.mdx │ │ │ │ │ ├── benchmarking-rustls.mdx │ │ │ │ │ ├── continuous-benchmarking-for-rustls.mdx │ │ │ │ │ ├── rustls-bench-runner.mdx │ │ │ │ │ ├── rustls-ci-bench.mdx │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ ├── what-is-rustls.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── en │ │ │ │ │ ├── bare-metal-server.mdx │ │ │ │ │ ├── benchmarking-rustls.mdx │ │ │ │ │ ├── continuous-benchmarking-for-rustls.mdx │ │ │ │ │ ├── rustls-bench-runner.mdx │ │ │ │ │ ├── rustls-ci-bench.mdx │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ ├── what-is-rustls.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── es │ │ │ │ │ ├── bare-metal-server.mdx │ │ │ │ │ ├── benchmarking-rustls.mdx │ │ │ │ │ ├── continuous-benchmarking-for-rustls.mdx │ │ │ │ │ ├── rustls-bench-runner.mdx │ │ │ │ │ ├── rustls-ci-bench.mdx │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ ├── what-is-rustls.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── fr │ │ │ │ │ ├── bare-metal-server.mdx │ │ │ │ │ ├── benchmarking-rustls.mdx │ │ │ │ │ ├── continuous-benchmarking-for-rustls.mdx │ │ │ │ │ ├── rustls-bench-runner.mdx │ │ │ │ │ ├── rustls-ci-bench.mdx │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ ├── what-is-rustls.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── ja │ │ │ │ │ ├── bare-metal-server.mdx │ │ │ │ │ ├── benchmarking-rustls.mdx │ │ │ │ │ ├── continuous-benchmarking-for-rustls.mdx │ │ │ │ │ ├── rustls-bench-runner.mdx │ │ │ │ │ ├── rustls-ci-bench.mdx │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ ├── what-is-rustls.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── ko │ │ │ │ │ ├── bare-metal-server.mdx │ │ │ │ │ ├── benchmarking-rustls.mdx │ │ │ │ │ ├── continuous-benchmarking-for-rustls.mdx │ │ │ │ │ ├── rustls-bench-runner.mdx │ │ │ │ │ ├── rustls-ci-bench.mdx │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ ├── what-is-rustls.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── pt │ │ │ │ │ ├── bare-metal-server.mdx │ │ │ │ │ ├── benchmarking-rustls.mdx │ │ │ │ │ ├── continuous-benchmarking-for-rustls.mdx │ │ │ │ │ ├── rustls-bench-runner.mdx │ │ │ │ │ ├── rustls-ci-bench.mdx │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ ├── what-is-rustls.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── ru │ │ │ │ │ ├── bare-metal-server.mdx │ │ │ │ │ ├── benchmarking-rustls.mdx │ │ │ │ │ ├── continuous-benchmarking-for-rustls.mdx │ │ │ │ │ ├── rustls-bench-runner.mdx │ │ │ │ │ ├── rustls-ci-bench.mdx │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ ├── what-is-rustls.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ └── zh │ │ │ │ │ ├── bare-metal-server.mdx │ │ │ │ │ ├── benchmarking-rustls.mdx │ │ │ │ │ ├── continuous-benchmarking-for-rustls.mdx │ │ │ │ │ ├── rustls-bench-runner.mdx │ │ │ │ │ ├── rustls-ci-bench.mdx │ │ │ │ │ ├── trophy-case.mdx │ │ │ │ │ ├── what-is-rustls.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ ├── docs-explanation │ │ │ │ ├── adapters │ │ │ │ │ ├── asv.mdx │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ ├── cargo-rust-bench.mdx │ │ │ │ │ ├── cargo-rust-criterion.mdx │ │ │ │ │ ├── cargo-rust-gungraun.mdx │ │ │ │ │ ├── cargo-rust-iai.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── build-time-inner.mdx │ │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ │ ├── c-sharp-dot-net.mdx │ │ │ │ │ │ ├── cpp-catch2.mdx │ │ │ │ │ │ ├── cpp-google.mdx │ │ │ │ │ │ ├── file-size-inner.mdx │ │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ │ ├── go-bench.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── java-jmh.mdx │ │ │ │ │ │ ├── js-benchmark.mdx │ │ │ │ │ │ ├── js-time.mdx │ │ │ │ │ │ ├── json-inner.mdx │ │ │ │ │ │ ├── json.mdx │ │ │ │ │ │ ├── magic.mdx │ │ │ │ │ │ ├── python-asv.mdx │ │ │ │ │ │ ├── python-pytest.mdx │ │ │ │ │ │ ├── ruby-benchmark.mdx │ │ │ │ │ │ ├── rust-bench.mdx │ │ │ │ │ │ ├── rust-criterion.mdx │ │ │ │ │ │ ├── rust-gungraun.mdx │ │ │ │ │ │ ├── rust-iai-callgrind.mdx │ │ │ │ │ │ ├── rust-iai.mdx │ │ │ │ │ │ └── shell-hyperfine.mdx │ │ │ │ │ ├── dotnet.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── build-time-inner.mdx │ │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ │ ├── c-sharp-dot-net.mdx │ │ │ │ │ │ ├── cpp-catch2.mdx │ │ │ │ │ │ ├── cpp-google.mdx │ │ │ │ │ │ ├── file-size-inner.mdx │ │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ │ ├── go-bench.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── java-jmh.mdx │ │ │ │ │ │ ├── js-benchmark.mdx │ │ │ │ │ │ ├── js-time.mdx │ │ │ │ │ │ ├── json-inner.mdx │ │ │ │ │ │ ├── json.mdx │ │ │ │ │ │ ├── magic.mdx │ │ │ │ │ │ ├── python-asv.mdx │ │ │ │ │ │ ├── python-pytest.mdx │ │ │ │ │ │ ├── ruby-benchmark.mdx │ │ │ │ │ │ ├── rust-bench.mdx │ │ │ │ │ │ ├── rust-criterion.mdx │ │ │ │ │ │ ├── rust-gungraun.mdx │ │ │ │ │ │ ├── rust-iai-callgrind.mdx │ │ │ │ │ │ ├── rust-iai.mdx │ │ │ │ │ │ └── shell-hyperfine.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── build-time-inner.mdx │ │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ │ ├── c-sharp-dot-net.mdx │ │ │ │ │ │ ├── cpp-catch2.mdx │ │ │ │ │ │ ├── cpp-google.mdx │ │ │ │ │ │ ├── file-size-inner.mdx │ │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ │ ├── go-bench.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── java-jmh.mdx │ │ │ │ │ │ ├── js-benchmark.mdx │ │ │ │ │ │ ├── js-time.mdx │ │ │ │ │ │ ├── json-inner.mdx │ │ │ │ │ │ ├── json.mdx │ │ │ │ │ │ ├── magic.mdx │ │ │ │ │ │ ├── python-asv.mdx │ │ │ │ │ │ ├── python-pytest.mdx │ │ │ │ │ │ ├── ruby-benchmark.mdx │ │ │ │ │ │ ├── rust-bench.mdx │ │ │ │ │ │ ├── rust-criterion.mdx │ │ │ │ │ │ ├── rust-gungraun.mdx │ │ │ │ │ │ ├── rust-iai-callgrind.mdx │ │ │ │ │ │ ├── rust-iai.mdx │ │ │ │ │ │ └── shell-hyperfine.mdx │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── build-time-inner.mdx │ │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ │ ├── c-sharp-dot-net.mdx │ │ │ │ │ │ ├── cpp-catch2.mdx │ │ │ │ │ │ ├── cpp-google.mdx │ │ │ │ │ │ ├── file-size-inner.mdx │ │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ │ ├── go-bench.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── java-jmh.mdx │ │ │ │ │ │ ├── js-benchmark.mdx │ │ │ │ │ │ ├── js-time.mdx │ │ │ │ │ │ ├── json-inner.mdx │ │ │ │ │ │ ├── json.mdx │ │ │ │ │ │ ├── magic.mdx │ │ │ │ │ │ ├── python-asv.mdx │ │ │ │ │ │ ├── python-pytest.mdx │ │ │ │ │ │ ├── ruby-benchmark.mdx │ │ │ │ │ │ ├── rust-bench.mdx │ │ │ │ │ │ ├── rust-criterion.mdx │ │ │ │ │ │ ├── rust-gungraun.mdx │ │ │ │ │ │ ├── rust-iai-callgrind.mdx │ │ │ │ │ │ ├── rust-iai.mdx │ │ │ │ │ │ └── shell-hyperfine.mdx │ │ │ │ │ ├── go.mdx │ │ │ │ │ ├── hyperfine.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── build-time-inner.mdx │ │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ │ ├── c-sharp-dot-net.mdx │ │ │ │ │ │ ├── cpp-catch2.mdx │ │ │ │ │ │ ├── cpp-google.mdx │ │ │ │ │ │ ├── file-size-inner.mdx │ │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ │ ├── go-bench.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── java-jmh.mdx │ │ │ │ │ │ ├── js-benchmark.mdx │ │ │ │ │ │ ├── js-time.mdx │ │ │ │ │ │ ├── json-inner.mdx │ │ │ │ │ │ ├── json.mdx │ │ │ │ │ │ ├── magic.mdx │ │ │ │ │ │ ├── python-asv.mdx │ │ │ │ │ │ ├── python-pytest.mdx │ │ │ │ │ │ ├── ruby-benchmark.mdx │ │ │ │ │ │ ├── rust-bench.mdx │ │ │ │ │ │ ├── rust-criterion.mdx │ │ │ │ │ │ ├── rust-gungraun.mdx │ │ │ │ │ │ ├── rust-iai-callgrind.mdx │ │ │ │ │ │ ├── rust-iai.mdx │ │ │ │ │ │ └── shell-hyperfine.mdx │ │ │ │ │ ├── java.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── build-time-inner.mdx │ │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ │ ├── c-sharp-dot-net.mdx │ │ │ │ │ │ ├── cpp-catch2.mdx │ │ │ │ │ │ ├── cpp-google.mdx │ │ │ │ │ │ ├── file-size-inner.mdx │ │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ │ ├── go-bench.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── java-jmh.mdx │ │ │ │ │ │ ├── js-benchmark.mdx │ │ │ │ │ │ ├── js-time.mdx │ │ │ │ │ │ ├── json-inner.mdx │ │ │ │ │ │ ├── json.mdx │ │ │ │ │ │ ├── magic.mdx │ │ │ │ │ │ ├── python-asv.mdx │ │ │ │ │ │ ├── python-pytest.mdx │ │ │ │ │ │ ├── ruby-benchmark.mdx │ │ │ │ │ │ ├── rust-bench.mdx │ │ │ │ │ │ ├── rust-criterion.mdx │ │ │ │ │ │ ├── rust-gungraun.mdx │ │ │ │ │ │ ├── rust-iai-callgrind.mdx │ │ │ │ │ │ ├── rust-iai.mdx │ │ │ │ │ │ └── shell-hyperfine.mdx │ │ │ │ │ ├── make-cpp-catch2.mdx │ │ │ │ │ ├── make-cpp-google.mdx │ │ │ │ │ ├── node-js-benchmark.mdx │ │ │ │ │ ├── node-js-time.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── build-time-inner.mdx │ │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ │ ├── c-sharp-dot-net.mdx │ │ │ │ │ │ ├── cpp-catch2.mdx │ │ │ │ │ │ ├── cpp-google.mdx │ │ │ │ │ │ ├── file-size-inner.mdx │ │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ │ ├── go-bench.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── java-jmh.mdx │ │ │ │ │ │ ├── js-benchmark.mdx │ │ │ │ │ │ ├── js-time.mdx │ │ │ │ │ │ ├── json-inner.mdx │ │ │ │ │ │ ├── json.mdx │ │ │ │ │ │ ├── magic.mdx │ │ │ │ │ │ ├── python-asv.mdx │ │ │ │ │ │ ├── python-pytest.mdx │ │ │ │ │ │ ├── ruby-benchmark.mdx │ │ │ │ │ │ ├── rust-bench.mdx │ │ │ │ │ │ ├── rust-criterion.mdx │ │ │ │ │ │ ├── rust-gungraun.mdx │ │ │ │ │ │ ├── rust-iai-callgrind.mdx │ │ │ │ │ │ ├── rust-iai.mdx │ │ │ │ │ │ └── shell-hyperfine.mdx │ │ │ │ │ ├── pytest.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── build-time-inner.mdx │ │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ │ ├── c-sharp-dot-net.mdx │ │ │ │ │ │ ├── cpp-catch2.mdx │ │ │ │ │ │ ├── cpp-google.mdx │ │ │ │ │ │ ├── file-size-inner.mdx │ │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ │ ├── go-bench.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── java-jmh.mdx │ │ │ │ │ │ ├── js-benchmark.mdx │ │ │ │ │ │ ├── js-time.mdx │ │ │ │ │ │ ├── json-inner.mdx │ │ │ │ │ │ ├── json.mdx │ │ │ │ │ │ ├── magic.mdx │ │ │ │ │ │ ├── python-asv.mdx │ │ │ │ │ │ ├── python-pytest.mdx │ │ │ │ │ │ ├── ruby-benchmark.mdx │ │ │ │ │ │ ├── rust-bench.mdx │ │ │ │ │ │ ├── rust-criterion.mdx │ │ │ │ │ │ ├── rust-gungraun.mdx │ │ │ │ │ │ ├── rust-iai-callgrind.mdx │ │ │ │ │ │ ├── rust-iai.mdx │ │ │ │ │ │ └── shell-hyperfine.mdx │ │ │ │ │ ├── ruby.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── build-time-inner.mdx │ │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ │ ├── c-sharp-dot-net.mdx │ │ │ │ │ │ ├── cpp-catch2.mdx │ │ │ │ │ │ ├── cpp-google.mdx │ │ │ │ │ │ ├── file-size-inner.mdx │ │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ │ ├── go-bench.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── java-jmh.mdx │ │ │ │ │ │ ├── js-benchmark.mdx │ │ │ │ │ │ ├── js-time.mdx │ │ │ │ │ │ ├── json-inner.mdx │ │ │ │ │ │ ├── json.mdx │ │ │ │ │ │ ├── magic.mdx │ │ │ │ │ │ ├── python-asv.mdx │ │ │ │ │ │ ├── python-pytest.mdx │ │ │ │ │ │ ├── ruby-benchmark.mdx │ │ │ │ │ │ ├── rust-bench.mdx │ │ │ │ │ │ ├── rust-criterion.mdx │ │ │ │ │ │ ├── rust-gungraun.mdx │ │ │ │ │ │ ├── rust-iai-callgrind.mdx │ │ │ │ │ │ ├── rust-iai.mdx │ │ │ │ │ │ └── shell-hyperfine.mdx │ │ │ │ ├── bencher-run │ │ │ │ │ ├── cmd.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ │ ├── allow-failure.mdx │ │ │ │ │ │ ├── attempts.mdx │ │ │ │ │ │ ├── backdate.mdx │ │ │ │ │ │ ├── benchmark-command.mdx │ │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ │ ├── ci-id.mdx │ │ │ │ │ │ ├── ci-number.mdx │ │ │ │ │ │ ├── ci-on-the-fly.mdx │ │ │ │ │ │ ├── ci-only-on-alert.mdx │ │ │ │ │ │ ├── ci-only-thresholds.mdx │ │ │ │ │ │ ├── dry-run.mdx │ │ │ │ │ │ ├── exec.mdx │ │ │ │ │ │ ├── flag.mdx │ │ │ │ │ │ ├── fold.mdx │ │ │ │ │ │ ├── format.mdx │ │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── insecure-host.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── iter.mdx │ │ │ │ │ │ ├── native-tls.mdx │ │ │ │ │ │ ├── project.mdx │ │ │ │ │ │ ├── quiet.mdx │ │ │ │ │ │ ├── retry-after.mdx │ │ │ │ │ │ ├── shell.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ │ ├── allow-failure.mdx │ │ │ │ │ │ ├── attempts.mdx │ │ │ │ │ │ ├── backdate.mdx │ │ │ │ │ │ ├── benchmark-command.mdx │ │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ │ ├── ci-id.mdx │ │ │ │ │ │ ├── ci-number.mdx │ │ │ │ │ │ ├── ci-on-the-fly.mdx │ │ │ │ │ │ ├── ci-only-on-alert.mdx │ │ │ │ │ │ ├── ci-only-thresholds.mdx │ │ │ │ │ │ ├── dry-run.mdx │ │ │ │ │ │ ├── exec.mdx │ │ │ │ │ │ ├── flag.mdx │ │ │ │ │ │ ├── fold.mdx │ │ │ │ │ │ ├── format.mdx │ │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── insecure-host.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── iter.mdx │ │ │ │ │ │ ├── native-tls.mdx │ │ │ │ │ │ ├── project.mdx │ │ │ │ │ │ ├── quiet.mdx │ │ │ │ │ │ ├── retry-after.mdx │ │ │ │ │ │ ├── shell.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ │ ├── allow-failure.mdx │ │ │ │ │ │ ├── attempts.mdx │ │ │ │ │ │ ├── backdate.mdx │ │ │ │ │ │ ├── benchmark-command.mdx │ │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ │ ├── ci-id.mdx │ │ │ │ │ │ ├── ci-number.mdx │ │ │ │ │ │ ├── ci-on-the-fly.mdx │ │ │ │ │ │ ├── ci-only-on-alert.mdx │ │ │ │ │ │ ├── ci-only-thresholds.mdx │ │ │ │ │ │ ├── dry-run.mdx │ │ │ │ │ │ ├── exec.mdx │ │ │ │ │ │ ├── flag.mdx │ │ │ │ │ │ ├── fold.mdx │ │ │ │ │ │ ├── format.mdx │ │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── insecure-host.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── iter.mdx │ │ │ │ │ │ ├── native-tls.mdx │ │ │ │ │ │ ├── project.mdx │ │ │ │ │ │ ├── quiet.mdx │ │ │ │ │ │ ├── retry-after.mdx │ │ │ │ │ │ ├── shell.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ │ ├── exec-form.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ │ ├── allow-failure.mdx │ │ │ │ │ │ ├── attempts.mdx │ │ │ │ │ │ ├── backdate.mdx │ │ │ │ │ │ ├── benchmark-command.mdx │ │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ │ ├── ci-id.mdx │ │ │ │ │ │ ├── ci-number.mdx │ │ │ │ │ │ ├── ci-on-the-fly.mdx │ │ │ │ │ │ ├── ci-only-on-alert.mdx │ │ │ │ │ │ ├── ci-only-thresholds.mdx │ │ │ │ │ │ ├── dry-run.mdx │ │ │ │ │ │ ├── exec.mdx │ │ │ │ │ │ ├── flag.mdx │ │ │ │ │ │ ├── fold.mdx │ │ │ │ │ │ ├── format.mdx │ │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── insecure-host.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── iter.mdx │ │ │ │ │ │ ├── native-tls.mdx │ │ │ │ │ │ ├── project.mdx │ │ │ │ │ │ ├── quiet.mdx │ │ │ │ │ │ ├── retry-after.mdx │ │ │ │ │ │ ├── shell.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ │ ├── allow-failure.mdx │ │ │ │ │ │ ├── attempts.mdx │ │ │ │ │ │ ├── backdate.mdx │ │ │ │ │ │ ├── benchmark-command.mdx │ │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ │ ├── ci-id.mdx │ │ │ │ │ │ ├── ci-number.mdx │ │ │ │ │ │ ├── ci-on-the-fly.mdx │ │ │ │ │ │ ├── ci-only-on-alert.mdx │ │ │ │ │ │ ├── ci-only-thresholds.mdx │ │ │ │ │ │ ├── dry-run.mdx │ │ │ │ │ │ ├── exec.mdx │ │ │ │ │ │ ├── flag.mdx │ │ │ │ │ │ ├── fold.mdx │ │ │ │ │ │ ├── format.mdx │ │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── insecure-host.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── iter.mdx │ │ │ │ │ │ ├── native-tls.mdx │ │ │ │ │ │ ├── project.mdx │ │ │ │ │ │ ├── quiet.mdx │ │ │ │ │ │ ├── retry-after.mdx │ │ │ │ │ │ ├── shell.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ │ ├── allow-failure.mdx │ │ │ │ │ │ ├── attempts.mdx │ │ │ │ │ │ ├── backdate.mdx │ │ │ │ │ │ ├── benchmark-command.mdx │ │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ │ ├── ci-id.mdx │ │ │ │ │ │ ├── ci-number.mdx │ │ │ │ │ │ ├── ci-on-the-fly.mdx │ │ │ │ │ │ ├── ci-only-on-alert.mdx │ │ │ │ │ │ ├── ci-only-thresholds.mdx │ │ │ │ │ │ ├── dry-run.mdx │ │ │ │ │ │ ├── exec.mdx │ │ │ │ │ │ ├── flag.mdx │ │ │ │ │ │ ├── fold.mdx │ │ │ │ │ │ ├── format.mdx │ │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── insecure-host.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── iter.mdx │ │ │ │ │ │ ├── native-tls.mdx │ │ │ │ │ │ ├── project.mdx │ │ │ │ │ │ ├── quiet.mdx │ │ │ │ │ │ ├── retry-after.mdx │ │ │ │ │ │ ├── shell.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ │ ├── allow-failure.mdx │ │ │ │ │ │ ├── attempts.mdx │ │ │ │ │ │ ├── backdate.mdx │ │ │ │ │ │ ├── benchmark-command.mdx │ │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ │ ├── ci-id.mdx │ │ │ │ │ │ ├── ci-number.mdx │ │ │ │ │ │ ├── ci-on-the-fly.mdx │ │ │ │ │ │ ├── ci-only-on-alert.mdx │ │ │ │ │ │ ├── ci-only-thresholds.mdx │ │ │ │ │ │ ├── dry-run.mdx │ │ │ │ │ │ ├── exec.mdx │ │ │ │ │ │ ├── flag.mdx │ │ │ │ │ │ ├── fold.mdx │ │ │ │ │ │ ├── format.mdx │ │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── insecure-host.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── iter.mdx │ │ │ │ │ │ ├── native-tls.mdx │ │ │ │ │ │ ├── project.mdx │ │ │ │ │ │ ├── quiet.mdx │ │ │ │ │ │ ├── retry-after.mdx │ │ │ │ │ │ ├── shell.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ │ ├── allow-failure.mdx │ │ │ │ │ │ ├── attempts.mdx │ │ │ │ │ │ ├── backdate.mdx │ │ │ │ │ │ ├── benchmark-command.mdx │ │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ │ ├── ci-id.mdx │ │ │ │ │ │ ├── ci-number.mdx │ │ │ │ │ │ ├── ci-on-the-fly.mdx │ │ │ │ │ │ ├── ci-only-on-alert.mdx │ │ │ │ │ │ ├── ci-only-thresholds.mdx │ │ │ │ │ │ ├── dry-run.mdx │ │ │ │ │ │ ├── exec.mdx │ │ │ │ │ │ ├── flag.mdx │ │ │ │ │ │ ├── fold.mdx │ │ │ │ │ │ ├── format.mdx │ │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── insecure-host.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── iter.mdx │ │ │ │ │ │ ├── native-tls.mdx │ │ │ │ │ │ ├── project.mdx │ │ │ │ │ │ ├── quiet.mdx │ │ │ │ │ │ ├── retry-after.mdx │ │ │ │ │ │ ├── shell.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ │ ├── shell-form.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ │ ├── allow-failure.mdx │ │ │ │ │ │ ├── attempts.mdx │ │ │ │ │ │ ├── backdate.mdx │ │ │ │ │ │ ├── benchmark-command.mdx │ │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ │ ├── ci-id.mdx │ │ │ │ │ │ ├── ci-number.mdx │ │ │ │ │ │ ├── ci-on-the-fly.mdx │ │ │ │ │ │ ├── ci-only-on-alert.mdx │ │ │ │ │ │ ├── ci-only-thresholds.mdx │ │ │ │ │ │ ├── dry-run.mdx │ │ │ │ │ │ ├── exec.mdx │ │ │ │ │ │ ├── flag.mdx │ │ │ │ │ │ ├── fold.mdx │ │ │ │ │ │ ├── format.mdx │ │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── insecure-host.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── iter.mdx │ │ │ │ │ │ ├── native-tls.mdx │ │ │ │ │ │ ├── project.mdx │ │ │ │ │ │ ├── quiet.mdx │ │ │ │ │ │ ├── retry-after.mdx │ │ │ │ │ │ ├── shell.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ ├── bencher-self-hosted │ │ │ │ │ ├── bencher-run-code.mdx │ │ │ │ │ ├── bencher-up-code.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── api-server-url.mdx │ │ │ │ │ │ ├── backups.mdx │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-server-backup.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── compress.mdx │ │ │ │ │ │ │ ├── data-store.mdx │ │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ │ ├── remove.mdx │ │ │ │ │ │ │ └── token.mdx │ │ │ │ │ │ ├── custom-ca-certificates.mdx │ │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ │ ├── disaster-recovery.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── api-server-url.mdx │ │ │ │ │ │ ├── backups.mdx │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-server-backup.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── compress.mdx │ │ │ │ │ │ │ ├── data-store.mdx │ │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ │ ├── remove.mdx │ │ │ │ │ │ │ └── token.mdx │ │ │ │ │ │ ├── custom-ca-certificates.mdx │ │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ │ ├── disaster-recovery.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── api-server-url.mdx │ │ │ │ │ │ ├── backups.mdx │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-server-backup.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── compress.mdx │ │ │ │ │ │ │ ├── data-store.mdx │ │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ │ ├── remove.mdx │ │ │ │ │ │ │ └── token.mdx │ │ │ │ │ │ ├── custom-ca-certificates.mdx │ │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ │ ├── disaster-recovery.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── api-server-url.mdx │ │ │ │ │ │ ├── backups.mdx │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-server-backup.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── compress.mdx │ │ │ │ │ │ │ ├── data-store.mdx │ │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ │ ├── remove.mdx │ │ │ │ │ │ │ └── token.mdx │ │ │ │ │ │ ├── custom-ca-certificates.mdx │ │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ │ ├── disaster-recovery.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── api-server-url.mdx │ │ │ │ │ │ ├── backups.mdx │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-server-backup.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── compress.mdx │ │ │ │ │ │ │ ├── data-store.mdx │ │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ │ ├── remove.mdx │ │ │ │ │ │ │ └── token.mdx │ │ │ │ │ │ ├── custom-ca-certificates.mdx │ │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ │ ├── disaster-recovery.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── api-server-url.mdx │ │ │ │ │ │ ├── backups.mdx │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-server-backup.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── compress.mdx │ │ │ │ │ │ │ ├── data-store.mdx │ │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ │ ├── remove.mdx │ │ │ │ │ │ │ └── token.mdx │ │ │ │ │ │ ├── custom-ca-certificates.mdx │ │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ │ ├── disaster-recovery.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── api-server-url.mdx │ │ │ │ │ │ ├── backups.mdx │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-server-backup.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── compress.mdx │ │ │ │ │ │ │ ├── data-store.mdx │ │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ │ ├── remove.mdx │ │ │ │ │ │ │ └── token.mdx │ │ │ │ │ │ ├── custom-ca-certificates.mdx │ │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ │ ├── disaster-recovery.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── api-server-url.mdx │ │ │ │ │ │ ├── backups.mdx │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-server-backup.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── compress.mdx │ │ │ │ │ │ │ ├── data-store.mdx │ │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ │ ├── remove.mdx │ │ │ │ │ │ │ └── token.mdx │ │ │ │ │ │ ├── custom-ca-certificates.mdx │ │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ │ ├── disaster-recovery.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── api-server-url.mdx │ │ │ │ │ │ ├── backups.mdx │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-server-backup.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── compress.mdx │ │ │ │ │ │ ├── data-store.mdx │ │ │ │ │ │ ├── host.mdx │ │ │ │ │ │ ├── remove.mdx │ │ │ │ │ │ └── token.mdx │ │ │ │ │ │ ├── custom-ca-certificates.mdx │ │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ │ ├── disaster-recovery.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ ├── benchmarking │ │ │ │ │ ├── de │ │ │ │ │ │ ├── alert.mdx │ │ │ │ │ │ ├── benchmark.mdx │ │ │ │ │ │ ├── boundary-limit.mdx │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── head.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── measure.mdx │ │ │ │ │ │ ├── metric.mdx │ │ │ │ │ │ ├── model.mdx │ │ │ │ │ │ ├── report.mdx │ │ │ │ │ │ ├── start-point.mdx │ │ │ │ │ │ ├── test.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ └── threshold.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── alert.mdx │ │ │ │ │ │ ├── benchmark.mdx │ │ │ │ │ │ ├── boundary-limit.mdx │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── head.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── measure.mdx │ │ │ │ │ │ ├── metric.mdx │ │ │ │ │ │ ├── model.mdx │ │ │ │ │ │ ├── report.mdx │ │ │ │ │ │ ├── start-point.mdx │ │ │ │ │ │ ├── test.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ └── threshold.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── alert.mdx │ │ │ │ │ │ ├── benchmark.mdx │ │ │ │ │ │ ├── boundary-limit.mdx │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── head.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── measure.mdx │ │ │ │ │ │ ├── metric.mdx │ │ │ │ │ │ ├── model.mdx │ │ │ │ │ │ ├── report.mdx │ │ │ │ │ │ ├── start-point.mdx │ │ │ │ │ │ ├── test.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ └── threshold.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── alert.mdx │ │ │ │ │ │ ├── benchmark.mdx │ │ │ │ │ │ ├── boundary-limit.mdx │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── head.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── measure.mdx │ │ │ │ │ │ ├── metric.mdx │ │ │ │ │ │ ├── model.mdx │ │ │ │ │ │ ├── report.mdx │ │ │ │ │ │ ├── start-point.mdx │ │ │ │ │ │ ├── test.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ └── threshold.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── alert.mdx │ │ │ │ │ │ ├── benchmark.mdx │ │ │ │ │ │ ├── boundary-limit.mdx │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── head.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── measure.mdx │ │ │ │ │ │ ├── metric.mdx │ │ │ │ │ │ ├── model.mdx │ │ │ │ │ │ ├── report.mdx │ │ │ │ │ │ ├── start-point.mdx │ │ │ │ │ │ ├── test.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ └── threshold.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── alert.mdx │ │ │ │ │ │ ├── benchmark.mdx │ │ │ │ │ │ ├── boundary-limit.mdx │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── head.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── measure.mdx │ │ │ │ │ │ ├── metric.mdx │ │ │ │ │ │ ├── model.mdx │ │ │ │ │ │ ├── report.mdx │ │ │ │ │ │ ├── start-point.mdx │ │ │ │ │ │ ├── test.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ └── threshold.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── alert.mdx │ │ │ │ │ │ ├── benchmark.mdx │ │ │ │ │ │ ├── boundary-limit.mdx │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── head.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── measure.mdx │ │ │ │ │ │ ├── metric.mdx │ │ │ │ │ │ ├── model.mdx │ │ │ │ │ │ ├── report.mdx │ │ │ │ │ │ ├── start-point.mdx │ │ │ │ │ │ ├── test.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ └── threshold.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── alert.mdx │ │ │ │ │ │ ├── benchmark.mdx │ │ │ │ │ │ ├── boundary-limit.mdx │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── head.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── measure.mdx │ │ │ │ │ │ ├── metric.mdx │ │ │ │ │ │ ├── model.mdx │ │ │ │ │ │ ├── report.mdx │ │ │ │ │ │ ├── start-point.mdx │ │ │ │ │ │ ├── test.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ └── threshold.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── alert.mdx │ │ │ │ │ │ ├── benchmark.mdx │ │ │ │ │ │ ├── boundary-limit.mdx │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── head.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── measure.mdx │ │ │ │ │ │ ├── metric.mdx │ │ │ │ │ │ ├── model.mdx │ │ │ │ │ │ ├── report.mdx │ │ │ │ │ │ ├── start-point.mdx │ │ │ │ │ │ ├── test.mdx │ │ │ │ │ │ ├── testbed.mdx │ │ │ │ │ │ └── threshold.mdx │ │ │ │ ├── branch-selection │ │ │ │ │ ├── de │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── start-point-clone-thresholds.mdx │ │ │ │ │ │ ├── start-point-hash.mdx │ │ │ │ │ │ ├── start-point-max-versions.mdx │ │ │ │ │ │ ├── start-point-reset.mdx │ │ │ │ │ │ └── start-point.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── start-point-clone-thresholds.mdx │ │ │ │ │ │ ├── start-point-hash.mdx │ │ │ │ │ │ ├── start-point-max-versions.mdx │ │ │ │ │ │ ├── start-point-reset.mdx │ │ │ │ │ │ └── start-point.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── start-point-clone-thresholds.mdx │ │ │ │ │ │ ├── start-point-hash.mdx │ │ │ │ │ │ ├── start-point-max-versions.mdx │ │ │ │ │ │ ├── start-point-reset.mdx │ │ │ │ │ │ └── start-point.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── start-point-clone-thresholds.mdx │ │ │ │ │ │ ├── start-point-hash.mdx │ │ │ │ │ │ ├── start-point-max-versions.mdx │ │ │ │ │ │ ├── start-point-reset.mdx │ │ │ │ │ │ └── start-point.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── start-point-clone-thresholds.mdx │ │ │ │ │ │ ├── start-point-hash.mdx │ │ │ │ │ │ ├── start-point-max-versions.mdx │ │ │ │ │ │ ├── start-point-reset.mdx │ │ │ │ │ │ └── start-point.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── start-point-clone-thresholds.mdx │ │ │ │ │ │ ├── start-point-hash.mdx │ │ │ │ │ │ ├── start-point-max-versions.mdx │ │ │ │ │ │ ├── start-point-reset.mdx │ │ │ │ │ │ └── start-point.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── start-point-clone-thresholds.mdx │ │ │ │ │ │ ├── start-point-hash.mdx │ │ │ │ │ │ ├── start-point-max-versions.mdx │ │ │ │ │ │ ├── start-point-reset.mdx │ │ │ │ │ │ └── start-point.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── start-point-clone-thresholds.mdx │ │ │ │ │ │ ├── start-point-hash.mdx │ │ │ │ │ │ ├── start-point-max-versions.mdx │ │ │ │ │ │ ├── start-point-reset.mdx │ │ │ │ │ │ └── start-point.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── branch.mdx │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── start-point-clone-thresholds.mdx │ │ │ │ │ │ ├── start-point-hash.mdx │ │ │ │ │ │ ├── start-point-max-versions.mdx │ │ │ │ │ │ ├── start-point-reset.mdx │ │ │ │ │ │ └── start-point.mdx │ │ │ │ ├── continuous-benchmarking │ │ │ │ │ ├── de │ │ │ │ │ │ ├── continuous-benchmarking.1.mdx │ │ │ │ │ │ └── continuous-benchmarking.2.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── continuous-benchmarking.1.mdx │ │ │ │ │ │ └── continuous-benchmarking.2.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── continuous-benchmarking.1.mdx │ │ │ │ │ │ └── continuous-benchmarking.2.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── continuous-benchmarking.1.mdx │ │ │ │ │ │ └── continuous-benchmarking.2.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── continuous-benchmarking.1.mdx │ │ │ │ │ │ └── continuous-benchmarking.2.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── continuous-benchmarking.1.mdx │ │ │ │ │ │ └── continuous-benchmarking.2.mdx │ │ │ │ │ ├── perf-img.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── continuous-benchmarking.1.mdx │ │ │ │ │ │ └── continuous-benchmarking.2.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── continuous-benchmarking.1.mdx │ │ │ │ │ │ └── continuous-benchmarking.2.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── continuous-benchmarking.1.mdx │ │ │ │ │ │ └── continuous-benchmarking.2.mdx │ │ │ │ ├── talks │ │ │ │ │ └── en │ │ │ │ │ │ └── talks.mdx │ │ │ │ └── thresholds │ │ │ │ │ ├── de │ │ │ │ │ ├── err.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multiple-thresholds.mdx │ │ │ │ │ ├── test │ │ │ │ │ │ ├── delta-iqr.mdx │ │ │ │ │ │ ├── iqr.mdx │ │ │ │ │ │ ├── log-normal.mdx │ │ │ │ │ │ ├── percentage.mdx │ │ │ │ │ │ ├── static.mdx │ │ │ │ │ │ ├── t-test.mdx │ │ │ │ │ │ └── z-score.mdx │ │ │ │ │ ├── threshold-lower-boundary.mdx │ │ │ │ │ ├── threshold-max-sample-size.mdx │ │ │ │ │ ├── threshold-measure.mdx │ │ │ │ │ ├── threshold-min-sample-size.mdx │ │ │ │ │ ├── threshold-test.mdx │ │ │ │ │ ├── threshold-upper-boundary.mdx │ │ │ │ │ ├── threshold-window.mdx │ │ │ │ │ └── thresholds-reset.mdx │ │ │ │ │ ├── en │ │ │ │ │ ├── err.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multiple-thresholds.mdx │ │ │ │ │ ├── test │ │ │ │ │ │ ├── delta-iqr.mdx │ │ │ │ │ │ ├── iqr.mdx │ │ │ │ │ │ ├── log-normal.mdx │ │ │ │ │ │ ├── percentage.mdx │ │ │ │ │ │ ├── static.mdx │ │ │ │ │ │ ├── t-test.mdx │ │ │ │ │ │ └── z-score.mdx │ │ │ │ │ ├── threshold-lower-boundary.mdx │ │ │ │ │ ├── threshold-max-sample-size.mdx │ │ │ │ │ ├── threshold-measure.mdx │ │ │ │ │ ├── threshold-min-sample-size.mdx │ │ │ │ │ ├── threshold-test.mdx │ │ │ │ │ ├── threshold-upper-boundary.mdx │ │ │ │ │ ├── threshold-window.mdx │ │ │ │ │ └── thresholds-reset.mdx │ │ │ │ │ ├── es │ │ │ │ │ ├── err.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multiple-thresholds.mdx │ │ │ │ │ ├── test │ │ │ │ │ │ ├── delta-iqr.mdx │ │ │ │ │ │ ├── iqr.mdx │ │ │ │ │ │ ├── log-normal.mdx │ │ │ │ │ │ ├── percentage.mdx │ │ │ │ │ │ ├── static.mdx │ │ │ │ │ │ ├── t-test.mdx │ │ │ │ │ │ └── z-score.mdx │ │ │ │ │ ├── threshold-lower-boundary.mdx │ │ │ │ │ ├── threshold-max-sample-size.mdx │ │ │ │ │ ├── threshold-measure.mdx │ │ │ │ │ ├── threshold-min-sample-size.mdx │ │ │ │ │ ├── threshold-test.mdx │ │ │ │ │ ├── threshold-upper-boundary.mdx │ │ │ │ │ ├── threshold-window.mdx │ │ │ │ │ └── thresholds-reset.mdx │ │ │ │ │ ├── fr │ │ │ │ │ ├── err.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multiple-thresholds.mdx │ │ │ │ │ ├── test │ │ │ │ │ │ ├── delta-iqr.mdx │ │ │ │ │ │ ├── iqr.mdx │ │ │ │ │ │ ├── log-normal.mdx │ │ │ │ │ │ ├── percentage.mdx │ │ │ │ │ │ ├── static.mdx │ │ │ │ │ │ ├── t-test.mdx │ │ │ │ │ │ └── z-score.mdx │ │ │ │ │ ├── threshold-lower-boundary.mdx │ │ │ │ │ ├── threshold-max-sample-size.mdx │ │ │ │ │ ├── threshold-measure.mdx │ │ │ │ │ ├── threshold-min-sample-size.mdx │ │ │ │ │ ├── threshold-test.mdx │ │ │ │ │ ├── threshold-upper-boundary.mdx │ │ │ │ │ ├── threshold-window.mdx │ │ │ │ │ └── thresholds-reset.mdx │ │ │ │ │ ├── ja │ │ │ │ │ ├── err.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multiple-thresholds.mdx │ │ │ │ │ ├── test │ │ │ │ │ │ ├── delta-iqr.mdx │ │ │ │ │ │ ├── iqr.mdx │ │ │ │ │ │ ├── log-normal.mdx │ │ │ │ │ │ ├── percentage.mdx │ │ │ │ │ │ ├── static.mdx │ │ │ │ │ │ ├── t-test.mdx │ │ │ │ │ │ └── z-score.mdx │ │ │ │ │ ├── threshold-lower-boundary.mdx │ │ │ │ │ ├── threshold-max-sample-size.mdx │ │ │ │ │ ├── threshold-measure.mdx │ │ │ │ │ ├── threshold-min-sample-size.mdx │ │ │ │ │ ├── threshold-test.mdx │ │ │ │ │ ├── threshold-upper-boundary.mdx │ │ │ │ │ ├── threshold-window.mdx │ │ │ │ │ └── thresholds-reset.mdx │ │ │ │ │ ├── ko │ │ │ │ │ ├── err.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multiple-thresholds.mdx │ │ │ │ │ ├── test │ │ │ │ │ │ ├── delta-iqr.mdx │ │ │ │ │ │ ├── iqr.mdx │ │ │ │ │ │ ├── log-normal.mdx │ │ │ │ │ │ ├── percentage.mdx │ │ │ │ │ │ ├── static.mdx │ │ │ │ │ │ ├── t-test.mdx │ │ │ │ │ │ └── z-score.mdx │ │ │ │ │ ├── threshold-lower-boundary.mdx │ │ │ │ │ ├── threshold-max-sample-size.mdx │ │ │ │ │ ├── threshold-measure.mdx │ │ │ │ │ ├── threshold-min-sample-size.mdx │ │ │ │ │ ├── threshold-test.mdx │ │ │ │ │ ├── threshold-upper-boundary.mdx │ │ │ │ │ ├── threshold-window.mdx │ │ │ │ │ └── thresholds-reset.mdx │ │ │ │ │ ├── multiple-thresholds-code.mdx │ │ │ │ │ ├── pt │ │ │ │ │ ├── err.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multiple-thresholds.mdx │ │ │ │ │ ├── test │ │ │ │ │ │ ├── delta-iqr.mdx │ │ │ │ │ │ ├── iqr.mdx │ │ │ │ │ │ ├── log-normal.mdx │ │ │ │ │ │ ├── percentage.mdx │ │ │ │ │ │ ├── static.mdx │ │ │ │ │ │ ├── t-test.mdx │ │ │ │ │ │ └── z-score.mdx │ │ │ │ │ ├── threshold-lower-boundary.mdx │ │ │ │ │ ├── threshold-max-sample-size.mdx │ │ │ │ │ ├── threshold-measure.mdx │ │ │ │ │ ├── threshold-min-sample-size.mdx │ │ │ │ │ ├── threshold-test.mdx │ │ │ │ │ ├── threshold-upper-boundary.mdx │ │ │ │ │ ├── threshold-window.mdx │ │ │ │ │ └── thresholds-reset.mdx │ │ │ │ │ ├── ru │ │ │ │ │ ├── err.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multiple-thresholds.mdx │ │ │ │ │ ├── test │ │ │ │ │ │ ├── delta-iqr.mdx │ │ │ │ │ │ ├── iqr.mdx │ │ │ │ │ │ ├── log-normal.mdx │ │ │ │ │ │ ├── percentage.mdx │ │ │ │ │ │ ├── static.mdx │ │ │ │ │ │ ├── t-test.mdx │ │ │ │ │ │ └── z-score.mdx │ │ │ │ │ ├── threshold-lower-boundary.mdx │ │ │ │ │ ├── threshold-max-sample-size.mdx │ │ │ │ │ ├── threshold-measure.mdx │ │ │ │ │ ├── threshold-min-sample-size.mdx │ │ │ │ │ ├── threshold-test.mdx │ │ │ │ │ ├── threshold-upper-boundary.mdx │ │ │ │ │ ├── threshold-window.mdx │ │ │ │ │ └── thresholds-reset.mdx │ │ │ │ │ ├── threshold-code.mdx │ │ │ │ │ └── zh │ │ │ │ │ ├── err.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multiple-thresholds.mdx │ │ │ │ │ ├── test │ │ │ │ │ ├── delta-iqr.mdx │ │ │ │ │ ├── iqr.mdx │ │ │ │ │ ├── log-normal.mdx │ │ │ │ │ ├── percentage.mdx │ │ │ │ │ ├── static.mdx │ │ │ │ │ ├── t-test.mdx │ │ │ │ │ └── z-score.mdx │ │ │ │ │ ├── threshold-lower-boundary.mdx │ │ │ │ │ ├── threshold-max-sample-size.mdx │ │ │ │ │ ├── threshold-measure.mdx │ │ │ │ │ ├── threshold-min-sample-size.mdx │ │ │ │ │ ├── threshold-test.mdx │ │ │ │ │ ├── threshold-upper-boundary.mdx │ │ │ │ │ ├── threshold-window.mdx │ │ │ │ │ └── thresholds-reset.mdx │ │ │ ├── docs-how-to │ │ │ │ ├── claim │ │ │ │ │ ├── de │ │ │ │ │ │ ├── create-an-api-token.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── on-the-fly-projects.mdx │ │ │ │ │ │ └── unclaimed-projects.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── create-an-api-token.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── on-the-fly-projects.mdx │ │ │ │ │ │ └── unclaimed-projects.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── create-an-api-token.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── on-the-fly-projects.mdx │ │ │ │ │ │ └── unclaimed-projects.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── create-an-api-token.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── on-the-fly-projects.mdx │ │ │ │ │ │ └── unclaimed-projects.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── create-an-api-token.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── on-the-fly-projects.mdx │ │ │ │ │ │ └── unclaimed-projects.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── create-an-api-token.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── on-the-fly-projects.mdx │ │ │ │ │ │ └── unclaimed-projects.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── create-an-api-token.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── on-the-fly-projects.mdx │ │ │ │ │ │ └── unclaimed-projects.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── create-an-api-token.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── on-the-fly-projects.mdx │ │ │ │ │ │ └── unclaimed-projects.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── create-an-api-token.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── on-the-fly-projects.mdx │ │ │ │ │ │ └── unclaimed-projects.mdx │ │ │ │ ├── github-actions │ │ │ │ │ ├── base-branch-code.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── base-branch.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── pull-requests-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-run.mdx │ │ │ │ │ │ ├── pull-requests-fork-track.mdx │ │ │ │ │ │ ├── pull-requests-from-forks.mdx │ │ │ │ │ │ └── pull-requests.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── base-branch.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── pull-requests-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-run.mdx │ │ │ │ │ │ ├── pull-requests-fork-track.mdx │ │ │ │ │ │ ├── pull-requests-from-forks.mdx │ │ │ │ │ │ └── pull-requests.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── base-branch.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── pull-requests-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-run.mdx │ │ │ │ │ │ ├── pull-requests-fork-track.mdx │ │ │ │ │ │ ├── pull-requests-from-forks.mdx │ │ │ │ │ │ └── pull-requests.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── base-branch.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── pull-requests-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-run.mdx │ │ │ │ │ │ ├── pull-requests-fork-track.mdx │ │ │ │ │ │ ├── pull-requests-from-forks.mdx │ │ │ │ │ │ └── pull-requests.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── base-branch.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── pull-requests-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-run.mdx │ │ │ │ │ │ ├── pull-requests-fork-track.mdx │ │ │ │ │ │ ├── pull-requests-from-forks.mdx │ │ │ │ │ │ └── pull-requests.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── base-branch.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── pull-requests-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-run.mdx │ │ │ │ │ │ ├── pull-requests-fork-track.mdx │ │ │ │ │ │ ├── pull-requests-from-forks.mdx │ │ │ │ │ │ └── pull-requests.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── base-branch.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── pull-requests-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-run.mdx │ │ │ │ │ │ ├── pull-requests-fork-track.mdx │ │ │ │ │ │ ├── pull-requests-from-forks.mdx │ │ │ │ │ │ └── pull-requests.mdx │ │ │ │ │ ├── pull-requests-closed-code.mdx │ │ │ │ │ ├── pull-requests-code.mdx │ │ │ │ │ ├── pull-requests-fork-closed-code.mdx │ │ │ │ │ ├── pull-requests-fork-reviewer-code.mdx │ │ │ │ │ ├── pull-requests-fork-run-code.mdx │ │ │ │ │ ├── pull-requests-fork-track-code.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── base-branch.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── pull-requests-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-run.mdx │ │ │ │ │ │ ├── pull-requests-fork-track.mdx │ │ │ │ │ │ ├── pull-requests-from-forks.mdx │ │ │ │ │ │ └── pull-requests.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── base-branch.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── pull-requests-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-closed.mdx │ │ │ │ │ │ ├── pull-requests-fork-run.mdx │ │ │ │ │ │ ├── pull-requests-fork-track.mdx │ │ │ │ │ │ ├── pull-requests-from-forks.mdx │ │ │ │ │ │ └── pull-requests.mdx │ │ │ │ ├── gitlab-ci-cd │ │ │ │ │ ├── de │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── merge-requests-closed.mdx │ │ │ │ │ │ ├── merge-requests.mdx │ │ │ │ │ │ └── target-branch.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── merge-requests-closed.mdx │ │ │ │ │ │ ├── merge-requests.mdx │ │ │ │ │ │ └── target-branch.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── merge-requests-closed.mdx │ │ │ │ │ │ ├── merge-requests.mdx │ │ │ │ │ │ └── target-branch.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── merge-requests-closed.mdx │ │ │ │ │ │ ├── merge-requests.mdx │ │ │ │ │ │ └── target-branch.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── merge-requests-closed.mdx │ │ │ │ │ │ ├── merge-requests.mdx │ │ │ │ │ │ └── target-branch.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── merge-requests-closed.mdx │ │ │ │ │ │ ├── merge-requests.mdx │ │ │ │ │ │ └── target-branch.mdx │ │ │ │ │ ├── merge-requests-closed-code.mdx │ │ │ │ │ ├── merge-requests-code.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── merge-requests-closed.mdx │ │ │ │ │ │ ├── merge-requests.mdx │ │ │ │ │ │ └── target-branch.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── merge-requests-closed.mdx │ │ │ │ │ │ ├── merge-requests.mdx │ │ │ │ │ │ └── target-branch.mdx │ │ │ │ │ ├── target-branch-code.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── merge-requests-closed.mdx │ │ │ │ │ │ ├── merge-requests.mdx │ │ │ │ │ │ └── target-branch.mdx │ │ │ │ ├── install-cli │ │ │ │ │ ├── cli-debian.mdx │ │ │ │ │ ├── cli-from-source.mdx │ │ │ │ │ ├── cli-github-actions-version.mdx │ │ │ │ │ ├── cli-github-actions.mdx │ │ │ │ │ ├── cli-other-linux.mdx │ │ │ │ │ ├── cli-unix-script-self-hosted.mdx │ │ │ │ │ ├── cli-windows-script-self-hosted.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── cli-install-github-actions.mdx │ │ │ │ │ │ ├── cli-install-scripts.mdx │ │ │ │ │ │ └── cli-install-source.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── cli-install-github-actions.mdx │ │ │ │ │ │ ├── cli-install-scripts.mdx │ │ │ │ │ │ └── cli-install-source.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── cli-install-github-actions.mdx │ │ │ │ │ │ ├── cli-install-scripts.mdx │ │ │ │ │ │ └── cli-install-source.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── cli-install-github-actions.mdx │ │ │ │ │ │ ├── cli-install-scripts.mdx │ │ │ │ │ │ └── cli-install-source.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── cli-install-github-actions.mdx │ │ │ │ │ │ ├── cli-install-scripts.mdx │ │ │ │ │ │ └── cli-install-source.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── cli-install-github-actions.mdx │ │ │ │ │ │ ├── cli-install-scripts.mdx │ │ │ │ │ │ └── cli-install-source.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── cli-install-github-actions.mdx │ │ │ │ │ │ ├── cli-install-scripts.mdx │ │ │ │ │ │ └── cli-install-source.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── cli-install-github-actions.mdx │ │ │ │ │ │ ├── cli-install-scripts.mdx │ │ │ │ │ │ └── cli-install-source.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── cli-install-github-actions.mdx │ │ │ │ │ │ ├── cli-install-scripts.mdx │ │ │ │ │ │ └── cli-install-source.mdx │ │ │ │ ├── track-benchmarks │ │ │ │ │ ├── de │ │ │ │ │ │ ├── change-point-detection.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── relative-continuous-benchmarking.mdx │ │ │ │ │ │ └── statistical-continuous-benchmarking.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── change-point-detection.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── relative-continuous-benchmarking.mdx │ │ │ │ │ │ └── statistical-continuous-benchmarking.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── change-point-detection.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── relative-continuous-benchmarking.mdx │ │ │ │ │ │ └── statistical-continuous-benchmarking.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── change-point-detection.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── relative-continuous-benchmarking.mdx │ │ │ │ │ │ └── statistical-continuous-benchmarking.mdx │ │ │ │ │ ├── git-checkout-feature.mdx │ │ │ │ │ ├── git-checkout-main.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── change-point-detection.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── relative-continuous-benchmarking.mdx │ │ │ │ │ │ └── statistical-continuous-benchmarking.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── change-point-detection.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── relative-continuous-benchmarking.mdx │ │ │ │ │ │ └── statistical-continuous-benchmarking.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── change-point-detection.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── relative-continuous-benchmarking.mdx │ │ │ │ │ │ └── statistical-continuous-benchmarking.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── change-point-detection.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── relative-continuous-benchmarking.mdx │ │ │ │ │ │ └── statistical-continuous-benchmarking.mdx │ │ │ │ │ ├── run-feature-relative.mdx │ │ │ │ │ ├── run-feature-statistical.mdx │ │ │ │ │ ├── run-main-relative.mdx │ │ │ │ │ ├── run-main-statistical.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── change-point-detection.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── relative-continuous-benchmarking.mdx │ │ │ │ │ │ └── statistical-continuous-benchmarking.mdx │ │ │ │ ├── track-build-time │ │ │ │ │ ├── de │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── track-file-size.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── track-file-size.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── track-file-size.mdx │ │ │ │ │ ├── exec-example.mdx │ │ │ │ │ ├── exec-json-example.mdx │ │ │ │ │ ├── file-size-json.mdx │ │ │ │ │ ├── file-size.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── track-file-size.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── track-file-size.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── track-file-size.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── track-file-size.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── track-file-size.mdx │ │ │ │ │ ├── shell-example.mdx │ │ │ │ │ ├── shell-json-example.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── track-file-size.mdx │ │ │ │ ├── track-custom-benchmarks │ │ │ │ │ ├── bmf-example.mdx │ │ │ │ │ ├── bmf-multi-example.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── multiple-measures.mdx │ │ │ │ │ │ ├── results-file.mdx │ │ │ │ │ │ └── run.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── multiple-measures.mdx │ │ │ │ │ │ ├── results-file.mdx │ │ │ │ │ │ └── run.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── multiple-measures.mdx │ │ │ │ │ │ ├── results-file.mdx │ │ │ │ │ │ └── run.mdx │ │ │ │ │ ├── file-cmd-example.mdx │ │ │ │ │ ├── file-no-cmd-example.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── multiple-measures.mdx │ │ │ │ │ │ ├── results-file.mdx │ │ │ │ │ │ └── run.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── multiple-measures.mdx │ │ │ │ │ │ ├── results-file.mdx │ │ │ │ │ │ └── run.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── multiple-measures.mdx │ │ │ │ │ │ ├── results-file.mdx │ │ │ │ │ │ └── run.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── multiple-measures.mdx │ │ │ │ │ │ ├── results-file.mdx │ │ │ │ │ │ └── run.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── multiple-measures.mdx │ │ │ │ │ │ ├── results-file.mdx │ │ │ │ │ │ └── run.mdx │ │ │ │ │ ├── run-cmd-example.mdx │ │ │ │ │ ├── run-cmd-multi-example.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ ├── multiple-measures.mdx │ │ │ │ │ │ ├── results-file.mdx │ │ │ │ │ │ └── run.mdx │ │ │ │ └── track-file-size │ │ │ │ │ ├── build-time-json.mdx │ │ │ │ │ ├── build-time.mdx │ │ │ │ │ ├── cmd-example.mdx │ │ │ │ │ ├── de │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ └── track-build-time.mdx │ │ │ │ │ ├── en │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ └── track-build-time.mdx │ │ │ │ │ ├── es │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ └── track-build-time.mdx │ │ │ │ │ ├── fr │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ └── track-build-time.mdx │ │ │ │ │ ├── ja │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ └── track-build-time.mdx │ │ │ │ │ ├── json-example.mdx │ │ │ │ │ ├── ko │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ └── track-build-time.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ ├── multi-json-example.mdx │ │ │ │ │ ├── no-cmd-example.mdx │ │ │ │ │ ├── pt │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ └── track-build-time.mdx │ │ │ │ │ ├── ru │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ └── track-build-time.mdx │ │ │ │ │ └── zh │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── multi-example.mdx │ │ │ │ │ └── track-build-time.mdx │ │ │ ├── docs-reference │ │ │ │ ├── bencher-compose │ │ │ │ │ ├── bencher-down-cmd.mdx │ │ │ │ │ ├── bencher-logs-cmd.mdx │ │ │ │ │ ├── bencher-up-cmd.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── api-env.mdx │ │ │ │ │ │ │ ├── api-port.mdx │ │ │ │ │ │ │ ├── api-volume.mdx │ │ │ │ │ │ │ ├── console-env.mdx │ │ │ │ │ │ │ ├── console-port.mdx │ │ │ │ │ │ │ ├── console-volume.mdx │ │ │ │ │ │ │ ├── detach.mdx │ │ │ │ │ │ │ ├── down-service.mdx │ │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ │ ├── logs-service.mdx │ │ │ │ │ │ │ ├── pull.mdx │ │ │ │ │ │ │ ├── tag.mdx │ │ │ │ │ │ │ └── up-service.mdx │ │ │ │ │ │ └── docker-compose.mdx │ │ │ │ │ ├── docker-compose.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── api-env.mdx │ │ │ │ │ │ │ ├── api-port.mdx │ │ │ │ │ │ │ ├── api-volume.mdx │ │ │ │ │ │ │ ├── console-env.mdx │ │ │ │ │ │ │ ├── console-port.mdx │ │ │ │ │ │ │ ├── console-volume.mdx │ │ │ │ │ │ │ ├── detach.mdx │ │ │ │ │ │ │ ├── down-service.mdx │ │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ │ ├── logs-service.mdx │ │ │ │ │ │ │ ├── pull.mdx │ │ │ │ │ │ │ ├── tag.mdx │ │ │ │ │ │ │ └── up-service.mdx │ │ │ │ │ │ └── docker-compose.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── api-env.mdx │ │ │ │ │ │ │ ├── api-port.mdx │ │ │ │ │ │ │ ├── api-volume.mdx │ │ │ │ │ │ │ ├── console-env.mdx │ │ │ │ │ │ │ ├── console-port.mdx │ │ │ │ │ │ │ ├── console-volume.mdx │ │ │ │ │ │ │ ├── detach.mdx │ │ │ │ │ │ │ ├── down-service.mdx │ │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ │ ├── logs-service.mdx │ │ │ │ │ │ │ ├── pull.mdx │ │ │ │ │ │ │ ├── tag.mdx │ │ │ │ │ │ │ └── up-service.mdx │ │ │ │ │ │ └── docker-compose.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── api-env.mdx │ │ │ │ │ │ │ ├── api-port.mdx │ │ │ │ │ │ │ ├── api-volume.mdx │ │ │ │ │ │ │ ├── console-env.mdx │ │ │ │ │ │ │ ├── console-port.mdx │ │ │ │ │ │ │ ├── console-volume.mdx │ │ │ │ │ │ │ ├── detach.mdx │ │ │ │ │ │ │ ├── down-service.mdx │ │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ │ ├── logs-service.mdx │ │ │ │ │ │ │ ├── pull.mdx │ │ │ │ │ │ │ ├── tag.mdx │ │ │ │ │ │ │ └── up-service.mdx │ │ │ │ │ │ └── docker-compose.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── api-env.mdx │ │ │ │ │ │ │ ├── api-port.mdx │ │ │ │ │ │ │ ├── api-volume.mdx │ │ │ │ │ │ │ ├── console-env.mdx │ │ │ │ │ │ │ ├── console-port.mdx │ │ │ │ │ │ │ ├── console-volume.mdx │ │ │ │ │ │ │ ├── detach.mdx │ │ │ │ │ │ │ ├── down-service.mdx │ │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ │ ├── logs-service.mdx │ │ │ │ │ │ │ ├── pull.mdx │ │ │ │ │ │ │ ├── tag.mdx │ │ │ │ │ │ │ └── up-service.mdx │ │ │ │ │ │ └── docker-compose.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── api-env.mdx │ │ │ │ │ │ │ ├── api-port.mdx │ │ │ │ │ │ │ ├── api-volume.mdx │ │ │ │ │ │ │ ├── console-env.mdx │ │ │ │ │ │ │ ├── console-port.mdx │ │ │ │ │ │ │ ├── console-volume.mdx │ │ │ │ │ │ │ ├── detach.mdx │ │ │ │ │ │ │ ├── down-service.mdx │ │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ │ ├── logs-service.mdx │ │ │ │ │ │ │ ├── pull.mdx │ │ │ │ │ │ │ ├── tag.mdx │ │ │ │ │ │ │ └── up-service.mdx │ │ │ │ │ │ └── docker-compose.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── api-env.mdx │ │ │ │ │ │ │ ├── api-port.mdx │ │ │ │ │ │ │ ├── api-volume.mdx │ │ │ │ │ │ │ ├── console-env.mdx │ │ │ │ │ │ │ ├── console-port.mdx │ │ │ │ │ │ │ ├── console-volume.mdx │ │ │ │ │ │ │ ├── detach.mdx │ │ │ │ │ │ │ ├── down-service.mdx │ │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ │ ├── logs-service.mdx │ │ │ │ │ │ │ ├── pull.mdx │ │ │ │ │ │ │ ├── tag.mdx │ │ │ │ │ │ │ └── up-service.mdx │ │ │ │ │ │ └── docker-compose.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── api-env.mdx │ │ │ │ │ │ │ ├── api-port.mdx │ │ │ │ │ │ │ ├── api-volume.mdx │ │ │ │ │ │ │ ├── console-env.mdx │ │ │ │ │ │ │ ├── console-port.mdx │ │ │ │ │ │ │ ├── console-volume.mdx │ │ │ │ │ │ │ ├── detach.mdx │ │ │ │ │ │ │ ├── down-service.mdx │ │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ │ ├── logs-service.mdx │ │ │ │ │ │ │ ├── pull.mdx │ │ │ │ │ │ │ ├── tag.mdx │ │ │ │ │ │ │ └── up-service.mdx │ │ │ │ │ │ └── docker-compose.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── bencher-down.mdx │ │ │ │ │ │ ├── bencher-logs.mdx │ │ │ │ │ │ ├── bencher-up.mdx │ │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── api-env.mdx │ │ │ │ │ │ ├── api-port.mdx │ │ │ │ │ │ ├── api-volume.mdx │ │ │ │ │ │ ├── console-env.mdx │ │ │ │ │ │ ├── console-port.mdx │ │ │ │ │ │ ├── console-volume.mdx │ │ │ │ │ │ ├── detach.mdx │ │ │ │ │ │ ├── down-service.mdx │ │ │ │ │ │ ├── help.mdx │ │ │ │ │ │ ├── logs-service.mdx │ │ │ │ │ │ ├── pull.mdx │ │ │ │ │ │ ├── tag.mdx │ │ │ │ │ │ └── up-service.mdx │ │ │ │ │ │ └── docker-compose.mdx │ │ │ │ ├── bencher-metric-format │ │ │ │ │ ├── bmf-example.mdx │ │ │ │ │ ├── bmf-schema.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── schema.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── schema.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── schema.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── schema.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── schema.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── schema.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── schema.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── schema.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── bencher-mock.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── intro.mdx │ │ │ │ │ │ └── schema.mdx │ │ │ │ ├── changelog │ │ │ │ │ └── en │ │ │ │ │ │ └── changelog.mdx │ │ │ │ ├── console-config │ │ │ │ │ ├── de │ │ │ │ │ │ ├── console-url.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── console-url.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── console-url.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── console-url.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── console-url.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── console-url.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── console-url.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── console-url.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── console-url.mdx │ │ │ │ │ │ ├── https.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ ├── prior-art │ │ │ │ │ └── en │ │ │ │ │ │ └── prior-art.mdx │ │ │ │ ├── roadmap │ │ │ │ │ └── en │ │ │ │ │ │ └── roadmap.mdx │ │ │ │ └── server-config │ │ │ │ │ ├── de │ │ │ │ │ ├── console.mdx │ │ │ │ │ ├── database.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── logging.mdx │ │ │ │ │ ├── plus-disaster-recovery.mdx │ │ │ │ │ ├── plus-github.mdx │ │ │ │ │ ├── plus-google.mdx │ │ │ │ │ ├── plus-rate-limiting.mdx │ │ │ │ │ ├── plus-stats.mdx │ │ │ │ │ ├── plus.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── server.mdx │ │ │ │ │ └── smtp.mdx │ │ │ │ │ ├── en │ │ │ │ │ ├── console.mdx │ │ │ │ │ ├── database.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── logging.mdx │ │ │ │ │ ├── plus-disaster-recovery.mdx │ │ │ │ │ ├── plus-github.mdx │ │ │ │ │ ├── plus-google.mdx │ │ │ │ │ ├── plus-rate-limiting.mdx │ │ │ │ │ ├── plus-stats.mdx │ │ │ │ │ ├── plus.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── server.mdx │ │ │ │ │ └── smtp.mdx │ │ │ │ │ ├── es │ │ │ │ │ ├── console.mdx │ │ │ │ │ ├── database.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── logging.mdx │ │ │ │ │ ├── plus-disaster-recovery.mdx │ │ │ │ │ ├── plus-github.mdx │ │ │ │ │ ├── plus-google.mdx │ │ │ │ │ ├── plus-rate-limiting.mdx │ │ │ │ │ ├── plus-stats.mdx │ │ │ │ │ ├── plus.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── server.mdx │ │ │ │ │ └── smtp.mdx │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── fr │ │ │ │ │ ├── console.mdx │ │ │ │ │ ├── database.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── logging.mdx │ │ │ │ │ ├── plus-disaster-recovery.mdx │ │ │ │ │ ├── plus-github.mdx │ │ │ │ │ ├── plus-google.mdx │ │ │ │ │ ├── plus-rate-limiting.mdx │ │ │ │ │ ├── plus-stats.mdx │ │ │ │ │ ├── plus.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── server.mdx │ │ │ │ │ └── smtp.mdx │ │ │ │ │ ├── ja │ │ │ │ │ ├── console.mdx │ │ │ │ │ ├── database.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── logging.mdx │ │ │ │ │ ├── plus-disaster-recovery.mdx │ │ │ │ │ ├── plus-github.mdx │ │ │ │ │ ├── plus-google.mdx │ │ │ │ │ ├── plus-rate-limiting.mdx │ │ │ │ │ ├── plus-stats.mdx │ │ │ │ │ ├── plus.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── server.mdx │ │ │ │ │ └── smtp.mdx │ │ │ │ │ ├── ko │ │ │ │ │ ├── console.mdx │ │ │ │ │ ├── database.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── logging.mdx │ │ │ │ │ ├── plus-disaster-recovery.mdx │ │ │ │ │ ├── plus-github.mdx │ │ │ │ │ ├── plus-google.mdx │ │ │ │ │ ├── plus-rate-limiting.mdx │ │ │ │ │ ├── plus-stats.mdx │ │ │ │ │ ├── plus.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── server.mdx │ │ │ │ │ └── smtp.mdx │ │ │ │ │ ├── pt │ │ │ │ │ ├── console.mdx │ │ │ │ │ ├── database.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── logging.mdx │ │ │ │ │ ├── plus-disaster-recovery.mdx │ │ │ │ │ ├── plus-github.mdx │ │ │ │ │ ├── plus-google.mdx │ │ │ │ │ ├── plus-rate-limiting.mdx │ │ │ │ │ ├── plus-stats.mdx │ │ │ │ │ ├── plus.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── server.mdx │ │ │ │ │ └── smtp.mdx │ │ │ │ │ ├── ru │ │ │ │ │ ├── console.mdx │ │ │ │ │ ├── database.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── logging.mdx │ │ │ │ │ ├── plus-disaster-recovery.mdx │ │ │ │ │ ├── plus-github.mdx │ │ │ │ │ ├── plus-google.mdx │ │ │ │ │ ├── plus-rate-limiting.mdx │ │ │ │ │ ├── plus-stats.mdx │ │ │ │ │ ├── plus.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── server.mdx │ │ │ │ │ └── smtp.mdx │ │ │ │ │ └── zh │ │ │ │ │ ├── console.mdx │ │ │ │ │ ├── database.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── logging.mdx │ │ │ │ │ ├── plus-disaster-recovery.mdx │ │ │ │ │ ├── plus-github.mdx │ │ │ │ │ ├── plus-google.mdx │ │ │ │ │ ├── plus-rate-limiting.mdx │ │ │ │ │ ├── plus-stats.mdx │ │ │ │ │ ├── plus.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── server.mdx │ │ │ │ │ └── smtp.mdx │ │ │ ├── docs-tutorial │ │ │ │ ├── docker │ │ │ │ │ ├── bencher-run-output.mdx │ │ │ │ │ ├── bencher-up-output.mdx │ │ │ │ │ ├── de │ │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ │ ├── install-docker.mdx │ │ │ │ │ │ ├── run-bencher-up.mdx │ │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── docker-version-output.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ │ ├── install-docker.mdx │ │ │ │ │ │ ├── run-bencher-up.mdx │ │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ │ ├── install-docker.mdx │ │ │ │ │ │ ├── run-bencher-up.mdx │ │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ │ ├── install-docker.mdx │ │ │ │ │ │ ├── run-bencher-up.mdx │ │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ │ ├── install-docker.mdx │ │ │ │ │ │ ├── run-bencher-up.mdx │ │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ │ ├── install-docker.mdx │ │ │ │ │ │ ├── run-bencher-up.mdx │ │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ │ ├── install-docker.mdx │ │ │ │ │ │ ├── run-bencher-up.mdx │ │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ │ ├── install-docker.mdx │ │ │ │ │ │ ├── run-bencher-up.mdx │ │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ │ ├── install-docker.mdx │ │ │ │ │ │ ├── run-bencher-up.mdx │ │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ └── quick-start │ │ │ │ │ ├── bencher-run-output.mdx │ │ │ │ │ ├── bencher-version-output.mdx │ │ │ │ │ ├── de │ │ │ │ │ ├── benchmark-harness.mdx │ │ │ │ │ ├── install-bencher-cli.mdx │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── en │ │ │ │ │ ├── benchmark-harness.mdx │ │ │ │ │ ├── install-bencher-cli.mdx │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── es │ │ │ │ │ ├── benchmark-harness.mdx │ │ │ │ │ ├── install-bencher-cli.mdx │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── fr │ │ │ │ │ ├── benchmark-harness.mdx │ │ │ │ │ ├── install-bencher-cli.mdx │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── ja │ │ │ │ │ ├── benchmark-harness.mdx │ │ │ │ │ ├── install-bencher-cli.mdx │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── ko │ │ │ │ │ ├── benchmark-harness.mdx │ │ │ │ │ ├── install-bencher-cli.mdx │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── pt │ │ │ │ │ ├── benchmark-harness.mdx │ │ │ │ │ ├── install-bencher-cli.mdx │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ ├── ru │ │ │ │ │ ├── benchmark-harness.mdx │ │ │ │ │ ├── install-bencher-cli.mdx │ │ │ │ │ └── track-benchmarks.mdx │ │ │ │ │ └── zh │ │ │ │ │ ├── benchmark-harness.mdx │ │ │ │ │ ├── install-bencher-cli.mdx │ │ │ │ │ └── track-benchmarks.mdx │ │ │ ├── engineering │ │ │ │ ├── engineering-review-2025 │ │ │ │ │ ├── de │ │ │ │ │ │ ├── api-client.mdx │ │ │ │ │ │ ├── backend-hosting.mdx │ │ │ │ │ │ ├── backend-language.mdx │ │ │ │ │ │ ├── backend.mdx │ │ │ │ │ │ ├── cli-library.mdx │ │ │ │ │ │ ├── cli.mdx │ │ │ │ │ │ ├── conclusion.mdx │ │ │ │ │ │ ├── continuous-integration.mdx │ │ │ │ │ │ ├── database-driver.mdx │ │ │ │ │ │ ├── database.mdx │ │ │ │ │ │ ├── development-environment.mdx │ │ │ │ │ │ ├── development.mdx │ │ │ │ │ │ ├── frontend-framework.mdx │ │ │ │ │ │ ├── frontend-hosting.mdx │ │ │ │ │ │ ├── frontend-language.mdx │ │ │ │ │ │ ├── frontend-library.mdx │ │ │ │ │ │ ├── frontend.mdx │ │ │ │ │ │ ├── http-server-framework.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── en │ │ │ │ │ │ ├── api-client.mdx │ │ │ │ │ │ ├── backend-hosting.mdx │ │ │ │ │ │ ├── backend-language.mdx │ │ │ │ │ │ ├── backend.mdx │ │ │ │ │ │ ├── cli-library.mdx │ │ │ │ │ │ ├── cli.mdx │ │ │ │ │ │ ├── conclusion.mdx │ │ │ │ │ │ ├── continuous-integration.mdx │ │ │ │ │ │ ├── database-driver.mdx │ │ │ │ │ │ ├── database.mdx │ │ │ │ │ │ ├── development-environment.mdx │ │ │ │ │ │ ├── development.mdx │ │ │ │ │ │ ├── frontend-framework.mdx │ │ │ │ │ │ ├── frontend-hosting.mdx │ │ │ │ │ │ ├── frontend-language.mdx │ │ │ │ │ │ ├── frontend-library.mdx │ │ │ │ │ │ ├── frontend.mdx │ │ │ │ │ │ ├── http-server-framework.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── es │ │ │ │ │ │ ├── api-client.mdx │ │ │ │ │ │ ├── backend-hosting.mdx │ │ │ │ │ │ ├── backend-language.mdx │ │ │ │ │ │ ├── backend.mdx │ │ │ │ │ │ ├── cli-library.mdx │ │ │ │ │ │ ├── cli.mdx │ │ │ │ │ │ ├── conclusion.mdx │ │ │ │ │ │ ├── continuous-integration.mdx │ │ │ │ │ │ ├── database-driver.mdx │ │ │ │ │ │ ├── database.mdx │ │ │ │ │ │ ├── development-environment.mdx │ │ │ │ │ │ ├── development.mdx │ │ │ │ │ │ ├── frontend-framework.mdx │ │ │ │ │ │ ├── frontend-hosting.mdx │ │ │ │ │ │ ├── frontend-language.mdx │ │ │ │ │ │ ├── frontend-library.mdx │ │ │ │ │ │ ├── frontend.mdx │ │ │ │ │ │ ├── http-server-framework.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── api-client.mdx │ │ │ │ │ │ ├── backend-hosting.mdx │ │ │ │ │ │ ├── backend-language.mdx │ │ │ │ │ │ ├── backend.mdx │ │ │ │ │ │ ├── cli-library.mdx │ │ │ │ │ │ ├── cli.mdx │ │ │ │ │ │ ├── conclusion.mdx │ │ │ │ │ │ ├── continuous-integration.mdx │ │ │ │ │ │ ├── database-driver.mdx │ │ │ │ │ │ ├── database.mdx │ │ │ │ │ │ ├── development-environment.mdx │ │ │ │ │ │ ├── development.mdx │ │ │ │ │ │ ├── frontend-framework.mdx │ │ │ │ │ │ ├── frontend-hosting.mdx │ │ │ │ │ │ ├── frontend-language.mdx │ │ │ │ │ │ ├── frontend-library.mdx │ │ │ │ │ │ ├── frontend.mdx │ │ │ │ │ │ ├── http-server-framework.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── api-client.mdx │ │ │ │ │ │ ├── backend-hosting.mdx │ │ │ │ │ │ ├── backend-language.mdx │ │ │ │ │ │ ├── backend.mdx │ │ │ │ │ │ ├── cli-library.mdx │ │ │ │ │ │ ├── cli.mdx │ │ │ │ │ │ ├── conclusion.mdx │ │ │ │ │ │ ├── continuous-integration.mdx │ │ │ │ │ │ ├── database-driver.mdx │ │ │ │ │ │ ├── database.mdx │ │ │ │ │ │ ├── development-environment.mdx │ │ │ │ │ │ ├── development.mdx │ │ │ │ │ │ ├── frontend-framework.mdx │ │ │ │ │ │ ├── frontend-hosting.mdx │ │ │ │ │ │ ├── frontend-language.mdx │ │ │ │ │ │ ├── frontend-library.mdx │ │ │ │ │ │ ├── frontend.mdx │ │ │ │ │ │ ├── http-server-framework.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── api-client.mdx │ │ │ │ │ │ ├── backend-hosting.mdx │ │ │ │ │ │ ├── backend-language.mdx │ │ │ │ │ │ ├── backend.mdx │ │ │ │ │ │ ├── cli-library.mdx │ │ │ │ │ │ ├── cli.mdx │ │ │ │ │ │ ├── conclusion.mdx │ │ │ │ │ │ ├── continuous-integration.mdx │ │ │ │ │ │ ├── database-driver.mdx │ │ │ │ │ │ ├── database.mdx │ │ │ │ │ │ ├── development-environment.mdx │ │ │ │ │ │ ├── development.mdx │ │ │ │ │ │ ├── frontend-framework.mdx │ │ │ │ │ │ ├── frontend-hosting.mdx │ │ │ │ │ │ ├── frontend-language.mdx │ │ │ │ │ │ ├── frontend-library.mdx │ │ │ │ │ │ ├── frontend.mdx │ │ │ │ │ │ ├── http-server-framework.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── api-client.mdx │ │ │ │ │ │ ├── backend-hosting.mdx │ │ │ │ │ │ ├── backend-language.mdx │ │ │ │ │ │ ├── backend.mdx │ │ │ │ │ │ ├── cli-library.mdx │ │ │ │ │ │ ├── cli.mdx │ │ │ │ │ │ ├── conclusion.mdx │ │ │ │ │ │ ├── continuous-integration.mdx │ │ │ │ │ │ ├── database-driver.mdx │ │ │ │ │ │ ├── database.mdx │ │ │ │ │ │ ├── development-environment.mdx │ │ │ │ │ │ ├── development.mdx │ │ │ │ │ │ ├── frontend-framework.mdx │ │ │ │ │ │ ├── frontend-hosting.mdx │ │ │ │ │ │ ├── frontend-language.mdx │ │ │ │ │ │ ├── frontend-library.mdx │ │ │ │ │ │ ├── frontend.mdx │ │ │ │ │ │ ├── http-server-framework.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── api-client.mdx │ │ │ │ │ │ ├── backend-hosting.mdx │ │ │ │ │ │ ├── backend-language.mdx │ │ │ │ │ │ ├── backend.mdx │ │ │ │ │ │ ├── cli-library.mdx │ │ │ │ │ │ ├── cli.mdx │ │ │ │ │ │ ├── conclusion.mdx │ │ │ │ │ │ ├── continuous-integration.mdx │ │ │ │ │ │ ├── database-driver.mdx │ │ │ │ │ │ ├── database.mdx │ │ │ │ │ │ ├── development-environment.mdx │ │ │ │ │ │ ├── development.mdx │ │ │ │ │ │ ├── frontend-framework.mdx │ │ │ │ │ │ ├── frontend-hosting.mdx │ │ │ │ │ │ ├── frontend-language.mdx │ │ │ │ │ │ ├── frontend-library.mdx │ │ │ │ │ │ ├── frontend.mdx │ │ │ │ │ │ ├── http-server-framework.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ │ └── zh │ │ │ │ │ │ ├── api-client.mdx │ │ │ │ │ │ ├── backend-hosting.mdx │ │ │ │ │ │ ├── backend-language.mdx │ │ │ │ │ │ ├── backend.mdx │ │ │ │ │ │ ├── cli-library.mdx │ │ │ │ │ │ ├── cli.mdx │ │ │ │ │ │ ├── conclusion.mdx │ │ │ │ │ │ ├── continuous-integration.mdx │ │ │ │ │ │ ├── database-driver.mdx │ │ │ │ │ │ ├── database.mdx │ │ │ │ │ │ ├── development-environment.mdx │ │ │ │ │ │ ├── development.mdx │ │ │ │ │ │ ├── frontend-framework.mdx │ │ │ │ │ │ ├── frontend-hosting.mdx │ │ │ │ │ │ ├── frontend-language.mdx │ │ │ │ │ │ ├── frontend-library.mdx │ │ │ │ │ │ ├── frontend.mdx │ │ │ │ │ │ ├── http-server-framework.mdx │ │ │ │ │ │ └── intro.mdx │ │ │ │ └── sqlite-performance-tuning │ │ │ │ │ ├── bonus-bug-rust-left-join.mdx │ │ │ │ │ ├── bonus-bug-rust-schema.mdx │ │ │ │ │ ├── bonus-bug-sql-fix.mdx │ │ │ │ │ ├── bonus-bug-sql-issue.mdx │ │ │ │ │ ├── bonus-bug-sql.mdx │ │ │ │ │ ├── boundary-table.mdx │ │ │ │ │ ├── de │ │ │ │ │ ├── addendum-on-dogfooding.mdx │ │ │ │ │ ├── background.mdx │ │ │ │ │ ├── bonus-bug.mdx │ │ │ │ │ ├── from-orm-to-sql-query.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── materialized-view.mdx │ │ │ │ │ ├── sqlite-expert.mdx │ │ │ │ │ ├── sqlite-query-planner.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── diesel-debug-query.mdx │ │ │ │ │ ├── diesel-sql.mdx │ │ │ │ │ ├── en │ │ │ │ │ ├── addendum-on-dogfooding.mdx │ │ │ │ │ ├── background.mdx │ │ │ │ │ ├── bonus-bug.mdx │ │ │ │ │ ├── from-orm-to-sql-query.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── sqlite-expert.mdx │ │ │ │ │ ├── sqlite-query-planner.mdx │ │ │ │ │ ├── sqlite-view.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── es │ │ │ │ │ ├── addendum-on-dogfooding.mdx │ │ │ │ │ ├── background.mdx │ │ │ │ │ ├── bonus-bug.mdx │ │ │ │ │ ├── from-orm-to-sql-query.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── materialized-view.mdx │ │ │ │ │ ├── sqlite-expert.mdx │ │ │ │ │ ├── sqlite-query-planner.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── fr │ │ │ │ │ ├── addendum-on-dogfooding.mdx │ │ │ │ │ ├── background.mdx │ │ │ │ │ ├── bonus-bug.mdx │ │ │ │ │ ├── from-orm-to-sql-query.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── materialized-view.mdx │ │ │ │ │ ├── sqlite-expert.mdx │ │ │ │ │ ├── sqlite-query-planner.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── ja │ │ │ │ │ ├── addendum-on-dogfooding.mdx │ │ │ │ │ ├── background.mdx │ │ │ │ │ ├── bonus-bug.mdx │ │ │ │ │ ├── from-orm-to-sql-query.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── materialized-view.mdx │ │ │ │ │ ├── sqlite-expert.mdx │ │ │ │ │ ├── sqlite-query-planner.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── ko │ │ │ │ │ ├── addendum-on-dogfooding.mdx │ │ │ │ │ ├── background.mdx │ │ │ │ │ ├── bonus-bug.mdx │ │ │ │ │ ├── from-orm-to-sql-query.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── materialized-view.mdx │ │ │ │ │ ├── sqlite-expert.mdx │ │ │ │ │ ├── sqlite-query-planner.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── metric-boundary-view.mdx │ │ │ │ │ ├── metric-table.mdx │ │ │ │ │ ├── pt │ │ │ │ │ ├── addendum-on-dogfooding.mdx │ │ │ │ │ ├── background.mdx │ │ │ │ │ ├── bonus-bug.mdx │ │ │ │ │ ├── from-orm-to-sql-query.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── materialized-view.mdx │ │ │ │ │ ├── sqlite-expert.mdx │ │ │ │ │ ├── sqlite-query-planner.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── query-time-after.mdx │ │ │ │ │ ├── query-time-before.mdx │ │ │ │ │ ├── ru │ │ │ │ │ ├── addendum-on-dogfooding.mdx │ │ │ │ │ ├── background.mdx │ │ │ │ │ ├── bonus-bug.mdx │ │ │ │ │ ├── from-orm-to-sql-query.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── materialized-view.mdx │ │ │ │ │ ├── sqlite-expert.mdx │ │ │ │ │ ├── sqlite-query-planner.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ │ │ ├── rustls-embed.mdx │ │ │ │ │ ├── sqlite-expert-output.mdx │ │ │ │ │ ├── sqlite-indexes.mdx │ │ │ │ │ ├── sqlite-new-query-plan.mdx │ │ │ │ │ ├── sqlite-query-plan.mdx │ │ │ │ │ └── zh │ │ │ │ │ ├── addendum-on-dogfooding.mdx │ │ │ │ │ ├── background.mdx │ │ │ │ │ ├── bonus-bug.mdx │ │ │ │ │ ├── from-orm-to-sql-query.mdx │ │ │ │ │ ├── intro.mdx │ │ │ │ │ ├── materialized-view.mdx │ │ │ │ │ ├── sqlite-expert.mdx │ │ │ │ │ ├── sqlite-query-planner.mdx │ │ │ │ │ └── wrap-up.mdx │ │ │ ├── general │ │ │ │ ├── api-images.mdx │ │ │ │ ├── cli-packages.mdx │ │ │ │ ├── cli-pre-built-bins.mdx │ │ │ │ ├── cli-unix-script-version.mdx │ │ │ │ ├── cli-unix-script.mdx │ │ │ │ ├── cli-windows-script-version.mdx │ │ │ │ ├── cli-windows-script.mdx │ │ │ │ ├── console-images.mdx │ │ │ │ ├── de │ │ │ │ │ └── bencher-intro.mdx │ │ │ │ ├── en │ │ │ │ │ ├── bencher-intro.mdx │ │ │ │ │ └── release.md │ │ │ │ ├── es │ │ │ │ │ └── bencher-intro.mdx │ │ │ │ ├── fr │ │ │ │ │ └── bencher-intro.mdx │ │ │ │ ├── ja │ │ │ │ │ └── bencher-intro.mdx │ │ │ │ ├── ko │ │ │ │ │ └── bencher-intro.mdx │ │ │ │ ├── pt │ │ │ │ │ └── bencher-intro.mdx │ │ │ │ ├── ru │ │ │ │ │ └── bencher-intro.mdx │ │ │ │ └── zh │ │ │ │ │ └── bencher-intro.mdx │ │ │ ├── learn │ │ │ │ ├── de │ │ │ │ │ └── bencher-footer.mdx │ │ │ │ ├── en │ │ │ │ │ └── bencher-footer.mdx │ │ │ │ ├── es │ │ │ │ │ └── bencher-footer.mdx │ │ │ │ ├── fr │ │ │ │ │ └── bencher-footer.mdx │ │ │ │ ├── ja │ │ │ │ │ └── bencher-footer.mdx │ │ │ │ ├── ko │ │ │ │ │ └── bencher-footer.mdx │ │ │ │ ├── pt │ │ │ │ │ └── bencher-footer.mdx │ │ │ │ ├── ru │ │ │ │ │ └── bencher-footer.mdx │ │ │ │ └── zh │ │ │ │ │ └── bencher-footer.mdx │ │ │ ├── scrap │ │ │ │ └── .gitignore │ │ │ ├── track-in-ci-cpp │ │ │ │ ├── cpp-build-time.mdx │ │ │ │ └── cpp-file-size.mdx │ │ │ ├── track-in-ci-python │ │ │ │ ├── python-build-time.mdx │ │ │ │ └── python-file-size.mdx │ │ │ ├── track-in-ci-rust │ │ │ │ ├── cargo-bench-custom.mdx │ │ │ │ ├── cargo-build-build-time.mdx │ │ │ │ └── cargo-build-file-size.mdx │ │ │ └── track-in-ci │ │ │ │ ├── de │ │ │ │ ├── binary-size-intro.mdx │ │ │ │ ├── binary-size-steps.mdx │ │ │ │ ├── compile-time-intro.mdx │ │ │ │ ├── compile-time-steps.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── steps-for-bencher-cloud.mdx │ │ │ │ ├── steps-for-bencher-self-hosted.mdx │ │ │ │ └── steps.mdx │ │ │ │ ├── en │ │ │ │ ├── binary-size-intro.mdx │ │ │ │ ├── binary-size-steps.mdx │ │ │ │ ├── compile-time-intro.mdx │ │ │ │ ├── compile-time-steps.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── steps-for-bencher-cloud.mdx │ │ │ │ ├── steps-for-bencher-self-hosted.mdx │ │ │ │ └── steps.mdx │ │ │ │ ├── es │ │ │ │ ├── binary-size-intro.mdx │ │ │ │ ├── binary-size-steps.mdx │ │ │ │ ├── compile-time-intro.mdx │ │ │ │ ├── compile-time-steps.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── steps-for-bencher-cloud.mdx │ │ │ │ ├── steps-for-bencher-self-hosted.mdx │ │ │ │ └── steps.mdx │ │ │ │ ├── fr │ │ │ │ ├── binary-size-intro.mdx │ │ │ │ ├── binary-size-steps.mdx │ │ │ │ ├── compile-time-intro.mdx │ │ │ │ ├── compile-time-steps.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── steps-for-bencher-cloud.mdx │ │ │ │ ├── steps-for-bencher-self-hosted.mdx │ │ │ │ └── steps.mdx │ │ │ │ ├── ja │ │ │ │ ├── binary-size-intro.mdx │ │ │ │ ├── binary-size-steps.mdx │ │ │ │ ├── compile-time-intro.mdx │ │ │ │ ├── compile-time-steps.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── steps-for-bencher-cloud.mdx │ │ │ │ ├── steps-for-bencher-self-hosted.mdx │ │ │ │ └── steps.mdx │ │ │ │ ├── ko │ │ │ │ ├── binary-size-intro.mdx │ │ │ │ ├── binary-size-steps.mdx │ │ │ │ ├── compile-time-intro.mdx │ │ │ │ ├── compile-time-steps.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── steps-for-bencher-cloud.mdx │ │ │ │ ├── steps-for-bencher-self-hosted.mdx │ │ │ │ └── steps.mdx │ │ │ │ ├── pt │ │ │ │ ├── binary-size-intro.mdx │ │ │ │ ├── binary-size-steps.mdx │ │ │ │ ├── compile-time-intro.mdx │ │ │ │ ├── compile-time-steps.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── steps-for-bencher-cloud.mdx │ │ │ │ ├── steps-for-bencher-self-hosted.mdx │ │ │ │ └── steps.mdx │ │ │ │ ├── ru │ │ │ │ ├── binary-size-intro.mdx │ │ │ │ ├── binary-size-steps.mdx │ │ │ │ ├── compile-time-intro.mdx │ │ │ │ ├── compile-time-steps.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── steps-for-bencher-cloud.mdx │ │ │ │ ├── steps-for-bencher-self-hosted.mdx │ │ │ │ └── steps.mdx │ │ │ │ └── zh │ │ │ │ ├── binary-size-intro.mdx │ │ │ │ ├── binary-size-steps.mdx │ │ │ │ ├── compile-time-intro.mdx │ │ │ │ ├── compile-time-steps.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── steps-for-bencher-cloud.mdx │ │ │ │ ├── steps-for-bencher-self-hosted.mdx │ │ │ │ └── steps.mdx │ │ ├── components │ │ │ ├── adapter │ │ │ │ ├── BencherRun.astro │ │ │ │ ├── BencherRunInner.tsx │ │ │ │ ├── BenchmarkHarness.astro │ │ │ │ ├── BenchmarkHarnessFallback.tsx │ │ │ │ ├── BenchmarkHarnessInner.tsx │ │ │ │ ├── SelectedAdapter.astro │ │ │ │ ├── SelectedAdapterInner.tsx │ │ │ │ ├── adapter.ts │ │ │ │ ├── name.ts │ │ │ │ └── util.tsx │ │ │ ├── auth │ │ │ │ ├── AuthForm.tsx │ │ │ │ ├── AuthOAuth.tsx │ │ │ │ ├── AuthOverride.tsx │ │ │ │ ├── AuthRedirect.tsx │ │ │ │ ├── ConfirmForm.tsx │ │ │ │ ├── LoginForm.tsx │ │ │ │ ├── Logout.tsx │ │ │ │ ├── OAuthFrom.tsx │ │ │ │ ├── SignupForm.tsx │ │ │ │ ├── auth.tsx │ │ │ │ └── authFields.tsx │ │ │ ├── console │ │ │ │ ├── billing │ │ │ │ │ ├── BillingHeader.tsx │ │ │ │ │ ├── BillingPanel.tsx │ │ │ │ │ └── plan │ │ │ │ │ │ ├── BillingForm.tsx │ │ │ │ │ │ ├── Checkout.tsx │ │ │ │ │ │ ├── PaymentMethod.tsx │ │ │ │ │ │ └── Pricing.tsx │ │ │ │ ├── deck │ │ │ │ │ ├── DeckPanel.tsx │ │ │ │ │ ├── FallbackDeckPanel.astro │ │ │ │ │ ├── hand │ │ │ │ │ │ ├── ArchiveButton.tsx │ │ │ │ │ │ ├── ArchivedButton.tsx │ │ │ │ │ │ ├── Deck.tsx │ │ │ │ │ │ ├── DeckButton.tsx │ │ │ │ │ │ ├── DeleteButton.tsx │ │ │ │ │ │ ├── HeadReplacedButton.tsx │ │ │ │ │ │ ├── ModelReplacedButton.tsx │ │ │ │ │ │ ├── RawButton.tsx │ │ │ │ │ │ ├── RemoveModelButton.tsx │ │ │ │ │ │ └── card │ │ │ │ │ │ │ ├── CardConfig.tsx │ │ │ │ │ │ │ ├── DeckCard.tsx │ │ │ │ │ │ │ ├── FieldCard.tsx │ │ │ │ │ │ │ ├── ReportCard.tsx │ │ │ │ │ │ │ ├── ReportTableCard.tsx │ │ │ │ │ │ │ ├── ThresholdTableCard.tsx │ │ │ │ │ │ │ ├── UpdateCard.tsx │ │ │ │ │ │ │ └── ViewCard.tsx │ │ │ │ │ └── header │ │ │ │ │ │ ├── ConsoleButton.tsx │ │ │ │ │ │ ├── DeckHeader.tsx │ │ │ │ │ │ ├── DeckHeaderButton.tsx │ │ │ │ │ │ ├── PerfButton.tsx │ │ │ │ │ │ └── StatusButton.tsx │ │ │ │ ├── help │ │ │ │ │ ├── AuthHelp.tsx │ │ │ │ │ ├── Help.astro │ │ │ │ │ ├── HelpHeader.tsx │ │ │ │ │ └── HelpPanel.tsx │ │ │ │ ├── menu │ │ │ │ │ ├── OrgFallbackMenu.tsx │ │ │ │ │ ├── OrgMenu.tsx │ │ │ │ │ ├── OrgMenuInner.tsx │ │ │ │ │ ├── ProjectFallbackMenu.tsx │ │ │ │ │ ├── ProjectMenu.tsx │ │ │ │ │ ├── ProjectMenuInner.tsx │ │ │ │ │ ├── UserFallbackMenu.tsx │ │ │ │ │ ├── UserMenu.tsx │ │ │ │ │ └── UserMenuInner.tsx │ │ │ │ ├── onboard │ │ │ │ │ ├── CopyButton.tsx │ │ │ │ │ ├── OnboardInvite.tsx │ │ │ │ │ ├── OnboardPlan.tsx │ │ │ │ │ ├── OnboardProject.tsx │ │ │ │ │ ├── OnboardRun.tsx │ │ │ │ │ ├── OnboardSteps.tsx │ │ │ │ │ ├── OnboardStepsFallback.tsx │ │ │ │ │ ├── OnboardStepsInner.tsx │ │ │ │ │ └── OnboardToken.tsx │ │ │ │ ├── perf │ │ │ │ │ ├── ClaimBanner.tsx │ │ │ │ │ ├── FallbackPerfPanel.astro │ │ │ │ │ ├── PerfFrame.tsx │ │ │ │ │ ├── PerfPanel.tsx │ │ │ │ │ ├── header │ │ │ │ │ │ ├── PerfHeader.tsx │ │ │ │ │ │ ├── PinModal.tsx │ │ │ │ │ │ └── ShareModal.tsx │ │ │ │ │ └── plot │ │ │ │ │ │ ├── PerfPlot.tsx │ │ │ │ │ │ ├── Plot.tsx │ │ │ │ │ │ ├── PlotHeader.tsx │ │ │ │ │ │ ├── PlotInit.tsx │ │ │ │ │ │ ├── key │ │ │ │ │ │ └── PlotKey.tsx │ │ │ │ │ │ ├── line │ │ │ │ │ │ ├── LinePlot.tsx │ │ │ │ │ │ └── tooltip.ts │ │ │ │ │ │ ├── tab │ │ │ │ │ │ ├── DimensionTab.tsx │ │ │ │ │ │ ├── PlotTab.tsx │ │ │ │ │ │ ├── PlotsTab.tsx │ │ │ │ │ │ ├── ReportsTab.tsx │ │ │ │ │ │ └── Tab.tsx │ │ │ │ │ │ └── util.tsx │ │ │ │ ├── plots │ │ │ │ │ ├── FallbackPlot.tsx │ │ │ │ │ ├── FallbackPlots.tsx │ │ │ │ │ ├── FallbackPlotsPanel.tsx │ │ │ │ │ ├── Pinned.tsx │ │ │ │ │ ├── PinnedFrame.tsx │ │ │ │ │ ├── PinnedPlot.tsx │ │ │ │ │ ├── PlotsHeader.tsx │ │ │ │ │ ├── PlotsPanel.tsx │ │ │ │ │ └── util.ts │ │ │ │ ├── poster │ │ │ │ │ ├── Poster.tsx │ │ │ │ │ ├── PosterHeader.tsx │ │ │ │ │ └── PosterPanel.tsx │ │ │ │ ├── redirects │ │ │ │ │ ├── AnonRedirect.tsx │ │ │ │ │ ├── CheckoutRedirect.tsx │ │ │ │ │ ├── ConsoleRedirect.tsx │ │ │ │ │ ├── ShortcutRedirect.tsx │ │ │ │ │ └── UserRedirect.tsx │ │ │ │ └── table │ │ │ │ │ ├── FallbackTable.tsx │ │ │ │ │ ├── FallbackTablePanel.astro │ │ │ │ │ ├── Table.tsx │ │ │ │ │ ├── TableHeader.tsx │ │ │ │ │ ├── TablePanel.tsx │ │ │ │ │ └── rows │ │ │ │ │ ├── AlertRow.tsx │ │ │ │ │ ├── DimensionLabel.tsx │ │ │ │ │ ├── ReportRow.tsx │ │ │ │ │ └── ThresholdRow.tsx │ │ │ ├── docs │ │ │ │ ├── ArchitecturePanel.astro │ │ │ │ ├── Disclosure.tsx │ │ │ │ ├── DocsPanel.astro │ │ │ │ ├── SchemaPanel.astro │ │ │ │ ├── api │ │ │ │ │ ├── ApiPanel.astro │ │ │ │ │ ├── BodyObject.astro │ │ │ │ │ ├── BodyParameters.astro │ │ │ │ │ ├── BodyParametersInner.astro │ │ │ │ │ ├── Endpoint.astro │ │ │ │ │ ├── Headers.astro │ │ │ │ │ ├── Operation.astro │ │ │ │ │ ├── PathParameters.astro │ │ │ │ │ ├── QueryParameters.astro │ │ │ │ │ └── method.ts │ │ │ │ ├── author.tsx │ │ │ │ ├── img │ │ │ │ │ ├── DocsImg.astro │ │ │ │ │ └── DocsImg.tsx │ │ │ │ ├── menu │ │ │ │ │ ├── ApiList.astro │ │ │ │ │ ├── DocsList.astro │ │ │ │ │ ├── DocsMenu.astro │ │ │ │ │ ├── LearnList.astro │ │ │ │ │ └── docs_tab.tsx │ │ │ │ ├── override │ │ │ │ │ └── AddAnApiToken.tsx │ │ │ │ └── wordmark │ │ │ │ │ ├── DocsWordmark.astro │ │ │ │ │ └── DocsWordmark.tsx │ │ │ ├── field │ │ │ │ ├── Field.tsx │ │ │ │ ├── kind.tsx │ │ │ │ └── kinds │ │ │ │ │ ├── Checkbox.tsx │ │ │ │ │ ├── DateRange.tsx │ │ │ │ │ ├── Input.tsx │ │ │ │ │ ├── Model.tsx │ │ │ │ │ ├── PlotRank.tsx │ │ │ │ │ ├── PlotWindow.tsx │ │ │ │ │ ├── Radio.tsx │ │ │ │ │ ├── Search.tsx │ │ │ │ │ ├── Select.tsx │ │ │ │ │ └── Switch.tsx │ │ │ ├── landing │ │ │ │ ├── CallToAction.astro │ │ │ │ ├── Customers.astro │ │ │ │ ├── GamePlot.tsx │ │ │ │ ├── GettingStarted.astro │ │ │ │ ├── Hosting.astro │ │ │ │ ├── HowItWorks.astro │ │ │ │ ├── PRComment.astro │ │ │ │ ├── PerfImg.astro │ │ │ │ ├── Showcase.astro │ │ │ │ ├── Toolbox.astro │ │ │ │ ├── customers.tsx │ │ │ │ └── projects.ts │ │ │ ├── learn │ │ │ │ └── LearnPanel.astro │ │ │ ├── navbar │ │ │ │ ├── AuthButtons.tsx │ │ │ │ ├── AuthWordmark.tsx │ │ │ │ ├── ConsoleNavbar.astro │ │ │ │ ├── GitHubLink.tsx │ │ │ │ ├── Navbar.astro │ │ │ │ ├── NavbarDropdown.tsx │ │ │ │ ├── NavbarHelp.astro │ │ │ │ ├── NavbarHelp.tsx │ │ │ │ ├── NavbarProjects.tsx │ │ │ │ ├── PricingLink.tsx │ │ │ │ ├── ProjectsLink.tsx │ │ │ │ ├── Wordmark.tsx │ │ │ │ ├── id.tsx │ │ │ │ └── theme │ │ │ │ │ ├── ThemeScript.astro │ │ │ │ │ ├── ThemeToggle.astro │ │ │ │ │ ├── ThemeWordmark.astro │ │ │ │ │ ├── ThemeWordmark.tsx │ │ │ │ │ ├── theme.tsx │ │ │ │ │ └── util.tsx │ │ │ ├── os │ │ │ │ ├── InstallCli.astro │ │ │ │ ├── InstallCliFallback.tsx │ │ │ │ ├── InstallCliInner.tsx │ │ │ │ ├── TerminalCommand.astro │ │ │ │ ├── TerminalCommandInner.tsx │ │ │ │ ├── WindowsOnly.astro │ │ │ │ ├── WindowsOnlyInner.tsx │ │ │ │ └── operating_system.ts │ │ │ ├── perf │ │ │ │ ├── FallbackProjects.tsx │ │ │ │ ├── FallbackPublicDeck.astro │ │ │ │ ├── PublicDeck.tsx │ │ │ │ ├── PublicProject.tsx │ │ │ │ ├── PublicProjects.tsx │ │ │ │ └── util.ts │ │ │ ├── pricing │ │ │ │ ├── ConsoleFallbackPricingTable.tsx │ │ │ │ ├── FallbackPricingTable.tsx │ │ │ │ ├── InnerPricingTable.tsx │ │ │ │ └── PricingTable.tsx │ │ │ └── site │ │ │ │ ├── Footer.astro │ │ │ │ ├── IconTitle.tsx │ │ │ │ ├── LinkFragment.astro │ │ │ │ ├── LinkFragment.tsx │ │ │ │ ├── Notification.tsx │ │ │ │ ├── Pagination.tsx │ │ │ │ ├── Redirect.tsx │ │ │ │ ├── RefreshButton.tsx │ │ │ │ ├── SelfHostedRedirct.tsx │ │ │ │ └── Tetris.astro │ │ ├── config │ │ │ ├── console.tsx │ │ │ ├── organization │ │ │ │ ├── billing.tsx │ │ │ │ ├── members.tsx │ │ │ │ └── organizations.tsx │ │ │ ├── project │ │ │ │ ├── alerts.tsx │ │ │ │ ├── alerts_pub.tsx │ │ │ │ ├── benchmarks.tsx │ │ │ │ ├── benchmarks_pub.tsx │ │ │ │ ├── branches.tsx │ │ │ │ ├── branches_pub.tsx │ │ │ │ ├── measures.tsx │ │ │ │ ├── measures_pub.tsx │ │ │ │ ├── metrics.tsx │ │ │ │ ├── metrics_pub.tsx │ │ │ │ ├── plot.tsx │ │ │ │ ├── projects.tsx │ │ │ │ ├── reports.tsx │ │ │ │ ├── reports_pub.tsx │ │ │ │ ├── testbeds.tsx │ │ │ │ ├── testbeds_pub.tsx │ │ │ │ ├── thresholds.tsx │ │ │ │ └── thresholds_pub.tsx │ │ │ ├── types.tsx │ │ │ ├── user │ │ │ │ ├── tokens.tsx │ │ │ │ └── users.tsx │ │ │ └── util.tsx │ │ ├── content.config.ts │ │ ├── content │ │ │ ├── api-organizations │ │ │ │ ├── members.mdx │ │ │ │ ├── organizations.mdx │ │ │ │ ├── projects.mdx │ │ │ │ └── usage.mdx │ │ │ ├── api-projects │ │ │ │ ├── alerts.mdx │ │ │ │ ├── benchmarks.mdx │ │ │ │ ├── branches.mdx │ │ │ │ ├── measures.mdx │ │ │ │ ├── metrics.mdx │ │ │ │ ├── perf.mdx │ │ │ │ ├── plots.mdx │ │ │ │ ├── projects.mdx │ │ │ │ ├── reports.mdx │ │ │ │ ├── testbeds.mdx │ │ │ │ └── thresholds.mdx │ │ │ ├── api-server │ │ │ │ ├── config.mdx │ │ │ │ └── server.mdx │ │ │ ├── api-users │ │ │ │ ├── tokens.mdx │ │ │ │ └── users.mdx │ │ │ ├── benchmarking-cpp │ │ │ │ ├── de │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── en │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── es │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── fr │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── ja │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── ko │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── pt │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── ru │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ └── zh │ │ │ │ │ └── google-benchmark.mdx │ │ │ ├── benchmarking-python │ │ │ │ ├── de │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── en │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── es │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── fr │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── ja │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── ko │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── pt │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── ru │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ └── zh │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ ├── benchmarking-rust │ │ │ │ ├── de │ │ │ │ │ ├── criterion.mdx │ │ │ │ │ ├── custom-harness.mdx │ │ │ │ │ ├── iai.mdx │ │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── en │ │ │ │ │ ├── criterion.mdx │ │ │ │ │ ├── custom-harness.mdx │ │ │ │ │ ├── iai.mdx │ │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── es │ │ │ │ │ ├── criterion.mdx │ │ │ │ │ ├── custom-harness.mdx │ │ │ │ │ ├── iai.mdx │ │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── criterion.mdx │ │ │ │ │ ├── custom-harness.mdx │ │ │ │ │ ├── iai.mdx │ │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── criterion.mdx │ │ │ │ │ ├── custom-harness.mdx │ │ │ │ │ ├── iai.mdx │ │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── criterion.mdx │ │ │ │ │ ├── custom-harness.mdx │ │ │ │ │ ├── iai.mdx │ │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── criterion.mdx │ │ │ │ │ ├── custom-harness.mdx │ │ │ │ │ ├── iai.mdx │ │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── criterion.mdx │ │ │ │ │ ├── custom-harness.mdx │ │ │ │ │ ├── iai.mdx │ │ │ │ │ └── libtest-bench.mdx │ │ │ │ └── zh │ │ │ │ │ ├── criterion.mdx │ │ │ │ │ ├── custom-harness.mdx │ │ │ │ │ ├── iai.mdx │ │ │ │ │ └── libtest-bench.mdx │ │ │ ├── case-study │ │ │ │ ├── de │ │ │ │ │ ├── diesel.mdx │ │ │ │ │ └── rustls.mdx │ │ │ │ ├── en │ │ │ │ │ ├── diesel.mdx │ │ │ │ │ └── rustls.mdx │ │ │ │ ├── es │ │ │ │ │ ├── diesel.mdx │ │ │ │ │ └── rustls.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── diesel.mdx │ │ │ │ │ └── rustls.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── diesel.mdx │ │ │ │ │ └── rustls.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── diesel.mdx │ │ │ │ │ └── rustls.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── diesel.mdx │ │ │ │ │ └── rustls.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── diesel.mdx │ │ │ │ │ └── rustls.mdx │ │ │ │ └── zh │ │ │ │ │ ├── diesel.mdx │ │ │ │ │ └── rustls.mdx │ │ │ ├── docs-explanation │ │ │ │ ├── de │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ ├── continuous-benchmarking.mdx │ │ │ │ │ ├── talks.mdx │ │ │ │ │ └── thresholds.mdx │ │ │ │ ├── en │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ ├── continuous-benchmarking.mdx │ │ │ │ │ ├── talks.mdx │ │ │ │ │ ├── thresholds.mdx │ │ │ │ │ └── tokenless.mdx │ │ │ │ ├── es │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ ├── continuous-benchmarking.mdx │ │ │ │ │ ├── talks.mdx │ │ │ │ │ └── thresholds.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ ├── continuous-benchmarking.mdx │ │ │ │ │ ├── talks.mdx │ │ │ │ │ └── thresholds.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ ├── continuous-benchmarking.mdx │ │ │ │ │ ├── talks.mdx │ │ │ │ │ └── thresholds.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ ├── continuous-benchmarking.mdx │ │ │ │ │ ├── talks.mdx │ │ │ │ │ └── thresholds.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ ├── continuous-benchmarking.mdx │ │ │ │ │ ├── talks.mdx │ │ │ │ │ └── thresholds.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ ├── continuous-benchmarking.mdx │ │ │ │ │ ├── talks.mdx │ │ │ │ │ └── thresholds.mdx │ │ │ │ └── zh │ │ │ │ │ ├── adapters.mdx │ │ │ │ │ ├── bencher-run.mdx │ │ │ │ │ ├── bencher-self-hosted.mdx │ │ │ │ │ ├── benchmarking.mdx │ │ │ │ │ ├── branch-selection.mdx │ │ │ │ │ ├── continuous-benchmarking.mdx │ │ │ │ │ ├── talks.mdx │ │ │ │ │ └── thresholds.mdx │ │ │ ├── docs-how-to │ │ │ │ ├── de │ │ │ │ │ ├── claim.mdx │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ ├── github-app.mdx │ │ │ │ │ ├── gitlab-ci-cd.mdx │ │ │ │ │ ├── google-oauth.mdx │ │ │ │ │ ├── install-cli.mdx │ │ │ │ │ ├── track-benchmarks.mdx │ │ │ │ │ ├── track-build-time.mdx │ │ │ │ │ ├── track-custom-benchmarks.mdx │ │ │ │ │ └── track-file-size.mdx │ │ │ │ ├── en │ │ │ │ │ ├── claim.mdx │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ ├── github-app.mdx │ │ │ │ │ ├── gitlab-ci-cd.mdx │ │ │ │ │ ├── google-oauth.mdx │ │ │ │ │ ├── install-cli.mdx │ │ │ │ │ ├── track-benchmarks.mdx │ │ │ │ │ ├── track-build-time.mdx │ │ │ │ │ ├── track-custom-benchmarks.mdx │ │ │ │ │ └── track-file-size.mdx │ │ │ │ ├── es │ │ │ │ │ ├── claim.mdx │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ ├── github-app.mdx │ │ │ │ │ ├── gitlab-ci-cd.mdx │ │ │ │ │ ├── google-oauth.mdx │ │ │ │ │ ├── install-cli.mdx │ │ │ │ │ ├── track-benchmarks.mdx │ │ │ │ │ ├── track-build-time.mdx │ │ │ │ │ ├── track-custom-benchmarks.mdx │ │ │ │ │ └── track-file-size.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── claim.mdx │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ ├── github-app.mdx │ │ │ │ │ ├── gitlab-ci-cd.mdx │ │ │ │ │ ├── google-oauth.mdx │ │ │ │ │ ├── install-cli.mdx │ │ │ │ │ ├── track-benchmarks.mdx │ │ │ │ │ ├── track-build-time.mdx │ │ │ │ │ ├── track-custom-benchmarks.mdx │ │ │ │ │ └── track-file-size.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── claim.mdx │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ ├── github-app.mdx │ │ │ │ │ ├── gitlab-ci-cd.mdx │ │ │ │ │ ├── google-oauth.mdx │ │ │ │ │ ├── install-cli.mdx │ │ │ │ │ ├── track-benchmarks.mdx │ │ │ │ │ ├── track-build-time.mdx │ │ │ │ │ ├── track-custom-benchmarks.mdx │ │ │ │ │ └── track-file-size.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── claim.mdx │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ ├── github-app.mdx │ │ │ │ │ ├── gitlab-ci-cd.mdx │ │ │ │ │ ├── google-oauth.mdx │ │ │ │ │ ├── install-cli.mdx │ │ │ │ │ ├── track-benchmarks.mdx │ │ │ │ │ ├── track-build-time.mdx │ │ │ │ │ ├── track-custom-benchmarks.mdx │ │ │ │ │ └── track-file-size.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── claim.mdx │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ ├── github-app.mdx │ │ │ │ │ ├── gitlab-ci-cd.mdx │ │ │ │ │ ├── google-oauth.mdx │ │ │ │ │ ├── install-cli.mdx │ │ │ │ │ ├── track-benchmarks.mdx │ │ │ │ │ ├── track-build-time.mdx │ │ │ │ │ ├── track-custom-benchmarks.mdx │ │ │ │ │ └── track-file-size.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── claim.mdx │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ ├── github-app.mdx │ │ │ │ │ ├── gitlab-ci-cd.mdx │ │ │ │ │ ├── google-oauth.mdx │ │ │ │ │ ├── install-cli.mdx │ │ │ │ │ ├── track-benchmarks.mdx │ │ │ │ │ ├── track-build-time.mdx │ │ │ │ │ ├── track-custom-benchmarks.mdx │ │ │ │ │ └── track-file-size.mdx │ │ │ │ └── zh │ │ │ │ │ ├── claim.mdx │ │ │ │ │ ├── github-actions.mdx │ │ │ │ │ ├── github-app.mdx │ │ │ │ │ ├── gitlab-ci-cd.mdx │ │ │ │ │ ├── google-oauth.mdx │ │ │ │ │ ├── install-cli.mdx │ │ │ │ │ ├── track-benchmarks.mdx │ │ │ │ │ ├── track-build-time.mdx │ │ │ │ │ ├── track-custom-benchmarks.mdx │ │ │ │ │ └── track-file-size.mdx │ │ │ ├── docs-reference │ │ │ │ ├── de │ │ │ │ │ ├── bencher-compose.mdx │ │ │ │ │ ├── bencher-metric-format.mdx │ │ │ │ │ ├── changelog.mdx │ │ │ │ │ ├── console-config.mdx │ │ │ │ │ ├── prior-art.mdx │ │ │ │ │ ├── roadmap.mdx │ │ │ │ │ └── server-config.mdx │ │ │ │ ├── en │ │ │ │ │ ├── bencher-compose.mdx │ │ │ │ │ ├── bencher-metric-format.mdx │ │ │ │ │ ├── changelog.mdx │ │ │ │ │ ├── console-config.mdx │ │ │ │ │ ├── prior-art.mdx │ │ │ │ │ ├── roadmap.mdx │ │ │ │ │ └── server-config.mdx │ │ │ │ ├── es │ │ │ │ │ ├── bencher-compose.mdx │ │ │ │ │ ├── bencher-metric-format.mdx │ │ │ │ │ ├── changelog.mdx │ │ │ │ │ ├── console-config.mdx │ │ │ │ │ ├── prior-art.mdx │ │ │ │ │ ├── roadmap.mdx │ │ │ │ │ └── server-config.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── bencher-compose.mdx │ │ │ │ │ ├── bencher-metric-format.mdx │ │ │ │ │ ├── changelog.mdx │ │ │ │ │ ├── console-config.mdx │ │ │ │ │ ├── prior-art.mdx │ │ │ │ │ ├── roadmap.mdx │ │ │ │ │ └── server-config.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── bencher-compose.mdx │ │ │ │ │ ├── bencher-metric-format.mdx │ │ │ │ │ ├── changelog.mdx │ │ │ │ │ ├── console-config.mdx │ │ │ │ │ ├── prior-art.mdx │ │ │ │ │ ├── roadmap.mdx │ │ │ │ │ └── server-config.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── bencher-compose.mdx │ │ │ │ │ ├── bencher-metric-format.mdx │ │ │ │ │ ├── changelog.mdx │ │ │ │ │ ├── console-config.mdx │ │ │ │ │ ├── prior-art.mdx │ │ │ │ │ ├── roadmap.mdx │ │ │ │ │ └── server-config.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── bencher-compose.mdx │ │ │ │ │ ├── bencher-metric-format.mdx │ │ │ │ │ ├── changelog.mdx │ │ │ │ │ ├── console-config.mdx │ │ │ │ │ ├── prior-art.mdx │ │ │ │ │ ├── roadmap.mdx │ │ │ │ │ └── server-config.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── bencher-compose.mdx │ │ │ │ │ ├── bencher-metric-format.mdx │ │ │ │ │ ├── changelog.mdx │ │ │ │ │ ├── console-config.mdx │ │ │ │ │ ├── prior-art.mdx │ │ │ │ │ ├── roadmap.mdx │ │ │ │ │ └── server-config.mdx │ │ │ │ └── zh │ │ │ │ │ ├── bencher-compose.mdx │ │ │ │ │ ├── bencher-metric-format.mdx │ │ │ │ │ ├── changelog.mdx │ │ │ │ │ ├── console-config.mdx │ │ │ │ │ ├── prior-art.mdx │ │ │ │ │ ├── roadmap.mdx │ │ │ │ │ └── server-config.mdx │ │ │ ├── docs-tutorial │ │ │ │ ├── de │ │ │ │ │ ├── docker.mdx │ │ │ │ │ └── quick-start.mdx │ │ │ │ ├── en │ │ │ │ │ ├── docker.mdx │ │ │ │ │ └── quick-start.mdx │ │ │ │ ├── es │ │ │ │ │ ├── docker.mdx │ │ │ │ │ └── quick-start.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── docker.mdx │ │ │ │ │ └── quick-start.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── docker.mdx │ │ │ │ │ └── quick-start.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── docker.mdx │ │ │ │ │ └── quick-start.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── docker.mdx │ │ │ │ │ └── quick-start.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── docker.mdx │ │ │ │ │ └── quick-start.mdx │ │ │ │ └── zh │ │ │ │ │ ├── docker.mdx │ │ │ │ │ └── quick-start.mdx │ │ │ ├── engineering │ │ │ │ ├── de │ │ │ │ │ ├── engineering-review-2025.mdx │ │ │ │ │ └── sqlite-performance-tuning.mdx │ │ │ │ ├── en │ │ │ │ │ ├── engineering-review-2025.mdx │ │ │ │ │ └── sqlite-performance-tuning.mdx │ │ │ │ ├── es │ │ │ │ │ ├── engineering-review-2025.mdx │ │ │ │ │ └── sqlite-performance-tuning.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── engineering-review-2025.mdx │ │ │ │ │ └── sqlite-performance-tuning.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── engineering-review-2025.mdx │ │ │ │ │ └── sqlite-performance-tuning.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── engineering-review-2025.mdx │ │ │ │ │ └── sqlite-performance-tuning.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── engineering-review-2025.mdx │ │ │ │ │ └── sqlite-performance-tuning.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── engineering-review-2025.mdx │ │ │ │ │ └── sqlite-performance-tuning.mdx │ │ │ │ └── zh │ │ │ │ │ ├── engineering-review-2025.mdx │ │ │ │ │ └── sqlite-performance-tuning.mdx │ │ │ ├── learn │ │ │ │ ├── 18to4.md │ │ │ │ ├── fuzz.md │ │ │ │ ├── learn.md │ │ │ │ ├── pgo.md │ │ │ │ ├── thresholds-iqr-img.mdx │ │ │ │ ├── thresholds-log-normal-img.mdx │ │ │ │ └── thresholds-normal-img.mdx │ │ │ ├── legal │ │ │ │ ├── license.mdx │ │ │ │ ├── plus.mdx │ │ │ │ ├── privacy.mdx │ │ │ │ ├── subscription.mdx │ │ │ │ ├── terms-of-use.mdx │ │ │ │ └── trademark.mdx │ │ │ ├── onboard │ │ │ │ └── en │ │ │ │ │ ├── install-cli-version.mdx │ │ │ │ │ └── install-cli.mdx │ │ │ ├── track-in-ci-cpp │ │ │ │ ├── de │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── en │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── es │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── google-benchmark.mdx │ │ │ │ └── zh │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── google-benchmark.mdx │ │ │ ├── track-in-ci-python │ │ │ │ ├── de │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── en │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── es │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── fr │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── ja │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── ko │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── pt │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ ├── ru │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ │ └── zh │ │ │ │ │ ├── binary-size.mdx │ │ │ │ │ ├── compile-time.mdx │ │ │ │ │ └── pytest-benchmark.mdx │ │ │ └── track-in-ci-rust │ │ │ │ ├── de │ │ │ │ ├── binary-size.mdx │ │ │ │ ├── compile-time.mdx │ │ │ │ ├── criterion.mdx │ │ │ │ ├── custom-benchmarks.mdx │ │ │ │ ├── iai.mdx │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── en │ │ │ │ ├── binary-size.mdx │ │ │ │ ├── compile-time.mdx │ │ │ │ ├── criterion.mdx │ │ │ │ ├── custom-benchmarks.mdx │ │ │ │ ├── iai.mdx │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── es │ │ │ │ ├── binary-size.mdx │ │ │ │ ├── compile-time.mdx │ │ │ │ ├── criterion.mdx │ │ │ │ ├── custom-benchmarks.mdx │ │ │ │ ├── iai.mdx │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── fr │ │ │ │ ├── binary-size.mdx │ │ │ │ ├── compile-time.mdx │ │ │ │ ├── criterion.mdx │ │ │ │ ├── custom-benchmarks.mdx │ │ │ │ ├── iai.mdx │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── ja │ │ │ │ ├── binary-size.mdx │ │ │ │ ├── compile-time.mdx │ │ │ │ ├── criterion.mdx │ │ │ │ ├── custom-benchmarks.mdx │ │ │ │ ├── iai.mdx │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── ko │ │ │ │ ├── binary-size.mdx │ │ │ │ ├── compile-time.mdx │ │ │ │ ├── criterion.mdx │ │ │ │ ├── custom-benchmarks.mdx │ │ │ │ ├── iai.mdx │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── pt │ │ │ │ ├── binary-size.mdx │ │ │ │ ├── compile-time.mdx │ │ │ │ ├── criterion.mdx │ │ │ │ ├── custom-benchmarks.mdx │ │ │ │ ├── iai.mdx │ │ │ │ └── libtest-bench.mdx │ │ │ │ ├── ru │ │ │ │ ├── binary-size.mdx │ │ │ │ ├── compile-time.mdx │ │ │ │ ├── criterion.mdx │ │ │ │ ├── custom-benchmarks.mdx │ │ │ │ ├── iai.mdx │ │ │ │ └── libtest-bench.mdx │ │ │ │ └── zh │ │ │ │ ├── binary-size.mdx │ │ │ │ ├── compile-time.mdx │ │ │ │ ├── criterion.mdx │ │ │ │ ├── custom-benchmarks.mdx │ │ │ │ ├── iai.mdx │ │ │ │ └── libtest-bench.mdx │ │ ├── i18n │ │ │ ├── LangButton.astro │ │ │ ├── ui.ts │ │ │ └── utils.ts │ │ ├── layouts │ │ │ ├── BaseLayout.astro │ │ │ ├── auth │ │ │ │ └── AuthLayout.astro │ │ │ ├── console │ │ │ │ ├── ConsoleLayout.astro │ │ │ │ ├── OrgLayout.astro │ │ │ │ ├── ProjectLayout.astro │ │ │ │ └── UserLayout.astro │ │ │ ├── docs │ │ │ │ ├── ApiLayout.astro │ │ │ │ ├── DocsLayout.astro │ │ │ │ ├── InnerLayout.astro │ │ │ │ └── LearnLayout.astro │ │ │ ├── legal │ │ │ │ └── LegalLayout.astro │ │ │ └── perf │ │ │ │ ├── PerfLayout.astro │ │ │ │ └── PerfResource.astro │ │ ├── pages │ │ │ ├── 404.astro │ │ │ ├── 500.astro │ │ │ ├── [lang] │ │ │ │ ├── docs │ │ │ │ │ ├── api │ │ │ │ │ │ ├── index.astro │ │ │ │ │ │ ├── organizations │ │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ ├── projects │ │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ └── users │ │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── explanation │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── how-to │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ ├── api.astro │ │ │ │ │ │ ├── architecture.astro │ │ │ │ │ │ ├── index.astro │ │ │ │ │ │ └── schema.astro │ │ │ │ │ └── tutorial │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ ├── index.astro │ │ │ │ │ │ └── quick-start.astro │ │ │ │ └── learn │ │ │ │ │ ├── benchmarking │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── python │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ └── rust │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── case-study │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ │ ├── engineering │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ └── track-in-ci │ │ │ │ │ ├── cpp │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── python │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ │ └── rust │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ ├── auth │ │ │ │ ├── confirm.astro │ │ │ │ ├── github.astro │ │ │ │ ├── google.astro │ │ │ │ ├── index.astro │ │ │ │ ├── login.astro │ │ │ │ ├── logout.astro │ │ │ │ └── signup.astro │ │ │ ├── author │ │ │ │ ├── everett-pompeii.astro │ │ │ │ └── index.astro │ │ │ ├── brand.astro │ │ │ ├── console │ │ │ │ ├── index.astro │ │ │ │ ├── onboard │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── invite.astro │ │ │ │ │ ├── plan.astro │ │ │ │ │ ├── project.astro │ │ │ │ │ ├── run.astro │ │ │ │ │ └── token.astro │ │ │ │ ├── organizations │ │ │ │ │ ├── [organization] │ │ │ │ │ │ ├── billing.astro │ │ │ │ │ │ ├── checkout.astro │ │ │ │ │ │ ├── index.astro │ │ │ │ │ │ ├── members │ │ │ │ │ │ │ ├── [member].astro │ │ │ │ │ │ │ ├── index.astro │ │ │ │ │ │ │ └── invite.astro │ │ │ │ │ │ ├── projects │ │ │ │ │ │ │ ├── add.astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ └── settings.astro │ │ │ │ │ ├── add.astro │ │ │ │ │ └── index.astro │ │ │ │ ├── projects │ │ │ │ │ ├── [project] │ │ │ │ │ │ ├── alerts │ │ │ │ │ │ │ ├── [alert].astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ ├── benchmarks │ │ │ │ │ │ │ ├── [benchmark].astro │ │ │ │ │ │ │ ├── add.astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ ├── branches │ │ │ │ │ │ │ ├── [branch].astro │ │ │ │ │ │ │ ├── add.astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ ├── index.astro │ │ │ │ │ │ ├── measures │ │ │ │ │ │ │ ├── [measure].astro │ │ │ │ │ │ │ ├── add.astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ ├── metrics │ │ │ │ │ │ │ ├── [metric].astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ ├── perf.astro │ │ │ │ │ │ ├── plots │ │ │ │ │ │ │ ├── [plot].astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ ├── reports │ │ │ │ │ │ │ ├── [report].astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ ├── settings.astro │ │ │ │ │ │ ├── testbeds │ │ │ │ │ │ │ ├── [testbed].astro │ │ │ │ │ │ │ ├── add.astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ └── thresholds │ │ │ │ │ │ │ ├── [threshold] │ │ │ │ │ │ │ ├── edit.astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ │ │ ├── add.astro │ │ │ │ │ │ │ └── index.astro │ │ │ │ │ └── index.astro │ │ │ │ └── users │ │ │ │ │ ├── [user] │ │ │ │ │ ├── help.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── settings.astro │ │ │ │ │ └── tokens │ │ │ │ │ │ ├── [token].astro │ │ │ │ │ │ ├── add.astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── help.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── settings.astro │ │ │ │ │ └── tokens │ │ │ │ │ ├── add.astro │ │ │ │ │ └── index.astro │ │ │ ├── docs │ │ │ │ ├── api │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── organizations │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── projects │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── server │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ └── users │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ ├── explanation │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ ├── how-to │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ ├── index.astro │ │ │ │ ├── reference │ │ │ │ │ ├── [slug].astro │ │ │ │ │ ├── api.astro │ │ │ │ │ ├── architecture.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ └── schema.astro │ │ │ │ └── tutorial │ │ │ │ │ ├── [slug].astro │ │ │ │ │ ├── index.astro │ │ │ │ │ └── quick-start.astro │ │ │ ├── download │ │ │ │ ├── [version] │ │ │ │ │ ├── [file].ts │ │ │ │ │ └── index.astro │ │ │ │ └── index.astro │ │ │ ├── explore.astro │ │ │ ├── help.astro │ │ │ ├── hyperfine.astro │ │ │ ├── index.astro │ │ │ ├── learn │ │ │ │ ├── benchmarking │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── python │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ └── rust │ │ │ │ │ │ ├── [slug].astro │ │ │ │ │ │ └── index.astro │ │ │ │ ├── case-study │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ ├── engineering │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ ├── index.astro │ │ │ │ └── track-in-ci │ │ │ │ │ ├── cpp │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── python │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ │ └── rust │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ ├── legal │ │ │ │ ├── [slug].astro │ │ │ │ └── index.astro │ │ │ ├── meghan.astro │ │ │ ├── perf │ │ │ │ ├── [project] │ │ │ │ │ ├── alerts │ │ │ │ │ │ ├── [alert].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── benchmarks │ │ │ │ │ │ ├── [benchmark].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── branches │ │ │ │ │ │ ├── [branch].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── embed.astro │ │ │ │ │ ├── index.astro │ │ │ │ │ ├── measures │ │ │ │ │ │ ├── [measure].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── [metric].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── plots │ │ │ │ │ │ ├── [plot].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── reports │ │ │ │ │ │ ├── [report].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ ├── testbeds │ │ │ │ │ │ ├── [testbed].astro │ │ │ │ │ │ └── index.astro │ │ │ │ │ └── thresholds │ │ │ │ │ │ ├── [threshold].astro │ │ │ │ │ │ └── index.astro │ │ │ │ └── index.astro │ │ │ ├── play.astro │ │ │ ├── pricing.astro │ │ │ └── rust │ │ │ │ ├── criterion.astro │ │ │ │ ├── gungraun.astro │ │ │ │ ├── iai-callgrind.astro │ │ │ │ ├── iai.astro │ │ │ │ └── index.astro │ │ ├── styles │ │ │ └── styles.scss │ │ ├── types │ │ │ └── bencher.ts │ │ └── util │ │ │ ├── auth.ts │ │ │ ├── collection.ts │ │ │ ├── convert.ts │ │ │ ├── ext.ts │ │ │ ├── http.ts │ │ │ ├── notify.ts │ │ │ ├── organization.ts │ │ │ ├── recaptcha.ts │ │ │ ├── resource.ts │ │ │ ├── scale.ts │ │ │ ├── url.ts │ │ │ └── valid.ts │ ├── test │ │ └── todo.test.tsx │ ├── tsconfig.json │ ├── typeshare.toml │ └── vitest.config.ts └── otel-collector │ ├── Dockerfile │ ├── deploy.sh │ ├── fly │ └── fly.toml │ ├── otel-collector.yaml │ └── run.sh ├── tasks ├── bin_version │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── gen_installer │ ├── Cargo.toml │ └── src │ │ ├── main.rs │ │ ├── parser │ │ └── mod.rs │ │ └── task │ │ ├── mod.rs │ │ └── template.rs ├── gen_notes │ ├── Cargo.toml │ └── src │ │ ├── main.rs │ │ ├── parser │ │ └── mod.rs │ │ └── task │ │ ├── mod.rs │ │ └── release_notes.rs ├── gen_pkg │ ├── Cargo.toml │ └── src │ │ ├── main.rs │ │ ├── parser │ │ └── mod.rs │ │ └── task │ │ ├── mod.rs │ │ └── package │ │ ├── deb.rs │ │ ├── man.rs │ │ └── mod.rs ├── gen_types │ ├── Cargo.toml │ └── src │ │ ├── main.rs │ │ ├── parser │ │ └── mod.rs │ │ └── task │ │ ├── mod.rs │ │ ├── spec.rs │ │ ├── ts.rs │ │ └── types.rs ├── test_api │ ├── Cargo.toml │ └── src │ │ ├── main.rs │ │ ├── parser │ │ ├── mod.rs │ │ └── test.rs │ │ └── task │ │ ├── mod.rs │ │ └── test │ │ ├── examples.rs │ │ ├── mod.rs │ │ ├── seed_test.rs │ │ └── smoke_test.rs └── test_netlify │ ├── Cargo.toml │ └── src │ ├── main.rs │ ├── parser │ └── mod.rs │ └── task │ ├── mod.rs │ └── test_netlify.rs └── xtask ├── .gitignore ├── Cargo.toml └── src ├── main.rs ├── parser ├── live.rs ├── mod.rs └── plus │ ├── email_list.rs │ ├── index.rs │ ├── license.rs │ ├── mod.rs │ ├── prompt.rs │ └── stats.rs └── task ├── live.rs ├── mod.rs └── plus ├── email_list.rs ├── image.rs ├── index ├── delete.rs ├── engine.rs ├── mod.rs └── update.rs ├── license ├── generate.rs ├── mod.rs └── validate.rs ├── mod.rs ├── prompt.rs ├── stats.rs └── translate.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.devcontainer/scripts/setup.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/start_cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.devcontainer/scripts/start_cli.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/start_ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.devcontainer/scripts/start_ui.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | text eol=lf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/backup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.github/workflows/backup.yml -------------------------------------------------------------------------------- /.github/workflows/bencher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.github/workflows/bencher.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.vscode/keybindings.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/Cargo.toml -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/action.yml -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | services/console/src/chunks/docs-reference/changelog/en/changelog.mdx -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/clippy.toml -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/deny.toml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/docker/run.sh -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/cpp/google_benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/cpp/google_benchmark/.gitignore -------------------------------------------------------------------------------- /examples/cpp/google_benchmark/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/cpp/google_benchmark/bench.sh -------------------------------------------------------------------------------- /examples/cpp/google_benchmark/benchmark_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/cpp/google_benchmark/benchmark_game.cpp -------------------------------------------------------------------------------- /examples/cpp/google_benchmark/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/cpp/google_benchmark/game.cpp -------------------------------------------------------------------------------- /examples/cpp/google_benchmark/play.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/cpp/google_benchmark/play.sh -------------------------------------------------------------------------------- /examples/cpp/google_benchmark/play_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/cpp/google_benchmark/play_game.cpp -------------------------------------------------------------------------------- /examples/cpp/google_benchmark/play_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/cpp/google_benchmark/play_game.h -------------------------------------------------------------------------------- /examples/ebpf/perf_event/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/.cargo/config.toml -------------------------------------------------------------------------------- /examples/ebpf/perf_event/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/Cargo.lock -------------------------------------------------------------------------------- /examples/ebpf/perf_event/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/perf_event/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/README.md -------------------------------------------------------------------------------- /examples/ebpf/perf_event/profiler-common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/profiler-common/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/perf_event/profiler-common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/profiler-common/src/lib.rs -------------------------------------------------------------------------------- /examples/ebpf/perf_event/profiler-ebpf/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/profiler-ebpf/Cargo.lock -------------------------------------------------------------------------------- /examples/ebpf/perf_event/profiler-ebpf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/profiler-ebpf/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/perf_event/profiler-ebpf/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/profiler-ebpf/src/main.rs -------------------------------------------------------------------------------- /examples/ebpf/perf_event/profiler/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/profiler/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/perf_event/profiler/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/profiler/src/lib.rs -------------------------------------------------------------------------------- /examples/ebpf/perf_event/profiler/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/profiler/src/main.rs -------------------------------------------------------------------------------- /examples/ebpf/perf_event/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/xtask/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/perf_event/xtask/src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/xtask/src/build.rs -------------------------------------------------------------------------------- /examples/ebpf/perf_event/xtask/src/build_ebpf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/xtask/src/build_ebpf.rs -------------------------------------------------------------------------------- /examples/ebpf/perf_event/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/xtask/src/main.rs -------------------------------------------------------------------------------- /examples/ebpf/perf_event/xtask/src/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/perf_event/xtask/src/run.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/.cargo/config.toml -------------------------------------------------------------------------------- /examples/ebpf/xdp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/.gitignore -------------------------------------------------------------------------------- /examples/ebpf/xdp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/xdp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/README.md -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-common/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-common/benches/source_addr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-common/benches/source_addr.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-common/src/lib.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-common/src/source_addr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-common/src/source_addr.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-ebpf/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-ebpf/.cargo/config.toml -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-ebpf/.vim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-ebpf/.vim/coc-settings.json -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-ebpf/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-ebpf/.vscode/settings.json -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-ebpf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-ebpf/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-ebpf/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-ebpf/rust-toolchain.toml -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf-ebpf/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf-ebpf/src/main.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf/benches/xdp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf/benches/xdp.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf/src/lib.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/ebpf/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/ebpf/src/main.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/llvm.sh -------------------------------------------------------------------------------- /examples/ebpf/xdp/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/xtask/Cargo.toml -------------------------------------------------------------------------------- /examples/ebpf/xdp/xtask/src/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/xtask/src/bench.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/xtask/src/build_ebpf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/xtask/src/build_ebpf.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/xtask/src/main.rs -------------------------------------------------------------------------------- /examples/ebpf/xdp/xtask/src/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/ebpf/xdp/xtask/src/run.rs -------------------------------------------------------------------------------- /examples/go/fib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/go/fib.go -------------------------------------------------------------------------------- /examples/go/fib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/go/fib_test.go -------------------------------------------------------------------------------- /examples/go/go.mod: -------------------------------------------------------------------------------- 1 | module bencher.dev 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /examples/python/pytest_benchmark/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/python/pytest_benchmark/Pipfile -------------------------------------------------------------------------------- /examples/python/pytest_benchmark/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/python/pytest_benchmark/Pipfile.lock -------------------------------------------------------------------------------- /examples/python/pytest_benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/python/pytest_benchmark/README.md -------------------------------------------------------------------------------- /examples/python/pytest_benchmark/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/python/pytest_benchmark/game.py -------------------------------------------------------------------------------- /examples/rust/bench/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/bench/Cargo.lock -------------------------------------------------------------------------------- /examples/rust/bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/bench/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/bench/README.md -------------------------------------------------------------------------------- /examples/rust/bench/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/bench/rust-toolchain.toml -------------------------------------------------------------------------------- /examples/rust/bench/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/bench/src/main.rs -------------------------------------------------------------------------------- /examples/rust/criterion/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/criterion/Cargo.lock -------------------------------------------------------------------------------- /examples/rust/criterion/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/criterion/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/criterion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/criterion/README.md -------------------------------------------------------------------------------- /examples/rust/criterion/benches/play_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/criterion/benches/play_game.rs -------------------------------------------------------------------------------- /examples/rust/criterion/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/criterion/src/lib.rs -------------------------------------------------------------------------------- /examples/rust/criterion/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/criterion/src/main.rs -------------------------------------------------------------------------------- /examples/rust/custom/.gitignore: -------------------------------------------------------------------------------- 1 | results.json 2 | -------------------------------------------------------------------------------- /examples/rust/custom/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/custom/Cargo.lock -------------------------------------------------------------------------------- /examples/rust/custom/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/custom/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/custom/benches/play_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/custom/benches/play_game.rs -------------------------------------------------------------------------------- /examples/rust/custom/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/custom/src/lib.rs -------------------------------------------------------------------------------- /examples/rust/iai/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/iai/Cargo.lock -------------------------------------------------------------------------------- /examples/rust/iai/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/iai/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/iai/benches/play_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/iai/benches/play_game.rs -------------------------------------------------------------------------------- /examples/rust/iai/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/iai/src/lib.rs -------------------------------------------------------------------------------- /examples/rust/iai/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/iai/src/main.rs -------------------------------------------------------------------------------- /examples/rust/iai_callgrind/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/iai_callgrind/Cargo.lock -------------------------------------------------------------------------------- /examples/rust/iai_callgrind/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/iai_callgrind/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/iai_callgrind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/examples/rust/iai_callgrind/README.md -------------------------------------------------------------------------------- /examples/rust/iai_callgrind/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/api_auth/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/Cargo.toml -------------------------------------------------------------------------------- /lib/api_auth/src/accept.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/src/accept.rs -------------------------------------------------------------------------------- /lib/api_auth/src/confirm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/src/confirm.rs -------------------------------------------------------------------------------- /lib/api_auth/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/src/lib.rs -------------------------------------------------------------------------------- /lib/api_auth/src/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/src/login.rs -------------------------------------------------------------------------------- /lib/api_auth/src/oauth/github.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/src/oauth/github.rs -------------------------------------------------------------------------------- /lib/api_auth/src/oauth/google.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/src/oauth/google.rs -------------------------------------------------------------------------------- /lib/api_auth/src/oauth/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/src/oauth/mod.rs -------------------------------------------------------------------------------- /lib/api_auth/src/oauth/oauth_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/src/oauth/oauth_state.rs -------------------------------------------------------------------------------- /lib/api_auth/src/signup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_auth/src/signup.rs -------------------------------------------------------------------------------- /lib/api_checkout/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_checkout/Cargo.toml -------------------------------------------------------------------------------- /lib/api_checkout/src/checkout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_checkout/src/checkout.rs -------------------------------------------------------------------------------- /lib/api_checkout/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_checkout/src/lib.rs -------------------------------------------------------------------------------- /lib/api_organizations/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_organizations/Cargo.toml -------------------------------------------------------------------------------- /lib/api_organizations/src/allowed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_organizations/src/allowed.rs -------------------------------------------------------------------------------- /lib/api_organizations/src/claim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_organizations/src/claim.rs -------------------------------------------------------------------------------- /lib/api_organizations/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_organizations/src/lib.rs -------------------------------------------------------------------------------- /lib/api_organizations/src/members.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_organizations/src/members.rs -------------------------------------------------------------------------------- /lib/api_organizations/src/organizations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_organizations/src/organizations.rs -------------------------------------------------------------------------------- /lib/api_organizations/src/plan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_organizations/src/plan.rs -------------------------------------------------------------------------------- /lib/api_organizations/src/projects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_organizations/src/projects.rs -------------------------------------------------------------------------------- /lib/api_organizations/src/usage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_organizations/src/usage.rs -------------------------------------------------------------------------------- /lib/api_projects/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/Cargo.toml -------------------------------------------------------------------------------- /lib/api_projects/src/alerts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/alerts.rs -------------------------------------------------------------------------------- /lib/api_projects/src/allowed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/allowed.rs -------------------------------------------------------------------------------- /lib/api_projects/src/benchmarks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/benchmarks.rs -------------------------------------------------------------------------------- /lib/api_projects/src/branches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/branches.rs -------------------------------------------------------------------------------- /lib/api_projects/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/lib.rs -------------------------------------------------------------------------------- /lib/api_projects/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/macros.rs -------------------------------------------------------------------------------- /lib/api_projects/src/measures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/measures.rs -------------------------------------------------------------------------------- /lib/api_projects/src/metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/metrics.rs -------------------------------------------------------------------------------- /lib/api_projects/src/perf/img.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/perf/img.rs -------------------------------------------------------------------------------- /lib/api_projects/src/perf/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/perf/mod.rs -------------------------------------------------------------------------------- /lib/api_projects/src/plots.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/plots.rs -------------------------------------------------------------------------------- /lib/api_projects/src/projects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/projects.rs -------------------------------------------------------------------------------- /lib/api_projects/src/reports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/reports.rs -------------------------------------------------------------------------------- /lib/api_projects/src/testbeds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/testbeds.rs -------------------------------------------------------------------------------- /lib/api_projects/src/thresholds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_projects/src/thresholds.rs -------------------------------------------------------------------------------- /lib/api_run/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_run/Cargo.toml -------------------------------------------------------------------------------- /lib/api_run/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_run/src/lib.rs -------------------------------------------------------------------------------- /lib/api_run/src/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_run/src/run.rs -------------------------------------------------------------------------------- /lib/api_server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_server/Cargo.toml -------------------------------------------------------------------------------- /lib/api_server/src/backup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_server/src/backup.rs -------------------------------------------------------------------------------- /lib/api_server/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_server/src/config.rs -------------------------------------------------------------------------------- /lib/api_server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_server/src/lib.rs -------------------------------------------------------------------------------- /lib/api_server/src/restart.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_server/src/restart.rs -------------------------------------------------------------------------------- /lib/api_server/src/root.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_server/src/root.rs -------------------------------------------------------------------------------- /lib/api_server/src/spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_server/src/spec.rs -------------------------------------------------------------------------------- /lib/api_server/src/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_server/src/stats.rs -------------------------------------------------------------------------------- /lib/api_server/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_server/src/version.rs -------------------------------------------------------------------------------- /lib/api_users/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_users/Cargo.toml -------------------------------------------------------------------------------- /lib/api_users/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_users/src/lib.rs -------------------------------------------------------------------------------- /lib/api_users/src/tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_users/src/tokens.rs -------------------------------------------------------------------------------- /lib/api_users/src/users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/api_users/src/users.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_adapter/benches/adapter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/benches/adapter.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/c_sharp/dot_net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/c_sharp/dot_net.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/c_sharp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/c_sharp/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/cpp/catch2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/cpp/catch2.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/cpp/google.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/cpp/google.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/cpp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/cpp/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/go/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/go/bench.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/go/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/go/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/java/jmh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/java/jmh.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/java/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/java/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/js/benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/js/benchmark.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/js/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/js/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/js/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/js/time.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/json.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/magic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/magic.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/python/asv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/python/asv.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/python/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/python/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/python/pytest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/python/pytest.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/ruby/benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/ruby/benchmark.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/ruby/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/ruby/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/rust/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/rust/bench.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/rust/criterion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/rust/criterion.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/rust/gungraun.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/rust/gungraun.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/rust/iai.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/rust/iai.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/rust/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/rust/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/shell/hyperfine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/shell/hyperfine.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/shell/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/shell/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/adapters/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/adapters/util.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/error.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/results/adapter_metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/results/adapter_metrics.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/results/adapter_results.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/results/adapter_results.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/results/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/results/mod.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/src/results/results_reducer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/src/results/results_reducer.rs -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/cpp/catch2/four.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/cpp/catch2/four.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/cpp/catch2/two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/cpp/catch2/two.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/cpp/google/two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/cpp/google/two.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/go/bench/five.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/go/bench/five.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/go/bench/three.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/go/bench/three.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/java/jmh/six.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/java/jmh/six.json -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/js/time/four.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/js/time/four.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/python/asv/six.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/python/asv/six.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/rust/bench/many.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/rust/bench/many.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/rust/bench/one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/rust/bench/one.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/rust/bench/zero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/rust/bench/zero.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/rust/iai/change.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/rust/iai/change.txt -------------------------------------------------------------------------------- /lib/bencher_adapter/tool_output/rust/iai/two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_adapter/tool_output/rust/iai/two.txt -------------------------------------------------------------------------------- /lib/bencher_boundary/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_boundary/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_boundary/src/boundary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_boundary/src/boundary.rs -------------------------------------------------------------------------------- /lib/bencher_boundary/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_boundary/src/error.rs -------------------------------------------------------------------------------- /lib/bencher_boundary/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_boundary/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_boundary/src/limits/limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_boundary/src/limits/limit.rs -------------------------------------------------------------------------------- /lib/bencher_boundary/src/limits/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_boundary/src/limits/mod.rs -------------------------------------------------------------------------------- /lib/bencher_boundary/src/ln.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_boundary/src/ln.rs -------------------------------------------------------------------------------- /lib/bencher_boundary/src/mean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_boundary/src/mean.rs -------------------------------------------------------------------------------- /lib/bencher_boundary/src/quartiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_boundary/src/quartiles.rs -------------------------------------------------------------------------------- /lib/bencher_client/.gitignore: -------------------------------------------------------------------------------- 1 | codegen.rs -------------------------------------------------------------------------------- /lib/bencher_client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_client/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_client/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_client/build.rs -------------------------------------------------------------------------------- /lib/bencher_client/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_client/src/client.rs -------------------------------------------------------------------------------- /lib/bencher_client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_client/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_client/src/tls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_client/src/tls.rs -------------------------------------------------------------------------------- /lib/bencher_comment/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_comment/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_comment/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_comment/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_config/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_config/src/config_tx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_config/src/config_tx.rs -------------------------------------------------------------------------------- /lib/bencher_config/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_config/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_config/src/plus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_config/src/plus.rs -------------------------------------------------------------------------------- /lib/bencher_context/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_context/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_context/src/client/fingerprint/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_context/src/client/fingerprint/linux.rs -------------------------------------------------------------------------------- /lib/bencher_context/src/client/fingerprint/macos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_context/src/client/fingerprint/macos.rs -------------------------------------------------------------------------------- /lib/bencher_context/src/client/fingerprint/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_context/src/client/fingerprint/mod.rs -------------------------------------------------------------------------------- /lib/bencher_context/src/client/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_context/src/client/mod.rs -------------------------------------------------------------------------------- /lib/bencher_context/src/client/operating_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_context/src/client/operating_system.rs -------------------------------------------------------------------------------- /lib/bencher_context/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_context/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_context/src/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_context/src/server/mod.rs -------------------------------------------------------------------------------- /lib/bencher_endpoint/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_endpoint/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_endpoint/src/endpoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_endpoint/src/endpoint.rs -------------------------------------------------------------------------------- /lib/bencher_endpoint/src/headers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_endpoint/src/headers.rs -------------------------------------------------------------------------------- /lib/bencher_endpoint/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_endpoint/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_endpoint/src/registrar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_endpoint/src/registrar.rs -------------------------------------------------------------------------------- /lib/bencher_endpoint/src/total_count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_endpoint/src/total_count.rs -------------------------------------------------------------------------------- /lib/bencher_json/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_json/src/big_int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/big_int.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/organization/claim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/organization/claim.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/organization/member.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/organization/member.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/organization/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/organization/mod.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/organization/plan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/organization/plan.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/organization/usage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/organization/usage.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/pagination.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/pagination.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/alert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/alert.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/benchmark.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/boundary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/boundary.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/branch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/branch.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/head.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/head.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/measure/built_in.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/measure/built_in.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/measure/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/measure/mod.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/metric/mean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/metric/mean.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/metric/median.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/metric/median.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/metric/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/metric/mod.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/mod.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/model.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/perf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/perf.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/plot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/plot.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/report.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/report.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/testbed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/testbed.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/project/threshold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/project/threshold.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/run.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/auth.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/backup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/backup.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/console.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/console.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/database.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/logging.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/mod.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/plus/cloud/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/plus/cloud/mod.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/plus/github.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/plus/github.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/plus/google.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/plus/google.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/plus/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/plus/mod.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/plus/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/plus/stats.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/security.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/security.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/server.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/config/smtp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/config/smtp.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/mod.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/payment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/payment.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/restart.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/restart.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/server.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/spec.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/system/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/system/version.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/typed_db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/typed_db.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/typed_slug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/typed_slug.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/typed_uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/typed_uuid.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/urlencoded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/urlencoded.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/user/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/user/mod.rs -------------------------------------------------------------------------------- /lib/bencher_json/src/user/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_json/src/user/token.rs -------------------------------------------------------------------------------- /lib/bencher_logger/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_logger/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_logger/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_logger/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_plot/.gitignore: -------------------------------------------------------------------------------- 1 | *.jpg 2 | *.jpeg 3 | -------------------------------------------------------------------------------- /lib/bencher_plot/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_plot/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_plot/decimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_plot/decimal.json -------------------------------------------------------------------------------- /lib/bencher_plot/perf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_plot/perf.json -------------------------------------------------------------------------------- /lib/bencher_plot/perf_dual_axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_plot/perf_dual_axes.json -------------------------------------------------------------------------------- /lib/bencher_plot/perf_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_plot/perf_log.json -------------------------------------------------------------------------------- /lib/bencher_plot/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_plot/src/error.rs -------------------------------------------------------------------------------- /lib/bencher_plot/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_plot/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_plot/src/line.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_plot/src/line.rs -------------------------------------------------------------------------------- /lib/bencher_plot/wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_plot/wordmark.png -------------------------------------------------------------------------------- /lib/bencher_rank/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rank/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_rank/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rank/src/db.rs -------------------------------------------------------------------------------- /lib/bencher_rank/src/generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rank/src/generator.rs -------------------------------------------------------------------------------- /lib/bencher_rank/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rank/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_rbac/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rbac/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_rbac/bencher.polar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rbac/bencher.polar -------------------------------------------------------------------------------- /lib/bencher_rbac/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rbac/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_rbac/src/organization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rbac/src/organization.rs -------------------------------------------------------------------------------- /lib/bencher_rbac/src/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rbac/src/project.rs -------------------------------------------------------------------------------- /lib/bencher_rbac/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rbac/src/server.rs -------------------------------------------------------------------------------- /lib/bencher_rbac/src/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_rbac/src/user.rs -------------------------------------------------------------------------------- /lib/bencher_schema/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_schema/diesel.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/diesel.toml -------------------------------------------------------------------------------- /lib/bencher_schema/env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/env.ps1 -------------------------------------------------------------------------------- /lib/bencher_schema/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/env.sh -------------------------------------------------------------------------------- /lib/bencher_schema/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/bencher_schema/migrations/2022-11-06-180609_metric_kind/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE metric_kind; -------------------------------------------------------------------------------- /lib/bencher_schema/migrations/2023-02-18-212705_all_public/down.sql: -------------------------------------------------------------------------------- 1 | UPDATE project 2 | set public = true; -------------------------------------------------------------------------------- /lib/bencher_schema/migrations/2023-02-18-212705_all_public/up.sql: -------------------------------------------------------------------------------- 1 | UPDATE project 2 | set public = true; -------------------------------------------------------------------------------- /lib/bencher_schema/migrations/2023-08-01-134259_sample_size/down.sql: -------------------------------------------------------------------------------- 1 | -- This update is not reversible. -------------------------------------------------------------------------------- /lib/bencher_schema/migrations/2024-02-16-220538_is_valid/down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/bencher_schema/migrations/2024-10-06-174650_branch_head/down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX IF EXISTS index_branch_head; -------------------------------------------------------------------------------- /lib/bencher_schema/migrations/2025-06-19-054914_empty_slug/down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/database.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/indexer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/indexer.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/messenger/body/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/messenger/body/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/messenger/email.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/messenger/email.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/messenger/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/messenger/message.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/messenger/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/messenger/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/rate_limiting/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/rate_limiting/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/rate_limiting/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/rate_limiting/user.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/rbac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/rbac.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/context/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/context/stats.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/error.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/macros/fn_get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/macros/fn_get.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/macros/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/macros/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/macros/name_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/macros/name_id.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/macros/rate_limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/macros/rate_limit.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/macros/resource_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/macros/resource_id.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/macros/slug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/macros/slug.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/macros/typed_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/macros/typed_id.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/organization/member.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/organization/member.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/organization/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/organization/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/organization/plan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/organization/plan.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/benchmark.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/branch/head.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/branch/head.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/branch/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/branch/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/measure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/measure.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/metric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/metric.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/plot/branch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/plot/branch.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/plot/measure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/plot/measure.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/plot/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/plot/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/plot/testbed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/plot/testbed.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/project_role.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/project_role.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/report/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/report/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/project/testbed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/project/testbed.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/server/backup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/server/backup.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/server/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/server/plus/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/server/plus/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/user/admin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/user/admin.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/user/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/user/auth.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/user/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/user/mod.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/model/user/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/model/user/token.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/schema.rs -------------------------------------------------------------------------------- /lib/bencher_schema/src/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_schema/src/view.rs -------------------------------------------------------------------------------- /lib/bencher_token/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_token/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_token/src/audience.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_token/src/audience.rs -------------------------------------------------------------------------------- /lib/bencher_token/src/claims.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_token/src/claims.rs -------------------------------------------------------------------------------- /lib/bencher_token/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_token/src/error.rs -------------------------------------------------------------------------------- /lib/bencher_token/src/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_token/src/key.rs -------------------------------------------------------------------------------- /lib/bencher_token/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_token/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_valid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/.gitignore -------------------------------------------------------------------------------- /lib/bencher_valid/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/Cargo.toml -------------------------------------------------------------------------------- /lib/bencher_valid/src/benchmark_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/benchmark_name.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/branch_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/branch_name.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/date_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/date_time.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/email.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/email.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/error.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/git_hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/git_hash.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/index.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/jwt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/jwt.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/lib.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/model/boundary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/model/boundary.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/model/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/model/mod.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/model/model_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/model/model_test.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/model/sample_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/model/sample_size.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/model/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/model/window.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/name_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/name_id.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/non_empty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/non_empty.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/brand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/brand.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/cvc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/cvc.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/entitlements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/entitlements.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/last_four.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/last_four.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/mod.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/month.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/month.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/number.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/plan_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/plan_id.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/plan_level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/plan_level.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/plan_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/plan_status.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/recaptcha_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/recaptcha_action.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/recaptcha_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/recaptcha_score.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/plus/year.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/plus/year.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/resource_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/resource_id.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/resource_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/resource_name.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/search.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/secret.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/slug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/slug.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/units.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/units.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/url.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/user_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/user_name.rs -------------------------------------------------------------------------------- /lib/bencher_valid/src/wasm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/src/wasm/mod.rs -------------------------------------------------------------------------------- /lib/bencher_valid/tests/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/lib/bencher_valid/tests/web.rs -------------------------------------------------------------------------------- /license/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/license/LICENSE-APACHE -------------------------------------------------------------------------------- /license/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/license/LICENSE-MIT -------------------------------------------------------------------------------- /license/LICENSE-PLUS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/license/LICENSE-PLUS -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | base = "services/console" 3 | publish = "dist" 4 | -------------------------------------------------------------------------------- /plus/bencher_billing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_billing/Cargo.toml -------------------------------------------------------------------------------- /plus/bencher_billing/src/biller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_billing/src/biller.rs -------------------------------------------------------------------------------- /plus/bencher_billing/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_billing/src/error.rs -------------------------------------------------------------------------------- /plus/bencher_billing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_billing/src/lib.rs -------------------------------------------------------------------------------- /plus/bencher_billing/src/products.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_billing/src/products.rs -------------------------------------------------------------------------------- /plus/bencher_bing_index/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_bing_index/Cargo.toml -------------------------------------------------------------------------------- /plus/bencher_bing_index/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_bing_index/src/lib.rs -------------------------------------------------------------------------------- /plus/bencher_github_client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_github_client/Cargo.toml -------------------------------------------------------------------------------- /plus/bencher_github_client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_github_client/src/lib.rs -------------------------------------------------------------------------------- /plus/bencher_google_client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_google_client/Cargo.toml -------------------------------------------------------------------------------- /plus/bencher_google_client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_google_client/src/lib.rs -------------------------------------------------------------------------------- /plus/bencher_google_index/.gitignore: -------------------------------------------------------------------------------- 1 | google.json 2 | -------------------------------------------------------------------------------- /plus/bencher_google_index/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_google_index/Cargo.toml -------------------------------------------------------------------------------- /plus/bencher_google_index/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_google_index/src/lib.rs -------------------------------------------------------------------------------- /plus/bencher_license/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/Cargo.toml -------------------------------------------------------------------------------- /plus/bencher_license/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/public.pem -------------------------------------------------------------------------------- /plus/bencher_license/src/audience.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/src/audience.rs -------------------------------------------------------------------------------- /plus/bencher_license/src/billing_cycle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/src/billing_cycle.rs -------------------------------------------------------------------------------- /plus/bencher_license/src/claims.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/src/claims.rs -------------------------------------------------------------------------------- /plus/bencher_license/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/src/error.rs -------------------------------------------------------------------------------- /plus/bencher_license/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/src/lib.rs -------------------------------------------------------------------------------- /plus/bencher_license/src/licensor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/src/licensor.rs -------------------------------------------------------------------------------- /plus/bencher_license/src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/src/test/README.md -------------------------------------------------------------------------------- /plus/bencher_license/src/test/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/src/test/private.pem -------------------------------------------------------------------------------- /plus/bencher_license/src/test/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_license/src/test/public.pem -------------------------------------------------------------------------------- /plus/bencher_otel/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_otel/Cargo.toml -------------------------------------------------------------------------------- /plus/bencher_otel/src/api_meter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_otel/src/api_meter.rs -------------------------------------------------------------------------------- /plus/bencher_otel/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_otel/src/lib.rs -------------------------------------------------------------------------------- /plus/bencher_otel_provider/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_otel_provider/Cargo.toml -------------------------------------------------------------------------------- /plus/bencher_otel_provider/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_otel_provider/src/lib.rs -------------------------------------------------------------------------------- /plus/bencher_recaptcha/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_recaptcha/Cargo.toml -------------------------------------------------------------------------------- /plus/bencher_recaptcha/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/plus/bencher_recaptcha/src/lib.rs -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/clippy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/scripts/clippy.sh -------------------------------------------------------------------------------- /scripts/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/scripts/push.sh -------------------------------------------------------------------------------- /scripts/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/scripts/tag.sh -------------------------------------------------------------------------------- /scripts/untag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/scripts/untag.sh -------------------------------------------------------------------------------- /services/action/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | -------------------------------------------------------------------------------- /services/action/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/action/biome.json -------------------------------------------------------------------------------- /services/action/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/action/dist/index.js -------------------------------------------------------------------------------- /services/action/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/action/package-lock.json -------------------------------------------------------------------------------- /services/action/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/action/package.json -------------------------------------------------------------------------------- /services/action/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/action/src/main.ts -------------------------------------------------------------------------------- /services/action/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/action/tsconfig.json -------------------------------------------------------------------------------- /services/api/.gitignore: -------------------------------------------------------------------------------- 1 | *bencher.json 2 | *litestream.yml 3 | -------------------------------------------------------------------------------- /services/api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/Cargo.toml -------------------------------------------------------------------------------- /services/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/Dockerfile -------------------------------------------------------------------------------- /services/api/Dockerfile.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/Dockerfile.dockerignore -------------------------------------------------------------------------------- /services/api/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /services/api/etc/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !.gitignore 4 | !bencher_config.sh -------------------------------------------------------------------------------- /services/api/etc/bencher_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/etc/bencher_config.sh -------------------------------------------------------------------------------- /services/api/fly/fly.dev.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/fly/fly.dev.toml -------------------------------------------------------------------------------- /services/api/fly/fly.test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/fly/fly.test.toml -------------------------------------------------------------------------------- /services/api/fly/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/fly/fly.toml -------------------------------------------------------------------------------- /services/api/fly/fly_config.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flyctl secrets set BENCHER_CONFIG="$(cat $1)" 4 | -------------------------------------------------------------------------------- /services/api/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/openapi.json -------------------------------------------------------------------------------- /services/api/rollback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/rollback.sh -------------------------------------------------------------------------------- /services/api/src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/src/api.rs -------------------------------------------------------------------------------- /services/api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/src/lib.rs -------------------------------------------------------------------------------- /services/api/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/api/src/main.rs -------------------------------------------------------------------------------- /services/benchers/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/benchers/Cargo.lock -------------------------------------------------------------------------------- /services/benchers/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/benchers/Cargo.toml -------------------------------------------------------------------------------- /services/benchers/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/benchers/LICENSE.md -------------------------------------------------------------------------------- /services/benchers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/benchers/README.md -------------------------------------------------------------------------------- /services/benchers/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/benchers/build.rs -------------------------------------------------------------------------------- /services/benchers/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Use the `bencher` command"); 3 | } 4 | -------------------------------------------------------------------------------- /services/cargo-bencher/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cargo-bencher/Cargo.lock -------------------------------------------------------------------------------- /services/cargo-bencher/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cargo-bencher/Cargo.toml -------------------------------------------------------------------------------- /services/cargo-bencher/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cargo-bencher/LICENSE.md -------------------------------------------------------------------------------- /services/cargo-bencher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cargo-bencher/README.md -------------------------------------------------------------------------------- /services/cargo-bencher/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cargo-bencher/build.rs -------------------------------------------------------------------------------- /services/cargo-bencher/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cargo-bencher/src/main.rs -------------------------------------------------------------------------------- /services/cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/Cargo.toml -------------------------------------------------------------------------------- /services/cli/env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/env.ps1 -------------------------------------------------------------------------------- /services/cli/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/env.sh -------------------------------------------------------------------------------- /services/cli/src/bencher/backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/backend.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/compose/container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/compose/container.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/compose/down.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/compose/down.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/compose/logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/compose/logs.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/compose/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/compose/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/compose/up.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/compose/up.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/mock.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/organization/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/organization/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/alert/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/alert/list.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/alert/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/alert/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/alert/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/alert/update.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/alert/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/alert/view.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/archive/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/archive/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/branch/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/branch/list.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/branch/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/branch/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/branch/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/branch/view.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/measure/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/measure/list.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/measure/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/measure/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/measure/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/measure/view.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/metric/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/metric/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/metric/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/metric/view.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/perf/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/perf/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/plot/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/plot/create.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/plot/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/plot/delete.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/plot/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/plot/list.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/plot/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/plot/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/plot/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/plot/update.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/plot/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/plot/view.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/project/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/project/list.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/project/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/project/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/project/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/project/view.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/report/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/report/list.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/report/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/report/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/report/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/report/view.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/testbed/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/testbed/list.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/testbed/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/testbed/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/project/testbed/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/project/testbed/view.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/branch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/branch.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/ci/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/ci/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/error.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/format.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/project.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/runner/flag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/runner/flag.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/runner/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/runner/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/runner/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/runner/output.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/runner/pipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/runner/pipe.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/runner/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/runner/shell.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/run/sub_adapter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/run/sub_adapter.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/sub_cmd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/sub_cmd.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/system/auth/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/system/auth/login.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/system/auth/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/system/auth/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/system/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/system/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/system/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/system/server/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/token/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/token/create.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/token/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/token/list.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/token/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/token/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/token/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/token/update.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/token/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/token/view.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/user/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/user/list.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/user/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/user/mod.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/user/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/user/update.rs -------------------------------------------------------------------------------- /services/cli/src/bencher/sub/user/user/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/bencher/sub/user/user/view.rs -------------------------------------------------------------------------------- /services/cli/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/error.rs -------------------------------------------------------------------------------- /services/cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/lib.rs -------------------------------------------------------------------------------- /services/cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/main.rs -------------------------------------------------------------------------------- /services/cli/src/parser/compose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/compose.rs -------------------------------------------------------------------------------- /services/cli/src/parser/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/mock.rs -------------------------------------------------------------------------------- /services/cli/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/mod.rs -------------------------------------------------------------------------------- /services/cli/src/parser/organization/claim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/organization/claim.rs -------------------------------------------------------------------------------- /services/cli/src/parser/organization/member.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/organization/member.rs -------------------------------------------------------------------------------- /services/cli/src/parser/organization/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/organization/mod.rs -------------------------------------------------------------------------------- /services/cli/src/parser/organization/plan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/organization/plan.rs -------------------------------------------------------------------------------- /services/cli/src/parser/organization/usage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/organization/usage.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/alert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/alert.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/archive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/archive.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/benchmark.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/branch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/branch.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/measure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/measure.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/metric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/metric.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/mod.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/perf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/perf.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/plot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/plot.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/report.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/report.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/testbed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/testbed.rs -------------------------------------------------------------------------------- /services/cli/src/parser/project/threshold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/project/threshold.rs -------------------------------------------------------------------------------- /services/cli/src/parser/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/run.rs -------------------------------------------------------------------------------- /services/cli/src/parser/system/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/system/auth.rs -------------------------------------------------------------------------------- /services/cli/src/parser/system/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/system/mod.rs -------------------------------------------------------------------------------- /services/cli/src/parser/system/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/system/server.rs -------------------------------------------------------------------------------- /services/cli/src/parser/user/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/user/mod.rs -------------------------------------------------------------------------------- /services/cli/src/parser/user/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/src/parser/user/token.rs -------------------------------------------------------------------------------- /services/cli/templates/install-cli.ps1.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/templates/install-cli.ps1.j2 -------------------------------------------------------------------------------- /services/cli/templates/install-cli.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/templates/install-cli.sh.j2 -------------------------------------------------------------------------------- /services/cli/templates/output/install-cli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/templates/output/install-cli.ps1 -------------------------------------------------------------------------------- /services/cli/templates/output/install-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/cli/templates/output/install-cli.sh -------------------------------------------------------------------------------- /services/console/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/.env.development -------------------------------------------------------------------------------- /services/console/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/.env.production -------------------------------------------------------------------------------- /services/console/.env.runtime: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/console/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/.gitignore -------------------------------------------------------------------------------- /services/console/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/Dockerfile -------------------------------------------------------------------------------- /services/console/Dockerfile.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/Dockerfile.dockerignore -------------------------------------------------------------------------------- /services/console/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/adapter.js -------------------------------------------------------------------------------- /services/console/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/astro.config.mjs -------------------------------------------------------------------------------- /services/console/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/biome.json -------------------------------------------------------------------------------- /services/console/build_wasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/build_wasm.sh -------------------------------------------------------------------------------- /services/console/knip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/knip.json -------------------------------------------------------------------------------- /services/console/lychee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/lychee.toml -------------------------------------------------------------------------------- /services/console/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/package-lock.json -------------------------------------------------------------------------------- /services/console/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/package.json -------------------------------------------------------------------------------- /services/console/public/bimi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/public/bimi.svg -------------------------------------------------------------------------------- /services/console/public/bmf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/public/bmf.json -------------------------------------------------------------------------------- /services/console/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/public/favicon.png -------------------------------------------------------------------------------- /services/console/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/public/favicon.svg -------------------------------------------------------------------------------- /services/console/public/indexnow.txt: -------------------------------------------------------------------------------- 1 | bbf489cef4c24ba2b54c991e8b97a1c8 -------------------------------------------------------------------------------- /services/console/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/public/robots.txt -------------------------------------------------------------------------------- /services/console/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/public/site.webmanifest -------------------------------------------------------------------------------- /services/console/public/wordmark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/public/wordmark-dark.svg -------------------------------------------------------------------------------- /services/console/public/wordmark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/public/wordmark-light.svg -------------------------------------------------------------------------------- /services/console/public/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/public/wordmark.svg -------------------------------------------------------------------------------- /services/console/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/site.js -------------------------------------------------------------------------------- /services/console/src/chunks/benchmarking-cpp/google-benchmark/cd-back.mdx: -------------------------------------------------------------------------------- 1 | ``` 2 | cd .. 3 | ``` -------------------------------------------------------------------------------- /services/console/src/chunks/benchmarking-cpp/google-benchmark/cd-benchmark.mdx: -------------------------------------------------------------------------------- 1 | ``` 2 | $ cd benchmark 3 | ``` 4 | -------------------------------------------------------------------------------- /services/console/src/chunks/benchmarking-rust/bench/rust-toolchain-rust-bench-code.mdx: -------------------------------------------------------------------------------- 1 | ```toml 2 | [toolchain] 3 | channel = "nightly" 4 | ``` 5 | -------------------------------------------------------------------------------- /services/console/src/chunks/benchmarking-rust/bench/test-crate-rust-bench-code.mdx: -------------------------------------------------------------------------------- 1 | ```rust 2 | #![feature(test)] 3 | extern crate test; 4 | ``` 5 | -------------------------------------------------------------------------------- /services/console/src/chunks/benchmarking-rust/custom-harness/cargo-bench.mdx: -------------------------------------------------------------------------------- 1 | ```sh 2 | cargo bench 3 | ``` 4 | -------------------------------------------------------------------------------- /services/console/src/chunks/benchmarking-rust/custom-harness/cargo-toml.mdx: -------------------------------------------------------------------------------- 1 | ```toml title="Cargo.toml" 2 | [[bench]] 3 | harness = false 4 | ``` 5 | -------------------------------------------------------------------------------- /services/console/src/chunks/benchmarking-rust/hello-world-rust-code.mdx: -------------------------------------------------------------------------------- 1 | ```rust 2 | fn main() { 3 | println!("Hello, world!"); 4 | } 5 | ``` -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/de/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 |
4 | 5 | Optional: Hilfe anzeigen. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/en/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 |
4 | 5 | Optional: Print help. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/es/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 |
4 | 5 | Opcional: Imprimir ayuda. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/fr/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 |
4 | 5 | Facultatif : Afficher l'aide. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/ja/allow-failure.mdx: -------------------------------------------------------------------------------- 1 | ### `--allow-failure` 2 | 3 |
4 | 5 | オプション:ベンチマークテストの失敗を許可する。 -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/ja/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 |
4 | 5 | オプション: ヘルプを表示します。 -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/ja/iter.mdx: -------------------------------------------------------------------------------- 1 | ### `--iter ` 2 | 3 |
4 | 5 | オプション:実行繰り返し数。デフォルトは`1`です。 -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/ko/allow-failure.mdx: -------------------------------------------------------------------------------- 1 | ### `--allow-failure` 2 | 3 |
4 | 5 | 선택사항: 벤치마크 테스트 실패를 허용합니다. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/ko/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 |
4 | 5 | 선택 사항: 도움말을 출력합니다. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/pt/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 |
4 | 5 | Opcional: Imprime a ajuda. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/ru/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 |
4 | 5 | Необязательно: Вывести справку. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/zh/allow-failure.mdx: -------------------------------------------------------------------------------- 1 | ### `--allow-failure` 2 | 3 |
4 | 5 | 可选:允许基准测试失败。 -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/zh/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 |
4 | 5 | 可选:打印帮助信息。 -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-run/zh/timeout.mdx: -------------------------------------------------------------------------------- 1 | ### `--timeout ` 2 | 3 |
4 | 5 | 可选:请求超时时间(秒)。 6 | 默认值为15秒。 7 | -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-self-hosted/zh/cli/compress.mdx: -------------------------------------------------------------------------------- 1 | ### `--compress` 2 | 3 | 使用 `gzip` 压缩数据库备份。 4 | 此操作优先执行。 -------------------------------------------------------------------------------- /services/console/src/chunks/docs-explanation/bencher-self-hosted/zh/cli/remove.mdx: -------------------------------------------------------------------------------- 1 | ### `--remove` 2 | 3 | 删除数据库备份的本地副本。 4 | 此操作位于第三步运行。 -------------------------------------------------------------------------------- /services/console/src/chunks/docs-how-to/track-benchmarks/git-checkout-feature.mdx: -------------------------------------------------------------------------------- 1 | ```sh 2 | git checkout feature-branch 3 | ``` 4 | -------------------------------------------------------------------------------- /services/console/src/chunks/docs-how-to/track-benchmarks/git-checkout-main.mdx: -------------------------------------------------------------------------------- 1 | ```sh 2 | git checkout main 3 | ``` 4 | -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/bencher-down-cmd.mdx: -------------------------------------------------------------------------------- 1 | ``` 2 | bencher down [OPTIONS] [SERVICE] 3 | ``` 4 | -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/bencher-logs-cmd.mdx: -------------------------------------------------------------------------------- 1 | ``` 2 | bencher up [OPTIONS] [SERVICE] 3 | ``` 4 | -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/bencher-up-cmd.mdx: -------------------------------------------------------------------------------- 1 | ``` 2 | bencher up [OPTIONS] [SERVICE] 3 | ``` 4 | -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/de/cli/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 | Hilfe drucken. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/es/cli/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 | Imprimir ayuda. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/fr/cli/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 | Imprimer l'aide. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/ja/cli/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 | ヘルプを表示します。 -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/ko/cli/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 | 도움말 출력. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/pt/cli/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 | Imprimir ajuda. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/ru/cli/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 | Выводит справку. -------------------------------------------------------------------------------- /services/console/src/chunks/docs-reference/bencher-compose/zh/cli/help.mdx: -------------------------------------------------------------------------------- 1 | ### `--help` 2 | 3 | 打印帮助。 -------------------------------------------------------------------------------- /services/console/src/chunks/docs-tutorial/docker/docker-version-output.mdx: -------------------------------------------------------------------------------- 1 | ``` 2 | Docker version 20.10.17, build 100c701 3 | ``` -------------------------------------------------------------------------------- /services/console/src/chunks/docs-tutorial/quick-start/bencher-version-output.mdx: -------------------------------------------------------------------------------- 1 | ``` 2 | bencher 0.5.8 3 | ``` 4 | -------------------------------------------------------------------------------- /services/console/src/chunks/general/en/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/chunks/general/en/release.md -------------------------------------------------------------------------------- /services/console/src/chunks/scrap/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /services/console/src/components/adapter/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/adapter/name.ts -------------------------------------------------------------------------------- /services/console/src/components/adapter/util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/adapter/util.tsx -------------------------------------------------------------------------------- /services/console/src/components/auth/AuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/auth/AuthForm.tsx -------------------------------------------------------------------------------- /services/console/src/components/auth/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/auth/Logout.tsx -------------------------------------------------------------------------------- /services/console/src/components/auth/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/auth/auth.tsx -------------------------------------------------------------------------------- /services/console/src/components/console/perf/plot/util.tsx: -------------------------------------------------------------------------------- 1 | export const BENCHER_MEASURE_ID = "bencher-measure"; 2 | -------------------------------------------------------------------------------- /services/console/src/components/docs/author.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/docs/author.tsx -------------------------------------------------------------------------------- /services/console/src/components/field/Field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/field/Field.tsx -------------------------------------------------------------------------------- /services/console/src/components/field/kind.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/field/kind.tsx -------------------------------------------------------------------------------- /services/console/src/components/navbar/id.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/navbar/id.tsx -------------------------------------------------------------------------------- /services/console/src/components/perf/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/perf/util.ts -------------------------------------------------------------------------------- /services/console/src/components/site/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/site/Footer.astro -------------------------------------------------------------------------------- /services/console/src/components/site/Redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/site/Redirect.tsx -------------------------------------------------------------------------------- /services/console/src/components/site/Tetris.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/components/site/Tetris.astro -------------------------------------------------------------------------------- /services/console/src/config/console.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/console.tsx -------------------------------------------------------------------------------- /services/console/src/config/project/alerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/project/alerts.tsx -------------------------------------------------------------------------------- /services/console/src/config/project/branches.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/project/branches.tsx -------------------------------------------------------------------------------- /services/console/src/config/project/measures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/project/measures.tsx -------------------------------------------------------------------------------- /services/console/src/config/project/metrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/project/metrics.tsx -------------------------------------------------------------------------------- /services/console/src/config/project/plot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/project/plot.tsx -------------------------------------------------------------------------------- /services/console/src/config/project/projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/project/projects.tsx -------------------------------------------------------------------------------- /services/console/src/config/project/reports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/project/reports.tsx -------------------------------------------------------------------------------- /services/console/src/config/project/testbeds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/project/testbeds.tsx -------------------------------------------------------------------------------- /services/console/src/config/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/types.tsx -------------------------------------------------------------------------------- /services/console/src/config/user/tokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/user/tokens.tsx -------------------------------------------------------------------------------- /services/console/src/config/user/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/user/users.tsx -------------------------------------------------------------------------------- /services/console/src/config/util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/config/util.tsx -------------------------------------------------------------------------------- /services/console/src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content.config.ts -------------------------------------------------------------------------------- /services/console/src/content/api-users/tokens.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/api-users/tokens.mdx -------------------------------------------------------------------------------- /services/console/src/content/api-users/users.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/api-users/users.mdx -------------------------------------------------------------------------------- /services/console/src/content/learn/18to4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/learn/18to4.md -------------------------------------------------------------------------------- /services/console/src/content/learn/fuzz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/learn/fuzz.md -------------------------------------------------------------------------------- /services/console/src/content/learn/learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/learn/learn.md -------------------------------------------------------------------------------- /services/console/src/content/learn/pgo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/learn/pgo.md -------------------------------------------------------------------------------- /services/console/src/content/legal/license.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/legal/license.mdx -------------------------------------------------------------------------------- /services/console/src/content/legal/plus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/legal/plus.mdx -------------------------------------------------------------------------------- /services/console/src/content/legal/privacy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/legal/privacy.mdx -------------------------------------------------------------------------------- /services/console/src/content/legal/trademark.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/content/legal/trademark.mdx -------------------------------------------------------------------------------- /services/console/src/i18n/LangButton.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/i18n/LangButton.astro -------------------------------------------------------------------------------- /services/console/src/i18n/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/i18n/ui.ts -------------------------------------------------------------------------------- /services/console/src/i18n/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/i18n/utils.ts -------------------------------------------------------------------------------- /services/console/src/layouts/BaseLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/layouts/BaseLayout.astro -------------------------------------------------------------------------------- /services/console/src/layouts/docs/ApiLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/layouts/docs/ApiLayout.astro -------------------------------------------------------------------------------- /services/console/src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/404.astro -------------------------------------------------------------------------------- /services/console/src/pages/500.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/500.astro -------------------------------------------------------------------------------- /services/console/src/pages/auth/confirm.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/auth/confirm.astro -------------------------------------------------------------------------------- /services/console/src/pages/auth/github.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/auth/github.astro -------------------------------------------------------------------------------- /services/console/src/pages/auth/google.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/auth/google.astro -------------------------------------------------------------------------------- /services/console/src/pages/auth/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/auth/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/auth/login.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/auth/login.astro -------------------------------------------------------------------------------- /services/console/src/pages/auth/logout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/auth/logout.astro -------------------------------------------------------------------------------- /services/console/src/pages/auth/signup.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/auth/signup.astro -------------------------------------------------------------------------------- /services/console/src/pages/author/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/author/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/brand.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/brand.astro -------------------------------------------------------------------------------- /services/console/src/pages/console/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/console/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/docs/api/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/docs/api/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/docs/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/docs/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/download/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/download/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/explore.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/explore.astro -------------------------------------------------------------------------------- /services/console/src/pages/help.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/help.astro -------------------------------------------------------------------------------- /services/console/src/pages/hyperfine.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/hyperfine.astro -------------------------------------------------------------------------------- /services/console/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/learn/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/learn/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/legal/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/legal/[slug].astro -------------------------------------------------------------------------------- /services/console/src/pages/legal/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/legal/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/meghan.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/meghan.astro -------------------------------------------------------------------------------- /services/console/src/pages/perf/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/perf/index.astro -------------------------------------------------------------------------------- /services/console/src/pages/play.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/play.astro -------------------------------------------------------------------------------- /services/console/src/pages/pricing.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/pricing.astro -------------------------------------------------------------------------------- /services/console/src/pages/rust/criterion.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/rust/criterion.astro -------------------------------------------------------------------------------- /services/console/src/pages/rust/gungraun.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/rust/gungraun.astro -------------------------------------------------------------------------------- /services/console/src/pages/rust/iai.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/rust/iai.astro -------------------------------------------------------------------------------- /services/console/src/pages/rust/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/pages/rust/index.astro -------------------------------------------------------------------------------- /services/console/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/styles/styles.scss -------------------------------------------------------------------------------- /services/console/src/types/bencher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/types/bencher.ts -------------------------------------------------------------------------------- /services/console/src/util/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/auth.ts -------------------------------------------------------------------------------- /services/console/src/util/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/collection.ts -------------------------------------------------------------------------------- /services/console/src/util/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/convert.ts -------------------------------------------------------------------------------- /services/console/src/util/ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/ext.ts -------------------------------------------------------------------------------- /services/console/src/util/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/http.ts -------------------------------------------------------------------------------- /services/console/src/util/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/notify.ts -------------------------------------------------------------------------------- /services/console/src/util/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/organization.ts -------------------------------------------------------------------------------- /services/console/src/util/recaptcha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/recaptcha.ts -------------------------------------------------------------------------------- /services/console/src/util/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/resource.ts -------------------------------------------------------------------------------- /services/console/src/util/scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/scale.ts -------------------------------------------------------------------------------- /services/console/src/util/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/url.ts -------------------------------------------------------------------------------- /services/console/src/util/valid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/src/util/valid.ts -------------------------------------------------------------------------------- /services/console/test/todo.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/test/todo.test.tsx -------------------------------------------------------------------------------- /services/console/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/tsconfig.json -------------------------------------------------------------------------------- /services/console/typeshare.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/typeshare.toml -------------------------------------------------------------------------------- /services/console/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/console/vitest.config.ts -------------------------------------------------------------------------------- /services/otel-collector/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/otel-collector/Dockerfile -------------------------------------------------------------------------------- /services/otel-collector/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/otel-collector/deploy.sh -------------------------------------------------------------------------------- /services/otel-collector/fly/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/otel-collector/fly/fly.toml -------------------------------------------------------------------------------- /services/otel-collector/otel-collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/otel-collector/otel-collector.yaml -------------------------------------------------------------------------------- /services/otel-collector/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/services/otel-collector/run.sh -------------------------------------------------------------------------------- /tasks/bin_version/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/bin_version/Cargo.toml -------------------------------------------------------------------------------- /tasks/bin_version/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/bin_version/src/main.rs -------------------------------------------------------------------------------- /tasks/gen_installer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_installer/Cargo.toml -------------------------------------------------------------------------------- /tasks/gen_installer/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_installer/src/main.rs -------------------------------------------------------------------------------- /tasks/gen_installer/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_installer/src/parser/mod.rs -------------------------------------------------------------------------------- /tasks/gen_installer/src/task/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_installer/src/task/mod.rs -------------------------------------------------------------------------------- /tasks/gen_installer/src/task/template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_installer/src/task/template.rs -------------------------------------------------------------------------------- /tasks/gen_notes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_notes/Cargo.toml -------------------------------------------------------------------------------- /tasks/gen_notes/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_notes/src/main.rs -------------------------------------------------------------------------------- /tasks/gen_notes/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_notes/src/parser/mod.rs -------------------------------------------------------------------------------- /tasks/gen_notes/src/task/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_notes/src/task/mod.rs -------------------------------------------------------------------------------- /tasks/gen_notes/src/task/release_notes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_notes/src/task/release_notes.rs -------------------------------------------------------------------------------- /tasks/gen_pkg/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_pkg/Cargo.toml -------------------------------------------------------------------------------- /tasks/gen_pkg/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_pkg/src/main.rs -------------------------------------------------------------------------------- /tasks/gen_pkg/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_pkg/src/parser/mod.rs -------------------------------------------------------------------------------- /tasks/gen_pkg/src/task/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_pkg/src/task/mod.rs -------------------------------------------------------------------------------- /tasks/gen_pkg/src/task/package/deb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_pkg/src/task/package/deb.rs -------------------------------------------------------------------------------- /tasks/gen_pkg/src/task/package/man.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_pkg/src/task/package/man.rs -------------------------------------------------------------------------------- /tasks/gen_pkg/src/task/package/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_pkg/src/task/package/mod.rs -------------------------------------------------------------------------------- /tasks/gen_types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_types/Cargo.toml -------------------------------------------------------------------------------- /tasks/gen_types/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_types/src/main.rs -------------------------------------------------------------------------------- /tasks/gen_types/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_types/src/parser/mod.rs -------------------------------------------------------------------------------- /tasks/gen_types/src/task/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_types/src/task/mod.rs -------------------------------------------------------------------------------- /tasks/gen_types/src/task/spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_types/src/task/spec.rs -------------------------------------------------------------------------------- /tasks/gen_types/src/task/ts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_types/src/task/ts.rs -------------------------------------------------------------------------------- /tasks/gen_types/src/task/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/gen_types/src/task/types.rs -------------------------------------------------------------------------------- /tasks/test_api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_api/Cargo.toml -------------------------------------------------------------------------------- /tasks/test_api/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_api/src/main.rs -------------------------------------------------------------------------------- /tasks/test_api/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_api/src/parser/mod.rs -------------------------------------------------------------------------------- /tasks/test_api/src/parser/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_api/src/parser/test.rs -------------------------------------------------------------------------------- /tasks/test_api/src/task/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_api/src/task/mod.rs -------------------------------------------------------------------------------- /tasks/test_api/src/task/test/examples.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_api/src/task/test/examples.rs -------------------------------------------------------------------------------- /tasks/test_api/src/task/test/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_api/src/task/test/mod.rs -------------------------------------------------------------------------------- /tasks/test_api/src/task/test/seed_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_api/src/task/test/seed_test.rs -------------------------------------------------------------------------------- /tasks/test_api/src/task/test/smoke_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_api/src/task/test/smoke_test.rs -------------------------------------------------------------------------------- /tasks/test_netlify/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_netlify/Cargo.toml -------------------------------------------------------------------------------- /tasks/test_netlify/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_netlify/src/main.rs -------------------------------------------------------------------------------- /tasks/test_netlify/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_netlify/src/parser/mod.rs -------------------------------------------------------------------------------- /tasks/test_netlify/src/task/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_netlify/src/task/mod.rs -------------------------------------------------------------------------------- /tasks/test_netlify/src/task/test_netlify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/tasks/test_netlify/src/task/test_netlify.rs -------------------------------------------------------------------------------- /xtask/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | spec.rs 3 | -------------------------------------------------------------------------------- /xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/Cargo.toml -------------------------------------------------------------------------------- /xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/main.rs -------------------------------------------------------------------------------- /xtask/src/parser/live.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/parser/live.rs -------------------------------------------------------------------------------- /xtask/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/parser/mod.rs -------------------------------------------------------------------------------- /xtask/src/parser/plus/email_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/parser/plus/email_list.rs -------------------------------------------------------------------------------- /xtask/src/parser/plus/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/parser/plus/index.rs -------------------------------------------------------------------------------- /xtask/src/parser/plus/license.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/parser/plus/license.rs -------------------------------------------------------------------------------- /xtask/src/parser/plus/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/parser/plus/mod.rs -------------------------------------------------------------------------------- /xtask/src/parser/plus/prompt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/parser/plus/prompt.rs -------------------------------------------------------------------------------- /xtask/src/parser/plus/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/parser/plus/stats.rs -------------------------------------------------------------------------------- /xtask/src/task/live.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/live.rs -------------------------------------------------------------------------------- /xtask/src/task/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/mod.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/email_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/email_list.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/image.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/index/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/index/delete.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/index/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/index/engine.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/index/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/index/mod.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/index/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/index/update.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/license/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/license/generate.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/license/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/license/mod.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/license/validate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/license/validate.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/mod.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/prompt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/prompt.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/stats.rs -------------------------------------------------------------------------------- /xtask/src/task/plus/translate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencherdev/bencher/HEAD/xtask/src/task/plus/translate.rs --------------------------------------------------------------------------------