├── app ├── version.go └── scope.go ├── vendor ├── github.com │ ├── go-ozzo │ │ └── ozzo-routing │ │ │ ├── file │ │ │ └── testdata │ │ │ │ ├── css │ │ │ │ ├── main.css │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── error_test.go │ ├── go-ini │ │ └── ini │ │ │ ├── testdata │ │ │ ├── UTF-8-BOM.ini │ │ │ ├── minimal.ini │ │ │ ├── UTF-16-BE-BOM.ini │ │ │ └── UTF-16-LE-BOM.ini │ │ │ └── Makefile │ ├── klauspost │ │ ├── compress │ │ │ ├── flate │ │ │ │ └── testdata │ │ │ │ │ ├── huffman-zero.wb.expect │ │ │ │ │ ├── huffman-zero.wb.expect-noinput │ │ │ │ │ ├── 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-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-zero.dyn.expect │ │ │ │ │ ├── huffman-null-max.dyn.expect │ │ │ │ │ ├── huffman-null-max.wb.expect │ │ │ │ │ ├── huffman-rand-1k.dyn.expect │ │ │ │ │ ├── huffman-pi.dyn.expect-noinput │ │ │ │ │ ├── huffman-pi.wb.expect-noinput │ │ │ │ │ ├── huffman-rand-limit.dyn.expect │ │ │ │ │ ├── huffman-rand-limit.wb.expect │ │ │ │ │ ├── huffman-text-shift.dyn.expect │ │ │ │ │ ├── huffman-text-shift.wb.expect │ │ │ │ │ ├── huffman-text.wb.expect-noinput │ │ │ │ │ ├── huffman-shifts.wb.expect-noinput │ │ │ │ │ ├── huffman-text.dyn.expect-noinput │ │ │ │ │ ├── huffman-zero.dyn.expect-noinput │ │ │ │ │ ├── huffman-null-max.dyn.expect-noinput │ │ │ │ │ ├── huffman-null-max.wb.expect-noinput │ │ │ │ │ ├── huffman-rand-1k.dyn.expect-noinput │ │ │ │ │ ├── huffman-rand-1k.wb.expect-noinput │ │ │ │ │ ├── huffman-shifts.dyn.expect-noinput │ │ │ │ │ ├── null-long-match.dyn.expect-noinput │ │ │ │ │ ├── null-long-match.wb.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-zero.in │ │ │ │ │ ├── huffman-text-shift.in │ │ │ │ │ └── huffman-text.in │ │ │ └── gzip │ │ │ │ └── testdata │ │ │ │ └── issue6550.gz │ │ └── cpuid │ │ │ ├── generate.go │ │ │ ├── testdata │ │ │ └── cpuid_data.zip │ │ │ ├── detect_intel.go │ │ │ └── detect_ref.go │ ├── smartystreets │ │ ├── goconvey │ │ │ └── convey │ │ │ │ ├── gotest │ │ │ │ └── doc_test.go │ │ │ │ ├── reporting │ │ │ │ ├── reporting.goconvey │ │ │ │ ├── doc.go │ │ │ │ └── console.go │ │ │ │ ├── convey.goconvey │ │ │ │ └── nilReporter.go │ │ ├── gunit │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── t.go │ │ │ └── scan │ │ │ │ └── fixture.go │ │ └── assertions │ │ │ └── internal │ │ │ └── go-render │ │ │ └── render │ │ │ └── render_time.go │ ├── aws │ │ └── aws-sdk-go │ │ │ ├── aws │ │ │ ├── session │ │ │ │ └── testdata │ │ │ │ │ ├── shared_config_invalid_ini │ │ │ │ │ └── shared_config_other │ │ │ ├── context_1_7.go │ │ │ ├── signer │ │ │ │ └── v4 │ │ │ │ │ ├── options.go │ │ │ │ │ └── uri_path.go │ │ │ ├── request │ │ │ │ ├── connection_reset_error_other_test.go │ │ │ │ ├── connection_reset_error_other.go │ │ │ │ ├── request_1_5_test.go │ │ │ │ ├── connection_reset_error_test.go │ │ │ │ ├── connection_reset_error.go │ │ │ │ ├── request_context_1_6.go │ │ │ │ ├── request_context.go │ │ │ │ ├── http_request.go │ │ │ │ ├── request_1_7_test.go │ │ │ │ └── request_internal_test.go │ │ │ ├── version.go │ │ │ ├── credentials │ │ │ │ └── example.ini │ │ │ ├── url.go │ │ │ ├── client │ │ │ │ └── metadata │ │ │ │ │ └── client_info.go │ │ │ ├── jsonvalue.go │ │ │ ├── errors.go │ │ │ ├── corehandlers │ │ │ │ └── param_validator.go │ │ │ ├── awsutil │ │ │ │ └── equal_test.go │ │ │ └── url_1_7.go │ │ │ ├── service │ │ │ ├── ec2 │ │ │ │ └── errors.go │ │ │ ├── s3 │ │ │ │ ├── platform_handlers.go │ │ │ │ └── platform_handlers_go1.6.go │ │ │ ├── sqs │ │ │ │ └── customizations.go │ │ │ ├── sts │ │ │ │ └── customizations.go │ │ │ └── kinesis │ │ │ │ └── customizations.go │ │ │ ├── NOTICE.txt │ │ │ ├── internal │ │ │ ├── sdkio │ │ │ │ ├── io_go1.6.go │ │ │ │ └── io_go1.7.go │ │ │ └── sdkrand │ │ │ │ └── locked_source.go │ │ │ ├── private │ │ │ ├── util │ │ │ │ └── sort_keys.go │ │ │ └── protocol │ │ │ │ └── unmarshal.go │ │ │ └── awstesting │ │ │ ├── unit │ │ │ └── unit.go │ │ │ └── client.go │ ├── xeipuuv │ │ ├── gojsonschema │ │ │ ├── testdata │ │ │ │ ├── remotes │ │ │ │ │ ├── integer.json │ │ │ │ │ ├── folder │ │ │ │ │ │ └── folderInteger.json │ │ │ │ │ ├── subSchemas.json │ │ │ │ │ └── name.json │ │ │ │ ├── draft4 │ │ │ │ │ └── optional │ │ │ │ │ │ ├── ecmascript-regex.json │ │ │ │ │ │ └── zeroTerminatedFloats.json │ │ │ │ ├── draft6 │ │ │ │ │ └── optional │ │ │ │ │ │ ├── ecmascript-regex.json │ │ │ │ │ │ └── zeroTerminatedFloats.json │ │ │ │ └── draft7 │ │ │ │ │ └── optional │ │ │ │ │ ├── ecmascript-regex.json │ │ │ │ │ ├── zeroTerminatedFloats.json │ │ │ │ │ └── format │ │ │ │ │ ├── email.json │ │ │ │ │ ├── regex.json │ │ │ │ │ ├── idn-email.json │ │ │ │ │ ├── date.json │ │ │ │ │ ├── time.json │ │ │ │ │ └── date-time.json │ │ │ ├── glide.yaml │ │ │ └── format_checkers_test.go │ │ └── gojsonreference │ │ │ └── README.md │ ├── mattn │ │ ├── go-isatty │ │ │ ├── doc.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_others_test.go │ │ │ ├── example_test.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_appengine.go │ │ │ ├── isatty_bsd.go │ │ │ └── isatty_linux_ppc64x.go │ │ └── go-colorable │ │ │ ├── colorable_appengine.go │ │ │ └── colorable_others.go │ ├── ajg │ │ └── form │ │ │ ├── TODO.md │ │ │ ├── form.go │ │ │ └── pre-commit.sh │ ├── onsi │ │ ├── gomega │ │ │ ├── ghttp │ │ │ │ ├── protobuf │ │ │ │ │ ├── protobuf.go │ │ │ │ │ └── simple_message.proto │ │ │ │ └── test_server_suite_test.go │ │ │ ├── matchers │ │ │ │ ├── support │ │ │ │ │ └── goraph │ │ │ │ │ │ ├── node │ │ │ │ │ │ └── node.go │ │ │ │ │ │ └── util │ │ │ │ │ │ └── util.go │ │ │ │ ├── attributes_slice.go │ │ │ │ ├── be_nil_matcher.go │ │ │ │ ├── be_true_matcher_test.go │ │ │ │ ├── be_false_matcher_test.go │ │ │ │ ├── be_nil_matcher_test.go │ │ │ │ ├── be_true_matcher.go │ │ │ │ ├── be_false_matcher.go │ │ │ │ ├── be_zero_matcher.go │ │ │ │ └── be_empty_matcher.go │ │ │ ├── format │ │ │ │ └── format_suite_test.go │ │ │ ├── gbytes │ │ │ │ └── gbuffer_suite_test.go │ │ │ ├── internal │ │ │ │ ├── assertion │ │ │ │ │ └── assertion_suite_test.go │ │ │ │ ├── asyncassertion │ │ │ │ │ └── async_assertion_suite_test.go │ │ │ │ ├── fakematcher │ │ │ │ │ └── fake_matcher.go │ │ │ │ └── testingtsupport │ │ │ │ │ └── testing_t_support_test.go │ │ │ ├── RELEASING.md │ │ │ └── types │ │ │ │ └── types.go │ │ └── ginkgo │ │ │ ├── reporters │ │ │ ├── stenographer │ │ │ │ └── support │ │ │ │ │ ├── go-isatty │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ ├── isatty_windows.go │ │ │ │ │ └── README.md │ │ │ │ │ └── go-colorable │ │ │ │ │ └── colorable_others.go │ │ │ ├── reporters_suite_test.go │ │ │ └── reporter.go │ │ │ ├── internal │ │ │ ├── remote │ │ │ │ ├── syscall_dup_solaris.go │ │ │ │ ├── syscall_dup_unix.go │ │ │ │ ├── remote_suite_test.go │ │ │ │ ├── output_interceptor.go │ │ │ │ ├── syscall_dup_linux_arm64.go │ │ │ │ ├── fake_output_interceptor_test.go │ │ │ │ ├── fake_poster_test.go │ │ │ │ └── output_interceptor_win.go │ │ │ ├── spec │ │ │ │ └── spec_suite_test.go │ │ │ ├── failer │ │ │ │ └── failer_suite_test.go │ │ │ ├── writer │ │ │ │ └── writer_suite_test.go │ │ │ ├── leafnodes │ │ │ │ ├── leaf_node_suite_test.go │ │ │ │ ├── interfaces.go │ │ │ │ └── it_node_test.go │ │ │ ├── specrunner │ │ │ │ ├── spec_runner_suite_test.go │ │ │ │ └── random_id.go │ │ │ ├── codelocation │ │ │ │ └── code_location_suite_test.go │ │ │ ├── containernode │ │ │ │ └── container_node_suite_test.go │ │ │ ├── spec_iterator │ │ │ │ ├── spec_iterator_suite_test.go │ │ │ │ └── spec_iterator.go │ │ │ └── suite │ │ │ │ └── suite_suite_test.go │ │ │ ├── types │ │ │ ├── types_suite_test.go │ │ │ ├── code_location.go │ │ │ └── synchronization.go │ │ │ ├── before_pr.sh │ │ │ └── RELEASING.md │ ├── jessevdk │ │ └── go-flags │ │ │ ├── tiocgwinsz_linux.go │ │ │ ├── tiocgwinsz_bsdish.go │ │ │ ├── tiocgwinsz_other.go │ │ │ ├── termsize_nosysioctl.go │ │ │ ├── check_crosscompile.sh │ │ │ ├── termsize.go │ │ │ └── arg.go │ ├── valyala │ │ ├── fasthttp │ │ │ ├── fasthttputil │ │ │ │ ├── doc.go │ │ │ │ ├── ecdsa.key │ │ │ │ └── ecdsa.pem │ │ │ ├── bytesconv_32.go │ │ │ ├── bytesconv_64.go │ │ │ ├── stackless │ │ │ │ └── doc.go │ │ │ ├── TODO │ │ │ ├── uri_unix.go │ │ │ ├── uri_windows.go │ │ │ ├── nocopy.go │ │ │ ├── uri_windows_test.go │ │ │ ├── coarseTime.go │ │ │ ├── bytebuffer_timing_test.go │ │ │ ├── args_timing_test.go │ │ │ └── fs_example_test.go │ │ └── bytebufferpool │ │ │ ├── doc.go │ │ │ ├── bytebuffer_example_test.go │ │ │ └── bytebuffer_timing_test.go │ ├── yudai │ │ ├── gojsondiff │ │ │ ├── Makefile │ │ │ ├── wercker.yml │ │ │ ├── gojsondiff_suite_test.go │ │ │ └── formatter │ │ │ │ └── formatter_suite_test.go │ │ └── pp │ │ │ ├── wercker.yml │ │ │ └── pp_test.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_bsd.go │ │ │ ├── appveyor.yml │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_linux.go │ │ │ └── doc.go │ ├── stretchr │ │ └── testify │ │ │ ├── require │ │ │ ├── require_forward.go.tmpl │ │ │ ├── require.go.tmpl │ │ │ └── forward_requirements.go │ │ │ └── assert │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── errors.go │ │ │ └── forward_assertions.go │ ├── jmespath │ │ └── go-jmespath │ │ │ ├── README.md │ │ │ ├── LICENSE │ │ │ ├── toktype_string.go │ │ │ └── api_test.go │ ├── gavv │ │ ├── monotime │ │ │ ├── monotime.s │ │ │ └── monotime_test.go │ │ └── httpexpect │ │ │ ├── Makefile │ │ │ ├── mocks_test.go │ │ │ └── chain.go │ ├── blang │ │ └── semver │ │ │ ├── package.json │ │ │ ├── json.go │ │ │ ├── sort.go │ │ │ ├── sql.go │ │ │ └── sort_test.go │ ├── google │ │ └── go-cmp │ │ │ └── cmp │ │ │ ├── unsafe_panic.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ └── debug_disable.go │ │ │ └── value │ │ │ │ ├── pointer_purego.go │ │ │ │ └── pointer_unsafe.go │ │ │ └── unsafe_reflect.go │ ├── jtolds │ │ └── gls │ │ │ ├── gen_sym.go │ │ │ ├── stack_tags_main.go │ │ │ ├── id_pool.go │ │ │ └── gid.go │ ├── sergi │ │ └── go-diff │ │ │ └── diffmatchpatch │ │ │ ├── operation_string.go │ │ │ └── mathutil.go │ ├── imkira │ │ └── go-interpol │ │ │ └── Makefile │ └── davecgh │ │ └── go-spew │ │ └── LICENSE ├── gopkg.in │ ├── ini.v1 │ │ ├── testdata │ │ │ ├── UTF-8-BOM.ini │ │ │ ├── minimal.ini │ │ │ ├── UTF-16-BE-BOM.ini │ │ │ └── UTF-16-LE-BOM.ini │ │ └── Makefile │ ├── check.v1 │ │ ├── TODO │ │ ├── README.md │ │ └── export_test.go │ ├── airbrake │ │ └── gobrake.v2 │ │ │ ├── Makefile │ │ │ └── gobrake.go │ ├── yaml.v2 │ │ ├── go.mod │ │ ├── suite_test.go │ │ ├── NOTICE │ │ └── writerc.go │ └── gemnasium │ │ └── logrus-airbrake-hook.v2 │ │ └── CHANGELOG.md └── golang.org │ └── x │ ├── net │ ├── http2 │ │ ├── Makefile │ │ ├── not_go19.go │ │ ├── go16.go │ │ ├── go19.go │ │ ├── not_go16.go │ │ ├── errors_test.go │ │ ├── README │ │ └── not_go18.go │ ├── html │ │ ├── charset │ │ │ └── testdata │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ └── README │ │ └── testdata │ │ │ └── webkit │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ ├── scripted │ │ │ ├── adoption01.dat │ │ │ └── webkit01.dat │ │ │ ├── adoption02.dat │ │ │ ├── inbody01.dat │ │ │ └── isindex.dat │ └── context │ │ └── go19.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 │ │ └── simplifiedchinese │ │ │ └── all.go │ ├── language │ │ └── go1_2.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── internal │ │ ├── language │ │ │ └── common.go │ │ └── testtext │ │ │ ├── gc.go │ │ │ ├── gccgo.go │ │ │ ├── go1_7.go │ │ │ ├── flag.go │ │ │ └── go1_6.go │ ├── width │ │ ├── kind_string.go │ │ └── trieval.go │ └── unicode │ │ ├── norm │ │ └── example_test.go │ │ └── cldr │ │ └── cldr_test.go │ ├── sys │ ├── unix │ │ ├── endian_big.go │ │ ├── export_test.go │ │ ├── endian_little.go │ │ ├── constants.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── pagesize_unix.go │ │ ├── fcntl_linux_32bit.go │ │ ├── example_test.go │ │ ├── asm_solaris_amd64.s │ │ ├── gccgo_linux_amd64.go │ │ ├── syscall_linux_gc.go │ │ ├── race0.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix_gc.go │ │ ├── dirent.go │ │ ├── syscall_linux_gccgo.go │ │ ├── str.go │ │ ├── race.go │ │ ├── env_unix.go │ │ ├── asm_freebsd_arm.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_darwin_386.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── bluetooth_linux.go │ │ ├── asm_darwin_arm64.s │ │ └── dev_darwin.go │ └── windows │ │ ├── mksyscall.go │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── race0.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── str.go │ │ ├── env_windows.go │ │ ├── race.go │ │ └── memory_windows.go │ └── crypto │ └── ssh │ └── terminal │ ├── util_linux.go │ └── util_bsd.go ├── .travis.yml ├── models └── Module.go ├── .gitignore ├── docker-compose.yml ├── Dockerfile └── registry └── registry.go /app/version.go: -------------------------------------------------------------------------------- 1 | package app 2 | 3 | var Version = "1.0" 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-ozzo/ozzo-routing/file/testdata/css/main.css: -------------------------------------------------------------------------------- 1 | body {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-ozzo/ozzo-routing/file/testdata/index.html: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/testdata/UTF-8-BOM.ini: -------------------------------------------------------------------------------- 1 | [author] 2 | E-MAIL = u@gogs.io -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/testdata/minimal.ini: -------------------------------------------------------------------------------- 1 | [author] 2 | E-MAIL = u@gogs.io -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/testdata/UTF-8-BOM.ini: -------------------------------------------------------------------------------- 1 | [author] 2 | E-MAIL = u@gogs.io -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/testdata/minimal.ini: -------------------------------------------------------------------------------- 1 | [author] 2 | E-MAIL = u@gogs.io -------------------------------------------------------------------------------- /vendor/github.com/go-ozzo/ozzo-routing/file/testdata/css/index.html: -------------------------------------------------------------------------------- 1 | css.html 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.wb.expect: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.wb.expect-noinput: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/gotest/doc_test.go: -------------------------------------------------------------------------------- 1 | package gotest 2 | -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_invalid_ini: -------------------------------------------------------------------------------- 1 | [profile_nam 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/testdata/remotes/integer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- 1 | // Package isatty implements interface to isatty 2 | package isatty 3 | -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/testdata/remotes/folder/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/TODO.md: -------------------------------------------------------------------------------- 1 | TODO 2 | ==== 3 | 4 | - Document IgnoreCase and IgnoreUnknownKeys in README. 5 | -------------------------------------------------------------------------------- /vendor/gopkg.in/airbrake/gobrake.v2/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go test ./... 3 | go test ./... -short -race 4 | go vet 5 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/gunit/Makefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | test: 4 | go build ./... 5 | go test -v -short ./... 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/ghttp/protobuf/protobuf.go: -------------------------------------------------------------------------------- 1 | package protobuf 2 | 3 | //go:generate protoc --go_out=. simple_message.proto 4 | -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/service/ec2/errors.go: -------------------------------------------------------------------------------- 1 | // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. 2 | 3 | package ec2 4 | -------------------------------------------------------------------------------- /vendor/github.com/jessevdk/go-flags/tiocgwinsz_linux.go: -------------------------------------------------------------------------------- 1 | // +build linux 2 | 3 | package flags 4 | 5 | const ( 6 | tIOCGWINSZ = 0x5413 7 | ) 8 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/generate.go: -------------------------------------------------------------------------------- 1 | package cpuid 2 | 3 | //go:generate go run private-gen.go 4 | //go:generate gofmt -w ./private 5 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/doc.go: -------------------------------------------------------------------------------- 1 | // Package isatty implements interface to isatty 2 | package isatty 3 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/fasthttputil/doc.go: -------------------------------------------------------------------------------- 1 | // Package fasthttputil provides utility functions for fasthttp. 2 | package fasthttputil 3 | -------------------------------------------------------------------------------- /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/gopkg.in/ini.v1/testdata/UTF-16-BE-BOM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/gopkg.in/ini.v1/testdata/UTF-16-BE-BOM.ini -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/testdata/UTF-16-LE-BOM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/gopkg.in/ini.v1/testdata/UTF-16-LE-BOM.ini -------------------------------------------------------------------------------- /vendor/github.com/yudai/gojsondiff/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | if [ `go fmt $(go list ./... | grep -v /vendor/) | wc -l` -gt 0 ]; then echo "go fmt error"; exit 1; fi 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/testdata/UTF-16-BE-BOM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/go-ini/ini/testdata/UTF-16-BE-BOM.ini -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/testdata/UTF-16-LE-BOM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/go-ini/ini/testdata/UTF-16-LE-BOM.ini -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/testdata/cpuid_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/cpuid/testdata/cpuid_data.zip -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go: -------------------------------------------------------------------------------- 1 | package node 2 | 3 | type Node struct { 4 | Id int 5 | } 6 | 7 | type NodeOrderedSet []Node 8 | -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/NOTICE.txt: -------------------------------------------------------------------------------- 1 | AWS SDK for Go 2 | Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | Copyright 2014-2015 Stripe, Inc. 4 | -------------------------------------------------------------------------------- /vendor/github.com/jessevdk/go-flags/tiocgwinsz_bsdish.go: -------------------------------------------------------------------------------- 1 | // +build darwin freebsd netbsd openbsd 2 | 3 | package flags 4 | 5 | const ( 6 | tIOCGWINSZ = 0x40087468 7 | ) 8 | -------------------------------------------------------------------------------- /vendor/github.com/jessevdk/go-flags/tiocgwinsz_other.go: -------------------------------------------------------------------------------- 1 | // +build !darwin,!freebsd,!netbsd,!openbsd,!linux 2 | 3 | package flags 4 | 5 | const ( 6 | tIOCGWINSZ = 0 7 | ) 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gzip/testdata/issue6550.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/gzip/testdata/issue6550.gz -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/bytesconv_32.go: -------------------------------------------------------------------------------- 1 | // +build !amd64,!arm64,!ppc64 2 | 3 | package fasthttp 4 | 5 | const ( 6 | maxIntChars = 9 7 | maxHexIntChars = 7 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/bytesconv_64.go: -------------------------------------------------------------------------------- 1 | // +build amd64 arm64 ppc64 2 | 3 | package fasthttp 4 | 5 | const ( 6 | maxIntChars = 18 7 | maxHexIntChars = 15 8 | ) 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt -------------------------------------------------------------------------------- /vendor/github.com/jessevdk/go-flags/termsize_nosysioctl.go: -------------------------------------------------------------------------------- 1 | // +build windows plan9 solaris appengine 2 | 3 | package flags 4 | 5 | func getTerminalColumns() int { 6 | return 80 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.golden -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | import "math" 4 | 5 | func Odd(n int) bool { 6 | return math.Mod(float64(n), 2.0) == 1.0 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/context_1_7.go: -------------------------------------------------------------------------------- 1 | // +build go1.7 2 | 3 | package aws 4 | 5 | import "context" 6 | 7 | var ( 8 | backgroundCtx = context.Background() 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.golden -------------------------------------------------------------------------------- /vendor/github.com/yudai/gojsondiff/wercker.yml: -------------------------------------------------------------------------------- 1 | box: golang:1.6.3 2 | 3 | build: 4 | steps: 5 | - setup-go-workspace 6 | - script: 7 | name: test 8 | code: make test 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.wb.expect -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/stackless/doc.go: -------------------------------------------------------------------------------- 1 | // Package stackless provides functionality that may save stack space 2 | // for high number of concurrently running goroutines. 3 | package stackless 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.dyn.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/testdata/remotes/subSchemas.json: -------------------------------------------------------------------------------- 1 | { 2 | "integer": { 3 | "type": "integer" 4 | }, 5 | "refToInteger": { 6 | "$ref": "#/integer" 7 | } 8 | } -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-pi.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.dyn.expect -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.wb.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.wb.expect-noinput -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.10.1 5 | 6 | sudo: required 7 | 8 | services: 9 | - docker 10 | 11 | install: true 12 | 13 | script: 14 | - docker pull minio/minio 15 | - go test -v ./... 16 | -------------------------------------------------------------------------------- /models/Module.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | type Module struct { 4 | Namespace string `json:"namespace"` 5 | Name string `json:"name"` 6 | Provider string `json:"provider"` 7 | Version string `json:"version"` 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-null-max.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-shifts.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/null-long-match.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/null-long-match.dyn.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/null-long-match.wb.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/null-long-match.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers.go: -------------------------------------------------------------------------------- 1 | // +build !go1.6 2 | 3 | package s3 4 | 5 | import "github.com/aws/aws-sdk-go/aws/request" 6 | 7 | func platformRequestHandlers(r *request.Request) { 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.dyn.expect-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/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/erikvanbrakel/anthology/HEAD/vendor/github.com/klauspost/compress/flate/testdata/huffman-text-shift.wb.expect-noinput -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_appengine.go: -------------------------------------------------------------------------------- 1 | // +build appengine gopherjs 2 | 3 | package logrus 4 | 5 | import ( 6 | "io" 7 | ) 8 | 9 | func checkIfTerminal(w io.Writer) bool { 10 | return true 11 | } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 |