├── .github └── workflows │ └── hugo.yml ├── .gitignore ├── LICENSE ├── README.md ├── aws ├── rds.go └── rds_test.go ├── benchmarks ├── aurora │ ├── _all.yaml │ ├── setup.yaml │ ├── trx │ │ ├── analyze-tables.sql │ │ ├── create-tables.sql │ │ ├── insert-rows.sql │ │ └── write-only.sql │ └── write-only.yaml ├── intro │ ├── insert-rows.sql │ ├── read-only.sql │ ├── read-only.yaml │ ├── row-lock.yaml │ ├── rw-trx.sql │ ├── schema.sql │ └── setup.yaml ├── jcole-bug-97001 │ ├── after.yaml │ ├── before.yaml │ ├── get-1-row.sql │ ├── insert-rows.sql │ ├── schema.sql │ ├── setup.yaml │ └── shift-rows.sql ├── sysbench │ ├── _all.yaml │ ├── read-only.yaml │ ├── setup.yaml │ ├── trx │ │ ├── insert-rows.sql │ │ ├── read-only.sql │ │ ├── schema.sql │ │ ├── secondary-index.sql │ │ └── write-only.sql │ └── write-only.yaml └── xfer │ ├── _all.yaml │ ├── setup.yaml │ ├── trx │ ├── insert-cust-bal.sql │ ├── insert-xfers.sql │ ├── schema.sql │ └── xfer.sql │ └── xfer.yaml ├── bin └── finch │ └── main.go ├── boot ├── boot.go ├── boot_test.go ├── cmdline.go └── scope_test.go ├── client ├── client.go └── client_test.go ├── compute ├── api.go ├── client.go ├── server.go └── server_test.go ├── config ├── config.go ├── config_test.go └── file.go ├── data ├── column.go ├── generator.go ├── id.go ├── id_test.go ├── integer.go ├── integer_test.go ├── scope.go ├── scope_test.go ├── string.go └── string_test.go ├── dbconn ├── factory.go ├── factory_test.go └── mycnf.go ├── docs ├── .hugo_build.lock ├── archetypes │ └── default.md ├── config.toml ├── content │ ├── _index.md │ ├── api │ │ ├── _index.md │ │ ├── data.md │ │ └── stats.md │ ├── benchmark │ │ ├── _index.md │ │ ├── error-handling.md │ │ ├── examples.md │ │ ├── overview.md │ │ ├── statistics.md │ │ ├── trx.md │ │ └── workload.md │ ├── data │ │ ├── _index.md │ │ ├── generators.md │ │ ├── keys.md │ │ ├── limits.md │ │ └── scope.md │ ├── intro │ │ ├── _index.md │ │ ├── concepts.md │ │ ├── start-here.md │ │ └── tldr.md │ ├── operate │ │ ├── _index.md │ │ ├── client-server.md │ │ ├── command-line.md │ │ └── mysql.md │ └── syntax │ │ ├── _index.md │ │ ├── all-file.md │ │ ├── params.md │ │ ├── stage-file.md │ │ ├── trx-file.md │ │ └── values.md ├── serve.sh ├── static │ ├── custom.css │ └── img │ │ ├── finch_benchmark_workload.svg │ │ ├── finch_compute.svg │ │ ├── finch_data_key.svg │ │ ├── finch_exec_group.svg │ │ ├── finch_stats_combined.svg │ │ └── normal_benchmark_workload.svg └── themes │ └── hugo-geekdoc │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── archetypes │ ├── docs.md │ └── posts.md │ ├── assets │ ├── search │ │ ├── config.json │ │ └── data.json │ └── sprites │ │ └── geekdoc.svg │ ├── data │ └── assets.json │ ├── i18n │ ├── cs.yaml │ ├── de.yaml │ ├── en.yaml │ ├── it.yaml │ ├── ja.yaml │ ├── nl.yaml │ └── zh-cn.yaml │ ├── images │ ├── readme.png │ ├── screenshot.png │ └── tn.png │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── _markup │ │ │ ├── render-codeblock-mermaid.html │ │ │ ├── render-heading.html │ │ │ ├── render-image.html │ │ │ └── render-link.html │ │ ├── baseof.html │ │ ├── list.html │ │ ├── single.html │ │ ├── taxonomy.html │ │ └── terms.html │ ├── partials │ │ ├── foot.html │ │ ├── head │ │ │ ├── custom.html │ │ │ ├── favicons.html │ │ │ ├── meta.html │ │ │ ├── microformats.html │ │ │ ├── others.html │ │ │ └── rel-me.html │ │ ├── language.html │ │ ├── menu-bundle.html │ │ ├── menu-extra.html │ │ ├── menu-filetree.html │ │ ├── menu-nextprev.html │ │ ├── menu.html │ │ ├── microformats │ │ │ ├── opengraph.html │ │ │ ├── schema.html │ │ │ └── twitter_cards.html │ │ ├── page-header.html │ │ ├── pagination.html │ │ ├── posts │ │ │ └── metadata.html │ │ ├── search.html │ │ ├── site-footer.html │ │ ├── site-header.html │ │ ├── svg-icon-symbols.html │ │ └── utils │ │ │ ├── content.html │ │ │ ├── description.html │ │ │ ├── featured.html │ │ │ └── title.html │ ├── posts │ │ ├── list.html │ │ └── single.html │ ├── robots.txt │ └── shortcodes │ │ ├── button.html │ │ ├── columns.html │ │ ├── expand.html │ │ ├── hint.html │ │ ├── icon.html │ │ ├── img.html │ │ ├── include.html │ │ ├── katex.html │ │ ├── mermaid.html │ │ ├── progress.html │ │ ├── propertylist.html │ │ ├── tab.html │ │ ├── tabs.html │ │ ├── toc-tree.html │ │ └── toc.html │ ├── static │ ├── brand.svg │ ├── custom.css │ ├── favicon │ │ ├── android-chrome-144x144.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-256x256.png │ │ ├── android-chrome-36x36.png │ │ ├── android-chrome-384x384.png │ │ ├── android-chrome-48x48.png │ │ ├── android-chrome-512x512.png │ │ ├── android-chrome-72x72.png │ │ ├── android-chrome-96x96.png │ │ ├── apple-touch-icon-1024x1024.png │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-167x167.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── apple-touch-startup-image-1125x2436.png │ │ ├── apple-touch-startup-image-1136x640.png │ │ ├── apple-touch-startup-image-1170x2532.png │ │ ├── apple-touch-startup-image-1242x2208.png │ │ ├── apple-touch-startup-image-1242x2688.png │ │ ├── apple-touch-startup-image-1284x2778.png │ │ ├── apple-touch-startup-image-1334x750.png │ │ ├── apple-touch-startup-image-1536x2048.png │ │ ├── apple-touch-startup-image-1620x2160.png │ │ ├── apple-touch-startup-image-1668x2224.png │ │ ├── apple-touch-startup-image-1668x2388.png │ │ ├── apple-touch-startup-image-1792x828.png │ │ ├── apple-touch-startup-image-2048x1536.png │ │ ├── apple-touch-startup-image-2048x2732.png │ │ ├── apple-touch-startup-image-2160x1620.png │ │ ├── apple-touch-startup-image-2208x1242.png │ │ ├── apple-touch-startup-image-2224x1668.png │ │ ├── apple-touch-startup-image-2388x1668.png │ │ ├── apple-touch-startup-image-2436x1125.png │ │ ├── apple-touch-startup-image-2532x1170.png │ │ ├── apple-touch-startup-image-2688x1242.png │ │ ├── apple-touch-startup-image-2732x2048.png │ │ ├── apple-touch-startup-image-2778x1284.png │ │ ├── apple-touch-startup-image-640x1136.png │ │ ├── apple-touch-startup-image-750x1334.png │ │ ├── apple-touch-startup-image-828x1792.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-48x48.png │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── manifest.json │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ └── mstile-70x70.png │ ├── fonts │ │ ├── GeekdocIcons.woff │ │ ├── GeekdocIcons.woff2 │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.woff │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.woff │ │ ├── KaTeX_Typewriter-Regular.woff2 │ │ ├── LiberationMono.woff │ │ ├── LiberationMono.woff2 │ │ ├── LiberationSans-Bold.woff │ │ ├── LiberationSans-Bold.woff2 │ │ ├── LiberationSans-BoldItalic.woff │ │ ├── LiberationSans-BoldItalic.woff2 │ │ ├── LiberationSans-Italic.woff │ │ ├── LiberationSans-Italic.woff2 │ │ ├── LiberationSans.woff │ │ ├── LiberationSans.woff2 │ │ ├── Metropolis.woff │ │ └── Metropolis.woff2 │ ├── img │ │ └── geekdoc-stack.svg │ ├── js │ │ ├── 1-771c2373.chunk.min.js │ │ ├── 116-cbb23373.chunk.min.js │ │ ├── 185-d997aa4e.chunk.min.js │ │ ├── 211-5d98ec66.chunk.min.js │ │ ├── 216-cdb5edfd.chunk.min.js │ │ ├── 234-d1acff47.chunk.min.js │ │ ├── 314-df79cd85.chunk.min.js │ │ ├── 341-47267032.chunk.min.js │ │ ├── 433-6462193c.chunk.min.js │ │ ├── 451-2756cb7b.chunk.min.js │ │ ├── 478-14ca1dd3.chunk.min.js │ │ ├── 484-21d9ea41.chunk.min.js │ │ ├── 484-21d9ea41.chunk.min.js.LICENSE.txt │ │ ├── 492-d5f398da.chunk.min.js │ │ ├── 566-21965c1c.chunk.min.js │ │ ├── 573-1654a4be.chunk.min.js │ │ ├── 619-5f3b06bd.chunk.min.js │ │ ├── 706-70270df2.chunk.min.js │ │ ├── 725-add1e85f.chunk.min.js │ │ ├── 730-cc134313.chunk.min.js │ │ ├── 733-e430b503.chunk.min.js │ │ ├── 855-7e4c3d5d.chunk.min.js │ │ ├── 863-e1729a6b.chunk.min.js │ │ ├── 899-718e9a6e.chunk.min.js │ │ ├── 926-40cc1be5.chunk.min.js │ │ ├── 926-40cc1be5.chunk.min.js.LICENSE.txt │ │ ├── 941-8cd341a7.chunk.min.js │ │ ├── 964-70755b86.chunk.min.js │ │ ├── 99-d88db0a9.chunk.min.js │ │ ├── colortheme-d3e4d351.bundle.min.js │ │ ├── katex-f8a1e6eb.bundle.min.js │ │ ├── main-fbb9c8b0.bundle.min.js │ │ ├── main-fbb9c8b0.bundle.min.js.LICENSE.txt │ │ ├── mermaid-21599a06.bundle.min.js │ │ ├── search-83320133.bundle.min.js │ │ └── search-83320133.bundle.min.js.LICENSE.txt │ ├── katex-b2c3b51a.min.css │ ├── main-ba0e2765.min.css │ ├── mobile-79ddc617.min.css │ └── print-735ccc12.min.css │ └── theme.toml ├── finch.go ├── finch_test.go ├── go.mod ├── go.sum ├── limit ├── data.go ├── data_test.go └── rate.go ├── proto └── proto.go ├── stage ├── stage.go └── stage_test.go ├── stats ├── collector.go ├── collector_test.go ├── csv.go ├── remote.go ├── reporter.go ├── reporter_test.go ├── stats.go ├── stats_test.go └── stdout.go ├── test ├── config │ └── b1 │ │ ├── _all.yaml │ │ ├── stage.yaml │ │ └── trx.sql ├── coverage ├── docker │ └── docker-compose.yaml ├── mock │ ├── data_generator.go │ └── stats_reporter.go ├── mysql.go ├── run │ ├── columns │ │ ├── run.sql │ │ ├── setup.sql │ │ └── test.yaml │ ├── scope │ │ ├── 001.sql │ │ ├── 002.sql │ │ ├── client.yaml │ │ ├── iter.yaml │ │ ├── statement.yaml │ │ ├── trx.yaml │ │ └── workload_cg_alloc.yaml │ └── select-1 │ │ ├── test.sql │ │ └── test.yaml └── trx │ ├── 001.sql │ ├── 002.sql │ ├── 003.sql │ ├── copy-no.sql │ ├── copy3-1.sql │ ├── copy3-2.sql │ └── rowscope-csv.sql ├── trx ├── trx.go └── trx_test.go └── workload ├── workload.go └── workload_test.go /.github/workflows/hugo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/.github/workflows/hugo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/README.md -------------------------------------------------------------------------------- /aws/rds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/aws/rds.go -------------------------------------------------------------------------------- /aws/rds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/aws/rds_test.go -------------------------------------------------------------------------------- /benchmarks/aurora/_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/aurora/_all.yaml -------------------------------------------------------------------------------- /benchmarks/aurora/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/aurora/setup.yaml -------------------------------------------------------------------------------- /benchmarks/aurora/trx/analyze-tables.sql: -------------------------------------------------------------------------------- 1 | -- copies: $params.tables 2 | ANALYZE TABLE sbtest/*!copy-number*/ 3 | -------------------------------------------------------------------------------- /benchmarks/aurora/trx/create-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/aurora/trx/create-tables.sql -------------------------------------------------------------------------------- /benchmarks/aurora/trx/insert-rows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/aurora/trx/insert-rows.sql -------------------------------------------------------------------------------- /benchmarks/aurora/trx/write-only.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/aurora/trx/write-only.sql -------------------------------------------------------------------------------- /benchmarks/aurora/write-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/aurora/write-only.yaml -------------------------------------------------------------------------------- /benchmarks/intro/insert-rows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/intro/insert-rows.sql -------------------------------------------------------------------------------- /benchmarks/intro/read-only.sql: -------------------------------------------------------------------------------- 1 | SELECT n, c FROM finch.t1 WHERE id = @id 2 | -------------------------------------------------------------------------------- /benchmarks/intro/read-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/intro/read-only.yaml -------------------------------------------------------------------------------- /benchmarks/intro/row-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/intro/row-lock.yaml -------------------------------------------------------------------------------- /benchmarks/intro/rw-trx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/intro/rw-trx.sql -------------------------------------------------------------------------------- /benchmarks/intro/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/intro/schema.sql -------------------------------------------------------------------------------- /benchmarks/intro/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/intro/setup.yaml -------------------------------------------------------------------------------- /benchmarks/jcole-bug-97001/after.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/jcole-bug-97001/after.yaml -------------------------------------------------------------------------------- /benchmarks/jcole-bug-97001/before.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/jcole-bug-97001/before.yaml -------------------------------------------------------------------------------- /benchmarks/jcole-bug-97001/get-1-row.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/jcole-bug-97001/get-1-row.sql -------------------------------------------------------------------------------- /benchmarks/jcole-bug-97001/insert-rows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/jcole-bug-97001/insert-rows.sql -------------------------------------------------------------------------------- /benchmarks/jcole-bug-97001/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/jcole-bug-97001/schema.sql -------------------------------------------------------------------------------- /benchmarks/jcole-bug-97001/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/jcole-bug-97001/setup.yaml -------------------------------------------------------------------------------- /benchmarks/jcole-bug-97001/shift-rows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/jcole-bug-97001/shift-rows.sql -------------------------------------------------------------------------------- /benchmarks/sysbench/_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/sysbench/_all.yaml -------------------------------------------------------------------------------- /benchmarks/sysbench/read-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/sysbench/read-only.yaml -------------------------------------------------------------------------------- /benchmarks/sysbench/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/sysbench/setup.yaml -------------------------------------------------------------------------------- /benchmarks/sysbench/trx/insert-rows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/sysbench/trx/insert-rows.sql -------------------------------------------------------------------------------- /benchmarks/sysbench/trx/read-only.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/sysbench/trx/read-only.sql -------------------------------------------------------------------------------- /benchmarks/sysbench/trx/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/sysbench/trx/schema.sql -------------------------------------------------------------------------------- /benchmarks/sysbench/trx/secondary-index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/sysbench/trx/secondary-index.sql -------------------------------------------------------------------------------- /benchmarks/sysbench/trx/write-only.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/sysbench/trx/write-only.sql -------------------------------------------------------------------------------- /benchmarks/sysbench/write-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/sysbench/write-only.yaml -------------------------------------------------------------------------------- /benchmarks/xfer/_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/xfer/_all.yaml -------------------------------------------------------------------------------- /benchmarks/xfer/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/xfer/setup.yaml -------------------------------------------------------------------------------- /benchmarks/xfer/trx/insert-cust-bal.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/xfer/trx/insert-cust-bal.sql -------------------------------------------------------------------------------- /benchmarks/xfer/trx/insert-xfers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/xfer/trx/insert-xfers.sql -------------------------------------------------------------------------------- /benchmarks/xfer/trx/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/xfer/trx/schema.sql -------------------------------------------------------------------------------- /benchmarks/xfer/trx/xfer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/xfer/trx/xfer.sql -------------------------------------------------------------------------------- /benchmarks/xfer/xfer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/benchmarks/xfer/xfer.yaml -------------------------------------------------------------------------------- /bin/finch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/bin/finch/main.go -------------------------------------------------------------------------------- /boot/boot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/boot/boot.go -------------------------------------------------------------------------------- /boot/boot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/boot/boot_test.go -------------------------------------------------------------------------------- /boot/cmdline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/boot/cmdline.go -------------------------------------------------------------------------------- /boot/scope_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/boot/scope_test.go -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/client/client.go -------------------------------------------------------------------------------- /client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/client/client_test.go -------------------------------------------------------------------------------- /compute/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/compute/api.go -------------------------------------------------------------------------------- /compute/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/compute/client.go -------------------------------------------------------------------------------- /compute/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/compute/server.go -------------------------------------------------------------------------------- /compute/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/compute/server_test.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/config/file.go -------------------------------------------------------------------------------- /data/column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/column.go -------------------------------------------------------------------------------- /data/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/generator.go -------------------------------------------------------------------------------- /data/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/id.go -------------------------------------------------------------------------------- /data/id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/id_test.go -------------------------------------------------------------------------------- /data/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/integer.go -------------------------------------------------------------------------------- /data/integer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/integer_test.go -------------------------------------------------------------------------------- /data/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/scope.go -------------------------------------------------------------------------------- /data/scope_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/scope_test.go -------------------------------------------------------------------------------- /data/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/string.go -------------------------------------------------------------------------------- /data/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/data/string_test.go -------------------------------------------------------------------------------- /dbconn/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/dbconn/factory.go -------------------------------------------------------------------------------- /dbconn/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/dbconn/factory_test.go -------------------------------------------------------------------------------- /dbconn/mycnf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/dbconn/mycnf.go -------------------------------------------------------------------------------- /docs/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/archetypes/default.md -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/config.toml -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/api/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 6 3 | --- 4 | -------------------------------------------------------------------------------- /docs/content/api/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/api/data.md -------------------------------------------------------------------------------- /docs/content/api/stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/api/stats.md -------------------------------------------------------------------------------- /docs/content/benchmark/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 2 3 | --- 4 | -------------------------------------------------------------------------------- /docs/content/benchmark/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/benchmark/error-handling.md -------------------------------------------------------------------------------- /docs/content/benchmark/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/benchmark/examples.md -------------------------------------------------------------------------------- /docs/content/benchmark/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/benchmark/overview.md -------------------------------------------------------------------------------- /docs/content/benchmark/statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/benchmark/statistics.md -------------------------------------------------------------------------------- /docs/content/benchmark/trx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/benchmark/trx.md -------------------------------------------------------------------------------- /docs/content/benchmark/workload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/benchmark/workload.md -------------------------------------------------------------------------------- /docs/content/data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 4 3 | --- 4 | -------------------------------------------------------------------------------- /docs/content/data/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/data/generators.md -------------------------------------------------------------------------------- /docs/content/data/keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/data/keys.md -------------------------------------------------------------------------------- /docs/content/data/limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/data/limits.md -------------------------------------------------------------------------------- /docs/content/data/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/data/scope.md -------------------------------------------------------------------------------- /docs/content/intro/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 1 3 | --- 4 | -------------------------------------------------------------------------------- /docs/content/intro/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/intro/concepts.md -------------------------------------------------------------------------------- /docs/content/intro/start-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/intro/start-here.md -------------------------------------------------------------------------------- /docs/content/intro/tldr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/intro/tldr.md -------------------------------------------------------------------------------- /docs/content/operate/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 5 3 | --- 4 | -------------------------------------------------------------------------------- /docs/content/operate/client-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/operate/client-server.md -------------------------------------------------------------------------------- /docs/content/operate/command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/operate/command-line.md -------------------------------------------------------------------------------- /docs/content/operate/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/operate/mysql.md -------------------------------------------------------------------------------- /docs/content/syntax/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 3 3 | --- 4 | -------------------------------------------------------------------------------- /docs/content/syntax/all-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/syntax/all-file.md -------------------------------------------------------------------------------- /docs/content/syntax/params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/syntax/params.md -------------------------------------------------------------------------------- /docs/content/syntax/stage-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/syntax/stage-file.md -------------------------------------------------------------------------------- /docs/content/syntax/trx-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/syntax/trx-file.md -------------------------------------------------------------------------------- /docs/content/syntax/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/content/syntax/values.md -------------------------------------------------------------------------------- /docs/serve.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | hugo serve --baseURL="http://127.1:1313/finch" 3 | -------------------------------------------------------------------------------- /docs/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/static/custom.css -------------------------------------------------------------------------------- /docs/static/img/finch_benchmark_workload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/static/img/finch_benchmark_workload.svg -------------------------------------------------------------------------------- /docs/static/img/finch_compute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/static/img/finch_compute.svg -------------------------------------------------------------------------------- /docs/static/img/finch_data_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/static/img/finch_data_key.svg -------------------------------------------------------------------------------- /docs/static/img/finch_exec_group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/static/img/finch_exec_group.svg -------------------------------------------------------------------------------- /docs/static/img/finch_stats_combined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/static/img/finch_stats_combined.svg -------------------------------------------------------------------------------- /docs/static/img/normal_benchmark_workload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/static/img/normal_benchmark_workload.svg -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/LICENSE -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/README.md -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/VERSION: -------------------------------------------------------------------------------- 1 | v0.39.1 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/archetypes/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/archetypes/docs.md -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/archetypes/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/archetypes/posts.md -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/assets/search/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/assets/search/config.json -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/assets/search/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/assets/search/data.json -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/assets/sprites/geekdoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/assets/sprites/geekdoc.svg -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/data/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/data/assets.json -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/cs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/i18n/cs.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/i18n/de.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/i18n/en.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/i18n/it.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/ja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/i18n/ja.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/nl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/i18n/nl.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/zh-cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/i18n/zh-cn.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/images/readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/images/readme.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/images/screenshot.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/images/tn.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/404.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/_markup/render-codeblock-mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-codeblock-mermaid.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/_markup/render-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-image.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/_default/baseof.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/_default/list.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/_default/single.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/_default/taxonomy.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/_default/terms.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/foot.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/custom.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/favicons.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/meta.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/microformats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/microformats.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/others.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/others.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/rel-me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/rel-me.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/language.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu-bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu-bundle.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu-extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu-extra.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu-filetree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu-filetree.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu-nextprev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu-nextprev.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/microformats/opengraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/microformats/opengraph.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/microformats/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/microformats/schema.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/microformats/twitter_cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/microformats/twitter_cards.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/page-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/page-header.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/pagination.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/posts/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/posts/metadata.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/search.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/site-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/site-footer.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/site-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/site-header.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/svg-icon-symbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/svg-icon-symbols.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/utils/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/utils/content.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/utils/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/utils/description.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/utils/featured.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/utils/featured.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/utils/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/partials/utils/title.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/posts/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/posts/list.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/posts/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/posts/single.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/robots.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/button.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/columns.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/expand.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/hint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/hint.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/icon.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/img.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/include.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/katex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/katex.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/progress.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/propertylist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/propertylist.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/tab.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/tabs.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/toc-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/toc-tree.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/toc.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/brand.svg -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/custom.css: -------------------------------------------------------------------------------- 1 | /* You can add custom styles here. */ 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-144x144.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-256x256.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-36x36.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-384x384.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-48x48.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-72x72.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-96x96.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-1024x1024.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-167x167.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1125x2436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1125x2436.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1136x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1136x640.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1170x2532.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1170x2532.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2208.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2688.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1284x2778.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1284x2778.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1334x750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1334x750.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1536x2048.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1620x2160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1620x2160.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2224.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2388.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2388.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1792x828.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1792x828.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x1536.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x2732.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1620.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1620.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2208x1242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2208x1242.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2224x1668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2224x1668.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2388x1668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2388x1668.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2436x1125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2436x1125.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2532x1170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2532x1170.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2688x1242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2688x1242.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2732x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2732x2048.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2778x1284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2778x1284.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-640x1136.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-750x1334.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-828x1792.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-828x1792.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/browserconfig.xml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon-48x48.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon.ico -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon.svg -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/manifest.json -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/img/geekdoc-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/img/geekdoc-stack.svg -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/1-771c2373.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/1-771c2373.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/116-cbb23373.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/116-cbb23373.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/185-d997aa4e.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/185-d997aa4e.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/211-5d98ec66.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/211-5d98ec66.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/216-cdb5edfd.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/216-cdb5edfd.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/234-d1acff47.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/234-d1acff47.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/314-df79cd85.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/314-df79cd85.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/341-47267032.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/341-47267032.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/433-6462193c.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/433-6462193c.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/451-2756cb7b.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/451-2756cb7b.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/478-14ca1dd3.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/478-14ca1dd3.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/484-21d9ea41.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/484-21d9ea41.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/484-21d9ea41.chunk.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/484-21d9ea41.chunk.min.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/492-d5f398da.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/492-d5f398da.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/566-21965c1c.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/566-21965c1c.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/573-1654a4be.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/573-1654a4be.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/619-5f3b06bd.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/619-5f3b06bd.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/706-70270df2.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/706-70270df2.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/725-add1e85f.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/725-add1e85f.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/730-cc134313.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/730-cc134313.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/733-e430b503.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/733-e430b503.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/855-7e4c3d5d.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/855-7e4c3d5d.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/863-e1729a6b.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/863-e1729a6b.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/899-718e9a6e.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/899-718e9a6e.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/926-40cc1be5.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/926-40cc1be5.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/926-40cc1be5.chunk.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/926-40cc1be5.chunk.min.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/941-8cd341a7.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/941-8cd341a7.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/964-70755b86.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/964-70755b86.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/99-d88db0a9.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/99-d88db0a9.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/colortheme-d3e4d351.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/colortheme-d3e4d351.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/katex-f8a1e6eb.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/katex-f8a1e6eb.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/main-fbb9c8b0.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/main-fbb9c8b0.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/main-fbb9c8b0.bundle.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/main-fbb9c8b0.bundle.min.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/mermaid-21599a06.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/mermaid-21599a06.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/search-83320133.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/search-83320133.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/search-83320133.bundle.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/js/search-83320133.bundle.min.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/katex-b2c3b51a.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/katex-b2c3b51a.min.css -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/main-ba0e2765.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/main-ba0e2765.min.css -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/mobile-79ddc617.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/mobile-79ddc617.min.css -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/print-735ccc12.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/static/print-735ccc12.min.css -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/docs/themes/hugo-geekdoc/theme.toml -------------------------------------------------------------------------------- /finch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/finch.go -------------------------------------------------------------------------------- /finch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/finch_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/go.sum -------------------------------------------------------------------------------- /limit/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/limit/data.go -------------------------------------------------------------------------------- /limit/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/limit/data_test.go -------------------------------------------------------------------------------- /limit/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/limit/rate.go -------------------------------------------------------------------------------- /proto/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/proto/proto.go -------------------------------------------------------------------------------- /stage/stage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stage/stage.go -------------------------------------------------------------------------------- /stage/stage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stage/stage_test.go -------------------------------------------------------------------------------- /stats/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stats/collector.go -------------------------------------------------------------------------------- /stats/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stats/collector_test.go -------------------------------------------------------------------------------- /stats/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stats/csv.go -------------------------------------------------------------------------------- /stats/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stats/remote.go -------------------------------------------------------------------------------- /stats/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stats/reporter.go -------------------------------------------------------------------------------- /stats/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stats/reporter_test.go -------------------------------------------------------------------------------- /stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stats/stats.go -------------------------------------------------------------------------------- /stats/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stats/stats_test.go -------------------------------------------------------------------------------- /stats/stdout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/stats/stdout.go -------------------------------------------------------------------------------- /test/config/b1/_all.yaml: -------------------------------------------------------------------------------- 1 | 2 | params: 3 | foo: bar 4 | -------------------------------------------------------------------------------- /test/config/b1/stage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/config/b1/stage.yaml -------------------------------------------------------------------------------- /test/config/b1/trx.sql: -------------------------------------------------------------------------------- 1 | 2 | SELECT 1 3 | -------------------------------------------------------------------------------- /test/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/coverage -------------------------------------------------------------------------------- /test/docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/docker/docker-compose.yaml -------------------------------------------------------------------------------- /test/mock/data_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/mock/data_generator.go -------------------------------------------------------------------------------- /test/mock/stats_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/mock/stats_reporter.go -------------------------------------------------------------------------------- /test/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/mysql.go -------------------------------------------------------------------------------- /test/run/columns/run.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/columns/run.sql -------------------------------------------------------------------------------- /test/run/columns/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/columns/setup.sql -------------------------------------------------------------------------------- /test/run/columns/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/columns/test.yaml -------------------------------------------------------------------------------- /test/run/scope/001.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/scope/001.sql -------------------------------------------------------------------------------- /test/run/scope/002.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/scope/002.sql -------------------------------------------------------------------------------- /test/run/scope/client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/scope/client.yaml -------------------------------------------------------------------------------- /test/run/scope/iter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/scope/iter.yaml -------------------------------------------------------------------------------- /test/run/scope/statement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/scope/statement.yaml -------------------------------------------------------------------------------- /test/run/scope/trx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/scope/trx.yaml -------------------------------------------------------------------------------- /test/run/scope/workload_cg_alloc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/scope/workload_cg_alloc.yaml -------------------------------------------------------------------------------- /test/run/select-1/test.sql: -------------------------------------------------------------------------------- 1 | 2 | SELECT 1 3 | -------------------------------------------------------------------------------- /test/run/select-1/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/run/select-1/test.yaml -------------------------------------------------------------------------------- /test/trx/001.sql: -------------------------------------------------------------------------------- 1 | select c from t where id=@id 2 | -------------------------------------------------------------------------------- /test/trx/002.sql: -------------------------------------------------------------------------------- 1 | 2 | SELECT c FROM t WHERE id BETWEEN @d AND @PREV 3 | -------------------------------------------------------------------------------- /test/trx/003.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/trx/003.sql -------------------------------------------------------------------------------- /test/trx/copy-no.sql: -------------------------------------------------------------------------------- 1 | 2 | -- copies: 2 3 | select c from t/*!copy-number*/ where id=1 4 | -------------------------------------------------------------------------------- /test/trx/copy3-1.sql: -------------------------------------------------------------------------------- 1 | 2 | -- copies: 3 3 | -- prepare 4 | select c from t where id=@id 5 | -------------------------------------------------------------------------------- /test/trx/copy3-2.sql: -------------------------------------------------------------------------------- 1 | 2 | -- prepare 3 | -- copies: 3 4 | select c from t where id=@id 5 | -------------------------------------------------------------------------------- /test/trx/rowscope-csv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/test/trx/rowscope-csv.sql -------------------------------------------------------------------------------- /trx/trx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/trx/trx.go -------------------------------------------------------------------------------- /trx/trx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/trx/trx_test.go -------------------------------------------------------------------------------- /workload/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/workload/workload.go -------------------------------------------------------------------------------- /workload/workload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block/finch/HEAD/workload/workload_test.go --------------------------------------------------------------------------------