├── vendor ├── github.com │ ├── cespare │ │ └── xxhash │ │ │ ├── go.sum │ │ │ ├── xxhsum │ │ │ └── .gitignore │ │ │ ├── dynamic │ │ │ └── .gitignore │ │ │ ├── go.mod │ │ │ ├── xxhash_amd64.go │ │ │ └── xxhashbench │ │ │ └── go.mod │ ├── gorilla │ │ └── websocket │ │ │ ├── go.sum │ │ │ ├── go.mod │ │ │ ├── .github │ │ │ └── release-drafter.yml │ │ │ ├── AUTHORS │ │ │ ├── trace_17.go │ │ │ ├── .gitignore │ │ │ └── mask_safe.go │ ├── txthinking │ │ ├── x │ │ │ ├── .gitignore │ │ │ ├── test_test.go │ │ │ ├── .travis.yml │ │ │ ├── .github │ │ │ │ ├── PULL_REQUEST_TEMPLATE │ │ │ │ └── ISSUE_TEMPLATE │ │ │ ├── init.go │ │ │ ├── random_test.go │ │ │ └── README.md │ │ └── socks5 │ │ │ ├── .github │ │ │ ├── PULL_REQUEST_TEMPLATE │ │ │ └── ISSUE_TEMPLATE │ │ │ ├── bind.go │ │ │ ├── util_test.go │ │ │ ├── init.go │ │ │ └── go.mod │ ├── lesismal │ │ ├── nbio │ │ │ ├── .gitignore │ │ │ ├── .gitattributes │ │ │ ├── autobahn │ │ │ │ ├── .gitignore │ │ │ │ ├── server │ │ │ │ │ └── autobahn_test.go │ │ │ │ ├── main_go18.go │ │ │ │ └── README.md │ │ │ ├── go.mod │ │ │ └── error.go │ │ └── llib │ │ │ ├── std │ │ │ ├── net │ │ │ │ └── http │ │ │ │ │ └── testdata │ │ │ │ │ ├── file │ │ │ │ │ ├── style.css │ │ │ │ │ └── index.html │ │ │ └── internal │ │ │ │ ├── cpu │ │ │ │ ├── cpu_386.go │ │ │ │ ├── cpu_amd64.go │ │ │ │ ├── export_test.go │ │ │ │ ├── cpu_mips.go │ │ │ │ ├── cpu_mipsle.go │ │ │ │ ├── cpu_wasm.go │ │ │ │ ├── cpu_riscv64.go │ │ │ │ ├── cpu.s │ │ │ │ ├── cpu_arm64_android.go │ │ │ │ └── cpu_arm64_linux.go │ │ │ │ └── testenv │ │ │ │ └── testenv_cgo.go │ │ │ └── go.mod │ ├── lucasb-eyer │ │ └── go-colorful │ │ │ ├── go.sum │ │ │ ├── go.mod │ │ │ ├── doc │ │ │ ├── approx-quality.png │ │ │ ├── colorblend │ │ │ │ ├── clamped.png │ │ │ │ ├── clamped.xcf │ │ │ │ ├── invalid.png │ │ │ │ ├── invalid.xcf │ │ │ │ ├── colorblend.png │ │ │ │ └── colorblend.xcf │ │ │ ├── colordist │ │ │ │ ├── colordist.png │ │ │ │ └── colordist.xcf │ │ │ ├── colorgens │ │ │ │ └── colorgens.png │ │ │ ├── gradientgen │ │ │ │ └── gradientgen.png │ │ │ └── palettegens │ │ │ │ └── palettegens.png │ │ │ └── .travis.yml │ ├── minio │ │ ├── highwayhash │ │ │ ├── .gitignore │ │ │ ├── go.mod │ │ │ └── go.sum │ │ └── sha256-simd │ │ │ ├── .gitignore │ │ │ ├── go.mod │ │ │ ├── sha256blockSha_amd64.go │ │ │ └── go.sum │ ├── VictoriaMetrics │ │ └── metrics │ │ │ ├── testdata │ │ │ ├── fd │ │ │ │ ├── 0 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 5 │ │ │ │ └── 10 │ │ │ └── limits_bad │ │ │ ├── vendor │ │ │ ├── github.com │ │ │ │ └── valyala │ │ │ │ │ ├── fastrand │ │ │ │ │ ├── go.mod │ │ │ │ │ └── .travis.yml │ │ │ │ │ └── histogram │ │ │ │ │ ├── go.mod │ │ │ │ │ └── go.sum │ │ │ └── modules.txt │ │ │ ├── go.mod │ │ │ ├── process_metrics_other.go │ │ │ ├── go.sum │ │ │ ├── histogram_timing_test.go │ │ │ └── metrics_example_test.go │ ├── chzyer │ │ ├── readline │ │ │ ├── .gitignore │ │ │ ├── utils_test.go │ │ │ ├── example │ │ │ │ ├── readline-im │ │ │ │ │ └── README.md │ │ │ │ └── readline-remote │ │ │ │ │ └── readline-remote-client │ │ │ │ │ └── client.go │ │ │ ├── std_windows.go │ │ │ └── .travis.yml │ │ └── .directory │ ├── go-logr │ │ ├── zapr │ │ │ ├── .gitignore │ │ │ └── go.mod │ │ └── logr │ │ │ ├── go.mod │ │ │ ├── CHANGELOG.md │ │ │ └── benchmark │ │ │ └── README.md │ ├── holiman │ │ └── uint256 │ │ │ ├── .gitignore │ │ │ ├── go.mod │ │ │ ├── codecov.yml │ │ │ ├── .deepsource.toml │ │ │ └── AUTHORS │ ├── beorn7 │ │ └── perks │ │ │ └── .gitignore │ ├── robfig │ │ └── cron │ │ │ └── v3 │ │ │ ├── .travis.yml │ │ │ ├── go.mod │ │ │ └── .gitignore │ ├── ybbus │ │ └── jsonrpc │ │ │ ├── .gitignore │ │ │ └── go.mod │ ├── miekg │ │ └── dns │ │ │ ├── AUTHORS │ │ │ ├── .gitignore │ │ │ ├── dyn_test.go │ │ │ ├── vendor │ │ │ └── golang.org │ │ │ │ └── x │ │ │ │ ├── net │ │ │ │ ├── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── h2demo │ │ │ │ │ │ ├── rootCA.srl │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── Makefile │ │ │ │ ├── codereview.cfg │ │ │ │ ├── .gitignore │ │ │ │ ├── html │ │ │ │ │ ├── charset │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ │ │ └── UTF-16LE-BOM.html │ │ │ │ │ └── testdata │ │ │ │ │ │ └── webkit │ │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ │ └── scripted │ │ │ │ │ │ └── adoption01.dat │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── http │ │ │ │ │ └── httpproxy │ │ │ │ │ │ ├── export_test.go │ │ │ │ │ │ └── go19_test.go │ │ │ │ ├── internal │ │ │ │ │ └── socket │ │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ │ ├── sys_dragonfly.go │ │ │ │ │ │ ├── sys_linux_arm.go │ │ │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ │ │ ├── sys_linux_mips.go │ │ │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ │ │ ├── iovec_stub.go │ │ │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ │ │ ├── sys_bsdvar.go │ │ │ │ │ │ ├── sys_linux_386.s │ │ │ │ │ │ └── sys_linux_s390x.s │ │ │ │ ├── lif │ │ │ │ │ └── sys_solaris_amd64.s │ │ │ │ ├── icmp │ │ │ │ │ └── sys_freebsd.go │ │ │ │ ├── bpf │ │ │ │ │ └── setter.go │ │ │ │ ├── ipv4 │ │ │ │ │ └── sys_stub.go │ │ │ │ ├── ipv6 │ │ │ │ │ └── sys_stub.go │ │ │ │ └── webdav │ │ │ │ │ └── file_go1.7.go │ │ │ │ └── crypto │ │ │ │ ├── codereview.cfg │ │ │ │ ├── .gitignore │ │ │ │ ├── ed25519 │ │ │ │ └── testdata │ │ │ │ │ └── sign.input.gz │ │ │ │ ├── sha3 │ │ │ │ ├── testdata │ │ │ │ │ └── keccakKats.json.deflate │ │ │ │ └── keccakf_amd64.go │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── ssh │ │ │ │ ├── test │ │ │ │ │ └── doc.go │ │ │ │ └── terminal │ │ │ │ │ └── util_linux.go │ │ │ │ └── curve25519 │ │ │ │ └── const_amd64.h │ │ │ ├── .codecov.yml │ │ │ ├── rr_test.go │ │ │ ├── CONTRIBUTORS │ │ │ ├── version_test.go │ │ │ ├── version.go │ │ │ └── fuzz.go │ ├── pkg │ │ ├── profile │ │ │ ├── AUTHORS │ │ │ ├── go.mod │ │ │ ├── .travis.yml │ │ │ └── trace_test.go │ │ └── errors │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── caarlos0 │ │ └── env │ │ │ └── v6 │ │ │ ├── .github │ │ │ └── FUNDING.yml │ │ │ ├── .gitignore │ │ │ ├── go.mod │ │ │ ├── .goreleaser.yml │ │ │ ├── .golangci.yml │ │ │ ├── go.sum │ │ │ └── env_unix.go │ ├── armon │ │ └── go-radix │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── klauspost │ │ ├── compress │ │ │ └── flate │ │ │ │ └── testdata │ │ │ │ ├── huffman-zero.wb.expect │ │ │ │ ├── huffman-zero.wb.expect-noinput │ │ │ │ ├── tokens.bin │ │ │ │ ├── regression.zip │ │ │ │ ├── huffman-pi.golden │ │ │ │ ├── huffman-pi.wb.expect │ │ │ │ ├── huffman-rand-1k.in │ │ │ │ ├── huffman-rand-max.in │ │ │ │ ├── huffman-text.golden │ │ │ │ ├── huffman-zero.golden │ │ │ │ ├── huffman-pi.dyn.expect │ │ │ │ ├── huffman-pi.sync.expect │ │ │ │ ├── huffman-rand-1k.golden │ │ │ │ ├── huffman-rand-limit.in │ │ │ │ ├── huffman-shifts.golden │ │ │ │ ├── huffman-text.wb.expect │ │ │ │ ├── huffman-null-max.golden │ │ │ │ ├── huffman-rand-1k.wb.expect │ │ │ │ ├── huffman-rand-limit.golden │ │ │ │ ├── huffman-rand-max.golden │ │ │ │ ├── huffman-shifts.dyn.expect │ │ │ │ ├── huffman-shifts.wb.expect │ │ │ │ ├── huffman-text-shift.golden │ │ │ │ ├── huffman-text.dyn.expect │ │ │ │ ├── huffman-text.sync.expect │ │ │ │ ├── huffman-zero.dyn.expect │ │ │ │ ├── huffman-zero.sync.expect │ │ │ │ ├── huffman-null-max.dyn.expect │ │ │ │ ├── huffman-null-max.wb.expect │ │ │ │ ├── huffman-rand-1k.dyn.expect │ │ │ │ ├── huffman-rand-1k.sync.expect │ │ │ │ ├── huffman-shifts.sync.expect │ │ │ │ ├── huffman-null-max.sync.expect │ │ │ │ ├── huffman-pi.dyn.expect-noinput │ │ │ │ ├── huffman-pi.sync.expect-noinput │ │ │ │ ├── huffman-pi.wb.expect-noinput │ │ │ │ ├── huffman-rand-limit.dyn.expect │ │ │ │ ├── huffman-rand-limit.sync.expect │ │ │ │ ├── huffman-rand-limit.wb.expect │ │ │ │ ├── huffman-text-shift.dyn.expect │ │ │ │ ├── huffman-text-shift.sync.expect │ │ │ │ ├── huffman-text-shift.wb.expect │ │ │ │ ├── huffman-text.wb.expect-noinput │ │ │ │ ├── huffman-shifts.wb.expect-noinput │ │ │ │ ├── huffman-text.dyn.expect-noinput │ │ │ │ ├── huffman-text.sync.expect-noinput │ │ │ │ ├── huffman-zero.dyn.expect-noinput │ │ │ │ ├── huffman-zero.sync.expect-noinput │ │ │ │ ├── huffman-null-max.dyn.expect-noinput │ │ │ │ ├── huffman-null-max.wb.expect-noinput │ │ │ │ ├── huffman-rand-1k.dyn.expect-noinput │ │ │ │ ├── huffman-rand-1k.sync.expect-noinput │ │ │ │ ├── huffman-rand-1k.wb.expect-noinput │ │ │ │ ├── huffman-shifts.dyn.expect-noinput │ │ │ │ ├── huffman-shifts.sync.expect-noinput │ │ │ │ ├── null-long-match.dyn.expect-noinput │ │ │ │ ├── null-long-match.sync.expect-noinput │ │ │ │ ├── null-long-match.wb.expect-noinput │ │ │ │ ├── huffman-null-max.sync.expect-noinput │ │ │ │ ├── huffman-rand-limit.dyn.expect-noinput │ │ │ │ ├── huffman-rand-limit.wb.expect-noinput │ │ │ │ ├── huffman-text-shift.dyn.expect-noinput │ │ │ │ ├── huffman-text-shift.wb.expect-noinput │ │ │ │ ├── huffman-rand-limit.sync.expect-noinput │ │ │ │ ├── huffman-text-shift.sync.expect-noinput │ │ │ │ ├── huffman-zero.in │ │ │ │ ├── huffman-text-shift.in │ │ │ │ └── huffman-text.in │ │ ├── cpuid │ │ │ └── v2 │ │ │ │ ├── go.mod │ │ │ │ ├── testdata │ │ │ │ └── cpuid_data.zip │ │ │ │ ├── os_safe_linux_arm64.go │ │ │ │ ├── os_unsafe_linux_arm64.go │ │ │ │ └── .gitignore │ │ └── reedsolomon │ │ │ ├── go.mod │ │ │ ├── _gen │ │ │ └── go.mod │ │ │ ├── go.sum │ │ │ ├── galois_gen_none.go │ │ │ └── .gitignore │ ├── templexxx │ │ ├── xorsimd │ │ │ ├── .gitattributes │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── .gitignore │ │ └── cpu │ │ │ ├── cpu_386.go │ │ │ ├── cpu_amd64.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_mips.go │ │ │ ├── cpu_mips64.go │ │ │ ├── cpu_mips64le.go │ │ │ ├── cpu_mipsle.go │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_amd64p32.go │ │ │ ├── .gitignore │ │ │ ├── cpu_riscv64.go │ │ │ └── cpu_no_init.go │ ├── valyala │ │ ├── fastrand │ │ │ ├── go.mod │ │ │ └── .travis.yml │ │ └── histogram │ │ │ ├── vendor │ │ │ ├── github.com │ │ │ │ └── valyala │ │ │ │ │ └── fastrand │ │ │ │ │ ├── go.mod │ │ │ │ │ └── .travis.yml │ │ │ └── modules.txt │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── README.md │ ├── dchest │ │ └── siphash │ │ │ └── go.mod │ ├── x448 │ │ └── float16 │ │ │ └── go.mod │ ├── blang │ │ └── semver │ │ │ └── v4 │ │ │ └── go.mod │ ├── mattn │ │ ├── go-runewidth │ │ │ ├── go.mod │ │ │ ├── runewidth_appengine.go │ │ │ ├── runewidth_js.go │ │ │ ├── .travis.yml │ │ │ └── go.test.sh │ │ ├── go-isatty │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── .travis.yml │ │ │ ├── go.test.sh │ │ │ ├── isatty_others_test.go │ │ │ └── example_test.go │ │ └── go-colorable │ │ │ ├── go.mod │ │ │ ├── cmd │ │ │ └── colorable │ │ │ │ └── colorable.go │ │ │ ├── .travis.yml │ │ │ ├── _example │ │ │ ├── title │ │ │ │ └── main.go │ │ │ └── escape-seq │ │ │ │ └── main.go │ │ │ └── go.test.sh │ ├── randall77 │ │ └── makefat │ │ │ ├── go.mod │ │ │ ├── README.md │ │ │ └── .gitignore │ ├── deroproject │ │ └── graviton │ │ │ ├── go.mod │ │ │ └── vendor │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── xerrors │ │ │ │ ├── codereview.cfg │ │ │ │ ├── go.mod │ │ │ │ ├── README │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ │ └── sys │ │ │ │ └── cpu │ │ │ │ ├── cpu_other_arm.go │ │ │ │ ├── cpu_other_arm64.go │ │ │ │ ├── cpu_riscv64.go │ │ │ │ ├── cpu_mipsx.go │ │ │ │ ├── cpu_linux_noinit.go │ │ │ │ ├── cpu_gc_arm64.go │ │ │ │ └── cpu_gccgo_arm64.go │ │ │ ├── github.com │ │ │ └── stretchr │ │ │ │ └── testify │ │ │ │ ├── http │ │ │ │ └── doc.go │ │ │ │ ├── .travis.gofmt.sh │ │ │ │ ├── .travis.govet.sh │ │ │ │ ├── go.mod │ │ │ │ ├── require │ │ │ │ ├── require_forward.go.tmpl │ │ │ │ └── require.go.tmpl │ │ │ │ ├── assert │ │ │ │ ├── assertion_format.go.tmpl │ │ │ │ └── assertion_forward.go.tmpl │ │ │ │ ├── package_test.go │ │ │ │ ├── .travis.gogenerate.sh │ │ │ │ └── Gopkg.toml │ │ │ └── gopkg.in │ │ │ └── yaml.v2 │ │ │ ├── go.mod │ │ │ ├── .travis.yml │ │ │ └── suite_test.go │ ├── cenkalti │ │ ├── hub │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ └── .gitignore │ │ └── rpc2 │ │ │ ├── .travis.yml │ │ │ ├── debug.go │ │ │ └── .gitignore │ ├── stretchr │ │ └── testify │ │ │ ├── http │ │ │ └── doc.go │ │ │ ├── .travis.gofmt.sh │ │ │ ├── .travis.govet.sh │ │ │ ├── go.mod │ │ │ ├── require │ │ │ ├── require_forward.go.tmpl │ │ │ └── require.go.tmpl │ │ │ ├── assert │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go.tmpl │ │ │ └── errors.go │ │ │ ├── package_test.go │ │ │ ├── .travis.gogenerate.sh │ │ │ ├── Gopkg.toml │ │ │ └── .gitignore │ ├── osamingo │ │ └── jsonrpc │ │ │ ├── doc.go │ │ │ ├── .directory │ │ │ ├── Gopkg.toml │ │ │ ├── .codeclimate.yml │ │ │ ├── unmarshal.go │ │ │ └── .gitignore │ ├── docopt │ │ ├── .directory │ │ └── docopt-go │ │ │ ├── examples │ │ │ ├── unit_test │ │ │ │ └── main.go │ │ │ ├── odd_even │ │ │ │ └── odd_even.go │ │ │ └── quick │ │ │ │ └── quick.go │ │ │ ├── test_golang.docopt │ │ │ └── .gitignore │ ├── xtaci │ │ └── kcp-go │ │ │ └── v5 │ │ │ ├── flame.png │ │ │ ├── frame.png │ │ │ ├── kcp-go.png │ │ │ ├── wireshark │ │ │ └── README.md │ │ │ ├── tx_generic.go │ │ │ ├── readloop_generic.go │ │ │ ├── batchconn.go │ │ │ └── .gitignore │ ├── fxamacker │ │ └── cbor │ │ │ └── v2 │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── .gitignore │ │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ ├── 3-docs-wiki-or-website-issue.md │ │ │ │ └── 4-security-issue-disclosure.md │ │ │ └── SECURITY.md │ ├── fatih │ │ └── color │ │ │ ├── go.mod │ │ │ └── .github │ │ │ └── dependabot.yml │ ├── beevik │ │ └── ntp │ │ │ ├── CONTRIBUTORS │ │ │ └── .travis.yml │ ├── go-stack │ │ └── stack │ │ │ └── .travis.yml │ ├── creachadair │ │ └── jrpc2 │ │ │ ├── .github │ │ │ └── dependabot.yml │ │ │ └── tools │ │ │ └── go.mod │ ├── tjfoc │ │ └── gmsm │ │ │ └── go.mod │ ├── dustin │ │ └── go-humanize │ │ │ ├── humanize.go │ │ │ └── common_test.go │ ├── davecgh │ │ └── go-spew │ │ │ └── .gitignore │ ├── aead │ │ └── skein │ │ │ └── .gitignore │ └── hashicorp │ │ └── golang-lru │ │ └── .gitignore ├── nhooyr.io │ └── websocket │ │ ├── .gitignore │ │ ├── .github │ │ ├── CODEOWNERS │ │ └── FUNDING.yml │ │ ├── internal │ │ ├── test │ │ │ └── doc.go │ │ ├── xsync │ │ │ └── go_test.go │ │ └── errd │ │ │ └── wrap.go │ │ ├── examples │ │ └── README.md │ │ └── ci │ │ ├── all.sh │ │ └── lint.sh ├── golang.org │ └── x │ │ ├── net │ │ ├── codereview.cfg │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── h2demo │ │ │ │ ├── rootCA.srl │ │ │ │ ├── .gitignore │ │ │ │ └── Makefile │ │ │ ├── Makefile │ │ │ ├── not_go19.go │ │ │ └── go16.go │ │ ├── .gitignore │ │ ├── .directory │ │ ├── html │ │ │ ├── charset │ │ │ │ └── testdata │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ └── UTF-16LE-BOM.html │ │ │ └── testdata │ │ │ │ └── webkit │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ └── scripted │ │ │ │ └── adoption01.dat │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── http │ │ │ └── httpproxy │ │ │ │ ├── export_test.go │ │ │ │ └── go19_test.go │ │ ├── internal │ │ │ ├── socket │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ └── cmsghdr_solaris_64bit.go │ │ │ └── nettest │ │ │ │ ├── helper_nobsd.go │ │ │ │ └── rlimit.go │ │ ├── lif │ │ │ └── sys_solaris_amd64.s │ │ ├── icmp │ │ │ └── sys_freebsd.go │ │ ├── bpf │ │ │ └── setter.go │ │ ├── webdav │ │ │ └── file_go1.7.go │ │ ├── ipv4 │ │ │ └── sys_stub.go │ │ ├── ipv6 │ │ │ └── sys_stub.go │ │ └── .gitattributes │ │ ├── sys │ │ ├── codereview.cfg │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── ptrace_ios.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── export_test.go │ │ │ └── ptrace_darwin.go │ │ ├── go.mod │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── plan9 │ │ │ └── asm.s │ │ ├── cpu │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_gccgo_arm64.go │ │ │ └── cpu_linux_noinit.go │ │ ├── windows │ │ │ ├── registry │ │ │ │ ├── mksyscall.go │ │ │ │ └── export_test.go │ │ │ ├── empty.s │ │ │ └── aliases.go │ │ └── .gitattributes │ │ ├── crypto │ │ ├── codereview.cfg │ │ ├── curve25519 │ │ │ └── internal │ │ │ │ └── field │ │ │ │ ├── sync.checkpoint │ │ │ │ ├── _asm │ │ │ │ └── go.mod │ │ │ │ ├── README │ │ │ │ └── fe_arm64_noasm.go │ │ ├── .gitignore │ │ ├── ed25519 │ │ │ └── testdata │ │ │ │ └── sign.input.gz │ │ ├── sha3 │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ └── keccakf_amd64.go │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── go.mod │ │ ├── ssh │ │ │ └── test │ │ │ │ └── doc.go │ │ ├── internal │ │ │ └── poly1305 │ │ │ │ └── mac_noasm.go │ │ └── .gitattributes │ │ ├── xerrors │ │ ├── codereview.cfg │ │ ├── go.mod │ │ ├── README │ │ └── internal │ │ │ └── internal.go │ │ ├── text │ │ └── encoding │ │ │ ├── testdata │ │ │ ├── candide-gb18030.txt │ │ │ ├── rashomon-euc-jp.txt │ │ │ ├── candide-utf-16le.txt │ │ │ ├── candide-utf-32be.txt │ │ │ ├── candide-windows-1252.txt │ │ │ ├── rashomon-shift-jis.txt │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ └── sunzi-bingfa-traditional-big5.txt │ │ │ └── japanese │ │ │ └── all.go │ │ └── time │ │ ├── AUTHORS │ │ └── CONTRIBUTORS ├── go.uber.org │ ├── multierr │ │ ├── .gitignore │ │ ├── tools │ │ │ └── go.mod │ │ ├── glide.yaml │ │ └── go.mod │ ├── zap │ │ ├── zapgrpc │ │ │ └── internal │ │ │ │ └── test │ │ │ │ ├── README.md │ │ │ │ └── go.mod │ │ ├── tools │ │ │ └── go.mod │ │ ├── checklicense.sh │ │ └── go.mod │ └── atomic │ │ ├── go.mod │ │ ├── tools │ │ └── go.mod │ │ ├── .gitignore │ │ └── .github │ │ └── PULL_REQUEST_TEMPLATE.md ├── go.etcd.io │ └── bbolt │ │ ├── .gitignore │ │ ├── go.mod │ │ ├── boltsync_unix.go │ │ ├── go.sum │ │ ├── bolt_linux.go │ │ ├── bolt_386.go │ │ ├── bolt_arm.go │ │ ├── bolt_amd64.go │ │ ├── bolt_ppc.go │ │ ├── bolt_arm64.go │ │ ├── bolt_mipsx.go │ │ ├── bolt_ppc64.go │ │ ├── bolt_s390x.go │ │ ├── bolt_ppc64le.go │ │ ├── bolt_riscv64.go │ │ ├── bolt_mips64x.go │ │ └── .travis.yml ├── gopkg.in │ ├── yaml.v2 │ │ ├── go.mod │ │ ├── .travis.yml │ │ └── suite_test.go │ └── natefinch │ │ └── lumberjack.v2 │ │ ├── go.mod │ │ ├── .travis.yml │ │ ├── chown.go │ │ └── .gitignore └── bitbucket.org │ └── creachadair │ └── stringset │ ├── go.mod │ ├── makeset │ ├── intset.toml │ └── stringset.toml │ └── go.sum ├── blockchain └── hardcoded_sc │ └── warning_DO_NOT_TOUCH_THIS_FOLDER.txt ├── go.mod ├── licenses └── readme.txt ├── cmd ├── explorer │ ├── explorerlib │ │ ├── static │ │ │ └── logo.png │ │ └── templates │ │ │ ├── txpool_page.tmpl │ │ │ ├── not_found.tmpl │ │ │ └── footer.tmpl │ └── dummy_test.go ├── rpc_examples │ ├── readme.txt │ └── pong_server │ │ └── dummy_test.go ├── derod │ └── dummy_test.go ├── dero-miner │ └── dummy_test.go └── dero-wallet-cli │ └── dummy_test.go ├── cryptography └── readme.txt ├── p2p └── README.md ├── premine └── premine.go ├── astrobwt ├── endian_big.go ├── astrobwt_fast │ └── endian_big.go └── endian_little.go ├── glue └── rwc │ └── dummy_test.go ├── config └── dummy_test.go ├── errormsg └── dummy_test.go ├── globals └── dummy_test.go ├── metrics └── dummy_test.go └── walletapi └── readme.txt /vendor/github.com/cespare/xxhash/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/x/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/nbio/.gitignore: -------------------------------------------------------------------------------- 1 | bin -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/minio/highwayhash/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/minio/sha256-simd/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/testdata/fd/0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/testdata/fd/10: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/testdata/fd/2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/testdata/fd/3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/testdata/fd/5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/holiman/uint256/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/nhooyr.io/websocket/.gitignore: -------------------------------------------------------------------------------- 1 | websocket.test 2 | -------------------------------------------------------------------------------- /blockchain/hardcoded_sc/warning_DO_NOT_TOUCH_THIS_FOLDER.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/xxhsum/.gitignore: -------------------------------------------------------------------------------- 1 | /xxhsum 2 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/nbio/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf -------------------------------------------------------------------------------- /vendor/github.com/lesismal/nbio/autobahn/.gitignore: -------------------------------------------------------------------------------- 1 | report/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/v3/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/ybbus/jsonrpc/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/nhooyr.io/websocket/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @nhooyr 2 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/deroproject/derohe 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/dynamic/.gitignore: -------------------------------------------------------------------------------- 1 | /plugin.so 2 | -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/utils_test.go: -------------------------------------------------------------------------------- 1 | package readline 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- 1 | Miek Gieben 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/nhooyr.io/websocket/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: nhooyr 2 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/net/http/testdata/file: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/AUTHORS: -------------------------------------------------------------------------------- 1 | Dave Cheney 2 | -------------------------------------------------------------------------------- /vendor/github.com/caarlos0/env/v6/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [caarlos0] 2 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/net/http/testdata/style.css: -------------------------------------------------------------------------------- 1 | body {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | tags 3 | test.out 4 | a.out 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/go.mod: -------------------------------------------------------------------------------- 1 | module golang.org/x/sys 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /vendor/github.com/armon/go-radix/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - tip 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.wb.expect: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /vendor/github.com/templexxx/xorsimd/.gitattributes: -------------------------------------------------------------------------------- 1 | *.s linguist-language=go:x 2 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastrand/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/valyala/fastrand 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/go.mod: -------------------------------------------------------------------------------- 1 | module golang.org/x/xerrors 2 | 3 | go 1.11 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.wb.expect-noinput: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dyn_test.go: -------------------------------------------------------------------------------- 1 | package dns 2 | 3 | // Find better solution 4 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/pkg/profile 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | cover.html 3 | cover.out 4 | /bin 5 | -------------------------------------------------------------------------------- /vendor/github.com/caarlos0/env/v6/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | bin 3 | card.png 4 | dist 5 | -------------------------------------------------------------------------------- /vendor/github.com/dchest/siphash/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/dchest/siphash 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/go-logr/logr 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/net/http/testdata/index.html: -------------------------------------------------------------------------------- 1 | index.html says hello 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/v3/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/robfig/cron/v3 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/x448/float16 2 | 3 | go 1.11 4 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/.gitignore: -------------------------------------------------------------------------------- 1 | *.prof 2 | *.test 3 | *.swp 4 | /bin/ 5 | cover.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/blang/semver/v4 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/cespare/xxhash/v2 2 | 3 | go 1.11 4 | -------------------------------------------------------------------------------- /vendor/github.com/holiman/uint256/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/holiman/uint256 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /licenses/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains licenses of other libraries used within the project 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/gorilla/websocket 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/cpuid/v2 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mattn/go-runewidth 2 | 3 | go 1.9 4 | -------------------------------------------------------------------------------- /vendor/github.com/randall77/makefat/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/randall77/makefat 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/deroproject/graviton 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/lucasb-eyer/go-colorful 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- 1 | // Package isatty implements interface to isatty 2 | package isatty 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/internal/field/sync.checkpoint: -------------------------------------------------------------------------------- 1 | b0c49ae9f59d233526f8934262c5bbbe14d4358d 2 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/hub/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.13 3 | arch: 4 | - amd64 5 | - ppc64le 6 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/http/doc.go: -------------------------------------------------------------------------------- 1 | // Package http DEPRECATED USE net/http/httptest 2 | package http 3 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/histogram/vendor/github.com/valyala/fastrand/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/valyala/fastrand 2 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/vendor/github.com/valyala/fastrand/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/valyala/fastrand 2 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/xerrors/go.mod: -------------------------------------------------------------------------------- 1 | module golang.org/x/xerrors 2 | 3 | go 1.11 4 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/osamingo/jsonrpc/doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package jsonrpc helps JSON-RPC 2.0 implements. 3 | */ 4 | package jsonrpc 5 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/x/test_test.go: -------------------------------------------------------------------------------- 1 | package x 2 | 3 | import "testing" 4 | 5 | func TestTest(t *testing.T) { 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/histogram/vendor/modules.txt: -------------------------------------------------------------------------------- 1 | # github.com/valyala/fastrand v1.0.0 2 | github.com/valyala/fastrand 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .gitignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/nhooyr.io/websocket/internal/test/doc.go: -------------------------------------------------------------------------------- 1 | // Package test contains subpackages only used in tests. 2 | package test 3 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/x/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | install: 5 | script: 6 | - go test -v . 7 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .gitignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /cmd/explorer/explorerlib/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/cmd/explorer/explorerlib/static/logo.png -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/testdata/limits_bad: -------------------------------------------------------------------------------- 1 | Limit Soft Limit Hard Limit Units -------------------------------------------------------------------------------- /vendor/github.com/caarlos0/env/v6/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/caarlos0/env/v6 2 | 3 | require github.com/matryer/is v1.4.0 4 | 5 | go 1.17 6 | -------------------------------------------------------------------------------- /vendor/github.com/chzyer/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,1,11,12,15,14 3 | Version=3 4 | 5 | [Settings] 6 | HiddenFilesShown=true 7 | -------------------------------------------------------------------------------- /vendor/github.com/docopt/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,1,11,12,15,29 3 | Version=3 4 | 5 | [Settings] 6 | HiddenFilesShown=true 7 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/nbio/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/lesismal/nbio 2 | 3 | go 1.16 4 | 5 | require github.com/lesismal/llib v1.1.4 6 | -------------------------------------------------------------------------------- /vendor/github.com/xtaci/kcp-go/v5/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/xtaci/kcp-go/v5/flame.png -------------------------------------------------------------------------------- /vendor/github.com/xtaci/kcp-go/v5/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/xtaci/kcp-go/v5/frame.png -------------------------------------------------------------------------------- /vendor/github.com/xtaci/kcp-go/v5/kcp-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/xtaci/kcp-go/v5/kcp-go.png -------------------------------------------------------------------------------- /vendor/github.com/ybbus/jsonrpc/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ybbus/jsonrpc/v2 2 | 3 | go 1.12 4 | 5 | require github.com/onsi/gomega v1.5.0 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,1,11,12,12,14 3 | Version=3 4 | 5 | [Settings] 6 | HiddenFilesShown=true 7 | -------------------------------------------------------------------------------- /vendor/github.com/docopt/docopt-go/examples/unit_test/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | // Dummy main so that the example builds. 4 | func main() {} 5 | -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/fxamacker/cbor/v2 2 | 3 | go 1.12 4 | 5 | require github.com/x448/float16 v0.8.4 6 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/xorsimd/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/templexxx/xorsimd 2 | 3 | require github.com/templexxx/cpu v0.0.1 4 | 5 | go 1.13 6 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/go.mod: -------------------------------------------------------------------------------- 1 | module go.etcd.io/bbolt 2 | 3 | go 1.12 4 | 5 | require golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5 6 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- 1 | module "gopkg.in/yaml.v2" 2 | 3 | require ( 4 | "gopkg.in/check.v1" v0.0.0-20161208181325-20d25e280405 5 | ) 6 | -------------------------------------------------------------------------------- /vendor/github.com/minio/sha256-simd/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/minio/sha256-simd 2 | 3 | go 1.13 4 | 5 | require github.com/klauspost/cpuid/v2 v2.0.6 6 | -------------------------------------------------------------------------------- /vendor/github.com/osamingo/jsonrpc/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,1,23,17,48,13 3 | Version=3 4 | 5 | [Settings] 6 | HiddenFilesShown=true 7 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/histogram/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/valyala/histogram 2 | 3 | go 1.12 4 | 5 | require github.com/valyala/fastrand v1.0.0 6 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/rpc2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.15 5 | - tip 6 | 7 | arch: 8 | - amd64 9 | - ppc64le 10 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/http/doc.go: -------------------------------------------------------------------------------- 1 | // Package http DEPRECATED USE net/http/httptest 2 | package http 3 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /vendor/github.com/xtaci/kcp-go/v5/wireshark/README.md: -------------------------------------------------------------------------------- 1 | ## macOS 2 | - Copy kcp_dissector.lua to /Applications/Wireshark.app/Contents/PlugIns/wireshark 3 | -------------------------------------------------------------------------------- /vendor/nhooyr.io/websocket/examples/README.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | 3 | This directory contains more involved examples unsuitable 4 | for display with godoc. 5 | -------------------------------------------------------------------------------- /cryptography/readme.txt: -------------------------------------------------------------------------------- 1 | bn256 comes from go-ethereum/crypto/bn256 2 | 3 | 4 | all changes which relate to 33 byte compression are in files named changes*. 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/reedsolomon/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/reedsolomon 2 | 3 | go 1.14 4 | 5 | require github.com/klauspost/cpuid/v2 v2.0.6 6 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/x/.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- 1 | Fixes # . 2 | 3 | Changes proposed in this pull request: 4 | - 5 | - 6 | - 7 | 8 | @mentions 9 | -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapgrpc/internal/test/README.md: -------------------------------------------------------------------------------- 1 | This submodule exists to test zapgrpc against grpc-go without adding a 2 | dependency on grpc-go to Zap. 3 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/VictoriaMetrics/metrics 2 | 3 | require github.com/valyala/histogram v1.1.2 4 | 5 | go 1.12 6 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/reedsolomon/_gen/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/reedsolomon/_gen 2 | 3 | go 1.14 4 | 5 | require github.com/mmcloughlin/avo v0.2.0 6 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mattn/go-isatty 2 | 3 | go 1.12 4 | 5 | require golang.org/x/sys v0.0.0-20200116001909-b77594299b42 6 | -------------------------------------------------------------------------------- /vendor/github.com/minio/highwayhash/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/minio/highwayhash 2 | 3 | go 1.15 4 | 5 | require golang.org/x/sys v0.0.0-20190130150945-aca44879d564 6 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/socks5/.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- 1 | Fixes # . 2 | 3 | Changes proposed in this pull request: 4 | - 5 | - 6 | - 7 | 8 | @mentions 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- 1 | This repository holds the transition packages for the new Go 1.13 error values. 2 | See golang.org/design/29934-error-values. 3 | -------------------------------------------------------------------------------- /vendor/github.com/caarlos0/env/v6/.goreleaser.yml: -------------------------------------------------------------------------------- 1 | includes: 2 | - from_url: 3 | url: https://raw.githubusercontent.com/caarlos0/.goreleaserfiles/main/lib.yml 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/tokens.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/tokens.bin -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/testdata/cpuid_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/cpuid/v2/testdata/cpuid_data.zip -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/approx-quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/approx-quality.png -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt -------------------------------------------------------------------------------- /cmd/explorer/explorerlib/templates/txpool_page.tmpl: -------------------------------------------------------------------------------- 1 | {{define "txpool_page"}} 2 | {{ template "header" . }} 3 | {{ template "txpool" . }} 4 | {{ template "footer" . }} 5 | {{end}} 6 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- 1 | module "gopkg.in/yaml.v2" 2 | 3 | require ( 4 | "gopkg.in/check.v1" v0.0.0-20161208181325-20d25e280405 5 | ) 6 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/regression.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/regression.zip -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/.travis.gofmt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ -n "$(gofmt -l .)" ]; then 4 | echo "Go code is not formatted:" 5 | gofmt -d . 6 | exit 1 7 | fi 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/vendor/github.com/valyala/histogram/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/valyala/histogram 2 | 3 | go 1.12 4 | 5 | require github.com/valyala/fastrand v1.0.0 6 | -------------------------------------------------------------------------------- /vendor/github.com/caarlos0/env/v6/.golangci.yml: -------------------------------------------------------------------------------- 1 | linters: 2 | enable: 3 | - thelper 4 | - gofumpt 5 | - tparallel 6 | - unconvert 7 | - unparam 8 | - wastedassign 9 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.golden -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/clamped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/clamped.png -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/clamped.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/clamped.xcf -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/invalid.png -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/invalid.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/invalid.xcf -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/colordist/colordist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/colordist/colordist.png -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/colordist/colordist.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/colordist/colordist.xcf -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/colorgens/colorgens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/colorgens/colorgens.png -------------------------------------------------------------------------------- /vendor/github.com/minio/sha256-simd/sha256blockSha_amd64.go: -------------------------------------------------------------------------------- 1 | //+build !noasm,!appengine,gc 2 | 3 | package sha256 4 | 5 | //go:noescape 6 | func blockSha(h *[8]uint32, message []uint8) 7 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/fatih/color 2 | 3 | go 1.13 4 | 5 | require ( 6 | github.com/mattn/go-colorable v0.1.8 7 | github.com/mattn/go-isatty v0.0.12 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.wb.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.in -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-max.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-max.in -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.golden -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.golden -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/colorblend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/colorblend.png -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/colorblend.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/colorblend/colorblend.xcf -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/go.mod: -------------------------------------------------------------------------------- 1 | module go.uber.org/atomic 2 | 3 | require ( 4 | github.com/davecgh/go-spew v1.1.1 // indirect 5 | github.com/stretchr/testify v1.3.0 6 | ) 7 | 8 | go 1.13 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- 1 | This repository holds the transition packages for the new Go 1.13 error values. 2 | See golang.org/design/29934-error-values. 3 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.sync.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.sync.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.golden -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.in -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.golden -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.wb.expect -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/gradientgen/gradientgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/gradientgen/gradientgen.png -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/doc/palettegens/palettegens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/lucasb-eyer/go-colorful/doc/palettegens/palettegens.png -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/.codecov.yml: -------------------------------------------------------------------------------- 1 | coverage: 2 | status: 3 | project: 4 | default: 5 | target: 40% 6 | threshold: null 7 | patch: false 8 | changes: false 9 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/rr_test.go: -------------------------------------------------------------------------------- 1 | package dns 2 | 3 | // testRR returns the RR from string s. The error is thrown away. 4 | func testRR(s string) RR { 5 | r, _ := NewRR(s) 6 | return r 7 | } 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt -------------------------------------------------------------------------------- /vendor/gopkg.in/natefinch/lumberjack.v2/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/natefinch/lumberjack 2 | 3 | require ( 4 | github.com/BurntSushi/toml v0.3.1 5 | gopkg.in/yaml.v2 v2.2.2 6 | ) 7 | 8 | go 1.13 9 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/vendor/modules.txt: -------------------------------------------------------------------------------- 1 | # github.com/valyala/fastrand v1.0.0 2 | github.com/valyala/fastrand 3 | # github.com/valyala/histogram v1.1.2 4 | github.com/valyala/histogram 5 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "gomod" 4 | directory: "/" # Location of go.mod 5 | schedule: 6 | interval: "daily" 7 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG 2 | 3 | ## v1.0.0-rc1 4 | 5 | This is the first logged release. Major changes (including breaking changes) 6 | have occurred since earlier tags. 7 | -------------------------------------------------------------------------------- /vendor/github.com/holiman/uint256/codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | require_ci_to_pass: no 3 | 4 | coverage: 5 | status: 6 | project: no 7 | patch: no 8 | 9 | comment: 10 | layout: "diff" 11 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.golden -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.wb.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.golden -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-max.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-max.golden -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.wb.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.golden -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text.sync.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.sync.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.sync.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.sync.expect -------------------------------------------------------------------------------- /vendor/github.com/lesismal/nbio/autobahn/server/autobahn_test.go: -------------------------------------------------------------------------------- 1 | // +build autobahn 2 | 3 | package main 4 | 5 | import "testing" 6 | 7 | func TestCallMain(t *testing.T) { 8 | main() 9 | } 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt -------------------------------------------------------------------------------- /vendor/gopkg.in/natefinch/lumberjack.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | - 1.15.x 6 | - 1.14.x 7 | - 1.13.x 8 | - 1.12.x 9 | 10 | env: 11 | - GO111MODULE=on 12 | -------------------------------------------------------------------------------- /vendor/github.com/caarlos0/env/v6/go.sum: -------------------------------------------------------------------------------- 1 | github.com/matryer/is v1.4.0 h1:sosSmIWwkYITGrxZ25ULNDeKiMNzFSr4V/eqBQP0PeE= 2 | github.com/matryer/is v1.4.0/go.mod h1:8I/i5uYgLzgsgEloJE1U6xx5HkBQpAZvepWuujKwMRU= 3 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.wb.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.sync.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.sync.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.sync.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.sync.expect -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/tools/go.mod: -------------------------------------------------------------------------------- 1 | module go.uber.org/multierr/tools 2 | 3 | go 1.12 4 | 5 | require ( 6 | golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 7 | honnef.co/go/tools v0.1.4 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/go.sum: -------------------------------------------------------------------------------- 1 | github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= 2 | github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= 3 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | # Config for https://github.com/apps/release-drafter 2 | template: | 3 | 4 | 5 | 6 | ## CHANGELOG 7 | $CHANGES 8 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.sync.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.sync.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.sync.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.sync.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.sync.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.sync.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.wb.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.sync.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.sync.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.wb.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/templexxx/xorsimd/go.sum: -------------------------------------------------------------------------------- 1 | github.com/templexxx/cpu v0.0.1 h1:hY4WdLOgKdc8y13EYklu9OUTXik80BkxHoWvTO6MQQY= 2 | github.com/templexxx/cpu v0.0.1/go.mod h1:w7Tb+7qgcAlIyX4NhLuDKt78AHA5SzPmq0Wj6HiEnnk= 3 | -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/tools/go.mod: -------------------------------------------------------------------------------- 1 | module go.uber.org/atomic/tools 2 | 3 | require ( 4 | golang.org/x/lint v0.0.0-20190930215403-16217165b5de 5 | honnef.co/go/tools v0.0.1-2020.1.5 6 | ) 7 | 8 | go 1.13 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/natefinch/lumberjack.v2/chown.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package lumberjack 4 | 5 | import ( 6 | "os" 7 | ) 8 | 9 | func chown(_ string, _ os.FileInfo) error { 10 | return nil 11 | } 12 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.5 6 | - 1.6 7 | - 1.7 8 | - 1.8 9 | - 1.9 10 | - tip 11 | 12 | go_import_path: gopkg.in/yaml.v2 13 | -------------------------------------------------------------------------------- /vendor/bitbucket.org/creachadair/stringset/go.mod: -------------------------------------------------------------------------------- 1 | module bitbucket.org/creachadair/stringset 2 | 3 | go 1.12 4 | 5 | require ( 6 | github.com/BurntSushi/toml v0.3.1 7 | github.com/creachadair/staticfile v0.1.3 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/.travis.gofmt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ -n "$(gofmt -l .)" ]; then 4 | echo "Go code is not formatted:" 5 | gofmt -d . 6 | exit 1 7 | fi 8 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text.sync.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.sync.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.sync.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.sync.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/profile 3 | go: 4 | - 1.13.x 5 | - 1.14.x 6 | - tip 7 | 8 | script: 9 | - go test -race github.com/pkg/profile 10 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/histogram/go.sum: -------------------------------------------------------------------------------- 1 | github.com/valyala/fastrand v1.0.0 h1:LUKT9aKer2dVQNUi3waewTbKV+7H17kvWFNKs2ObdkI= 2 | github.com/valyala/fastrand v1.0.0/go.mod h1:HWqCzkrkg6QXT8V2EXWvXCoow7vLwOFN002oeRzjapQ= 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at https://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at https://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/example/readline-im/README.md: -------------------------------------------------------------------------------- 1 | # readline-im 2 | 3 | ![readline-im](https://dl.dropboxusercontent.com/s/52hc7bo92g3pgi5/03F93B8D-9B4B-4D35-BBAA-22FBDAC7F299-26173-000164AA33980001.gif?dl=0) 4 | -------------------------------------------------------------------------------- /vendor/github.com/docopt/docopt-go/test_golang.docopt: -------------------------------------------------------------------------------- 1 | r"""usage: prog [NAME_-2]...""" 2 | $ prog 10 20 3 | {"NAME_-2": ["10", "20"]} 4 | 5 | $ prog 10 6 | {"NAME_-2": ["10"]} 7 | 8 | $ prog 9 | {"NAME_-2": []} 10 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.sync.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.sync.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.sync.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.sync.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/null-long-match.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/null-long-match.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/null-long-match.sync.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/null-long-match.sync.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/null-long-match.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/null-long-match.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz -------------------------------------------------------------------------------- /vendor/github.com/minio/sha256-simd/go.sum: -------------------------------------------------------------------------------- 1 | github.com/klauspost/cpuid/v2 v2.0.6 h1:dQ5ueTiftKxp0gyjKSx5+8BtPWkyQbd95m8Gys/RarI= 2 | github.com/klauspost/cpuid/v2 v2.0.6/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= 3 | -------------------------------------------------------------------------------- /vendor/github.com/osamingo/jsonrpc/Gopkg.toml: -------------------------------------------------------------------------------- 1 | [[constraint]] 2 | branch = "master" 3 | name = "github.com/alecthomas/jsonschema" 4 | 5 | [[constraint]] 6 | branch = "master" 7 | name = "github.com/intel-go/fastjson" 8 | -------------------------------------------------------------------------------- /vendor/github.com/beevik/ntp/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Brett Vickers (beevik) 2 | Mikhail Salosin (AlphaB) 3 | Anton Tolchanov (knyar) 4 | Christopher Batey (chbatey) 5 | Meng Zhuo (mengzhuo) 6 | Leonid Evdokimov (darkk) 7 | Ask Bjørn Hansen (abh) -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.sync.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.sync.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/reedsolomon/go.sum: -------------------------------------------------------------------------------- 1 | github.com/klauspost/cpuid/v2 v2.0.6 h1:dQ5ueTiftKxp0gyjKSx5+8BtPWkyQbd95m8Gys/RarI= 2 | github.com/klauspost/cpuid/v2 v2.0.6/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= 3 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth_appengine.go: -------------------------------------------------------------------------------- 1 | // +build appengine 2 | 3 | package runewidth 4 | 5 | // IsEastAsian return true if the current locale is CJK 6 | func IsEastAsian() bool { 7 | return false 8 | } 9 | -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/glide.yaml: -------------------------------------------------------------------------------- 1 | package: go.uber.org/multierr 2 | import: 3 | - package: go.uber.org/atomic 4 | version: ^1 5 | testImport: 6 | - package: github.com/stretchr/testify 7 | subpackages: 8 | - assert 9 | -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/std_windows.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package readline 4 | 5 | func init() { 6 | Stdin = NewRawReader() 7 | Stdout = NewANSIWriter(Stdout) 8 | Stderr = NewANSIWriter(Stderr) 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.sync.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.sync.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.sync.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.sync.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mattn/go-colorable 2 | 3 | require ( 4 | github.com/mattn/go-isatty v0.0.12 5 | golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae // indirect 6 | ) 7 | 8 | go 1.13 9 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/miekg/dns/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroproject/derohe/HEAD/vendor/github.com/miekg/dns/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/github.com/txthinking/socks5/bind.go: -------------------------------------------------------------------------------- 1 | package socks5 2 | 3 | import ( 4 | "errors" 5 | "net" 6 | ) 7 | 8 | // TODO 9 | func (r *Request) bind(c net.Conn) error { 10 | return errors.New("Unsupport BIND now") 11 | } 12 | -------------------------------------------------------------------------------- /vendor/nhooyr.io/websocket/ci/all.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | 4 | main() { 5 | cd "$(dirname "$0")/.." 6 | 7 | ./ci/fmt.sh 8 | ./ci/lint.sh 9 | ./ci/test.sh "$@" 10 | } 11 | 12 | main "$@" 13 | -------------------------------------------------------------------------------- /cmd/rpc_examples/readme.txt: -------------------------------------------------------------------------------- 1 | Various RPC servers can be developed, which can represent various activitities not representable on any existing blockchain. 2 | This design satisfies almost 99% of worlds use cases while keeping anonymity. 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/beevik/ntp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | 4 | go: 5 | - 1.9.x 6 | - 1.12.x 7 | - tip 8 | 9 | matrix: 10 | allow_failures: 11 | - go: tip 12 | 13 | script: 14 | - go test -v ./... 15 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/os_safe_linux_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2021 Klaus Post, released under MIT License. See LICENSE file. 2 | 3 | //go:build nounsafe 4 | // +build nounsafe 5 | 6 | package cpuid 7 | 8 | var hwcap uint 9 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Alex A. Skinner 2 | Andrew Tunnell-Jones 3 | Ask Bjørn Hansen 4 | Dave Cheney 5 | Dusty Wilson 6 | Marek Majkowski 7 | Peter van Dijk 8 | Omri Bahumi 9 | Alex Sergeyev 10 | James Hartig 11 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/.travis.govet.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd "$(dirname $0)" 4 | DIRS=". assert require mock _codegen" 5 | set -e 6 | for subdir in $DIRS; do 7 | pushd $subdir 8 | go vet 9 | popd 10 | done 11 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/boltsync_unix.go: -------------------------------------------------------------------------------- 1 | // +build !windows,!plan9,!linux,!openbsd 2 | 3 | package bbolt 4 | 5 | // fdatasync flushes written data to a file descriptor. 6 | func fdatasync(db *DB) error { 7 | return db.file.Sync() 8 | } 9 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- 1 | package yaml_test 2 | 3 | import ( 4 | . "gopkg.in/check.v1" 5 | "testing" 6 | ) 7 | 8 | func Test(t *testing.T) { TestingT(t) } 9 | 10 | type S struct{} 11 | 12 | var _ = Suite(&S{}) 13 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at https://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/xtaci/kcp-go/v5/tx_generic.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package kcp 4 | 5 | import ( 6 | "golang.org/x/net/ipv4" 7 | ) 8 | 9 | func (s *UDPSession) tx(txqueue []ipv4.Message) { 10 | s.defaultTx(txqueue) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/go.sum: -------------------------------------------------------------------------------- 1 | golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5 h1:LfCXLvNmTYH9kEmVgqbnsWfruoXZIrh4YBgqVHtDvw0= 2 | golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 3 | -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | .DS_Store 3 | /vendor 4 | cover.html 5 | cover.out 6 | lint.log 7 | 8 | # Binaries 9 | *.test 10 | 11 | # Profiling output 12 | *.prof 13 | 14 | # Output of fossa analyzer 15 | /fossa 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 | fillertext 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | | "fillertext" 9 | |
10 | -------------------------------------------------------------------------------- /cmd/explorer/explorerlib/templates/not_found.tmpl: -------------------------------------------------------------------------------- 1 | {{define "notfound_page"}} 2 | {{ template "header" . }} 3 | 4 |

No details found in database

5 | {{ template "footer" . }} 6 | {{end}} 7 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at https://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/stretchr/testify 2 | 3 | require ( 4 | github.com/davecgh/go-spew v1.1.0 5 | github.com/pmezard/go-difflib v1.0.0 6 | github.com/stretchr/objx v0.1.0 7 | gopkg.in/yaml.v2 v2.2.2 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/github.com/xtaci/kcp-go/v5/readloop_generic.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package kcp 4 | 5 | func (s *UDPSession) readLoop() { 6 | s.defaultReadLoop() 7 | } 8 | 9 | func (l *Listener) monitor() { 10 | l.defaultMonitor() 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.5 6 | - 1.6 7 | - 1.7 8 | - 1.8 9 | - 1.9 10 | - tip 11 | 12 | go_import_path: gopkg.in/yaml.v2 13 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/go.sum: -------------------------------------------------------------------------------- 1 | golang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg= 2 | golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 3 | -------------------------------------------------------------------------------- /vendor/github.com/minio/highwayhash/go.sum: -------------------------------------------------------------------------------- 1 | golang.org/x/sys v0.0.0-20190130150945-aca44879d564 h1:o6ENHFwwr1TZ9CUPQcfo1HGvLP1OPsPOTB7xCIOPNmU= 2 | golang.org/x/sys v0.0.0-20190130150945-aca44879d564/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 3 | -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/go.mod: -------------------------------------------------------------------------------- 1 | module go.uber.org/multierr 2 | 3 | go 1.14 4 | 5 | require ( 6 | github.com/stretchr/testify v1.7.0 7 | go.uber.org/atomic v1.7.0 8 | gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/cmd/colorable/colorable.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "io" 5 | "os" 6 | 7 | "github.com/mattn/go-colorable" 8 | ) 9 | 10 | func main() { 11 | io.Copy(colorable.NewColorableStdout(), os.Stdin) 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require_forward.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.CommentWithoutT "a"}} 2 | func (a *Assertions) {{.DocInfo.Name}}({{.Params}}) { 3 | if h, ok := a.t.(tHelper); ok { h.Helper() } 4 | {{.DocInfo.Name}}(a.t, {{.ForwardedParams}}) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_linux.go: -------------------------------------------------------------------------------- 1 | package bbolt 2 | 3 | import ( 4 | "syscall" 5 | ) 6 | 7 | // fdatasync flushes written data to a file descriptor. 8 | func fdatasync(db *DB) error { 9 | return syscall.Fdatasync(int(db.file.Fd())) 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/internal/field/_asm/go.mod: -------------------------------------------------------------------------------- 1 | module asm 2 | 3 | go 1.16 4 | 5 | require ( 6 | github.com/mmcloughlin/avo v0.2.0 7 | golang.org/x/crypto v0.0.0 8 | ) 9 | 10 | replace golang.org/x/crypto v0.0.0 => ../../../.. 11 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/vendor/github.com/valyala/histogram/go.sum: -------------------------------------------------------------------------------- 1 | github.com/valyala/fastrand v1.0.0 h1:LUKT9aKer2dVQNUi3waewTbKV+7H17kvWFNKs2ObdkI= 2 | github.com/valyala/fastrand v1.0.0/go.mod h1:HWqCzkrkg6QXT8V2EXWvXCoow7vLwOFN002oeRzjapQ= 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-stack/stack/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | - 1.7 5 | - 1.8 6 | - 1.9 7 | - tip 8 | 9 | before_install: 10 | - go get github.com/mattn/goveralls 11 | 12 | script: 13 | - goveralls -service=travis-ci 14 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_386.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const GOARCH = "386" 8 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const GOARCH = "amd64" 8 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLineSize = 32 8 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/hub/README.md: -------------------------------------------------------------------------------- 1 | hub 2 | === 3 | 4 | [![GoDoc](https://godoc.org/github.com/cenkalti/hub?status.png)](https://godoc.org/github.com/cenkalti/hub) 5 | [![Build Status](https://travis-ci.org/cenkalti/hub.png)](https://travis-ci.org/cenkalti/hub) 6 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/nbio/autobahn/main_go18.go: -------------------------------------------------------------------------------- 1 | // +build go1.8 2 | 3 | package main 4 | 5 | import "sort" 6 | 7 | func sortBySegment(s []string) { 8 | sort.Slice(s, func(i, j int) bool { 9 | return compareBySegment(s[i], s[j]) < 0 10 | }) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.CommentFormat}} 2 | func {{.DocInfo.Name}}f(t TestingT, {{.ParamsFormat}}) bool { 3 | if h, ok := t.(tHelper); ok { h.Helper() } 4 | return {{.DocInfo.Name}}(t, {{.ForwardedParamsFormat}}) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.CommentWithoutT "a"}} 2 | func (a *Assertions) {{.DocInfo.Name}}({{.Params}}) bool { 3 | if h, ok := a.t.(tHelper); ok { h.Helper() } 4 | return {{.DocInfo.Name}}(a.t, {{.ForwardedParams}}) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.Comment}} 2 | func {{.DocInfo.Name}}(t TestingT, {{.Params}}) { 3 | if h, ok := t.(tHelper); ok { h.Helper() } 4 | if assert.{{.DocInfo.Name}}(t, {{.ForwardedParams}}) { return } 5 | t.FailNow() 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_mips.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLineSize = 32 8 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_mips64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLineSize = 32 8 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_mips64le.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLineSize = 32 8 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_mipsle.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLineSize = 32 8 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLineSize = 64 8 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/socks5/util_test.go: -------------------------------------------------------------------------------- 1 | package socks5 2 | 3 | import "testing" 4 | 5 | func TestParseAddress(t *testing.T) { 6 | t.Log(ParseAddress("127.0.0.1:80")) 7 | t.Log(ParseAddress("[::1]:80")) 8 | t.Log(ParseAddress("a.com:80")) 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/x/init.go: -------------------------------------------------------------------------------- 1 | package x 2 | 3 | // import _ "net/http/pprof" 4 | 5 | func init() { 6 | // log.SetFlags(log.LstdFlags | log.Lshortfile) 7 | // go func() { 8 | // log.Println(http.ListenAndServe(":6060", nil)) 9 | // }() 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/go-logr/zapr 2 | 3 | go 1.16 4 | 5 | require ( 6 | github.com/go-logr/logr v1.1.0 7 | github.com/pkg/errors v0.9.1 // indirect 8 | github.com/stretchr/testify v1.7.0 9 | go.uber.org/zap v1.19.0 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 |
fillertext 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | | "fillertext" 9 | |
10 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/version_test.go: -------------------------------------------------------------------------------- 1 | package dns 2 | 3 | import "testing" 4 | 5 | func TestVersion(t *testing.T) { 6 | v := V{1, 0, 0} 7 | if x := v.String(); x != "1.0.0" { 8 | t.Fatalf("Failed to convert version %v, got: %s", v, x) 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/errors 3 | go: 4 | - 1.4.x 5 | - 1.5.x 6 | - 1.6.x 7 | - 1.7.x 8 | - 1.8.x 9 | - 1.9.x 10 | - 1.10.x 11 | - tip 12 | 13 | script: 14 | - go test -v ./... 15 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/trace_test.go: -------------------------------------------------------------------------------- 1 | package profile_test 2 | 3 | import "github.com/pkg/profile" 4 | 5 | func ExampleTraceProfile() { 6 | // use execution tracing, rather than the default cpu profiling. 7 | defer profile.Start(profile.TraceProfile).Stop() 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_amd64p32.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const GOARCH = "amd64p32" 8 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_386.go: -------------------------------------------------------------------------------- 1 | package bbolt 2 | 3 | // maxMapSize represents the largest mmap size supported by Bolt. 4 | const maxMapSize = 0x7FFFFFFF // 2GB 5 | 6 | // maxAllocSize is the size used when creating array pointers. 7 | const maxAllocSize = 0xFFFFFFF 8 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_arm.go: -------------------------------------------------------------------------------- 1 | package bbolt 2 | 3 | // maxMapSize represents the largest mmap size supported by Bolt. 4 | const maxMapSize = 0x7FFFFFFF // 2GB 5 | 6 | // maxAllocSize is the size used when creating array pointers. 7 | const maxAllocSize = 0xFFFFFFF 8 | -------------------------------------------------------------------------------- /p2p/README.md: -------------------------------------------------------------------------------- 1 | This is the basic design of the V2 protocol which features quite a lot of flexibility and easy up-gradation 2 | 3 | 4 | 5 | The protocol is planned to be complete SSL/TLS based to avoid mass traffic analysis by any one. 6 | 7 | 8 | 9 | This is work-in-progress -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/.travis.govet.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd "$(dirname $0)" 4 | DIRS=". assert require mock _codegen" 5 | set -e 6 | for subdir in $DIRS; do 7 | pushd $subdir 8 | go vet 9 | popd 10 | done 11 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- 1 | package yaml_test 2 | 3 | import ( 4 | . "gopkg.in/check.v1" 5 | "testing" 6 | ) 7 | 8 | func Test(t *testing.T) { TestingT(t) } 9 | 10 | type S struct{} 11 | 12 | var _ = Suite(&S{}) 13 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/cpu_386.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const GOARCH = "386" 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·use(SB),NOSPLIT,$0 8 | RET 9 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/rpc2/debug.go: -------------------------------------------------------------------------------- 1 | package rpc2 2 | 3 | import "log" 4 | 5 | // DebugLog controls the printing of internal and I/O errors. 6 | var DebugLog = false 7 | 8 | func debugln(v ...interface{}) { 9 | if DebugLog { 10 | log.Println(v...) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/holiman/uint256/.deepsource.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | test_patterns = [ 4 | "*/*_test.go", 5 | "*_test.go" 6 | ] 7 | 8 | [[analyzers]] 9 | name = "go" 10 | enabled = true 11 | 12 | [analyzers.meta] 13 | import_paths = ["github.com/holiman/uint256"] -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/cpu_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const GOARCH = "amd64" 8 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth_js.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | // +build !appengine 3 | 4 | package runewidth 5 | 6 | func IsEastAsian() bool { 7 | // TODO: Implement this for the web. Detect east asian in a compatible way, and return true. 8 | return false 9 | } 10 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_amd64.go: -------------------------------------------------------------------------------- 1 | package bbolt 2 | 3 | // maxMapSize represents the largest mmap size supported by Bolt. 4 | const maxMapSize = 0xFFFFFFFFFFFF // 256TB 5 | 6 | // maxAllocSize is the size used when creating array pointers. 7 | const maxAllocSize = 0x7FFFFFFF 8 | -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/example/readline-remote/readline-remote-client/client.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "github.com/chzyer/readline" 4 | 5 | func main() { 6 | if err := readline.DialRemote("tcp", ":12344"); err != nil { 7 | println(err.Error()) 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/stretchr/testify 2 | 3 | require ( 4 | github.com/davecgh/go-spew v1.1.0 5 | github.com/pmezard/go-difflib v1.0.0 6 | github.com/stretchr/objx v0.1.0 7 | gopkg.in/yaml.v2 v2.2.2 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/lesismal/llib 2 | 3 | go 1.16 4 | 5 | require ( 6 | github.com/cespare/xxhash v1.1.0 // indirect 7 | golang.org/x/crypto v0.0.0-20210513122933-cd7d49e622d5 8 | golang.org/x/net v0.0.0-20210510120150-4163338589ed 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | - 1.13.x 5 | - tip 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - ./go.test.sh 12 | 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) 15 | -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/tools/go.mod: -------------------------------------------------------------------------------- 1 | module go.uber.org/zap/tools 2 | 3 | require ( 4 | golang.org/x/lint v0.0.0-20190930215403-16217165b5de 5 | golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5 // indirect 6 | honnef.co/go/tools v0.0.1-2019.2.3 7 | ) 8 | 9 | go 1.13 10 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/require/require_forward.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.CommentWithoutT "a"}} 2 | func (a *Assertions) {{.DocInfo.Name}}({{.Params}}) { 3 | if h, ok := a.t.(tHelper); ok { h.Helper() } 4 | {{.DocInfo.Name}}(a.t, {{.ForwardedParams}}) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/package_test.go: -------------------------------------------------------------------------------- 1 | package testify 2 | 3 | import ( 4 | "github.com/stretchr/testify/assert" 5 | "testing" 6 | ) 7 | 8 | func TestImports(t *testing.T) { 9 | if assert.Equal(t, 1, 1) != true { 10 | t.Error("Something is wrong.") 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | - 1.13.x 5 | - tip 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - ./go.test.sh 12 | 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) 15 | 16 | -------------------------------------------------------------------------------- /vendor/github.com/osamingo/jsonrpc/.codeclimate.yml: -------------------------------------------------------------------------------- 1 | version: "2" 2 | engines: 3 | gofmt: 4 | enabled: true 5 | govet: 6 | enabled: true 7 | golint: 8 | enabled: true 9 | ratings: 10 | paths: 11 | - "*.go" 12 | exclude_paths: 13 | - vendor/ 14 | - "*_test.go" 15 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/x/.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- 1 | #### Describe actual behavior 2 | 3 | #### What is your expected behavior 4 | 5 | #### Specifications like the version of the project, operating system, or hardware 6 | 7 | #### Steps to reproduce the problem 8 | 0. 9 | 1. 10 | 2. 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpproxy/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package httpproxy 6 | 7 | var ExportUseProxy = (*Config).useProxy 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_darwin.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func probeProtocolStack() int { return 4 } 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_dragonfly.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func probeProtocolStack() int { return 4 } 8 | -------------------------------------------------------------------------------- /vendor/github.com/creachadair/jrpc2/.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: gomod 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | time: "11:45" 8 | timezone: "America/Los_Angeles" 9 | reviewers: 10 | - creachadair 11 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/require/require.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.Comment}} 2 | func {{.DocInfo.Name}}(t TestingT, {{.Params}}) { 3 | if h, ok := t.(tHelper); ok { h.Helper() } 4 | if assert.{{.DocInfo.Name}}(t, {{.ForwardedParams}}) { return } 5 | t.FailNow() 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | .idea/ 14 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/socks5/.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- 1 | #### Describe actual behavior 2 | 3 | #### What is your expected behavior 4 | 5 | #### Specifications like the version of the project, operating system, or hardware 6 | 7 | #### Steps to reproduce the problem 8 | 0. 9 | 1. 10 | 2. 11 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/socks5/init.go: -------------------------------------------------------------------------------- 1 | package socks5 2 | 3 | import ( 4 | "github.com/txthinking/x" 5 | ) 6 | 7 | // Debug enable debug log 8 | var Debug bool 9 | var Dial x.Dialer = x.DefaultDial 10 | 11 | func init() { 12 | // log.SetFlags(log.LstdFlags | log.Lshortfile) 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/x/random_test.go: -------------------------------------------------------------------------------- 1 | package x 2 | 3 | import ( 4 | "testing" 5 | ) 6 | 7 | func TestRandomNumber(t *testing.T) { 8 | t.Log(RandomNumber()) 9 | t.Log(RandomNumber()) 10 | t.Log(RandomNumber()) 11 | t.Log(Random(1000, 9999)) 12 | t.Log(Random(1000, 9999)) 13 | } 14 | -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapgrpc/internal/test/go.mod: -------------------------------------------------------------------------------- 1 | module go.uber.org/zap/zapgrpc/internal/test 2 | 3 | go 1.15 4 | 5 | require ( 6 | github.com/stretchr/testify v1.7.0 7 | go.uber.org/zap v1.16.0 8 | google.golang.org/grpc v1.35.0 9 | ) 10 | 11 | replace go.uber.org/zap => ../../.. 12 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.CommentFormat}} 2 | func {{.DocInfo.Name}}f(t TestingT, {{.ParamsFormat}}) bool { 3 | if h, ok := t.(tHelper); ok { h.Helper() } 4 | return {{.DocInfo.Name}}(t, {{.ForwardedParamsFormat}}) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- 1 | {{.CommentWithoutT "a"}} 2 | func (a *Assertions) {{.DocInfo.Name}}({{.Params}}) bool { 3 | if h, ok := a.t.(tHelper); ok { h.Helper() } 4 | return {{.DocInfo.Name}}(a.t, {{.ForwardedParams}}) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | var ( 8 | Options = options 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/xorsimd/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | .idea 14 | -------------------------------------------------------------------------------- /vendor/github.com/tjfoc/gmsm/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/tjfoc/gmsm 2 | 3 | go 1.14 4 | 5 | require ( 6 | github.com/golang/protobuf v1.4.2 7 | golang.org/x/crypto v0.0.0-20201012173705-84dcc777aaee 8 | golang.org/x/net v0.0.0-20201010224723-4f7140c49acb 9 | google.golang.org/grpc v1.31.0 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_ppc.go: -------------------------------------------------------------------------------- 1 | // +build ppc 2 | 3 | package bbolt 4 | 5 | // maxMapSize represents the largest mmap size supported by Bolt. 6 | const maxMapSize = 0x7FFFFFFF // 2GB 7 | 8 | // maxAllocSize is the size used when creating array pointers. 9 | const maxAllocSize = 0xFFFFFFF 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | func archInit() { 8 | doinit() 9 | Initialized = true 10 | } 11 | -------------------------------------------------------------------------------- /vendor/bitbucket.org/creachadair/stringset/makeset/intset.toml: -------------------------------------------------------------------------------- 1 | desc = "A set of int values." 2 | type = "int" 3 | package = "intset" 4 | zero = "0" 5 | toString = 'return strconv.Itoa(x)' 6 | imports = ["strconv"] 7 | transforms = true 8 | testValues = [0, 1, 2, 3, 5, 7, 11, 13, 17, 19] 9 | -------------------------------------------------------------------------------- /vendor/github.com/templexxx/cpu/cpu_riscv64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLineSize = 32 8 | 9 | func doinit() { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/xtaci/kcp-go/v5/batchconn.go: -------------------------------------------------------------------------------- 1 | package kcp 2 | 3 | import "golang.org/x/net/ipv4" 4 | 5 | const ( 6 | batchSize = 16 7 | ) 8 | 9 | type batchConn interface { 10 | WriteBatch(ms []ipv4.Message, flags int) (int, error) 11 | ReadBatch(ms []ipv4.Message, flags int) (int, error) 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/process_metrics_other.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package metrics 4 | 5 | import ( 6 | "io" 7 | ) 8 | 9 | func writeProcessMetrics(w io.Writer) { 10 | // TODO: implement it 11 | } 12 | 13 | func writeFDMetrics(w io.Writer) { 14 | // TODO: implement it. 15 | } 16 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of Gorilla WebSocket authors for copyright 2 | # purposes. 3 | # 4 | # Please keep the list sorted. 5 | 6 | Gary Burd 7 | Google LLC (https://opensource.google.com/) 8 | Joachim Bauch 9 | 10 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_arm64.go: -------------------------------------------------------------------------------- 1 | // +build arm64 2 | 3 | package bbolt 4 | 5 | // maxMapSize represents the largest mmap size supported by Bolt. 6 | const maxMapSize = 0xFFFFFFFFFFFF // 256TB 7 | 8 | // maxAllocSize is the size used when creating array pointers. 9 | const maxAllocSize = 0x7FFFFFFF 10 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_mipsx.go: -------------------------------------------------------------------------------- 1 | // +build mips mipsle 2 | 3 | package bbolt 4 | 5 | // maxMapSize represents the largest mmap size supported by Bolt. 6 | const maxMapSize = 0x40000000 // 1GB 7 | 8 | // maxAllocSize is the size used when creating array pointers. 9 | const maxAllocSize = 0xFFFFFFF 10 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_ppc64.go: -------------------------------------------------------------------------------- 1 | // +build ppc64 2 | 3 | package bbolt 4 | 5 | // maxMapSize represents the largest mmap size supported by Bolt. 6 | const maxMapSize = 0xFFFFFFFFFFFF // 256TB 7 | 8 | // maxAllocSize is the size used when creating array pointers. 9 | const maxAllocSize = 0x7FFFFFFF 10 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_s390x.go: -------------------------------------------------------------------------------- 1 | // +build s390x 2 | 3 | package bbolt 4 | 5 | // maxMapSize represents the largest mmap size supported by Bolt. 6 | const maxMapSize = 0xFFFFFFFFFFFF // 256TB 7 | 8 | // maxAllocSize is the size used when creating array pointers. 9 | const maxAllocSize = 0x7FFFFFFF 10 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/nbio/autobahn/README.md: -------------------------------------------------------------------------------- 1 | ## 2 | Autobhan report generation 3 | 4 | Makefile in this current directory has an example to generate autobhan report for webserver 5 | 6 | Command to generate the report 7 | make report 8 | 9 | note - report will be saved under nbio/autobhan/report/output folder -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/http/httpproxy/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package httpproxy 6 | 7 | var ExportUseProxy = (*Config).useProxy 8 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_darwin.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func probeProtocolStack() int { return 4 } 8 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/socks5/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/txthinking/socks5 2 | 3 | go 1.16 4 | 5 | require ( 6 | github.com/patrickmn/go-cache v2.1.0+incompatible 7 | github.com/txthinking/runnergroup v0.0.0-20210608031112-152c7c4432bf 8 | github.com/txthinking/x v0.0.0-20210326105829-476fab902fbe 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_ppc64le.go: -------------------------------------------------------------------------------- 1 | // +build ppc64le 2 | 3 | package bbolt 4 | 5 | // maxMapSize represents the largest mmap size supported by Bolt. 6 | const maxMapSize = 0xFFFFFFFFFFFF // 256TB 7 | 8 | // maxAllocSize is the size used when creating array pointers. 9 | const maxAllocSize = 0x7FFFFFFF 10 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_riscv64.go: -------------------------------------------------------------------------------- 1 | // +build riscv64 2 | 3 | package bbolt 4 | 5 | // maxMapSize represents the largest mmap size supported by Bolt. 6 | const maxMapSize = 0xFFFFFFFFFFFF // 256TB 7 | 8 | // maxAllocSize is the size used when creating array pointers. 9 | const maxAllocSize = 0x7FFFFFFF 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys_solaris_amd64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·sysvicall6(SB),NOSPLIT,$0-88 8 | JMP syscall·sysvicall6(SB) 9 | -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.x 4 | script: 5 | - GOOS=windows go install github.com/chzyer/readline/example/... 6 | - GOOS=linux go install github.com/chzyer/readline/example/... 7 | - GOOS=darwin go install github.com/chzyer/readline/example/... 8 | - go test -race -v 9 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/trace_17.go: -------------------------------------------------------------------------------- 1 | // +build !go1.8 2 | 3 | package websocket 4 | 5 | import ( 6 | "crypto/tls" 7 | "net/http/httptrace" 8 | ) 9 | 10 | func doHandshakeWithTrace(trace *httptrace.ClientTrace, tlsConn *tls.Conn, cfg *tls.Config) error { 11 | return doHandshake(tlsConn, cfg) 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/cpu_mips.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLinePadSize = 32 8 | 9 | func doinit() { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/cpu_mipsle.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLinePadSize = 32 8 | 9 | func doinit() { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLinePadSize = 64 8 | 9 | func doinit() { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_dragonfly.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func probeProtocolStack() int { return 4 } 8 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_mips64x.go: -------------------------------------------------------------------------------- 1 | // +build mips64 mips64le 2 | 3 | package bbolt 4 | 5 | // maxMapSize represents the largest mmap size supported by Bolt. 6 | const maxMapSize = 0x8000000000 // 512GB 7 | 8 | // maxAllocSize is the size used when creating array pointers. 9 | const maxAllocSize = 0x7FFFFFFF 10 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/package_test.go: -------------------------------------------------------------------------------- 1 | package testify 2 | 3 | import ( 4 | "github.com/stretchr/testify/assert" 5 | "testing" 6 | ) 7 | 8 | func TestImports(t *testing.T) { 9 | if assert.Equal(t, 1, 1) != true { 10 | t.Error("Something is wrong.") 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/cpu_riscv64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package cpu 6 | 7 | const CacheLinePadSize = 32 8 | 9 | func doinit() { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x12b 9 | sysSENDMMSG = 0x133 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x16d 9 | sysSENDMMSG = 0x176 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0xf3 9 | sysSENDMMSG = 0x10d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mips.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x10ef 9 | sysSENDMMSG = 0x10f7 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x157 9 | sysSENDMMSG = 0x15d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !linux && arm 6 | // +build !linux,arm 7 | 8 | package cpu 9 | 10 | func archInit() {} 11 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/sys/cpu/cpu_other_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !linux,arm 6 | 7 | package cpu 8 | 9 | func archInit() {} 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x14ae 9 | sysSENDMMSG = 0x14b6 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x14ae 9 | sysSENDMMSG = 0x14b6 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x10ef 9 | sysSENDMMSG = 0x10f7 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x157 9 | sysSENDMMSG = 0x15d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/xxhash_amd64.go: -------------------------------------------------------------------------------- 1 | //go:build !appengine && gc && !purego 2 | // +build !appengine,gc,!purego 3 | 4 | package xxhash 5 | 6 | // Sum64 computes the 64-bit xxHash digest of b. 7 | // 8 | //go:noescape 9 | func Sum64(b []byte) uint64 10 | 11 | //go:noescape 12 | func writeBlocks(d *Digest, b []byte) int 13 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !linux,arm64 6 | 7 | package cpu 8 | 9 | func doinit() {} 10 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/testenv/testenv_cgo.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build cgo 6 | 7 | package testenv 8 | 9 | func init() { 10 | haveCGO = true 11 | } 12 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: go.etcd.io/bbolt 3 | 4 | sudo: false 5 | 6 | go: 7 | - 1.12 8 | 9 | before_install: 10 | - go get -v honnef.co/go/tools/... 11 | - go get -v github.com/kisielk/errcheck 12 | 13 | script: 14 | - make fmt 15 | - make test 16 | - make race 17 | # - make errcheck 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/go.mod: -------------------------------------------------------------------------------- 1 | module golang.org/x/crypto 2 | 3 | go 1.17 4 | 5 | require ( 6 | golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 7 | golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 8 | golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 9 | ) 10 | 11 | require golang.org/x/text v0.3.6 // indirect 12 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/cpu.s: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // This assembly file exists to allow internal/cpu to call 6 | // non-exported runtime functions that use "go:linkname". -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | - 1.13.x 5 | - tip 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - go generate 12 | - git diff --cached --exit-code 13 | - ./go.test.sh 14 | 15 | after_success: 16 | - bash <(curl -s https://codecov.io/bash) 17 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/lif/sys_solaris_amd64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·sysvicall6(SB),NOSPLIT,$0-88 8 | JMP syscall·sysvicall6(SB) 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/Makefile: -------------------------------------------------------------------------------- 1 | h2demo.linux: h2demo.go 2 | GOOS=linux go build --tags=h2demo -o h2demo.linux . 3 | 4 | FORCE: 5 | 6 | upload: FORCE 7 | go install golang.org/x/build/cmd/upload 8 | upload --verbose --osarch=linux-amd64 --tags=h2demo --file=go:golang.org/x/net/http2/h2demo --public http2-demo-server-tls/h2demo 9 | -------------------------------------------------------------------------------- /premine/premine.go: -------------------------------------------------------------------------------- 1 | package premine 2 | 3 | // this files contains the list of all premine users 4 | // this is just an evaluation for better testing and will probably non exist in the releasing main 5 | 6 | // list contains csv value,registration tx line format 7 | 8 | import _ "embed" 9 | 10 | //go:embed list.txt 11 | var List string 12 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/xxhashbench/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/cespare/xxhash/xxhashbench 2 | 3 | go 1.13 4 | 5 | require ( 6 | github.com/OneOfOne/xxhash v1.2.5 7 | github.com/cespare/xxhash/v2 v2.0.0-00010101000000-000000000000 8 | github.com/spaolacci/murmur3 v1.1.0 9 | ) 10 | 11 | replace github.com/cespare/xxhash/v2 => ../ 12 | -------------------------------------------------------------------------------- /vendor/github.com/dustin/go-humanize/humanize.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package humanize converts boring ugly numbers to human-friendly strings and back. 3 | 4 | Durations can be turned into strings such as "3 days ago", numbers 5 | representing sizes like 82854982 into useful strings like, "83 MB" or 6 | "79 MiB" (whichever you prefer). 7 | */ 8 | package humanize 9 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/os_unsafe_linux_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2021 Klaus Post, released under MIT License. See LICENSE file. 2 | 3 | //go:build !nounsafe 4 | // +build !nounsafe 5 | 6 | package cpuid 7 | 8 | import _ "unsafe" // needed for go:linkname 9 | 10 | //go:linkname hwcap internal/cpu.HWCap 11 | var hwcap uint 12 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/cpu_arm64_android.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build arm64 6 | 7 | package cpu 8 | 9 | func osInit() { 10 | hwcapInit("android") 11 | } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !linux && !netbsd && arm64 6 | // +build !linux,!netbsd,arm64 7 | 8 | package cpu 9 | 10 | func doinit() {} 11 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/_example/title/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "os" 6 | 7 | . "github.com/mattn/go-colorable" 8 | ) 9 | 10 | func main() { 11 | out := NewColorableStdout() 12 | fmt.Fprint(out, "\x1B]0;TITLE Changed\007(See title and hit any key)") 13 | var c [1]byte 14 | os.Stdin.Read(c[:]) 15 | } 16 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_linux_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x16d 9 | sysSENDMMSG = 0x176 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/.travis.gogenerate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ "$TRAVIS_GO_VERSION" =~ ^1\.[45](\..*)?$ ]]; then 4 | exit 0 5 | fi 6 | 7 | go get github.com/ernesto-jimenez/gogen/imports 8 | go generate ./... 9 | if [ -n "$(git diff)" ]; then 10 | echo "Go generate had not been run" 11 | git diff 12 | exit 1 13 | fi 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_riscv64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build riscv64 6 | // +build riscv64 7 | 8 | package cpu 9 | 10 | const cacheLineSize = 32 11 | 12 | func initOptions() {} 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/internal/internal.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package internal 6 | 7 | // EnableTrace indicates whether stack information should be recorded in errors. 8 | var EnableTrace = true 9 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x12b 9 | sysSENDMMSG = 0x133 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0xf3 9 | sysSENDMMSG = 0x10d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_linux_mips.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x10ef 9 | sysSENDMMSG = 0x10f7 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x14ae 9 | sysSENDMMSG = 0x14b6 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x10ef 9 | sysSENDMMSG = 0x10f7 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x157 9 | sysSENDMMSG = 0x15d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x157 9 | sysSENDMMSG = 0x15d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/randall77/makefat/README.md: -------------------------------------------------------------------------------- 1 | # makefat 2 | A tool for making fat OSX binaries (a portable lipo) 3 | 4 | You give it some executables, it makes a fat executable from them. The fat executable will run on any architecture supported by one of the input executables. 5 | 6 | ``` 7 | makefat ... 8 | ``` 9 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastrand/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.7 5 | - 1.8 6 | 7 | script: 8 | # build test for supported platforms 9 | - GOOS=linux go build 10 | - GOOS=darwin go build 11 | - GOOS=freebsd go build 12 | - GOARCH=386 go build 13 | 14 | # run tests on a standard platform 15 | - go test -v ./... 16 | 17 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package icmp 6 | 7 | import "syscall" 8 | 9 | func init() { 10 | freebsdVersion, _ = syscall.SysctlUint32("kern.osreldate") 11 | } 12 | -------------------------------------------------------------------------------- /astrobwt/endian_big.go: -------------------------------------------------------------------------------- 1 | //go:build armbe || arm64be || mips || mips64 || ppc64 || s390 || s390x || sparc || sparc64 2 | // +build armbe arm64be mips mips64 ppc64 s390 s390x sparc sparc64 3 | 4 | package astrobwt 5 | 6 | const LittleEndian = false 7 | const BigEndian = true 8 | 9 | // see https://github.com/golang/go/blob/master/src/go/build/syslist.go 10 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x14ae 9 | sysSENDMMSG = 0x14b6 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package test contains integration tests for the 6 | // golang.org/x/crypto/ssh package. 7 | package test // import "golang.org/x/crypto/ssh/test" 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build gc 6 | // +build gc 7 | 8 | package cpu 9 | 10 | func getisar0() uint64 11 | func getisar1() uint64 12 | func getpfr0() uint64 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build mips || mipsle 6 | // +build mips mipsle 7 | 8 | package cpu 9 | 10 | const cacheLineSize = 32 11 | 12 | func initOptions() {} 13 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/sys/cpu/cpu_riscv64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build riscv64 6 | 7 | package cpu 8 | 9 | const cacheLineSize = 32 10 | 11 | func initOptions() {} 12 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.in: -------------------------------------------------------------------------------- 1 | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/go.test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -race -coverprofile=profile.out -covermode=atomic "$d" 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/http2/h2demo/Makefile: -------------------------------------------------------------------------------- 1 | h2demo.linux: h2demo.go 2 | GOOS=linux go build --tags=h2demo -o h2demo.linux . 3 | 4 | FORCE: 5 | 6 | upload: FORCE 7 | go install golang.org/x/build/cmd/upload 8 | upload --verbose --osarch=linux-amd64 --tags=h2demo --file=go:golang.org/x/net/http2/h2demo --public http2-demo-server-tls/h2demo 9 | -------------------------------------------------------------------------------- /vendor/nhooyr.io/websocket/internal/xsync/go_test.go: -------------------------------------------------------------------------------- 1 | package xsync 2 | 3 | import ( 4 | "testing" 5 | 6 | "nhooyr.io/websocket/internal/test/assert" 7 | ) 8 | 9 | func TestGoRecover(t *testing.T) { 10 | t.Parallel() 11 | 12 | errs := Go(func() error { 13 | panic("anmol") 14 | }) 15 | 16 | err := <-errs 17 | assert.Contains(t, err, "anmol") 18 | } 19 | -------------------------------------------------------------------------------- /glue/rwc/dummy_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017-2018 DERO Project. All rights reserved. 2 | // Use of this source code in any form is governed by RESEARCH license 3 | // license can be found in the LICENSE file. 4 | // GPG: 0F39 E425 8C65 3947 702A 8234 08B2 0360 A03A 9DE8 5 | 6 | package rwc 7 | 8 | import "testing" 9 | 10 | func Test_Part1(t *testing.T) { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build mips mipsle 6 | 7 | package cpu 8 | 9 | const cacheLineSize = 32 10 | 11 | func initOptions() {} 12 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/go.test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -race -coverprofile=profile.out -covermode=atomic "$d" 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/go.test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -race -coverprofile=profile.out -covermode=atomic "$d" 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /astrobwt/astrobwt_fast/endian_big.go: -------------------------------------------------------------------------------- 1 | //go:build armbe || arm64be || mips || mips64 || ppc64 || s390 || s390x || sparc || sparc64 2 | // +build armbe arm64be mips mips64 ppc64 s390 s390x sparc sparc64 3 | 4 | package astrobwt_fast 5 | 6 | const LittleEndian = false 7 | const BigEndian = true 8 | 9 | // see https://github.com/golang/go/blob/master/src/go/build/syslist.go 10 | -------------------------------------------------------------------------------- /cmd/derod/dummy_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017-2018 DERO Project. All rights reserved. 2 | // Use of this source code in any form is governed by RESEARCH license 3 | // license can be found in the LICENSE file. 4 | // GPG: 0F39 E425 8C65 3947 702A 8234 08B2 0360 A03A 9DE8 5 | 6 | package main 7 | 8 | import "testing" 9 | 10 | func Test_Part1(t *testing.T) { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /cmd/explorer/dummy_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017-2018 DERO Project. All rights reserved. 2 | // Use of this source code in any form is governed by RESEARCH license 3 | // license can be found in the LICENSE file. 4 | // GPG: 0F39 E425 8C65 3947 702A 8234 08B2 0360 A03A 9DE8 5 | 6 | package main 7 | 8 | import "testing" 9 | 10 | func Test_Part1(t *testing.T) { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /config/dummy_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017-2018 DERO Project. All rights reserved. 2 | // Use of this source code in any form is governed by RESEARCH license 3 | // license can be found in the LICENSE file. 4 | // GPG: 0F39 E425 8C65 3947 702A 8234 08B2 0360 A03A 9DE8 5 | 6 | package config 7 | 8 | import "testing" 9 | 10 | func Test_Part1(t *testing.T) { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /errormsg/dummy_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017-2018 DERO Project. All rights reserved. 2 | // Use of this source code in any form is governed by RESEARCH license 3 | // license can be found in the LICENSE file. 4 | // GPG: 0F39 E425 8C65 3947 702A 8234 08B2 0360 A03A 9DE8 5 | 6 | package errormsg 7 | 8 | import "testing" 9 | 10 | func Test_Part1(t *testing.T) { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /globals/dummy_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017-2018 DERO Project. All rights reserved. 2 | // Use of this source code in any form is governed by RESEARCH license 3 | // license can be found in the LICENSE file. 4 | // GPG: 0F39 E425 8C65 3947 702A 8234 08B2 0360 A03A 9DE8 5 | 6 | package globals 7 | 8 | import "testing" 9 | 10 | func Test_Part1(t *testing.T) { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /metrics/dummy_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017-2018 DERO Project. All rights reserved. 2 | // Use of this source code in any form is governed by RESEARCH license 3 | // license can be found in the LICENSE file. 4 | // GPG: 0F39 E425 8C65 3947 702A 8234 08B2 0360 A03A 9DE8 5 | 6 | package metrics 7 | 8 | import "testing" 9 | 10 | func Test_Part1(t *testing.T) { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/version.go: -------------------------------------------------------------------------------- 1 | package dns 2 | 3 | import "fmt" 4 | 5 | // Version is current version of this library. 6 | var Version = V{1, 0, 5} 7 | 8 | // V holds the version of this library. 9 | type V struct { 10 | Major, Minor, Patch int 11 | } 12 | 13 | func (v V) String() string { 14 | return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch) 15 | } 16 | -------------------------------------------------------------------------------- /cmd/dero-miner/dummy_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017-2018 DERO Project. All rights reserved. 2 | // Use of this source code in any form is governed by RESEARCH license 3 | // license can be found in the LICENSE file. 4 | // GPG: 0F39 E425 8C65 3947 702A 8234 08B2 0360 A03A 9DE8 5 | 6 | package main 7 | 8 | import "testing" 9 | 10 | func Test_Part1(t *testing.T) { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build linux,!arm,!arm64,!mips64,!mips64le,!ppc64,!ppc64le,!s390x 6 | 7 | package cpu 8 | 9 | func doinit() {} 10 | -------------------------------------------------------------------------------- /vendor/github.com/holiman/uint256/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of uint256 authors for copyright purposes. 2 | 3 | Martin Holst Swende 4 | Guillaume Ballet 5 | Kurkó Mihály 6 | Paweł Bylica 7 | Yao Zengzeng 8 | Dag Arne Osvik 9 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.in: -------------------------------------------------------------------------------- 1 | //Copyright2009ThGoAuthor.Allrightrrvd. 2 | //UofthiourccodigovrndbyBSD-tyl 3 | //licnthtcnbfoundinthLICENSEfil. 4 | 5 | pckgmin 6 | 7 | import"o" 8 | 9 | funcmin(){ 10 | vrb=mk([]byt,65535) 11 | f,_:=o.Crt("huffmn-null-mx.in") 12 | f.Writ(b) 13 | } 14 | ABCDEFGHIJKLMNOPQRSTUVXxyz!"#¤%&/?" -------------------------------------------------------------------------------- /vendor/github.com/randall77/makefat/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | # vendor/ 16 | -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Before opening your pull request, please make sure that you've: 2 | 3 | - [ ] updated the changelog if the change is user-facing; 4 | - [ ] added tests to cover your changes; 5 | - [ ] run the test suite locally (`make test`); and finally, 6 | - [ ] run the linters locally (`make lint`). 7 | 8 | Thanks for your contribution! 9 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !gccgo 6 | 7 | package cpu 8 | 9 | func getisar0() uint64 10 | func getisar1() uint64 11 | func getpfr0() uint64 12 | -------------------------------------------------------------------------------- /vendor/github.com/lesismal/llib/std/internal/cpu/cpu_arm64_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build arm64 6 | // +build linux 7 | // +build !android 8 | 9 | package cpu 10 | 11 | func osInit() { 12 | hwcapInit("linux") 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package icmp 6 | 7 | import "syscall" 8 | 9 | func init() { 10 | freebsdVersion, _ = syscall.SysctlUint32("kern.osreldate") 11 | } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package bpf 6 | 7 | // A Setter is a type which can attach a compiled BPF filter to itself. 8 | type Setter interface { 9 | SetBPF(filter []RawInstruction) error 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build generate 6 | 7 | package registry 8 | 9 | //go:generate go run golang.org/x/sys/windows/mkwinsyscall -output zsyscall_windows.go syscall.go 10 | -------------------------------------------------------------------------------- /vendor/nhooyr.io/websocket/ci/lint.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | 4 | main() { 5 | cd "$(dirname "$0")/.." 6 | 7 | go vet ./... 8 | GOOS=js GOARCH=wasm go vet ./... 9 | 10 | golint -set_exit_status ./... 11 | GOOS=js GOARCH=wasm golint -set_exit_status ./... 12 | 13 | shellcheck --exclude=SC2046 $(git ls-files "*.sh") 14 | } 15 | 16 | main "$@" 17 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/github.com/stretchr/testify/.travis.gogenerate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ "$TRAVIS_GO_VERSION" =~ ^1\.[45](\..*)?$ ]]; then 4 | exit 0 5 | fi 6 | 7 | go get github.com/ernesto-jimenez/gogen/imports 8 | go generate ./... 9 | if [ -n "$(git diff)" ]; then 10 | echo "Go generate had not been run" 11 | git diff 12 | exit 1 13 | fi 14 | -------------------------------------------------------------------------------- /vendor/github.com/deroproject/graviton/vendor/golang.org/x/xerrors/internal/internal.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package internal 6 | 7 | // EnableTrace indicates whether stack information should be recorded in errors. 8 | var EnableTrace = true 9 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // This package contains integration tests for the 6 | // golang.org/x/crypto/ssh package. 7 | package test // import "golang.org/x/crypto/ssh/test" 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpproxy/go19_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.9 6 | 7 | package httpproxy_test 8 | 9 | import "testing" 10 | 11 | func init() { 12 | setHelper = func(t *testing.T) { t.Helper() } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build ios 6 | // +build ios 7 | 8 | package unix 9 | 10 | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { 11 | return ENOTSUP 12 | } 13 | -------------------------------------------------------------------------------- /cmd/rpc_examples/pong_server/dummy_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017-2018 DERO Project. All rights reserved. 2 | // Use of this source code in any form is governed by RESEARCH license 3 | // license can be found in the LICENSE file. 4 | // GPG: 0F39 E425 8C65 3947 702A 8234 08B2 0360 A03A 9DE8 5 | 6 | package main 7 | 8 | import "testing" 9 | 10 | func Test_Part1(t *testing.T) { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/armon/go-radix/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/hub/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /vendor/github.com/lucasb-eyer/go-colorful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | install: 3 | - go get golang.org/x/tools/cmd/cover 4 | - go get github.com/mattn/goveralls 5 | script: 6 | - go test -v -covermode=count -coverprofile=coverage.out 7 | - if [[ "$TRAVIS_PULL_REQUEST" = "false" ]]; then $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN; fi 8 | -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/v3/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/histogram/vendor/github.com/valyala/fastrand/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.7 5 | - 1.8 6 | 7 | script: 8 | # build test for supported platforms 9 | - GOOS=linux go build 10 | - GOOS=darwin go build 11 | - GOOS=freebsd go build 12 | - GOARCH=386 go build 13 | 14 | # run tests on a standard platform 15 | - go test -v ./... 16 | 17 | -------------------------------------------------------------------------------- /walletapi/readme.txt: -------------------------------------------------------------------------------- 1 | the wallet works on the basic idea, that balance can be obtained instantenously 2 | 3 | suppose a wallet address sent and received funds in blocks 1000 and 2000 respectively. Even if the address is part of inumerable tx ( between 1001-1999) blocks, 4 | it's balance doesn't change and wallet can detect using maths that the balance has not changed using a binary search algorithm 5 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/go.sum: -------------------------------------------------------------------------------- 1 | github.com/valyala/fastrand v1.0.0 h1:LUKT9aKer2dVQNUi3waewTbKV+7H17kvWFNKs2ObdkI= 2 | github.com/valyala/fastrand v1.0.0/go.mod h1:HWqCzkrkg6QXT8V2EXWvXCoow7vLwOFN002oeRzjapQ= 3 | github.com/valyala/histogram v1.1.2 h1:vOk5VrGjMBIoPR5k6wA8vBaC8toeJ8XO0yfRjFEc1h8= 4 | github.com/valyala/histogram v1.1.2/go.mod h1:CZAr6gK9dbD7hYx2s8WSPh0p5x5wETjC+2b3PJVtEdg= 5 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/vendor/github.com/valyala/fastrand/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.7 5 | - 1.8 6 | 7 | script: 8 | # build test for supported platforms 9 | - GOOS=linux go build 10 | - GOOS=darwin go build 11 | - GOOS=freebsd go build 12 | - GOARCH=386 go build 13 | 14 | # run tests on a standard platform 15 | - go test -v ./... 16 | 17 | -------------------------------------------------------------------------------- /vendor/github.com/creachadair/jrpc2/tools/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/creachadair/jrpc2/tools 2 | 3 | go 1.17 4 | 5 | require ( 6 | github.com/creachadair/jrpc2 v0.35.4 7 | github.com/creachadair/wschannel v0.0.0-20220126134344-769774727b29 8 | ) 9 | 10 | require ( 11 | github.com/gorilla/websocket v1.4.2 // indirect 12 | golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/iovec_stub.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris 6 | 7 | package socket 8 | 9 | type iovec struct{} 10 | 11 | func (v *iovec) set(b []byte) {} 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_mips64x.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !linux && (mips64 || mips64le) 6 | // +build !linux 7 | // +build mips64 mips64le 8 | 9 | package cpu 10 | 11 | func archInit() { 12 | Initialized = true 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/VictoriaMetrics/metrics/histogram_timing_test.go: -------------------------------------------------------------------------------- 1 | package metrics 2 | 3 | import ( 4 | "testing" 5 | ) 6 | 7 | func BenchmarkHistogramUpdate(b *testing.B) { 8 | h := GetOrCreateHistogram("BenchmarkHistogramUpdate") 9 | b.ReportAllocs() 10 | b.RunParallel(func(pb *testing.PB) { 11 | i := 0 12 | for pb.Next() { 13 | h.Update(float64(i)) 14 | i++ 15 | } 16 | }) 17 | } 18 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/rpc2/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/github.com/docopt/docopt-go/examples/odd_even/odd_even.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "github.com/docopt/docopt-go" 6 | ) 7 | 8 | func main() { 9 | usage := `Usage: odd_even [-h | --help] (ODD EVEN)... 10 | 11 | Example, try: 12 | odd_even 1 2 3 4 13 | 14 | Options: 15 | -h, --help` 16 | 17 | arguments, _ := docopt.ParseDoc(usage) 18 | fmt.Println(arguments) 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package terminal 6 | 7 | import "golang.org/x/sys/unix" 8 | 9 | const ioctlReadTermios = unix.TCGETS 10 | const ioctlWriteTermios = unix.TCSETS 11 | -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | ERROR_COUNT=0 4 | while read -r file 5 | do 6 | case "$(head -1 "${file}")" in 7 | *"Copyright (c) "*" Uber Technologies, Inc.") 8 | # everything's cool 9 | ;; 10 | *) 11 | echo "$file is missing license header." 12 | (( ERROR_COUNT++ )) 13 | ;; 14 | esac 15 | done < <(git ls-files "*\.go") 16 | 17 | exit $ERROR_COUNT 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !go1.12 6 | // +build !go1.12 7 | 8 | // This file is here to allow bodyless functions with go:linkname for Go 1.11 9 | // and earlier (see https://golang.org/issue/23311). 10 | -------------------------------------------------------------------------------- /vendor/bitbucket.org/creachadair/stringset/go.sum: -------------------------------------------------------------------------------- 1 | github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= 2 | github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= 3 | github.com/creachadair/staticfile v0.1.3 h1:RhyrMgi7IQn3GejgmGtFuCec58vboEMt5CH6N3ulRJk= 4 | github.com/creachadair/staticfile v0.1.3/go.mod h1:a3qySzCIXEprDGxk6tSxSI+dBBdLzqeBOMhZ+o2d3pM= 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/benchmark/README.md: -------------------------------------------------------------------------------- 1 | # Benchmarking logr 2 | 3 | Any major changes to the logr library must be benchmarked before and after the 4 | change. 5 | 6 | ## Running the benchmark 7 | 8 | ``` 9 | $ go test -bench='.' ./benchmark/ 10 | ``` 11 | 12 | ## Fixing the benchmark 13 | 14 | If you think this benchmark can be improved, you are probably correct! PRs are 15 | very welcome. 16 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/Gopkg.toml: -------------------------------------------------------------------------------- 1 | [prune] 2 | unused-packages = true 3 | non-go = true 4 | go-tests = true 5 | 6 | [[constraint]] 7 | name = "github.com/davecgh/go-spew" 8 | version = "~1.1.0" 9 | 10 | [[constraint]] 11 | name = "github.com/pmezard/go-difflib" 12 | version = "~1.0.0" 13 | 14 | [[constraint]] 15 | name = "github.com/stretchr/objx" 16 | version = "~0.1.0" 17 | -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/go.mod: -------------------------------------------------------------------------------- 1 | module go.uber.org/zap 2 | 3 | go 1.13 4 | 5 | require ( 6 | github.com/benbjohnson/clock v1.1.0 7 | github.com/pkg/errors v0.8.1 8 | github.com/stretchr/testify v1.7.0 9 | go.uber.org/atomic v1.7.0 10 | go.uber.org/goleak v1.1.11 11 | go.uber.org/multierr v1.6.0 12 | gopkg.in/yaml.v2 v2.2.8 13 | gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build (!amd64 && !ppc64le && !s390x) || !gc || purego 6 | // +build !amd64,!ppc64le,!s390x !gc purego 7 | 8 | package poly1305 9 | 10 | type mac struct{ macGeneric } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/msghdr_openbsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func (h *msghdr) setIov(vs []iovec) { 8 | l := len(vs) 9 | if l == 0 { 10 | return 11 | } 12 | h.Iov = &vs[0] 13 | h.Iovlen = uint32(l) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build gccgo 6 | // +build gccgo 7 | 8 | package cpu 9 | 10 | func getisar0() uint64 { return 0 } 11 | func getisar1() uint64 { return 0 } 12 | func getpfr0() uint64 { return 0 } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build windows && go1.9 6 | // +build windows,go1.9 7 | 8 | package windows 9 | 10 | import "syscall" 11 | 12 | type Errno = syscall.Errno 13 | type SysProcAttr = syscall.SysProcAttr 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build windows 6 | 7 | package registry 8 | 9 | func (k Key) SetValue(name string, valtype uint32, data []byte) error { 10 | return k.setValue(name, valtype, data) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/aead/skein/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /vendor/github.com/dustin/go-humanize/common_test.go: -------------------------------------------------------------------------------- 1 | package humanize 2 | 3 | import ( 4 | "testing" 5 | ) 6 | 7 | type testList []struct { 8 | name, got, exp string 9 | } 10 | 11 | func (tl testList) validate(t *testing.T) { 12 | for _, test := range tl { 13 | if test.got != test.exp { 14 | t.Errorf("On %v, expected '%v', but got '%v'", 15 | test.name, test.exp, test.got) 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_others_test.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package isatty 4 | 5 | import ( 6 | "os" 7 | "testing" 8 | ) 9 | 10 | func TestTerminal(t *testing.T) { 11 | // test for non-panic 12 | IsTerminal(os.Stdout.Fd()) 13 | } 14 | 15 | func TestCygwinPipeName(t *testing.T) { 16 | if IsCygwinTerminal(os.Stdout.Fd()) { 17 | t.Fatal("should be false always") 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package bpf 6 | 7 | // A Setter is a type which can attach a compiled BPF filter to itself. 8 | type Setter interface { 9 | SetBPF(filter []RawInstruction) error 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/vendor/golang.org/x/net/http/httpproxy/go19_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.9 6 | 7 | package httpproxy_test 8 | 9 | import "testing" 10 | 11 | func init() { 12 | setHelper = func(t *testing.T) { t.Helper() } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- 1 | package assert 2 | 3 | import ( 4 | "errors" 5 | ) 6 | 7 | // AnError is an error instance useful for testing. If the code does not care 8 | // about error specifics, and only needs to return the error for example, this 9 | // error should be used to make the test code more readable. 10 | var AnError = errors.New("assert.AnError general error for testing") 11 | -------------------------------------------------------------------------------- /vendor/github.com/txthinking/x/README.md: -------------------------------------------------------------------------------- 1 | ## x 2 | [![GoDoc](https://godoc.org/github.com/txthinking/x?status.svg)](https://godoc.org/github.com/txthinking/x) 3 | 4 | My util library 5 | 6 | ### Install 7 | 8 | ``` 9 | $ go get github.com/txthinking/x 10 | ``` 11 | 12 | ## Author 13 | 14 | A project by [txthinking](https://www.txthinking.com) 15 | 16 | ## License 17 | 18 | Licensed under The MIT License 19 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_386.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·socketcall(SB),NOSPLIT,$0-36 8 | JMP syscall·socketcall(SB) 9 | 10 | TEXT ·rawsocketcall(SB),NOSPLIT,$0-36 11 | JMP syscall·rawsocketcall(SB) 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_go1.7.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.7 6 | 7 | package webdav 8 | 9 | import ( 10 | "context" 11 | "net/http" 12 | ) 13 | 14 | func getContext(r *http.Request) context.Context { 15 | return r.Context() 16 | } 17 | -------------------------------------------------------------------------------- /vendor/gopkg.in/natefinch/lumberjack.v2/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text.in: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package main 6 | 7 | import "os" 8 | 9 | func main() { 10 | var b = make([]byte, 65535) 11 | f, _ := os.Create("huffman-null-max.in") 12 | f.Write(b) 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/_example/escape-seq/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "bufio" 5 | "fmt" 6 | 7 | "github.com/mattn/go-colorable" 8 | ) 9 | 10 | func main() { 11 | stdOut := bufio.NewWriter(colorable.NewColorableStdout()) 12 | 13 | fmt.Fprint(stdOut, "\x1B[3GMove to 3rd Column\n") 14 | fmt.Fprint(stdOut, "\x1B[1;2HMove to 2nd Column on 1st Line\n") 15 | stdOut.Flush() 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | 24 | .DS_Store 25 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat: -------------------------------------------------------------------------------- 1 | #data 2 |

TEXT 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | |

9 | | 10 | | id="B" 11 | |

TEXT 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | |

9 | | 10 | | id="B" 11 | |