├── third_party ├── src │ ├── .keepme │ ├── github.com │ │ ├── gorilla │ │ │ ├── rpc │ │ │ │ ├── .gitignore │ │ │ │ ├── vendor │ │ │ │ │ └── vendor.json │ │ │ │ ├── v2 │ │ │ │ │ ├── json2 │ │ │ │ │ │ └── testapp │ │ │ │ │ │ │ └── README.md │ │ │ │ │ └── README.md │ │ │ │ ├── README.md │ │ │ │ └── .travis.yml │ │ │ ├── context │ │ │ │ ├── vendor │ │ │ │ │ └── vendor.json │ │ │ │ ├── .travis.yml │ │ │ │ └── README.md │ │ │ └── mux │ │ │ │ ├── vendor │ │ │ │ ├── vendor.json │ │ │ │ └── github.com │ │ │ │ │ └── gorilla │ │ │ │ │ └── context │ │ │ │ │ └── README.md │ │ │ │ ├── .travis.yml │ │ │ │ ├── context_native.go │ │ │ │ ├── context_gorilla.go │ │ │ │ └── context_native_test.go │ │ ├── kardianos │ │ │ └── govendor │ │ │ │ ├── internal │ │ │ │ ├── vfilepath │ │ │ │ │ ├── switch.go │ │ │ │ │ ├── prefix.go │ │ │ │ │ └── stub.go │ │ │ │ └── vos │ │ │ │ │ └── switch.go │ │ │ │ ├── vendor │ │ │ │ └── github.com │ │ │ │ │ ├── google │ │ │ │ │ └── shlex │ │ │ │ │ │ └── README │ │ │ │ │ ├── dchest │ │ │ │ │ └── safefile │ │ │ │ │ │ ├── rename.go │ │ │ │ │ │ └── appveyor.yml │ │ │ │ │ ├── Bowery │ │ │ │ │ └── prompt │ │ │ │ │ │ ├── term_linux.go │ │ │ │ │ │ ├── term_bsd.go │ │ │ │ │ │ ├── keys_unix.go │ │ │ │ │ │ ├── keys.go │ │ │ │ │ │ ├── keys_windows.go │ │ │ │ │ │ └── ansi_unix.go │ │ │ │ │ └── pkg │ │ │ │ │ └── errors │ │ │ │ │ └── appveyor.yml │ │ │ │ ├── help │ │ │ │ ├── version.go │ │ │ │ └── gen-license.template │ │ │ │ ├── context │ │ │ │ ├── syslist.go │ │ │ │ ├── license_test.go │ │ │ │ └── version_test.go │ │ │ │ ├── appveyor.yml │ │ │ │ └── migrate │ │ │ │ └── gb.go │ │ ├── pixijs │ │ │ └── pixi.js │ │ │ │ ├── test │ │ │ │ ├── interaction │ │ │ │ │ ├── index.js │ │ │ │ │ └── InteractionData.js │ │ │ │ ├── .jshintrc │ │ │ │ ├── core │ │ │ │ │ ├── index.js │ │ │ │ │ └── DisplayObject.js │ │ │ │ └── index.js │ │ │ │ ├── vendor │ │ │ │ └── vendor.json │ │ │ │ ├── src │ │ │ │ ├── extract │ │ │ │ │ └── index.js │ │ │ │ ├── prepare │ │ │ │ │ └── index.js │ │ │ │ ├── filters │ │ │ │ │ ├── void │ │ │ │ │ │ ├── void.frag │ │ │ │ │ │ └── VoidFilter.js │ │ │ │ │ ├── fragments │ │ │ │ │ │ ├── default.vert │ │ │ │ │ │ └── default-filter-matrix.vert │ │ │ │ │ ├── blur │ │ │ │ │ │ └── getMaxBlurKernelSize.js │ │ │ │ │ ├── displacement │ │ │ │ │ │ └── displacement.frag │ │ │ │ │ ├── noise │ │ │ │ │ │ └── noise.frag │ │ │ │ │ ├── fxaa │ │ │ │ │ │ └── FXAAFilter.js │ │ │ │ │ └── index.js │ │ │ │ ├── polyfill │ │ │ │ │ ├── Object.assign.js │ │ │ │ │ ├── Math.sign.js │ │ │ │ │ └── index.js │ │ │ │ ├── core │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── maxRecommendedTextures.js │ │ │ │ │ │ └── createIndicesForQuads.js │ │ │ │ │ ├── renderers │ │ │ │ │ │ └── webgl │ │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ ├── validateContext.js │ │ │ │ │ │ │ └── mapWebGLDrawModesToPixi.js │ │ │ │ │ │ │ └── filters │ │ │ │ │ │ │ └── spriteMask │ │ │ │ │ │ │ ├── spriteMaskFilter.vert │ │ │ │ │ │ │ └── spriteMaskFilter.frag │ │ │ │ │ ├── sprites │ │ │ │ │ │ └── webgl │ │ │ │ │ │ │ ├── texture.vert │ │ │ │ │ │ │ └── BatchBuffer.js │ │ │ │ │ └── math │ │ │ │ │ │ └── index.js │ │ │ │ ├── particles │ │ │ │ │ └── index.js │ │ │ │ ├── accessibility │ │ │ │ │ └── index.js │ │ │ │ ├── extras │ │ │ │ │ ├── webgl │ │ │ │ │ │ ├── tilingSprite.frag │ │ │ │ │ │ ├── tilingSprite.vert │ │ │ │ │ │ └── TilingShader.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── getChildByName.js │ │ │ │ │ └── getGlobalPosition.js │ │ │ │ ├── interaction │ │ │ │ │ └── index.js │ │ │ │ ├── mesh │ │ │ │ │ └── index.js │ │ │ │ └── loaders │ │ │ │ │ ├── index.js │ │ │ │ │ └── textureParser.js │ │ │ │ ├── inch.json │ │ │ │ ├── .gitignore │ │ │ │ ├── .editorconfig │ │ │ │ ├── bower.json │ │ │ │ └── scripts │ │ │ │ └── reporter.js │ │ ├── tadhunt │ │ │ └── httputils │ │ │ │ ├── README.md │ │ │ │ └── vendor │ │ │ │ ├── github.com │ │ │ │ ├── smartystreets │ │ │ │ │ ├── goconvey │ │ │ │ │ │ └── convey │ │ │ │ │ │ │ ├── gotest │ │ │ │ │ │ │ └── doc_test.go │ │ │ │ │ │ │ ├── reporting │ │ │ │ │ │ │ ├── reporting.goconvey │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ │ └── gotest.go │ │ │ │ │ │ │ ├── convey.goconvey │ │ │ │ │ │ │ └── nilReporter.go │ │ │ │ │ └── assertions │ │ │ │ │ │ ├── assertions.goconvey │ │ │ │ │ │ ├── internal │ │ │ │ │ │ └── ogletest │ │ │ │ │ │ │ └── srcutil │ │ │ │ │ │ │ └── docs.go │ │ │ │ │ │ └── filter.go │ │ │ │ ├── tadhunt │ │ │ │ │ └── go-dbgutils │ │ │ │ │ │ └── README.md │ │ │ │ └── jtolds │ │ │ │ │ └── gls │ │ │ │ │ ├── gen_sym.go │ │ │ │ │ └── id_pool.go │ │ │ │ └── golang.org │ │ │ │ └── x │ │ │ │ └── net │ │ │ │ └── context │ │ │ │ └── withtimeout_test.go │ │ ├── dmauro │ │ │ └── Keypress │ │ │ │ ├── compiler.jar │ │ │ │ ├── .gitignore │ │ │ │ ├── vendor │ │ │ │ └── vendor.json │ │ │ │ ├── test │ │ │ │ └── run_tests.sh │ │ │ │ ├── meteor │ │ │ │ ├── export.js │ │ │ │ └── test.js │ │ │ │ ├── coffee-compiler.sh │ │ │ │ ├── package.json │ │ │ │ └── bower.json │ │ ├── pkg │ │ │ └── errors │ │ │ │ ├── vendor │ │ │ │ └── vendor.json │ │ │ │ ├── .travis.yml │ │ │ │ ├── .gitignore │ │ │ │ └── appveyor.yml │ │ └── satori │ │ │ └── go.uuid │ │ │ ├── vendor │ │ │ └── vendor.json │ │ │ └── .travis.yml │ ├── golang.org │ │ └── x │ │ │ └── net │ │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── h2demo │ │ │ │ ├── rootCA.srl │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ └── README │ │ │ ├── Makefile │ │ │ ├── go18.go │ │ │ ├── errors_test.go │ │ │ ├── README │ │ │ └── gotrack_test.go │ │ │ ├── codereview.cfg │ │ │ ├── vendor │ │ │ ├── camlistore.org │ │ │ │ └── pkg │ │ │ │ │ ├── googlestorage │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── test-enum-1 │ │ │ │ │ │ ├── test-enum-2 │ │ │ │ │ │ ├── test-enum-3 │ │ │ │ │ │ ├── test-enum-4 │ │ │ │ │ │ ├── test-enum │ │ │ │ │ │ ├── test-get │ │ │ │ │ │ └── test-stat │ │ │ │ │ └── buildinfo │ │ │ │ │ └── buildinfo_test.go │ │ │ ├── go4.org │ │ │ │ └── jsonconfig │ │ │ │ │ └── testdata │ │ │ │ │ ├── include2.json │ │ │ │ │ ├── include1bis.json │ │ │ │ │ ├── loop1.json │ │ │ │ │ ├── loop2.json │ │ │ │ │ ├── include1.json │ │ │ │ │ ├── listexpand.json │ │ │ │ │ └── boolenv.json │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ ├── oauth2 │ │ │ │ │ ├── google │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ │ └── gcloud │ │ │ │ │ │ │ │ └── properties │ │ │ │ │ │ ├── appengine_hook.go │ │ │ │ │ │ └── appenginevm_hook.go │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ └── client_appengine.go │ │ │ │ │ ├── text │ │ │ │ │ ├── encoding │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ │ ├── candide-gb18030.txt │ │ │ │ │ │ │ ├── candide-utf-16le.txt │ │ │ │ │ │ │ ├── candide-utf-32be.txt │ │ │ │ │ │ │ ├── rashomon-euc-jp.txt │ │ │ │ │ │ │ ├── rashomon-shift-jis.txt │ │ │ │ │ │ │ ├── candide-windows-1252.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 │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── gen_common.go │ │ │ │ │ │ └── go1_1.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── testtext │ │ │ │ │ │ │ ├── gc.go │ │ │ │ │ │ │ ├── gccgo.go │ │ │ │ │ │ │ ├── go1_7.go │ │ │ │ │ │ │ ├── flag.go │ │ │ │ │ │ │ └── go1_6.go │ │ │ │ │ ├── unicode │ │ │ │ │ │ ├── norm │ │ │ │ │ │ │ ├── norm_test.go │ │ │ │ │ │ │ └── example_test.go │ │ │ │ │ │ └── cldr │ │ │ │ │ │ │ ├── examples_test.go │ │ │ │ │ │ │ └── cldr_test.go │ │ │ │ │ └── width │ │ │ │ │ │ ├── kind_string.go │ │ │ │ │ │ └── trieval.go │ │ │ │ │ └── crypto │ │ │ │ │ └── ssh │ │ │ │ │ └── terminal │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ └── util_linux.go │ │ │ └── google.golang.org │ │ │ │ ├── appengine │ │ │ │ ├── internal │ │ │ │ │ ├── api_race_test.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── base │ │ │ │ │ │ └── api_base.proto │ │ │ │ │ └── app_id.go │ │ │ │ ├── timeout.go │ │ │ │ ├── appengine_vm.go │ │ │ │ └── namespace.go │ │ │ │ └── api │ │ │ │ ├── gensupport │ │ │ │ └── doc.go │ │ │ │ └── googleapi │ │ │ │ └── internal │ │ │ │ └── uritemplates │ │ │ │ └── utils.go │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ ├── 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 │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── route │ │ │ ├── syscall.s │ │ │ └── message_darwin_test.go │ │ │ ├── ipv4 │ │ │ ├── thunk_linux_386.s │ │ │ ├── sys_stub.go │ │ │ ├── sockopt_stub.go │ │ │ ├── payload.go │ │ │ ├── bpfopt_stub.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── sockopt_asmreqn_stub.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── icmp_stub.go │ │ │ ├── control_stub.go │ │ │ ├── icmp_linux.go │ │ │ ├── sockopt_asmreq_stub.go │ │ │ ├── syscall_windows.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ ├── control_windows.go │ │ │ ├── zsys_dragonfly.go │ │ │ └── bpfopt_linux.go │ │ │ ├── ipv6 │ │ │ ├── thunk_linux_386.s │ │ │ ├── sys_stub.go │ │ │ ├── sockopt_stub.go │ │ │ ├── payload.go │ │ │ ├── bpfopt_stub.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_windows.go │ │ │ ├── control_stub.go │ │ │ ├── icmp_solaris.go │ │ │ ├── syscall_windows.go │ │ │ ├── sockopt_asmreq_posix.go │ │ │ ├── main_test.go │ │ │ ├── icmp_linux.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── control_windows.go │ │ │ ├── icmp_bsd.go │ │ │ └── bpfopt_linux.go │ │ │ ├── icmp │ │ │ ├── sys_freebsd.go │ │ │ ├── helper.go │ │ │ └── ipv6.go │ │ │ ├── internal │ │ │ ├── nettest │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── rlimit.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ └── helper_posix.go │ │ │ └── netreflect │ │ │ │ ├── socket_stub.go │ │ │ │ └── socket_posix.go │ │ │ ├── .gitattributes │ │ │ ├── proxy │ │ │ └── direct.go │ │ │ ├── webdav │ │ │ └── internal │ │ │ │ └── xml │ │ │ │ └── README │ │ │ ├── bpf │ │ │ └── testdata │ │ │ │ └── all_instructions.bpf │ │ │ ├── websocket │ │ │ ├── examplehandler_test.go │ │ │ └── exampledial_test.go │ │ │ └── context │ │ │ ├── ctxhttp │ │ │ └── ctxhttp_17_test.go │ │ │ └── withtimeout_test.go │ ├── cloud.google.com │ │ └── go │ │ │ ├── vendor │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ ├── debug │ │ │ │ │ ├── README │ │ │ │ │ ├── codereview.cfg │ │ │ │ │ ├── macho │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── hello.c │ │ │ │ │ │ │ ├── gcc-386-darwin-exec │ │ │ │ │ │ │ ├── gcc-amd64-darwin-exec │ │ │ │ │ │ │ ├── gcc-amd64-darwin-exec-debug │ │ │ │ │ │ │ └── fat-gcc-386-amd64-darwin-exec │ │ │ │ │ ├── elf │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── hello.c │ │ │ │ │ │ │ ├── hello-world-core.gz │ │ │ │ │ │ │ ├── gcc-386-freebsd-exec │ │ │ │ │ │ │ ├── gcc-amd64-linux-exec │ │ │ │ │ │ │ ├── go-relocation-test-gcc441-x86.obj │ │ │ │ │ │ │ ├── go-relocation-test-gcc424-x86-64.obj │ │ │ │ │ │ │ ├── go-relocation-test-gcc441-x86-64.obj │ │ │ │ │ │ │ └── gcc-amd64-openbsd-debug-with-rela.obj │ │ │ │ │ ├── dwarf │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── typedef.elf │ │ │ │ │ │ │ ├── typedef.elf4 │ │ │ │ │ │ │ └── typedef.macho │ │ │ │ │ ├── AUTHORS │ │ │ │ │ └── CONTRIBUTORS │ │ │ │ │ ├── net │ │ │ │ │ ├── http2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── go18.go │ │ │ │ │ │ ├── errors_test.go │ │ │ │ │ │ └── README │ │ │ │ │ └── context │ │ │ │ │ │ ├── ctxhttp │ │ │ │ │ │ └── ctxhttp_17_test.go │ │ │ │ │ │ └── withtimeout_test.go │ │ │ │ │ └── oauth2 │ │ │ │ │ ├── google │ │ │ │ │ ├── testdata │ │ │ │ │ │ └── gcloud │ │ │ │ │ │ │ └── properties │ │ │ │ │ ├── appengine_hook.go │ │ │ │ │ └── appenginevm_hook.go │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ └── client_appengine.go │ │ │ ├── google.golang.org │ │ │ │ ├── grpc │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── backoff_test.go │ │ │ │ │ ├── test │ │ │ │ │ │ └── codec_perf │ │ │ │ │ │ │ └── perf.proto │ │ │ │ │ ├── codes │ │ │ │ │ │ └── code_string.go │ │ │ │ │ └── codegen.sh │ │ │ │ ├── appengine │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── api_race_test.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── identity.go │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ └── api_base.proto │ │ │ │ │ │ └── app_id.go │ │ │ │ │ ├── socket │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── timeout.go │ │ │ │ │ ├── appengine_vm.go │ │ │ │ │ └── namespace.go │ │ │ │ └── api │ │ │ │ │ ├── gensupport │ │ │ │ │ └── doc.go │ │ │ │ │ ├── iterator │ │ │ │ │ └── testing │ │ │ │ │ │ └── testing_test.go │ │ │ │ │ ├── googleapi │ │ │ │ │ └── internal │ │ │ │ │ │ └── uritemplates │ │ │ │ │ │ └── utils.go │ │ │ │ │ └── internal │ │ │ │ │ └── settings.go │ │ │ └── github.com │ │ │ │ ├── googleapis │ │ │ │ └── gax-go │ │ │ │ │ └── README.md │ │ │ │ └── golang │ │ │ │ └── geo │ │ │ │ ├── r3 │ │ │ │ └── doc.go │ │ │ │ └── s1 │ │ │ │ └── doc.go │ │ │ ├── key.json.enc │ │ │ ├── vision │ │ │ ├── testdata │ │ │ │ ├── cat.jpg │ │ │ │ ├── face.jpg │ │ │ │ ├── faulkner.jpg │ │ │ │ ├── google.png │ │ │ │ ├── mountain.jpg │ │ │ │ ├── no-text.jpg │ │ │ │ ├── eiffel-tower.jpg │ │ │ │ └── README.md │ │ │ └── apiv1 │ │ │ │ ├── README.md │ │ │ │ └── vision.go │ │ │ ├── examples │ │ │ ├── storage │ │ │ │ ├── appengine │ │ │ │ │ └── app.yaml │ │ │ │ └── appenginevm │ │ │ │ │ └── app.yaml │ │ │ └── bigtable │ │ │ │ └── usercounter │ │ │ │ └── app.yaml │ │ │ ├── pubsub │ │ │ └── apiv1 │ │ │ │ └── README.md │ │ │ ├── logging │ │ │ └── apiv2 │ │ │ │ └── README.md │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── datastore │ │ │ └── testdata │ │ │ │ └── index.yaml │ │ │ ├── speech │ │ │ └── apiv1beta1 │ │ │ │ └── speech.go │ │ │ ├── language │ │ │ └── apiv1beta1 │ │ │ │ └── language.go │ │ │ └── bigquery │ │ │ └── doc.go │ └── google.golang.org │ │ └── appengine │ │ ├── demos │ │ ├── guestbook │ │ │ ├── index.yaml │ │ │ ├── favicon.ico │ │ │ ├── app.yaml │ │ │ └── templates │ │ │ │ └── guestbook.html │ │ └── helloworld │ │ │ ├── favicon.ico │ │ │ └── app.yaml │ │ ├── internal │ │ ├── api_race_test.go │ │ ├── main.go │ │ ├── identity.go │ │ ├── base │ │ │ └── api_base.proto │ │ ├── capability │ │ │ └── capability_service.proto │ │ ├── channel │ │ │ └── channel_service.proto │ │ └── app_id.go │ │ ├── cloudsql │ │ ├── cloudsql_classic.go │ │ └── cloudsql_vm.go │ │ ├── socket │ │ └── doc.go │ │ ├── timeout.go │ │ ├── channel │ │ └── channel_test.go │ │ ├── .travis.yml │ │ ├── appengine_vm.go │ │ ├── aetest │ │ └── instance_classic.go │ │ ├── remote_api │ │ └── client_test.go │ │ ├── vendor │ │ └── golang.org │ │ │ └── x │ │ │ └── net │ │ │ └── context │ │ │ └── withtimeout_test.go │ │ └── namespace.go └── assets │ ├── christfollower.me │ └── misc │ │ └── glasstty │ │ ├── Glass_TTY_VT220.eot │ │ ├── Glass_TTY_VT220.woff │ │ ├── glass_tty_vt220.ttf │ │ ├── Glass_TTY_VT220_1.eot │ │ ├── Glass_TTY_VT220_1.ttf │ │ ├── Glass_TTY_VT220_1.woff │ │ ├── README │ │ └── stylesheet.css │ └── soundbible.com │ ├── Beep_Ping-SoundBible.com-217088958.wav │ └── README ├── .gitignore ├── AUTHORS ├── server-game └── src │ └── server-game │ └── Dockerfile └── server-frontend └── src └── server-frontend ├── client └── style.css └── cron.yaml /third_party/src/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/src/github.com/gorilla/rpc/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/README: -------------------------------------------------------------------------------- 1 | Nothing to see here. Yet. 2 | -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/internal/vfilepath/switch.go: -------------------------------------------------------------------------------- 1 | package vfilepath 2 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/test/interaction/index.js: -------------------------------------------------------------------------------- 1 | require('./InteractionData'); -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /third_party/src/github.com/tadhunt/httputils/README.md: -------------------------------------------------------------------------------- 1 | # httputils 2 | Misc Golang HTTP Utilities 3 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/camlistore.org/pkg/googlestorage/testdata/test-enum-1: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/camlistore.org/pkg/googlestorage/testdata/test-enum-2: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/camlistore.org/pkg/googlestorage/testdata/test-enum-3: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/camlistore.org/pkg/googlestorage/testdata/test-enum-4: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/camlistore.org/pkg/googlestorage/testdata/test-enum: -------------------------------------------------------------------------------- 1 | Google Storage Test 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/camlistore.org/pkg/googlestorage/testdata/test-get: -------------------------------------------------------------------------------- 1 | Google Storage Test 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/camlistore.org/pkg/googlestorage/testdata/test-stat: -------------------------------------------------------------------------------- 1 | Google Storage Test 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/go4.org/jsonconfig/testdata/include2.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/oauth2/google/testdata/gcloud/properties: -------------------------------------------------------------------------------- 1 | [core] 2 | account = bar@example.com -------------------------------------------------------------------------------- /third_party/src/github.com/tadhunt/httputils/vendor/github.com/smartystreets/goconvey/convey/gotest/doc_test.go: -------------------------------------------------------------------------------- 1 | package gotest 2 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/oauth2/google/testdata/gcloud/properties: -------------------------------------------------------------------------------- 1 | [core] 2 | account = bar@example.com -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /third_party/src/github.com/tadhunt/httputils/vendor/github.com/tadhunt/go-dbgutils/README.md: -------------------------------------------------------------------------------- 1 | # go-dbgutils 2 | Golang debugging utilites 3 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/go4.org/jsonconfig/testdata/include1bis.json: -------------------------------------------------------------------------------- 1 | { 2 | "two": ["_fileobj", "include2.json"] 3 | } 4 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/go4.org/jsonconfig/testdata/loop1.json: -------------------------------------------------------------------------------- 1 | { 2 | "obj": ["_fileobj", "testdata/loop2.json"] 3 | } 4 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/go4.org/jsonconfig/testdata/loop2.json: -------------------------------------------------------------------------------- 1 | { 2 | "obj": ["_fileobj", "testdata/loop1.json"] 3 | } 4 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/go4.org/jsonconfig/testdata/include1.json: -------------------------------------------------------------------------------- 1 | { 2 | "two": ["_fileobj", "testdata/include2.json"] 3 | } 4 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/key.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/key.json.enc -------------------------------------------------------------------------------- /third_party/src/github.com/tadhunt/httputils/vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /third_party/src/github.com/dmauro/Keypress/compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/github.com/dmauro/Keypress/compiler.jar -------------------------------------------------------------------------------- /third_party/src/github.com/pkg/errors/vendor/vendor.json: -------------------------------------------------------------------------------- 1 | { 2 | "comment": "", 3 | "ignore": "", 4 | "package": [], 5 | "rootPath": "github.com/pkg/errors" 6 | } 7 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vision/testdata/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vision/testdata/cat.jpg -------------------------------------------------------------------------------- /third_party/src/github.com/dmauro/Keypress/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *.scssc 3 | bower_components/ 4 | test/keypress.js 5 | test/tests.js 6 | .build* 7 | node_modules/ 8 | -------------------------------------------------------------------------------- /third_party/src/github.com/gorilla/rpc/vendor/vendor.json: -------------------------------------------------------------------------------- 1 | { 2 | "comment": "", 3 | "ignore": "", 4 | "package": [], 5 | "rootPath": "github.com/gorilla/rpc" 6 | } 7 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vision/testdata/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vision/testdata/face.jpg -------------------------------------------------------------------------------- /third_party/src/github.com/dmauro/Keypress/vendor/vendor.json: -------------------------------------------------------------------------------- 1 | { 2 | "comment": "", 3 | "ignore": "", 4 | "package": [], 5 | "rootPath": "github.com/dmauro/Keypress" 6 | } 7 | -------------------------------------------------------------------------------- /third_party/src/github.com/gorilla/context/vendor/vendor.json: -------------------------------------------------------------------------------- 1 | { 2 | "comment": "", 3 | "ignore": "", 4 | "package": [], 5 | "rootPath": "github.com/gorilla/context" 6 | } 7 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/vendor/vendor.json: -------------------------------------------------------------------------------- 1 | { 2 | "comment": "", 3 | "ignore": "", 4 | "package": [], 5 | "rootPath": "github.com/pixijs/pixi.js" 6 | } 7 | -------------------------------------------------------------------------------- /third_party/src/github.com/satori/go.uuid/vendor/vendor.json: -------------------------------------------------------------------------------- 1 | { 2 | "comment": "", 3 | "ignore": "", 4 | "package": [], 5 | "rootPath": "github.com/satori/go.uuid" 6 | } 7 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vision/testdata/faulkner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vision/testdata/faulkner.jpg -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vision/testdata/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vision/testdata/google.png -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vision/testdata/mountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vision/testdata/mountain.jpg -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vision/testdata/no-text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vision/testdata/no-text.jpg -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/go4.org/jsonconfig/testdata/listexpand.json: -------------------------------------------------------------------------------- 1 | { 2 | "list": ["foo", ["_env", "${TEST_BAR}"]], 3 | "str": ["_env", "${TEST_BAR}"] 4 | } 5 | -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/vendor/github.com/google/shlex/README: -------------------------------------------------------------------------------- 1 | go-shlex is a simple lexer for go that supports shell-style quoting, 2 | commenting, and escaping. 3 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/macho/testdata/hello.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | printf("hello, world\n"); 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vision/testdata/eiffel-tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vision/testdata/eiffel-tower.jpg -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/src/extract/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | webGL: require('./webgl/WebGLExtract'), 4 | canvas: require('./canvas/CanvasExtract') 5 | }; -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/src/prepare/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | webGL: require('./webgl/WebGLPrepare'), 4 | canvas: require('./canvas/CanvasPrepare') 5 | }; -------------------------------------------------------------------------------- /third_party/src/google.golang.org/appengine/demos/guestbook/index.yaml: -------------------------------------------------------------------------------- 1 | indexes: 2 | 3 | - kind: Greeting 4 | ancestor: yes 5 | properties: 6 | - name: Date 7 | direction: desc 8 | -------------------------------------------------------------------------------- /third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220.eot -------------------------------------------------------------------------------- /third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220.woff -------------------------------------------------------------------------------- /third_party/assets/christfollower.me/misc/glasstty/glass_tty_vt220.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/assets/christfollower.me/misc/glasstty/glass_tty_vt220.ttf -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/hello.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void 4 | main(int argc, char *argv[]) 5 | { 6 | printf("hello, world\n"); 7 | } 8 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/README: -------------------------------------------------------------------------------- 1 | This repository holds supplementary Go networking libraries. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /third_party/src/google.golang.org/appengine/demos/guestbook/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/google.golang.org/appengine/demos/guestbook/favicon.ico -------------------------------------------------------------------------------- /third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220_1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220_1.eot -------------------------------------------------------------------------------- /third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220_1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220_1.ttf -------------------------------------------------------------------------------- /third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220_1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/assets/christfollower.me/misc/glasstty/Glass_TTY_VT220_1.woff -------------------------------------------------------------------------------- /third_party/assets/soundbible.com/Beep_Ping-SoundBible.com-217088958.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/assets/soundbible.com/Beep_Ping-SoundBible.com-217088958.wav -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /third_party/src/google.golang.org/appengine/demos/helloworld/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/google.golang.org/appengine/demos/helloworld/favicon.ico -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/examples/storage/appengine/app.yaml: -------------------------------------------------------------------------------- 1 | application: 2 | version: v1 3 | runtime: go 4 | api_version: go1 5 | 6 | handlers: 7 | - url: /.* 8 | script: _go_app 9 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/inch.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": { 3 | "included": [ 4 | "src/**/*.js" 5 | ], 6 | "excluded": [ 7 | "src/polyfill/" 8 | ] 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /third_party/src/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 | -------------------------------------------------------------------------------- /third_party/src/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 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/dwarf/testdata/typedef.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/dwarf/testdata/typedef.elf -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/dwarf/testdata/typedef.elf4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/dwarf/testdata/typedef.elf4 -------------------------------------------------------------------------------- /third_party/src/github.com/dmauro/Keypress/test/run_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "$( cd "$( dirname "$0" )" && pwd )" 3 | cd .. 4 | coffee -o . -cb ./keypress.coffee 5 | coffee -c test/tests.coffee 6 | open test/run_tests.html 7 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/src/filters/void/void.frag: -------------------------------------------------------------------------------- 1 | varying vec2 vTextureCoord; 2 | 3 | uniform sampler2D uSampler; 4 | 5 | void main(void) 6 | { 7 | gl_FragColor = texture2D(uSampler, vTextureCoord); 8 | } 9 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/examples/storage/appenginevm/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: go 2 | api_version: go1 3 | vm: true 4 | 5 | manual_scaling: 6 | instances: 1 7 | 8 | handlers: 9 | - url: /.* 10 | script: _go_app 11 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/dwarf/testdata/typedef.macho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/dwarf/testdata/typedef.macho -------------------------------------------------------------------------------- /third_party/src/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/errors 3 | go: 4 | - 1.4.3 5 | - 1.5.4 6 | - 1.6.2 7 | - 1.7.1 8 | - tip 9 | 10 | script: 11 | - go test -v ./... 12 | -------------------------------------------------------------------------------- /third_party/src/github.com/tadhunt/httputils/vendor/github.com/smartystreets/assertions/assertions.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -coverpkg=github.com/smartystreets/assertions,github.com/smartystreets/assertions/internal/oglematchers -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/hello-world-core.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/hello-world-core.gz -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/gcc-386-freebsd-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/gcc-386-freebsd-exec -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/gcc-amd64-linux-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/gcc-amd64-linux-exec -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/macho/testdata/gcc-386-darwin-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/macho/testdata/gcc-386-darwin-exec -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt -------------------------------------------------------------------------------- /third_party/assets/soundbible.com/README: -------------------------------------------------------------------------------- 1 | Beep_Ping-SoundBible.com-217088958.wav 2 | Info Page: http://soundbible.com/1133-Beep-Ping.html 3 | Asset URL: http://soundbible.com/grab.php?id=1133&type=wav 4 | License: Creative Commons Attribution 3.0 5 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/macho/testdata/gcc-amd64-darwin-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/macho/testdata/gcc-amd64-darwin-exec -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package grpc implements an RPC system called gRPC. 3 | 4 | See www.grpc.io for more information about gRPC. 5 | */ 6 | package grpc // import "google.golang.org/grpc" 7 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/oauth2/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 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/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 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/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 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/oauth2/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 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/oauth2/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 | -------------------------------------------------------------------------------- /third_party/src/github.com/dmauro/Keypress/meteor/export.js: -------------------------------------------------------------------------------- 1 | /*global Keypress:true*/ // Meteor.js creates a file-scope global for exporting. This comment prevents a potential JSHint warning. 2 | Keypress = window.keypress; 3 | delete window.Keypress; 4 | -------------------------------------------------------------------------------- /third_party/src/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 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/oauth2/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 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/macho/testdata/gcc-amd64-darwin-exec-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/macho/testdata/gcc-amd64-darwin-exec-debug -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/examples/bigtable/usercounter/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: go 2 | api_version: go1 3 | vm: true 4 | 5 | manual_scaling: 6 | instances: 1 7 | 8 | handlers: 9 | # Serve only the web root. 10 | - url: / 11 | script: _go_app 12 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/macho/testdata/fat-gcc-386-amd64-darwin-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/macho/testdata/fat-gcc-386-amd64-darwin-exec -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/internal/vos/switch.go: -------------------------------------------------------------------------------- 1 | package vos 2 | 3 | import ( 4 | "log" 5 | ) 6 | 7 | const debugLog = false 8 | 9 | func l(fname, path string) { 10 | if debugLog { 11 | log.Println(fname, path) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /third_party/src/google.golang.org/appengine/demos/helloworld/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: go 2 | api_version: go1 3 | vm: true 4 | 5 | handlers: 6 | - url: /favicon.ico 7 | static_files: favicon.ico 8 | upload: favicon.ico 9 | - url: /.* 10 | script: _go_app 11 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/go-relocation-test-gcc441-x86.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/go-relocation-test-gcc441-x86.obj -------------------------------------------------------------------------------- /third_party/src/github.com/gorilla/rpc/v2/json2/testapp/README.md: -------------------------------------------------------------------------------- 1 | Counter (TestApp) 2 | ================= 3 | 4 | 1) Build 5 | 6 | $ go build counter.go 7 | $ ./counter 8 | 9 | 10 | 2) Navigate to localhost:65534 on the browser to access the app. 11 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/test/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | "mocha": true, 4 | "browser": true, 5 | "esversion": 6, 6 | "expr": true, 7 | "predef": [ 8 | "PIXI", 9 | "chai", 10 | "expect", 11 | "assert" 12 | ] 13 | } -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/golang.org/x/net/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/go-relocation-test-gcc424-x86-64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/go-relocation-test-gcc424-x86-64.obj -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/go-relocation-test-gcc441-x86-64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/go-relocation-test-gcc441-x86-64.obj -------------------------------------------------------------------------------- /third_party/assets/christfollower.me/misc/glasstty/README: -------------------------------------------------------------------------------- 1 | VT200 True Type font 2 | Article: http://christfollower.me/misc/glasstty/index.html 3 | TTF Font: http://christfollower.me/misc/glasstty/glass_tty_vt220.ttf 4 | 5 | Converted to a web font with http://transfonter.org 6 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/gcc-amd64-openbsd-debug-with-rela.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/web-bsd-hunt/HEAD/third_party/src/cloud.google.com/go/vendor/golang.org/x/debug/elf/testdata/gcc-amd64-openbsd-debug-with-rela.obj -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/help/version.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 | package help 6 | 7 | var version = "v1.0.8" 8 | -------------------------------------------------------------------------------- /third_party/src/github.com/gorilla/rpc/v2/README.md: -------------------------------------------------------------------------------- 1 | rpc 2 | === 3 | 4 | gorilla/rpc is a foundation for RPC over HTTP services, providing access to the exported methods of an object through HTTP requests. 5 | 6 | Read the full documentation here: http://www.gorillatoolkit.org/pkg/rpc 7 | -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/vendor/github.com/dchest/safefile/rename.go: -------------------------------------------------------------------------------- 1 | // +build !plan9,!windows windows,go1.5 2 | 3 | package safefile 4 | 5 | import "os" 6 | 7 | func rename(oldname, newname string) error { 8 | return os.Rename(oldname, newname) 9 | } 10 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/test/core/index.js: -------------------------------------------------------------------------------- 1 | require('./Bounds'); 2 | require('./Container'); 3 | require('./DisplayObject'); 4 | require('./getLocalBounds'); 5 | require('./Sprite'); 6 | require('./Text'); 7 | require('./toGlobal'); 8 | require('./toLocal'); 9 | require('./util'); -------------------------------------------------------------------------------- /third_party/src/github.com/tadhunt/httputils/vendor/github.com/smartystreets/assertions/internal/ogletest/srcutil/docs.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 Aaron Jacobs. All Rights Reserved. 2 | // Author: aaronjjacobs@gmail.com (Aaron Jacobs) 3 | 4 | // Functions for working with source code. 5 | package srcutil 6 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/route/syscall.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 ·keepAlive(SB),NOSPLIT,$0 8 | RET 9 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/test/index.js: -------------------------------------------------------------------------------- 1 | require('../bin/pixi'); 2 | 3 | describe('PIXI', function () { 4 | it('should exist as a global object', function () { 5 | expect(PIXI).to.be.an('object'); 6 | }); 7 | require('./core'); 8 | require('./interaction'); 9 | }); -------------------------------------------------------------------------------- /third_party/src/github.com/tadhunt/httputils/vendor/github.com/smartystreets/goconvey/convey/convey.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | #-covermode=count 4 | #-coverpkg=github.com/smartystreets/goconvey/convey,github.com/smartystreets/goconvey/convey/gotest,github.com/smartystreets/goconvey/convey/reporting -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/vendor/github.com/Bowery/prompt/term_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013-2015 Bowery, Inc. 2 | 3 | package prompt 4 | 5 | import ( 6 | "syscall" 7 | ) 8 | 9 | const ( 10 | tcgets = syscall.TCGETS 11 | tcsets = syscall.TCSETS 12 | tcsetsf = 0x5404 13 | ) 14 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/ipv4/thunk_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 | // +build go1.2 6 | 7 | TEXT ·socketcall(SB),4,$0-36 8 | JMP syscall·socketcall(SB) 9 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/ipv6/thunk_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 | // +build go1.2 6 | 7 | TEXT ·socketcall(SB),4,$0-36 8 | JMP syscall·socketcall(SB) 9 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/src/polyfill/Object.assign.js: -------------------------------------------------------------------------------- 1 | // References: 2 | // https://github.com/sindresorhus/object-assign 3 | // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign 4 | 5 | if (!Object.assign) 6 | { 7 | Object.assign = require('object-assign'); 8 | } 9 | -------------------------------------------------------------------------------- /third_party/src/google.golang.org/appengine/internal/api_race_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 Google Inc. All rights reserved. 2 | // Use of this source code is governed by the Apache 2.0 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build race 6 | 7 | package internal 8 | 9 | func init() { raceDetector = true } 10 | -------------------------------------------------------------------------------- /third_party/src/github.com/dmauro/Keypress/meteor/test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Tinytest.addAsync('Press "k" to pass the test', function (test, done) { 4 | var listener = new Keypress.Listener(); 5 | listener.simple_combo('k', function() { 6 | test.ok({message: 'Test passed if you pressed "k"'}); 7 | done(); 8 | }); 9 | }); 10 | -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/help/gen-license.template: -------------------------------------------------------------------------------- 1 | // Machine generated; DO NOT EDIT. 2 | 3 | package help 4 | 5 | var msgGovendorLicenses = `{{range $index, $t := .}}{{if ne $index 0}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 6 | {{end}}{{.Filename}} - {{.Path}} 7 | {{.Text}}{{end}} 8 | ` 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .*.swp 3 | 4 | third_party/pkg/ 5 | third_party/.cache/ 6 | 7 | server-game/vendor/ 8 | server-game/src/server-game/vendor/ 9 | 10 | server-frontend/src/server-frontend/assets/ 11 | server-frontend/src/server-frontend/vendor/ 12 | server-frontend/vendor/ 13 | 14 | bin/* 15 | third_party/bin/* 16 | 17 | server-game.tag 18 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the list of [Project Name] authors for copyright purposes. 2 | # 3 | # This does not necessarily list everyone who has contributed code, since in 4 | # some cases, their employer may be the copyright holder. To see the full list 5 | # of contributors, see the revision history in source control. 6 | Google Inc. 7 | and other contributors 8 | -------------------------------------------------------------------------------- /third_party/src/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 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/google.golang.org/appengine/internal/api_race_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 Google Inc. All rights reserved. 2 | // Use of this source code is governed by the Apache 2.0 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build race 6 | 7 | package internal 8 | 9 | func init() { raceDetector = true } 10 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/google.golang.org/appengine/internal/api_race_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 Google Inc. All rights reserved. 2 | // Use of this source code is governed by the Apache 2.0 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build race 6 | 7 | package internal 8 | 9 | func init() { raceDetector = true } 10 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/vendor/golang.org/x/text/language/go1_2.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 | // +build go1.2 6 | 7 | package language 8 | 9 | import "sort" 10 | 11 | var sortStable = sort.Stable 12 | -------------------------------------------------------------------------------- /third_party/src/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 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/http2/go18.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 go1.8 6 | 7 | package http2 8 | 9 | import "crypto/tls" 10 | 11 | func cloneTLSConfig(c *tls.Config) *tls.Config { return c.Clone() } 12 | -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/vendor/github.com/Bowery/prompt/term_bsd.go: -------------------------------------------------------------------------------- 1 | // +build darwin freebsd openbsd netbsd dragonfly 2 | 3 | // Copyright 2013-2015 Bowery, Inc. 4 | 5 | package prompt 6 | 7 | import ( 8 | "syscall" 9 | ) 10 | 11 | const ( 12 | tcgets = syscall.TIOCGETA 13 | tcsets = syscall.TIOCSETA 14 | tcsetsf = syscall.TIOCSETAF 15 | ) 16 | -------------------------------------------------------------------------------- /third_party/src/github.com/tadhunt/httputils/vendor/github.com/smartystreets/goconvey/convey/reporting/doc.go: -------------------------------------------------------------------------------- 1 | // Package reporting contains internal functionality related 2 | // to console reporting and output. Although this package has 3 | // exported names is not intended for public consumption. See the 4 | // examples package for how to use this project. 5 | package reporting 6 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/ipv4/sys_stub.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 | // +build nacl plan9 solaris 6 | 7 | package ipv4 8 | 9 | var ( 10 | ctlOpts = [ctlMax]ctlOpt{} 11 | 12 | sockOpts = [ssoMax]sockOpt{} 13 | ) 14 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/ipv6/sys_stub.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 | // +build nacl plan9 solaris 6 | 7 | package ipv6 8 | 9 | var ( 10 | ctlOpts = [ctlMax]ctlOpt{} 11 | 12 | sockOpts = [ssoMax]sockOpt{} 13 | ) 14 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/google.golang.org/grpc/backoff_test.go: -------------------------------------------------------------------------------- 1 | package grpc 2 | 3 | import "testing" 4 | 5 | func TestBackoffConfigDefaults(t *testing.T) { 6 | b := BackoffConfig{} 7 | setDefaults(&b) 8 | if b != DefaultBackoffConfig { 9 | t.Fatalf("expected BackoffConfig to pickup default parameters: %v != %v", b, DefaultBackoffConfig) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/internal/vfilepath/prefix.go: -------------------------------------------------------------------------------- 1 | package vfilepath 2 | 3 | import "strings" 4 | 5 | func HasPrefixDir(path string, prefix string) bool { 6 | return strings.HasPrefix(makeDirPath(path), makeDirPath(prefix)) 7 | } 8 | 9 | func makeDirPath(path string) string { 10 | if path != "/" { 11 | path += "/" 12 | } 13 | return path 14 | } 15 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/internal/nettest/helper_nobsd.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 linux solaris 6 | 7 | package nettest 8 | 9 | func supportsIPv6MulticastDeliveryOnLoopback() bool { 10 | return true 11 | } 12 | -------------------------------------------------------------------------------- /third_party/src/golang.org/x/net/ipv4/sockopt_stub.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 | // +build nacl plan9 solaris 6 | 7 | package ipv4 8 | 9 | func setInt(s uintptr, opt *sockOpt, v int) error { 10 | return errOpNoSupport 11 | } 12 | -------------------------------------------------------------------------------- /third_party/src/github.com/gorilla/rpc/README.md: -------------------------------------------------------------------------------- 1 | rpc 2 | === 3 | [![Build Status](https://travis-ci.org/gorilla/rpc.png?branch=master)](https://travis-ci.org/gorilla/rpc) 4 | 5 | gorilla/rpc is a foundation for RPC over HTTP services, providing access to the exported methods of an object through HTTP requests. 6 | 7 | Read the full documentation here: http://www.gorillatoolkit.org/pkg/rpc 8 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/src/filters/fragments/default.vert: -------------------------------------------------------------------------------- 1 | attribute vec2 aVertexPosition; 2 | attribute vec2 aTextureCoord; 3 | 4 | uniform mat3 projectionMatrix; 5 | 6 | varying vec2 vTextureCoord; 7 | 8 | void main(void) 9 | { 10 | gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0); 11 | vTextureCoord = aTextureCoord; 12 | } -------------------------------------------------------------------------------- /third_party/src/github.com/satori/go.uuid/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | - 1.2 5 | - 1.3 6 | - 1.4 7 | - 1.5 8 | - 1.6 9 | before_install: 10 | - go get github.com/mattn/goveralls 11 | - go get golang.org/x/tools/cmd/cover 12 | script: 13 | - $HOME/gopath/bin/goveralls -service=travis-ci 14 | notifications: 15 | email: false 16 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/pubsub/apiv1/README.md: -------------------------------------------------------------------------------- 1 | Auto-generated pubsub v1 clients 2 | ================================= 3 | 4 | This package includes auto-generated clients for the pubsub v1 API. 5 | 6 | Use the handwritten client (in the parent directory, 7 | cloud.google.com/go/pubsub) in preference to this. 8 | 9 | This code is EXPERIMENTAL and subject to CHANGE AT ANY TIME. 10 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vision/apiv1/README.md: -------------------------------------------------------------------------------- 1 | Auto-generated vision v1 clients 2 | ================================= 3 | 4 | This package includes auto-generated clients for the vision v1 API. 5 | 6 | Use the handwritten client (in the parent directory, 7 | cloud.google.com/go/vision) in preference to this. 8 | 9 | This code is EXPERIMENTAL and subject to CHANGE AT ANY TIME. 10 | -------------------------------------------------------------------------------- /third_party/src/github.com/tadhunt/httputils/vendor/github.com/smartystreets/goconvey/convey/reporting/console.go: -------------------------------------------------------------------------------- 1 | package reporting 2 | 3 | import ( 4 | "fmt" 5 | "io" 6 | ) 7 | 8 | type console struct{} 9 | 10 | func (self *console) Write(p []byte) (n int, err error) { 11 | return fmt.Print(string(p)) 12 | } 13 | 14 | func NewConsole() io.Writer { 15 | return new(console) 16 | } 17 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/golang.org/x/net/http2/go18.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 go1.8 6 | 7 | package http2 8 | 9 | import "crypto/tls" 10 | 11 | func cloneTLSConfig(c *tls.Config) *tls.Config { return c.Clone() } 12 | -------------------------------------------------------------------------------- /third_party/src/google.golang.org/appengine/internal/main.go: -------------------------------------------------------------------------------- 1 | // Copyright 2011 Google Inc. All rights reserved. 2 | // Use of this source code is governed by the Apache 2.0 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build appengine 6 | 7 | package internal 8 | 9 | import ( 10 | "appengine_internal" 11 | ) 12 | 13 | func Main() { 14 | appengine_internal.Main() 15 | } 16 | -------------------------------------------------------------------------------- /third_party/src/github.com/gorilla/mux/vendor/vendor.json: -------------------------------------------------------------------------------- 1 | { 2 | "comment": "", 3 | "ignore": "", 4 | "package": [ 5 | { 6 | "checksumSHA1": "Thg9sicXr23/02y0VqmmJoEZIzI=", 7 | "path": "github.com/gorilla/context", 8 | "revision": "08b5f424b9271eedf6f9f0ce86cb9396ed337a42", 9 | "revisionTime": "2016-08-17T18:46:32Z" 10 | } 11 | ], 12 | "rootPath": "github.com/gorilla/mux" 13 | } 14 | -------------------------------------------------------------------------------- /third_party/src/github.com/kardianos/govendor/vendor/github.com/Bowery/prompt/keys_unix.go: -------------------------------------------------------------------------------- 1 | // +build linux darwin freebsd openbsd netbsd dragonfly 2 | 3 | // Copyright 2013-2015 Bowery, Inc. 4 | 5 | package prompt 6 | 7 | const mvToCol = "\u001b[0G\u001b[%dC" 8 | 9 | var ( 10 | mvLeftEdge = []byte("\u001b[0G") 11 | clsScreen = []byte("\u001b[H\u001b[2J") 12 | delRight = []byte("\u001b[0K") 13 | ) 14 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/src/polyfill/Math.sign.js: -------------------------------------------------------------------------------- 1 | // References: 2 | // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign 3 | 4 | if (!Math.sign) 5 | { 6 | Math.sign = function (x) { 7 | x = +x; 8 | if (x === 0 || isNaN(x)) 9 | { 10 | return x; 11 | } 12 | return x > 0 ? 1 : -1; 13 | }; 14 | } 15 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/logging/apiv2/README.md: -------------------------------------------------------------------------------- 1 | Auto-generated logging v2 clients 2 | ================================= 3 | 4 | This package includes auto-generated clients for the logging v2 API. 5 | 6 | Use the handwritten logging client (in the parent directory, 7 | cloud.google.com/go/logging) in preference to this. 8 | 9 | This code is EXPERIMENTAL and subject to CHANGE AT ANY TIME. 10 | 11 | 12 | -------------------------------------------------------------------------------- /third_party/src/github.com/pixijs/pixi.js/src/filters/blur/getMaxBlurKernelSize.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | var getMaxKernelSize = function(gl) 4 | { 5 | var maxVaryings = ( gl.getParameter(gl.MAX_VARYING_VECTORS) ); 6 | var kernelSize = 15; 7 | 8 | while(kernelSize > maxVaryings) 9 | { 10 | kernelSize -= 2; 11 | } 12 | 13 | return kernelSize; 14 | }; 15 | 16 | module.exports = getMaxKernelSize; 17 | -------------------------------------------------------------------------------- /third_party/src/cloud.google.com/go/vendor/google.golang.org/appengine/internal/main.go: -------------------------------------------------------------------------------- 1 | // Copyright 2011 Google Inc. All rights reserved. 2 | // Use of this source code is governed by the Apache 2.0 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build appengine 6 | 7 | package internal 8 | 9 | import ( 10 | "appengine_internal" 11 | ) 12 | 13 | func Main() { 14 | appengine_internal.Main() 15 | } 16 | -------------------------------------------------------------------------------- /third_party/src/github.com/gorilla/mux/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | 4 | matrix: 5 | include: 6 | - go: 1.2 7 | - go: 1.3 8 | - go: 1.4 9 | - go: 1.5 10 | - go: 1.6 11 | - go: 1.7 12 | - go: tip 13 | 14 | install: 15 | - # Skip 16 | 17 | script: 18 | - go get -t -v ./... 19 | - diff -u <(echo -n) <(gofmt -d .) 20 | - go tool vet . 21 | - go test -v -race ./... 22 | -------------------------------------------------------------------------------- /third_party/src/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 | -------------------------------------------------------------------------------- /third_party/src/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 | | 3 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | | "1" 9 | | 4 15 | #errors 16 | #document 17 | | 18 | | 19 | | 20 | | "1" 21 | |