├── .github └── workflows │ └── semgrep.yml ├── .gitignore ├── CONTRIBUTORS ├── LICENSE ├── Makefile ├── README.md ├── advise_linux.go ├── binary ├── binary.go └── binary_test.go ├── buffer.go ├── buffer_test.go ├── example └── main.go └── tests └── .gitkeep /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .coverage.out 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Ashish Gandhi 2 | Alan Braithwaite, Cloudflare 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/README.md -------------------------------------------------------------------------------- /advise_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/advise_linux.go -------------------------------------------------------------------------------- /binary/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/binary/binary.go -------------------------------------------------------------------------------- /binary/binary_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/binary/binary_test.go -------------------------------------------------------------------------------- /buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/buffer.go -------------------------------------------------------------------------------- /buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/buffer_test.go -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/buffer/HEAD/example/main.go -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------