├── gen └── README.md ├── vendor ├── github.com │ ├── gogo │ │ └── protobuf │ │ │ ├── test │ │ │ ├── .gitignore │ │ │ ├── oneof │ │ │ │ └── doc.go │ │ │ ├── tags │ │ │ │ └── doc.go │ │ │ ├── embedconflict │ │ │ │ ├── .gitignore │ │ │ │ └── doc.go │ │ │ ├── oneof3 │ │ │ │ └── doc.go │ │ │ ├── packed │ │ │ │ └── doc.go │ │ │ ├── mapsproto2 │ │ │ │ └── doc.go │ │ │ ├── theproto3 │ │ │ │ ├── doc.go │ │ │ │ └── footer.proto │ │ │ ├── dashfilename │ │ │ │ └── doc.go │ │ │ ├── defaultconflict │ │ │ │ └── doc.go │ │ │ └── proto3extension │ │ │ │ └── proto3ext.proto │ │ │ ├── vanity │ │ │ └── test │ │ │ │ ├── doc.go │ │ │ │ └── gofast │ │ │ │ └── .gitignore │ │ │ ├── .gitignore │ │ │ ├── protoc-gen-gogo │ │ │ └── testdata │ │ │ │ └── multi │ │ │ │ └── .gitignore │ │ │ ├── GOLANG_CONTRIBUTORS │ │ │ ├── jsonpb │ │ │ └── jsonpb_test_proto │ │ │ │ └── bytes.go │ │ │ ├── .mailmap │ │ │ ├── gogoreplace │ │ │ └── main.go │ │ │ ├── AUTHORS │ │ │ ├── .travis.yml │ │ │ ├── install-protobuf.sh │ │ │ └── CONTRIBUTORS │ ├── kr │ │ └── logfmt │ │ │ └── .gitignore │ ├── moul │ │ └── protoc-gen-gotemplate │ │ │ ├── examples │ │ │ ├── go-kit │ │ │ │ ├── .gitignore │ │ │ │ ├── services │ │ │ │ │ ├── user │ │ │ │ │ │ ├── gen │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── user.proto │ │ │ │ │ │ └── service.go │ │ │ │ │ ├── session │ │ │ │ │ │ ├── gen │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── session.proto │ │ │ │ │ │ └── service.go │ │ │ │ │ └── sprint │ │ │ │ │ │ ├── gen │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ └── sprint.proto │ │ │ │ ├── templates │ │ │ │ │ └── {{.File.Package}} │ │ │ │ │ │ └── gen │ │ │ │ │ │ └── README.md.tmpl │ │ │ │ └── Makefile │ │ │ ├── dummy │ │ │ │ ├── output │ │ │ │ │ └── static.txt │ │ │ │ ├── templates │ │ │ │ │ ├── export.json.tmpl │ │ │ │ │ └── static.txt.tmpl │ │ │ │ ├── Makefile │ │ │ │ └── dummy.proto │ │ │ ├── k8s │ │ │ │ ├── gen │ │ │ │ │ └── nginx │ │ │ │ │ │ ├── svc.yaml │ │ │ │ │ │ └── dpl.yaml │ │ │ │ ├── nginx.proto │ │ │ │ ├── templates │ │ │ │ │ └── {{.File.Package}} │ │ │ │ │ │ ├── svc.yaml.tmpl │ │ │ │ │ │ └── dpl.yaml.tmpl │ │ │ │ └── Makefile │ │ │ └── js-grpc │ │ │ │ └── Makefile │ │ │ ├── vendor │ │ │ └── github.com │ │ │ │ ├── Masterminds │ │ │ │ └── sprig │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── glide.yaml │ │ │ │ │ ├── glide.lock │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── example_test.go │ │ │ │ │ └── .travis.yml │ │ │ │ ├── huandu │ │ │ │ └── xstrings │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── common.go │ │ │ │ │ └── util_test.go │ │ │ │ ├── kr │ │ │ │ └── fs │ │ │ │ │ ├── Readme │ │ │ │ │ └── example_test.go │ │ │ │ ├── golang │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ └── .gitignore │ │ │ │ └── satori │ │ │ │ └── go.uuid │ │ │ │ └── .travis.yml │ │ │ ├── slides │ │ │ ├── slides.pdf │ │ │ └── assets │ │ │ │ ├── wc.png │ │ │ │ └── session-wc.png │ │ │ ├── Dockerfile │ │ │ ├── glide.yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Makefile │ │ │ ├── contrib │ │ │ └── homebrew │ │ │ │ └── protoc-gen-gotemplate.rb │ │ │ └── glide.lock │ ├── gopherjs │ │ └── gopherjs │ │ │ ├── .gitignore │ │ │ ├── tests │ │ │ ├── otherpkg │ │ │ │ └── otherpkg.go │ │ │ ├── doc.go │ │ │ ├── vendor │ │ │ │ └── vendored │ │ │ │ │ └── vendored.go │ │ │ ├── testdata │ │ │ │ ├── time_inexternalization.out │ │ │ │ └── time_inexternalization.go │ │ │ ├── main │ │ │ │ ├── main.go │ │ │ │ └── main_test.go │ │ │ ├── gorepo_test.go │ │ │ └── deferblock_test.go │ │ │ ├── compiler │ │ │ ├── natives │ │ │ │ ├── src │ │ │ │ │ ├── text │ │ │ │ │ │ └── template │ │ │ │ │ │ │ └── template.go │ │ │ │ │ ├── fmt │ │ │ │ │ │ └── fmt_test.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── debug.go │ │ │ │ │ │ └── pprof │ │ │ │ │ │ │ └── pprof.go │ │ │ │ │ ├── debug │ │ │ │ │ │ └── elf │ │ │ │ │ │ │ └── elf_test.go │ │ │ │ │ ├── go │ │ │ │ │ │ └── token │ │ │ │ │ │ │ └── token_test.go │ │ │ │ │ ├── bytes │ │ │ │ │ │ ├── bytes_test.go │ │ │ │ │ │ └── bytes.go │ │ │ │ │ ├── sync │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ └── atomic_test.go │ │ │ │ │ │ ├── sync_test.go │ │ │ │ │ │ ├── waitgroup.go │ │ │ │ │ │ ├── pool.go │ │ │ │ │ │ ├── sync.go │ │ │ │ │ │ └── cond.go │ │ │ │ │ ├── encoding │ │ │ │ │ │ └── json │ │ │ │ │ │ │ └── stream_test.go │ │ │ │ │ ├── regexp │ │ │ │ │ │ └── regexp_test.go │ │ │ │ │ ├── math │ │ │ │ │ │ ├── big │ │ │ │ │ │ │ └── big_test.go │ │ │ │ │ │ └── rand │ │ │ │ │ │ │ └── rand_test.go │ │ │ │ │ ├── io │ │ │ │ │ │ └── io_test.go │ │ │ │ │ ├── crypto │ │ │ │ │ │ └── x509 │ │ │ │ │ │ │ ├── x509.go │ │ │ │ │ │ │ └── x509_test.go │ │ │ │ │ ├── os │ │ │ │ │ │ └── os.go │ │ │ │ │ └── unicode │ │ │ │ │ │ └── unicode.go │ │ │ │ ├── doc.go │ │ │ │ └── fs.go │ │ │ ├── version_check.go │ │ │ ├── vendor │ │ │ │ └── vendor.json │ │ │ ├── typesutil │ │ │ │ └── typesutil.go │ │ │ ├── analysis │ │ │ │ ├── break.go │ │ │ │ └── sideeffect.go │ │ │ └── filter │ │ │ │ └── incdecstmt.go │ │ │ └── node-syscall │ │ │ └── binding.gyp │ ├── smartystreets │ │ ├── goconvey │ │ │ ├── convey │ │ │ │ ├── gotest │ │ │ │ │ └── doc_test.go │ │ │ │ ├── reporting │ │ │ │ │ ├── reporting.goconvey │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── console.go │ │ │ │ │ └── gotest.go │ │ │ │ ├── convey.goconvey │ │ │ │ └── nilReporter.go │ │ │ ├── web │ │ │ │ ├── server │ │ │ │ │ ├── contract │ │ │ │ │ │ └── doc_test.go │ │ │ │ │ ├── api │ │ │ │ │ │ └── api.goconvey │ │ │ │ │ ├── messaging │ │ │ │ │ │ └── doc_test.go │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── parser.goconvey │ │ │ │ │ │ └── parser.go │ │ │ │ │ ├── executor │ │ │ │ │ │ ├── executor.goconvey │ │ │ │ │ │ └── contract.go │ │ │ │ │ ├── system │ │ │ │ │ │ └── system.goconvey │ │ │ │ │ └── watch │ │ │ │ │ │ ├── integration_testing │ │ │ │ │ │ ├── doc_test.go │ │ │ │ │ │ ├── sub │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── stuff.go │ │ │ │ │ │ │ ├── sub.goconvey │ │ │ │ │ │ │ └── stuff_test.go │ │ │ │ │ │ └── main.go │ │ │ │ │ │ └── watch.goconvey │ │ │ │ └── client │ │ │ │ │ ├── resources │ │ │ │ │ ├── js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── jquery.js.url │ │ │ │ │ │ │ ├── jquery-ui.js.url │ │ │ │ │ │ │ ├── moment.js.url │ │ │ │ │ │ │ ├── markup.js.url │ │ │ │ │ │ │ ├── jquery.tipsy.js.url │ │ │ │ │ │ │ ├── taboverride.js.url │ │ │ │ │ │ │ └── jquery.pretty-text-diff.js.url │ │ │ │ │ │ └── config.js │ │ │ │ │ ├── ico │ │ │ │ │ │ ├── goconvey-ok.ico │ │ │ │ │ │ ├── goconvey-fail.ico │ │ │ │ │ │ ├── goconvey-panic.ico │ │ │ │ │ │ └── goconvey-buildfail.ico │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── Oswald │ │ │ │ │ │ └── Oswald-Regular.ttf │ │ │ │ │ │ ├── Open_Sans │ │ │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ │ │ ├── OpenSans-Light.ttf │ │ │ │ │ │ ├── OpenSans-Italic.ttf │ │ │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ │ │ └── OpenSans-LightItalic.ttf │ │ │ │ │ │ ├── Orbitron │ │ │ │ │ │ └── Orbitron-Regular.ttf │ │ │ │ │ │ └── FontAwesome │ │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ └── favicon.ico │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── dependencies.go │ │ │ ├── .travis.yml │ │ │ └── examples │ │ │ │ ├── doc.go │ │ │ │ ├── examples.goconvey │ │ │ │ └── simple_example_test.go │ │ └── assertions │ │ │ ├── .gitignore │ │ │ ├── internal │ │ │ ├── oglematchers │ │ │ │ ├── .gitignore │ │ │ │ └── .travis.yml │ │ │ └── go-render │ │ │ │ ├── WATCHLISTS │ │ │ │ └── .travis.yml │ │ │ ├── .travis.yml │ │ │ └── filter.go │ ├── go-logfmt │ │ └── logfmt │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ └── doc.go │ ├── go-kit │ │ └── kit │ │ │ ├── transport │ │ │ ├── grpc │ │ │ │ └── doc.go │ │ │ ├── doc.go │ │ │ ├── http │ │ │ │ ├── doc.go │ │ │ │ ├── err.go │ │ │ │ └── request_response_funcs_test.go │ │ │ └── httprp │ │ │ │ └── doc.go │ │ │ ├── util │ │ │ ├── conn │ │ │ │ └── doc.go │ │ │ └── README.md │ │ │ ├── sd │ │ │ ├── zk │ │ │ │ ├── doc.go │ │ │ │ └── logwrapper.go │ │ │ ├── consul │ │ │ │ ├── doc.go │ │ │ │ └── registrar_test.go │ │ │ ├── dnssrv │ │ │ │ ├── doc.go │ │ │ │ └── lookup.go │ │ │ ├── etcd │ │ │ │ └── doc.go │ │ │ ├── lb │ │ │ │ ├── doc.go │ │ │ │ ├── balancer.go │ │ │ │ ├── random.go │ │ │ │ └── round_robin.go │ │ │ ├── fixed_subscriber.go │ │ │ ├── doc.go │ │ │ ├── subscriber.go │ │ │ ├── registrar.go │ │ │ ├── factory.go │ │ │ └── cache │ │ │ │ └── benchmark_test.go │ │ │ ├── log │ │ │ ├── term │ │ │ │ ├── terminal_openbsd.go │ │ │ │ ├── terminal_freebsd.go │ │ │ │ ├── terminal_darwin.go │ │ │ │ ├── colorwriter_others.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── terminal_appengine.go │ │ │ │ ├── term.go │ │ │ │ ├── terminal_notwindows.go │ │ │ │ └── terminal_windows.go │ │ │ ├── nop_logger.go │ │ │ ├── benchmark_test.go │ │ │ ├── nop_logger_test.go │ │ │ └── concurrency_test.go │ │ │ ├── .travis.yml │ │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── profilesvc │ │ │ │ └── README.md │ │ │ ├── addsvc │ │ │ │ ├── thrift │ │ │ │ │ ├── compile.sh │ │ │ │ │ ├── addsvc.thrift │ │ │ │ │ └── gen-go │ │ │ │ │ │ └── addsvc │ │ │ │ │ │ └── constants.go │ │ │ │ ├── doc.go │ │ │ │ └── pb │ │ │ │ │ ├── compile.sh │ │ │ │ │ └── addsvc.proto │ │ │ ├── shipping │ │ │ │ ├── routing │ │ │ │ │ └── routing.go │ │ │ │ ├── tracking │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ └── instrumenting.go │ │ │ │ └── location │ │ │ │ │ ├── sample_locations.go │ │ │ │ │ └── location.go │ │ │ ├── stringsvc2 │ │ │ │ ├── service.go │ │ │ │ └── logging.go │ │ │ └── stringsvc3 │ │ │ │ └── service.go │ │ │ ├── endpoint │ │ │ └── doc.go │ │ │ ├── tracing │ │ │ ├── opentracing │ │ │ │ └── doc.go │ │ │ └── doc.go │ │ │ ├── circuitbreaker │ │ │ ├── doc.go │ │ │ ├── gobreaker_test.go │ │ │ ├── handy_breaker_test.go │ │ │ └── gobreaker.go │ │ │ ├── ROADMAP.md │ │ │ ├── metrics │ │ │ ├── internal │ │ │ │ └── lv │ │ │ │ │ ├── labelvalues.go │ │ │ │ │ └── labelvalues_test.go │ │ │ ├── timer.go │ │ │ ├── provider │ │ │ │ ├── discard.go │ │ │ │ └── expvar.go │ │ │ ├── timer_test.go │ │ │ └── metrics.go │ │ │ ├── update_deps.bash │ │ │ ├── lint │ │ │ ├── .gitignore │ │ │ └── CONTRIBUTING.md │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ └── .gitignore │ ├── go-stack │ │ └── stack │ │ │ ├── .travis.yml │ │ │ ├── format_test.go │ │ │ └── LICENSE.md │ ├── satori │ │ └── go.uuid │ │ │ └── .travis.yml │ ├── jtolds │ │ └── gls │ │ │ ├── gen_sym.go │ │ │ └── id_pool.go │ └── gorilla │ │ └── handlers │ │ ├── .travis.yml │ │ └── doc.go ├── golang.org │ └── x │ │ └── net │ │ ├── codereview.cfg │ │ ├── http2 │ │ ├── .gitignore │ │ ├── h2demo │ │ │ ├── rootCA.srl │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── README │ │ ├── Makefile │ │ ├── errors_test.go │ │ ├── README │ │ └── gotrack_test.go │ │ ├── .gitignore │ │ ├── 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 │ │ ├── README │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── route │ │ ├── syscall.s │ │ ├── message_darwin_test.go │ │ └── interface_announce.go │ │ ├── ipv4 │ │ ├── sys_linux_386.s │ │ ├── sys_solaris_amd64.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 │ │ ├── syscall_windows.go │ │ ├── sockopt_asmreq_stub.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ ├── control_windows.go │ │ ├── zsys_dragonfly.go │ │ ├── bpfopt_linux.go │ │ ├── genericopt_stub.go │ │ └── syscall_unix.go │ │ ├── ipv6 │ │ ├── sys_linux_386.s │ │ ├── sys_solaris_amd64.s │ │ ├── sys_stub.go │ │ ├── sockopt_stub.go │ │ ├── payload.go │ │ ├── bpfopt_stub.go │ │ ├── icmp_stub.go │ │ ├── sockopt_ssmreq_stub.go │ │ ├── icmp_windows.go │ │ ├── control_stub.go │ │ ├── syscall_windows.go │ │ ├── sockopt_asmreq_posix.go │ │ ├── icmp_linux.go │ │ ├── main_test.go │ │ ├── mocktransponder_test.go │ │ ├── icmp_bsd.go │ │ ├── icmp_solaris.go │ │ ├── control_windows.go │ │ ├── bpfopt_linux.go │ │ └── syscall_unix.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 │ │ ├── lif │ │ ├── sys_solaris_amd64.s │ │ └── syscall.go │ │ ├── .gitattributes │ │ ├── proxy │ │ └── direct.go │ │ ├── webdav │ │ └── internal │ │ │ └── xml │ │ │ └── README │ │ ├── bpf │ │ └── testdata │ │ │ └── all_instructions.bpf │ │ ├── websocket │ │ ├── dial.go │ │ ├── examplehandler_test.go │ │ └── exampledial_test.go │ │ └── context │ │ ├── ctxhttp │ │ └── ctxhttp_17_test.go │ │ ├── go18.go │ │ └── withtimeout_test.go └── google.golang.org │ └── grpc │ ├── doc.go │ ├── reflection │ ├── grpc_testing │ │ ├── proto2.proto │ │ ├── proto2_ext.proto │ │ └── test.proto │ └── README.md │ ├── backoff_test.go │ ├── test │ ├── codec_perf │ │ └── perf.proto │ └── testdata │ │ └── ca.pem │ ├── health │ └── grpc_health_v1 │ │ └── health.proto │ ├── codes │ └── code_string.go │ ├── codegen.sh │ ├── .travis.yml │ ├── testdata │ └── ca.pem │ ├── transport │ └── testdata │ │ └── ca.pem │ ├── benchmark │ └── server │ │ └── testdata │ │ └── ca.pem │ ├── interop │ ├── client │ │ └── testdata │ │ │ └── ca.pem │ └── server │ │ └── testdata │ │ └── ca.pem │ └── examples │ └── route_guide │ └── testdata │ └── ca.pem ├── .travis.yml ├── Dockerfile ├── models ├── models.go └── mem │ └── mem.go ├── README.md ├── .gitignore └── glide.yaml /gen/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof/doc.go: -------------------------------------------------------------------------------- 1 | package one 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/tags/doc.go: -------------------------------------------------------------------------------- 1 | package tags 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/doc.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | ._* 2 | *.js 3 | *.js.map 4 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof3/doc.go: -------------------------------------------------------------------------------- 1 | package oneof3 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/packed/doc.go: -------------------------------------------------------------------------------- 1 | package packed 2 | -------------------------------------------------------------------------------- /vendor/github.com/kr/logfmt/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.swp 3 | *.prof 4 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/theproto3/doc.go: -------------------------------------------------------------------------------- 1 | package theproto3 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/dashfilename/doc.go: -------------------------------------------------------------------------------- 1 | package dashfilename 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/doc.go: -------------------------------------------------------------------------------- 1 | package embedconflict 2 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/examples/go-kit/.gitignore: -------------------------------------------------------------------------------- 1 | /server 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: required 2 | services: 3 | - docker 4 | script: make docker.test 5 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go: -------------------------------------------------------------------------------- 1 | package defaultcheck 2 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/.gitignore: -------------------------------------------------------------------------------- 1 | /node-syscall/build 2 | /node_modules 3 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/examples/go-kit/services/user/gen/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/gotest/doc_test.go: -------------------------------------------------------------------------------- 1 | package gotest 2 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/examples/go-kit/services/session/gen/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/examples/go-kit/services/sprint/gen/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/contract/doc_test.go: -------------------------------------------------------------------------------- 1 | package contract 2 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/examples/dummy/output/static.txt: -------------------------------------------------------------------------------- 1 | This is static text -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/api/api.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/messaging/doc_test.go: -------------------------------------------------------------------------------- 1 | package messaging 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/vendor/github.com/Masterminds/sprig/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/parser/parser.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/examples/dummy/templates/export.json.tmpl: -------------------------------------------------------------------------------- 1 | {{ . | prettyjson }} -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/examples/dummy/templates/static.txt.tmpl: -------------------------------------------------------------------------------- 1 | This is static text -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/examples/go-kit/templates/{{.File.Package}}/gen/README.md.tmpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/vendor/github.com/huandu/xstrings/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/.gitattributes: -------------------------------------------------------------------------------- 1 | web/client/resources/js/lib/* linguist-vendored 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/executor/executor.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/system/system.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -short -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/doc_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/watch/watch.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -short -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/otherpkg/otherpkg.go: -------------------------------------------------------------------------------- 1 | package otherpkg 2 | 3 | var Test float32 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-logfmt/logfmt/.gitignore: -------------------------------------------------------------------------------- 1 | _testdata/ 2 | _testdata2/ 3 | logfmt-fuzz.zip 4 | logfmt.test.exe 5 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/doc.go: -------------------------------------------------------------------------------- 1 | // Package tests contains tests for GopherJS. 2 | package tests 3 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/vendor/vendored/vendored.go: -------------------------------------------------------------------------------- 1 | package vendored 2 | 3 | var Answer = 42 4 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | *.iml 4 | /.idea 5 | coverage.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/transport/grpc/doc.go: -------------------------------------------------------------------------------- 1 | // Package grpc provides a gRPC binding for endpoints. 2 | package grpc 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/util/conn/doc.go: -------------------------------------------------------------------------------- 1 | // Package conn provides utilities related to connections. 2 | package conn 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery.js.url: -------------------------------------------------------------------------------- 1 | https://code.jquery.com/jquery-2.1.0.js 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | 6.out 3 | _obj/ 4 | _test/ 5 | _testmain.go 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/transport/doc.go: -------------------------------------------------------------------------------- 1 | // Package transport contains bindings to concrete transports. 2 | package transport 3 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/text/template/template.go: -------------------------------------------------------------------------------- 1 | package template 2 | 3 | const maxExecDepth = 3000 4 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | examples/output.json 4 | web/client/reports/ 5 | /.idea -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery-ui.js.url: -------------------------------------------------------------------------------- 1 | https://code.jquery.com/ui/1.10.4/jquery-ui.js 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/sd/zk/doc.go: -------------------------------------------------------------------------------- 1 | // Package zk provides subscriber and registrar implementations for ZooKeeper. 2 | package zk 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/transport/http/doc.go: -------------------------------------------------------------------------------- 1 | // Package http provides a general purpose HTTP binding for endpoints. 2 | package http 3 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/testdata/time_inexternalization.out: -------------------------------------------------------------------------------- 1 | { S: 'externalization ok' } 2 | Sat, 29 Aug 2015 20:56:00 GMT 3 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/vendor/github.com/kr/fs/Readme: -------------------------------------------------------------------------------- 1 | Filesystem Package 2 | 3 | http://godoc.org/github.com/kr/fs 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/sd/consul/doc.go: -------------------------------------------------------------------------------- 1 | // Package consul provides subscriber and registrar implementations for Consul. 2 | package consul 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/sd/dnssrv/doc.go: -------------------------------------------------------------------------------- 1 | // Package dnssrv provides a subscriber implementation for DNS SRV records. 2 | package dnssrv 3 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/fmt/fmt_test.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package fmt_test 4 | 5 | const intCount = 100 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/log/term/terminal_openbsd.go: -------------------------------------------------------------------------------- 1 | package term 2 | 3 | import "syscall" 4 | 5 | const ioctlReadTermios = syscall.TIOCGETA 6 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/moment.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/moment/moment/2.10.2/moment.js 2 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/main/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | var mainDidRun = false 4 | 5 | func main() { 6 | mainDidRun = true 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/markup.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/adammark/Markup.js/master/src/markup.js 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/log/term/terminal_freebsd.go: -------------------------------------------------------------------------------- 1 | package term 2 | 3 | import ( 4 | "syscall" 5 | ) 6 | 7 | const ioctlReadTermios = syscall.TIOCGETA 8 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/dependencies.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import _ "github.com/jtolds/gls" 4 | import _ "github.com/smartystreets/assertions" 5 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/slides/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/moul/protoc-gen-gotemplate/slides/slides.pdf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/favicon.ico -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/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/moul/acl/master/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/slides/assets/wc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/moul/protoc-gen-gotemplate/slides/assets/wc.png -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | script: go test -race -v ./... 4 | 5 | go: 6 | - 1.5.4 7 | - 1.6.3 8 | - 1.7.1 9 | - tip 10 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/runtime/debug/debug.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package debug 4 | 5 | func setGCPercent(int32) int32 { 6 | return 100 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery.tipsy.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/jaz303/tipsy/v1.0.0a/src/javascripts/jquery.tipsy.js 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/taboverride.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/wjbryant/taboverride/4.0.3/build/output/taboverride.js 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM golang:1.7.3 2 | COPY . /go/src/github.com/moul/acl 3 | WORKDIR /go/src/github.com/moul/acl 4 | CMD ["acl"] 5 | EXPOSE 8000 9000 6 | RUN make install 7 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/node-syscall/binding.gyp: -------------------------------------------------------------------------------- 1 | { 2 | 'targets': [ 3 | { 4 | 'target_name': 'syscall', 5 | 'sources': [ 'syscall.cc' ] 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /vendor/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 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/slides/assets/session-wc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/moul/protoc-gen-gotemplate/slides/assets/session-wc.png -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery.pretty-text-diff.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/arnab/jQuery.PrettyTextDiff/1.0.2/jquery.pretty-text-diff.js 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | 6 | install: 7 | - go get -t ./... 8 | 9 | script: go test -v 10 | 11 | sudo: false 12 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-ok.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-ok.ico -------------------------------------------------------------------------------- /models/models.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | import "github.com/moul/acl/gen/pb" 4 | 5 | type Repository interface { 6 | AddToken(aclpb.Token) (string, error) 7 | GetToken(string) (*aclpb.Token, error) 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/.travis.yml: -------------------------------------------------------------------------------- 1 | # Cf. http://docs.travis-ci.com/user/getting-started/ 2 | # Cf. http://docs.travis-ci.com/user/languages/go/ 3 | 4 | language: go 5 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-fail.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-fail.ico -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-panic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-panic.ico -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/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 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/reflection/grpc_testing/proto2.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | package grpc.testing; 4 | 5 | message ToBeExtened { 6 | required int32 foo = 1; 7 | extensions 10 to 20; 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-buildfail.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-buildfail.ico -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/examples/README.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | 3 | For more information about these examples, 4 | including a walkthrough of the stringsvc example, 5 | see [gokit.io/examples](https://gokit.io/examples). 6 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/debug/elf/elf_test.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package elf 4 | 5 | import "testing" 6 | 7 | func TestNoSectionOverlaps(t *testing.T) { 8 | t.Skip("not 6l") 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/main/main_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "testing" 4 | 5 | func TestNotRunMain(t *testing.T) { 6 | if mainDidRun { 7 | t.Error("main function did run") 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Oswald/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Oswald/Oswald-Regular.ttf -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/go/token/token_test.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package token 4 | 5 | import ( 6 | "testing" 7 | ) 8 | 9 | func TestFileSetRace(t *testing.T) { 10 | t.Skip() 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Orbitron/Orbitron-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Orbitron/Orbitron-Regular.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub/.gitignore: -------------------------------------------------------------------------------- 1 | github.com-smartystreets-goconvey-web-server-integration_testing-sub.html 2 | github.com-smartystreets-goconvey-web-server-integration_testing-sub.txt -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/bytes/bytes_test.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package bytes_test 4 | 5 | import ( 6 | "testing" 7 | ) 8 | 9 | func TestEqualNearPageBoundary(t *testing.T) { 10 | t.Skip() 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/moul/protoc-gen-gotemplate/examples/k8s/gen/nginx/svc.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: nginx 5 | spec: 6 | selector: 7 | app: nginx 8 | ports: 9 | - name: http 10 | port: 80 -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/acl/master/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub/stuff.go: -------------------------------------------------------------------------------- 1 | // This file's only purpose is to provide a realistic 2 | // environment from which to run integration tests 3 | // against the Watcher. 4 | package sub 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 |