├── .circleci └── config.yml ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── api ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── api │ ├── api.go │ └── api_test.go ├── cache │ ├── cache.go │ ├── cache_test.go │ └── cachemock │ │ └── Cache.go ├── cmd │ ├── k8s-config-reloader │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── Makefile │ │ ├── main.go │ │ └── vendor │ │ │ ├── github.com │ │ │ ├── alecthomas │ │ │ │ ├── template │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── examplefiles_test.go │ │ │ │ │ ├── examplefunc_test.go │ │ │ │ │ ├── exec.go │ │ │ │ │ ├── exec_test.go │ │ │ │ │ ├── funcs.go │ │ │ │ │ ├── helper.go │ │ │ │ │ ├── multi_test.go │ │ │ │ │ ├── parse │ │ │ │ │ │ ├── lex.go │ │ │ │ │ │ ├── lex_test.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ └── parse_test.go │ │ │ │ │ ├── template.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── file1.tmpl │ │ │ │ │ │ ├── file2.tmpl │ │ │ │ │ │ ├── tmpl1.tmpl │ │ │ │ │ │ └── tmpl2.tmpl │ │ │ │ └── units │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bytes.go │ │ │ │ │ ├── bytes_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── si.go │ │ │ │ │ └── util.go │ │ │ └── cenkalti │ │ │ │ └── backoff │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── backoff.go │ │ │ │ ├── backoff_test.go │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── exponential.go │ │ │ │ ├── exponential_test.go │ │ │ │ ├── retry.go │ │ │ │ ├── retry_test.go │ │ │ │ ├── ticker.go │ │ │ │ ├── ticker_test.go │ │ │ │ ├── tries.go │ │ │ │ └── tries_test.go │ │ │ ├── go.uber.org │ │ │ ├── atomic │ │ │ │ ├── .github │ │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── atomic.go │ │ │ │ ├── atomic_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── glide.lock │ │ │ │ ├── glide.yaml │ │ │ │ ├── scripts │ │ │ │ │ ├── cover.sh │ │ │ │ │ └── test-ubergo.sh │ │ │ │ ├── stress_test.go │ │ │ │ ├── string.go │ │ │ │ └── string_test.go │ │ │ ├── multierr │ │ │ │ ├── .codecov.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── benchmarks_test.go │ │ │ │ ├── error.go │ │ │ │ ├── error_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── glide.lock │ │ │ │ ├── glide.yaml │ │ │ │ └── scripts │ │ │ │ │ └── cover.sh │ │ │ └── zap │ │ │ │ ├── .codecov.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .readme.tmpl │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── array.go │ │ │ │ ├── array_test.go │ │ │ │ ├── benchmarks │ │ │ │ ├── apex_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── kit_test.go │ │ │ │ ├── lion_test.go │ │ │ │ ├── log15_test.go │ │ │ │ ├── logrus_test.go │ │ │ │ ├── scenario_bench_test.go │ │ │ │ ├── zap_test.go │ │ │ │ └── zerolog_test.go │ │ │ │ ├── buffer │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_test.go │ │ │ │ ├── pool.go │ │ │ │ └── pool_test.go │ │ │ │ ├── check_license.sh │ │ │ │ ├── common_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── encoder_test.go │ │ │ │ ├── error.go │ │ │ │ ├── error_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── field.go │ │ │ │ ├── field_test.go │ │ │ │ ├── flag.go │ │ │ │ ├── flag_test.go │ │ │ │ ├── glide.lock │ │ │ │ ├── glide.yaml │ │ │ │ ├── global.go │ │ │ │ ├── global_test.go │ │ │ │ ├── http_handler.go │ │ │ │ ├── http_handler_test.go │ │ │ │ ├── internal │ │ │ │ ├── bufferpool │ │ │ │ │ └── bufferpool.go │ │ │ │ ├── color │ │ │ │ │ ├── color.go │ │ │ │ │ └── color_test.go │ │ │ │ ├── exit │ │ │ │ │ ├── exit.go │ │ │ │ │ └── exit_test.go │ │ │ │ └── readme │ │ │ │ │ └── readme.go │ │ │ │ ├── level.go │ │ │ │ ├── level_test.go │ │ │ │ ├── logger.go │ │ │ │ ├── logger_bench_test.go │ │ │ │ ├── logger_test.go │ │ │ │ ├── options.go │ │ │ │ ├── scripts │ │ │ │ └── cover.sh │ │ │ │ ├── stacktrace.go │ │ │ │ ├── stacktrace_ext_test.go │ │ │ │ ├── stacktrace_test.go │ │ │ │ ├── sugar.go │ │ │ │ ├── sugar_test.go │ │ │ │ ├── time.go │ │ │ │ ├── time_test.go │ │ │ │ ├── writer.go │ │ │ │ ├── writer_test.go │ │ │ │ ├── zapcore │ │ │ │ ├── console_encoder.go │ │ │ │ ├── console_encoder_bench_test.go │ │ │ │ ├── core.go │ │ │ │ ├── core_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── encoder_test.go │ │ │ │ ├── entry.go │ │ │ │ ├── entry_test.go │ │ │ │ ├── error.go │ │ │ │ ├── error_test.go │ │ │ │ ├── field.go │ │ │ │ ├── field_test.go │ │ │ │ ├── hook.go │ │ │ │ ├── hook_test.go │ │ │ │ ├── json_encoder.go │ │ │ │ ├── json_encoder_bench_test.go │ │ │ │ ├── json_encoder_impl_test.go │ │ │ │ ├── level.go │ │ │ │ ├── level_strings.go │ │ │ │ ├── level_strings_test.go │ │ │ │ ├── level_test.go │ │ │ │ ├── marshaler.go │ │ │ │ ├── memory_encoder.go │ │ │ │ ├── memory_encoder_test.go │ │ │ │ ├── sampler.go │ │ │ │ ├── sampler_bench_test.go │ │ │ │ ├── sampler_test.go │ │ │ │ ├── tee.go │ │ │ │ ├── tee_logger_bench_test.go │ │ │ │ ├── tee_test.go │ │ │ │ ├── write_syncer.go │ │ │ │ ├── write_syncer_bench_test.go │ │ │ │ └── write_syncer_test.go │ │ │ │ ├── zapgrpc │ │ │ │ ├── zapgrpc.go │ │ │ │ └── zapgrpc_test.go │ │ │ │ └── zaptest │ │ │ │ ├── doc.go │ │ │ │ ├── observer │ │ │ │ ├── logged_entry.go │ │ │ │ ├── logged_entry_test.go │ │ │ │ ├── observer.go │ │ │ │ └── observer_test.go │ │ │ │ ├── timeout.go │ │ │ │ └── writer.go │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── net │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── README.md │ │ │ │ ├── bpf │ │ │ │ │ ├── asm.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── instructions.go │ │ │ │ │ ├── instructions_test.go │ │ │ │ │ ├── setter.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── all_instructions.bpf │ │ │ │ │ │ └── all_instructions.txt │ │ │ │ │ ├── vm.go │ │ │ │ │ ├── vm_aluop_test.go │ │ │ │ │ ├── vm_bpf_test.go │ │ │ │ │ ├── vm_extension_test.go │ │ │ │ │ ├── vm_instructions.go │ │ │ │ │ ├── vm_jump_test.go │ │ │ │ │ ├── vm_load_test.go │ │ │ │ │ ├── vm_ret_test.go │ │ │ │ │ ├── vm_scratch_test.go │ │ │ │ │ └── vm_test.go │ │ │ │ ├── codereview.cfg │ │ │ │ ├── context │ │ │ │ │ ├── context.go │ │ │ │ │ ├── context_test.go │ │ │ │ │ ├── ctxhttp │ │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ │ │ └── ctxhttp_test.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── go19.go │ │ │ │ │ ├── pre_go17.go │ │ │ │ │ ├── pre_go19.go │ │ │ │ │ └── withtimeout_test.go │ │ │ │ ├── dict │ │ │ │ │ └── dict.go │ │ │ │ ├── dns │ │ │ │ │ └── dnsmessage │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── message.go │ │ │ │ │ │ └── message_test.go │ │ │ │ ├── html │ │ │ │ │ ├── atom │ │ │ │ │ │ ├── atom.go │ │ │ │ │ │ ├── atom_test.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── table.go │ │ │ │ │ │ └── table_test.go │ │ │ │ │ ├── charset │ │ │ │ │ │ ├── charset.go │ │ │ │ │ │ ├── charset_test.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ │ │ └── meta-content-attribute.html │ │ │ │ │ ├── const.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── doctype.go │ │ │ │ │ ├── entity.go │ │ │ │ │ ├── entity_test.go │ │ │ │ │ ├── escape.go │ │ │ │ │ ├── escape_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── foreign.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_test.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── parse_test.go │ │ │ │ │ ├── render.go │ │ │ │ │ ├── render_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── go1.html │ │ │ │ │ │ └── webkit │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ │ │ ├── comments01.dat │ │ │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ │ │ ├── entities01.dat │ │ │ │ │ │ │ ├── entities02.dat │ │ │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ │ │ ├── isindex.dat │ │ │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ │ │ ├── scripted │ │ │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ │ │ └── webkit01.dat │ │ │ │ │ │ │ ├── tables01.dat │ │ │ │ │ │ │ ├── tests1.dat │ │ │ │ │ │ │ ├── tests10.dat │ │ │ │ │ │ │ ├── tests11.dat │ │ │ │ │ │ │ ├── tests12.dat │ │ │ │ │ │ │ ├── tests14.dat │ │ │ │ │ │ │ ├── tests15.dat │ │ │ │ │ │ │ ├── tests16.dat │ │ │ │ │ │ │ ├── tests17.dat │ │ │ │ │ │ │ ├── tests18.dat │ │ │ │ │ │ │ ├── tests19.dat │ │ │ │ │ │ │ ├── tests2.dat │ │ │ │ │ │ │ ├── tests20.dat │ │ │ │ │ │ │ ├── tests21.dat │ │ │ │ │ │ │ ├── tests22.dat │ │ │ │ │ │ │ ├── tests23.dat │ │ │ │ │ │ │ ├── tests24.dat │ │ │ │ │ │ │ ├── tests25.dat │ │ │ │ │ │ │ ├── tests26.dat │ │ │ │ │ │ │ ├── tests3.dat │ │ │ │ │ │ │ ├── tests4.dat │ │ │ │ │ │ │ ├── tests5.dat │ │ │ │ │ │ │ ├── tests6.dat │ │ │ │ │ │ │ ├── tests7.dat │ │ │ │ │ │ │ ├── tests8.dat │ │ │ │ │ │ │ ├── tests9.dat │ │ │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ │ │ └── webkit02.dat │ │ │ │ │ ├── token.go │ │ │ │ │ └── token_test.go │ │ │ │ ├── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ciphers.go │ │ │ │ │ ├── ciphers_test.go │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ ├── configure_transport.go │ │ │ │ │ ├── databuffer.go │ │ │ │ │ ├── databuffer_test.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── errors_test.go │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── flow_test.go │ │ │ │ │ ├── frame.go │ │ │ │ │ ├── frame_test.go │ │ │ │ │ ├── go16.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── go17_not18.go │ │ │ │ │ ├── go18.go │ │ │ │ │ ├── go18_test.go │ │ │ │ │ ├── go19.go │ │ │ │ │ ├── go19_test.go │ │ │ │ │ ├── gotrack.go │ │ │ │ │ ├── gotrack_test.go │ │ │ │ │ ├── h2demo │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── h2demo.go │ │ │ │ │ │ ├── launch.go │ │ │ │ │ │ ├── rootCA.key │ │ │ │ │ │ ├── rootCA.pem │ │ │ │ │ │ ├── rootCA.srl │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ ├── server.key │ │ │ │ │ │ └── tmpl.go │ │ │ │ │ ├── h2i │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── h2i.go │ │ │ │ │ ├── headermap.go │ │ │ │ │ ├── hpack │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── encode_test.go │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ ├── hpack_test.go │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ └── tables_test.go │ │ │ │ │ ├── http2.go │ │ │ │ │ ├── http2_test.go │ │ │ │ │ ├── not_go16.go │ │ │ │ │ ├── not_go17.go │ │ │ │ │ ├── not_go18.go │ │ │ │ │ ├── not_go19.go │ │ │ │ │ ├── pipe.go │ │ │ │ │ ├── pipe_test.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_push_test.go │ │ │ │ │ ├── server_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── transport_test.go │ │ │ │ │ ├── write.go │ │ │ │ │ ├── writesched.go │ │ │ │ │ ├── writesched_priority.go │ │ │ │ │ ├── writesched_priority_test.go │ │ │ │ │ ├── writesched_random.go │ │ │ │ │ ├── writesched_random_test.go │ │ │ │ │ ├── writesched_test.go │ │ │ │ │ └── z_spec_test.go │ │ │ │ ├── icmp │ │ │ │ │ ├── dstunreach.go │ │ │ │ │ ├── echo.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── extension.go │ │ │ │ │ ├── extension_test.go │ │ │ │ │ ├── helper_posix.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── ipv4.go │ │ │ │ │ ├── ipv4_test.go │ │ │ │ │ ├── ipv6.go │ │ │ │ │ ├── listen_posix.go │ │ │ │ │ ├── listen_stub.go │ │ │ │ │ ├── message.go │ │ │ │ │ ├── message_test.go │ │ │ │ │ ├── messagebody.go │ │ │ │ │ ├── mpls.go │ │ │ │ │ ├── multipart.go │ │ │ │ │ ├── multipart_test.go │ │ │ │ │ ├── packettoobig.go │ │ │ │ │ ├── paramprob.go │ │ │ │ │ ├── ping_test.go │ │ │ │ │ ├── sys_freebsd.go │ │ │ │ │ └── timeexceeded.go │ │ │ │ ├── idna │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── idna.go │ │ │ │ │ ├── idna_test.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── punycode_test.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ │ ├── internal │ │ │ │ │ ├── iana │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ └── gen.go │ │ │ │ │ ├── nettest │ │ │ │ │ │ ├── helper_bsd.go │ │ │ │ │ │ ├── helper_nobsd.go │ │ │ │ │ │ ├── helper_posix.go │ │ │ │ │ │ ├── helper_stub.go │ │ │ │ │ │ ├── helper_unix.go │ │ │ │ │ │ ├── helper_windows.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── rlimit.go │ │ │ │ │ │ └── stack.go │ │ │ │ │ ├── socket │ │ │ │ │ │ ├── cmsghdr.go │ │ │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ │ │ ├── defs_darwin.go │ │ │ │ │ │ ├── defs_dragonfly.go │ │ │ │ │ │ ├── defs_freebsd.go │ │ │ │ │ │ ├── defs_linux.go │ │ │ │ │ │ ├── defs_netbsd.go │ │ │ │ │ │ ├── defs_openbsd.go │ │ │ │ │ │ ├── defs_solaris.go │ │ │ │ │ │ ├── error_unix.go │ │ │ │ │ │ ├── error_windows.go │ │ │ │ │ │ ├── iovec_32bit.go │ │ │ │ │ │ ├── iovec_64bit.go │ │ │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ │ │ ├── iovec_stub.go │ │ │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ │ │ ├── msghdr_bsd.go │ │ │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ │ │ ├── msghdr_linux.go │ │ │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ │ │ ├── msghdr_stub.go │ │ │ │ │ │ ├── rawconn.go │ │ │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ │ │ ├── rawconn_msg.go │ │ │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ │ │ ├── rawconn_stub.go │ │ │ │ │ │ ├── reflect.go │ │ │ │ │ │ ├── socket.go │ │ │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ │ │ ├── socket_test.go │ │ │ │ │ │ ├── sys.go │ │ │ │ │ │ ├── sys_bsd.go │ │ │ │ │ │ ├── sys_bsdvar.go │ │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ │ ├── sys_dragonfly.go │ │ │ │ │ │ ├── sys_linux.go │ │ │ │ │ │ ├── sys_linux_386.go │ │ │ │ │ │ ├── sys_linux_386.s │ │ │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ │ │ ├── sys_linux_arm.go │ │ │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ │ │ ├── sys_linux_mips.go │ │ │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ │ │ ├── sys_netbsd.go │ │ │ │ │ │ ├── sys_posix.go │ │ │ │ │ │ ├── sys_solaris.go │ │ │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ │ │ ├── sys_stub.go │ │ │ │ │ │ ├── sys_unix.go │ │ │ │ │ │ ├── sys_windows.go │ │ │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ │ │ ├── zsys_linux_386.go │ │ │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ │ │ └── zsys_solaris_amd64.go │ │ │ │ │ └── timeseries │ │ │ │ │ │ ├── timeseries.go │ │ │ │ │ │ └── timeseries_test.go │ │ │ │ ├── ipv4 │ │ │ │ │ ├── batch.go │ │ │ │ │ ├── bpf_test.go │ │ │ │ │ ├── control.go │ │ │ │ │ ├── control_bsd.go │ │ │ │ │ ├── control_pktinfo.go │ │ │ │ │ ├── control_stub.go │ │ │ │ │ ├── control_test.go │ │ │ │ │ ├── control_unix.go │ │ │ │ │ ├── control_windows.go │ │ │ │ │ ├── defs_darwin.go │ │ │ │ │ ├── defs_dragonfly.go │ │ │ │ │ ├── defs_freebsd.go │ │ │ │ │ ├── defs_linux.go │ │ │ │ │ ├── defs_netbsd.go │ │ │ │ │ ├── defs_openbsd.go │ │ │ │ │ ├── defs_solaris.go │ │ │ │ │ ├── dgramopt.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── genericopt.go │ │ │ │ │ ├── header.go │ │ │ │ │ ├── header_test.go │ │ │ │ │ ├── helper.go │ │ │ │ │ ├── iana.go │ │ │ │ │ ├── icmp.go │ │ │ │ │ ├── icmp_linux.go │ │ │ │ │ ├── icmp_stub.go │ │ │ │ │ ├── icmp_test.go │ │ │ │ │ ├── multicast_test.go │ │ │ │ │ ├── multicastlistener_test.go │ │ │ │ │ ├── multicastsockopt_test.go │ │ │ │ │ ├── packet.go │ │ │ │ │ ├── packet_go1_8.go │ │ │ │ │ ├── packet_go1_9.go │ │ │ │ │ ├── payload.go │ │ │ │ │ ├── payload_cmsg.go │ │ │ │ │ ├── payload_cmsg_go1_8.go │ │ │ │ │ ├── payload_cmsg_go1_9.go │ │ │ │ │ ├── payload_nocmsg.go │ │ │ │ │ ├── readwrite_go1_8_test.go │ │ │ │ │ ├── readwrite_go1_9_test.go │ │ │ │ │ ├── readwrite_test.go │ │ │ │ │ ├── sockopt.go │ │ │ │ │ ├── sockopt_posix.go │ │ │ │ │ ├── sockopt_stub.go │ │ │ │ │ ├── sys_asmreq.go │ │ │ │ │ ├── sys_asmreq_stub.go │ │ │ │ │ ├── sys_asmreqn.go │ │ │ │ │ ├── sys_asmreqn_stub.go │ │ │ │ │ ├── sys_bpf.go │ │ │ │ │ ├── sys_bpf_stub.go │ │ │ │ │ ├── sys_bsd.go │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ ├── sys_dragonfly.go │ │ │ │ │ ├── sys_freebsd.go │ │ │ │ │ ├── sys_linux.go │ │ │ │ │ ├── sys_solaris.go │ │ │ │ │ ├── sys_ssmreq.go │ │ │ │ │ ├── sys_ssmreq_stub.go │ │ │ │ │ ├── sys_stub.go │ │ │ │ │ ├── sys_windows.go │ │ │ │ │ ├── unicast_test.go │ │ │ │ │ ├── unicastsockopt_test.go │ │ │ │ │ ├── zsys_darwin.go │ │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ │ ├── zsys_linux_386.go │ │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ │ ├── zsys_linux_ppc.go │ │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ │ ├── zsys_netbsd.go │ │ │ │ │ ├── zsys_openbsd.go │ │ │ │ │ └── zsys_solaris.go │ │ │ │ ├── ipv6 │ │ │ │ │ ├── batch.go │ │ │ │ │ ├── bpf_test.go │ │ │ │ │ ├── control.go │ │ │ │ │ ├── control_rfc2292_unix.go │ │ │ │ │ ├── control_rfc3542_unix.go │ │ │ │ │ ├── control_stub.go │ │ │ │ │ ├── control_test.go │ │ │ │ │ ├── control_unix.go │ │ │ │ │ ├── control_windows.go │ │ │ │ │ ├── defs_darwin.go │ │ │ │ │ ├── defs_dragonfly.go │ │ │ │ │ ├── defs_freebsd.go │ │ │ │ │ ├── defs_linux.go │ │ │ │ │ ├── defs_netbsd.go │ │ │ │ │ ├── defs_openbsd.go │ │ │ │ │ ├── defs_solaris.go │ │ │ │ │ ├── dgramopt.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── genericopt.go │ │ │ │ │ ├── header.go │ │ │ │ │ ├── header_test.go │ │ │ │ │ ├── helper.go │ │ │ │ │ ├── iana.go │ │ │ │ │ ├── icmp.go │ │ │ │ │ ├── icmp_bsd.go │ │ │ │ │ ├── icmp_linux.go │ │ │ │ │ ├── icmp_solaris.go │ │ │ │ │ ├── icmp_stub.go │ │ │ │ │ ├── icmp_test.go │ │ │ │ │ ├── icmp_windows.go │ │ │ │ │ ├── mocktransponder_test.go │ │ │ │ │ ├── multicast_test.go │ │ │ │ │ ├── multicastlistener_test.go │ │ │ │ │ ├── multicastsockopt_test.go │ │ │ │ │ ├── payload.go │ │ │ │ │ ├── payload_cmsg.go │ │ │ │ │ ├── payload_cmsg_go1_8.go │ │ │ │ │ ├── payload_cmsg_go1_9.go │ │ │ │ │ ├── payload_nocmsg.go │ │ │ │ │ ├── readwrite_go1_8_test.go │ │ │ │ │ ├── readwrite_go1_9_test.go │ │ │ │ │ ├── readwrite_test.go │ │ │ │ │ ├── sockopt.go │ │ │ │ │ ├── sockopt_posix.go │ │ │ │ │ ├── sockopt_stub.go │ │ │ │ │ ├── sockopt_test.go │ │ │ │ │ ├── sys_asmreq.go │ │ │ │ │ ├── sys_asmreq_stub.go │ │ │ │ │ ├── sys_bpf.go │ │ │ │ │ ├── sys_bpf_stub.go │ │ │ │ │ ├── sys_bsd.go │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ ├── sys_freebsd.go │ │ │ │ │ ├── sys_linux.go │ │ │ │ │ ├── sys_solaris.go │ │ │ │ │ ├── sys_ssmreq.go │ │ │ │ │ ├── sys_ssmreq_stub.go │ │ │ │ │ ├── sys_stub.go │ │ │ │ │ ├── sys_windows.go │ │ │ │ │ ├── unicast_test.go │ │ │ │ │ ├── unicastsockopt_test.go │ │ │ │ │ ├── zsys_darwin.go │ │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ │ ├── zsys_linux_386.go │ │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ │ ├── zsys_linux_ppc.go │ │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ │ ├── zsys_netbsd.go │ │ │ │ │ ├── zsys_openbsd.go │ │ │ │ │ └── zsys_solaris.go │ │ │ │ ├── lex │ │ │ │ │ └── httplex │ │ │ │ │ │ ├── httplex.go │ │ │ │ │ │ └── httplex_test.go │ │ │ │ ├── lif │ │ │ │ │ ├── address.go │ │ │ │ │ ├── address_test.go │ │ │ │ │ ├── binary.go │ │ │ │ │ ├── defs_solaris.go │ │ │ │ │ ├── lif.go │ │ │ │ │ ├── link.go │ │ │ │ │ ├── link_test.go │ │ │ │ │ ├── sys.go │ │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ │ ├── syscall.go │ │ │ │ │ └── zsys_solaris_amd64.go │ │ │ │ ├── nettest │ │ │ │ │ ├── conntest.go │ │ │ │ │ ├── conntest_go16.go │ │ │ │ │ ├── conntest_go17.go │ │ │ │ │ └── conntest_test.go │ │ │ │ ├── netutil │ │ │ │ │ ├── listen.go │ │ │ │ │ └── listen_test.go │ │ │ │ ├── proxy │ │ │ │ │ ├── direct.go │ │ │ │ │ ├── per_host.go │ │ │ │ │ ├── per_host_test.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── proxy_test.go │ │ │ │ │ └── socks5.go │ │ │ │ ├── publicsuffix │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── list.go │ │ │ │ │ ├── list_test.go │ │ │ │ │ ├── table.go │ │ │ │ │ └── table_test.go │ │ │ │ ├── route │ │ │ │ │ ├── address.go │ │ │ │ │ ├── address_darwin_test.go │ │ │ │ │ ├── address_test.go │ │ │ │ │ ├── binary.go │ │ │ │ │ ├── defs_darwin.go │ │ │ │ │ ├── defs_dragonfly.go │ │ │ │ │ ├── defs_freebsd.go │ │ │ │ │ ├── defs_netbsd.go │ │ │ │ │ ├── defs_openbsd.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── interface_announce.go │ │ │ │ │ ├── interface_classic.go │ │ │ │ │ ├── interface_freebsd.go │ │ │ │ │ ├── interface_multicast.go │ │ │ │ │ ├── interface_openbsd.go │ │ │ │ │ ├── message.go │ │ │ │ │ ├── message_darwin_test.go │ │ │ │ │ ├── message_freebsd_test.go │ │ │ │ │ ├── message_test.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── route_classic.go │ │ │ │ │ ├── route_openbsd.go │ │ │ │ │ ├── route_test.go │ │ │ │ │ ├── sys.go │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ ├── sys_dragonfly.go │ │ │ │ │ ├── sys_freebsd.go │ │ │ │ │ ├── sys_netbsd.go │ │ │ │ │ ├── sys_openbsd.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── zsys_darwin.go │ │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ │ ├── zsys_netbsd.go │ │ │ │ │ └── zsys_openbsd.go │ │ │ │ ├── trace │ │ │ │ │ ├── events.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── histogram_test.go │ │ │ │ │ ├── trace.go │ │ │ │ │ ├── trace_go16.go │ │ │ │ │ ├── trace_go17.go │ │ │ │ │ └── trace_test.go │ │ │ │ ├── webdav │ │ │ │ │ ├── file.go │ │ │ │ │ ├── file_go1.6.go │ │ │ │ │ ├── file_go1.7.go │ │ │ │ │ ├── file_test.go │ │ │ │ │ ├── if.go │ │ │ │ │ ├── if_test.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── atom_test.go │ │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ │ ├── marshal.go │ │ │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ │ │ ├── read.go │ │ │ │ │ │ │ ├── read_test.go │ │ │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ │ │ ├── xml.go │ │ │ │ │ │ │ └── xml_test.go │ │ │ │ │ ├── litmus_test_server.go │ │ │ │ │ ├── lock.go │ │ │ │ │ ├── lock_test.go │ │ │ │ │ ├── prop.go │ │ │ │ │ ├── prop_test.go │ │ │ │ │ ├── webdav.go │ │ │ │ │ ├── webdav_test.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ │ ├── websocket │ │ │ │ │ ├── client.go │ │ │ │ │ ├── dial.go │ │ │ │ │ ├── dial_test.go │ │ │ │ │ ├── exampledial_test.go │ │ │ │ │ ├── examplehandler_test.go │ │ │ │ │ ├── hybi.go │ │ │ │ │ ├── hybi_test.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── websocket.go │ │ │ │ │ └── websocket_test.go │ │ │ │ └── xsrftoken │ │ │ │ │ ├── xsrf.go │ │ │ │ │ └── xsrf_test.go │ │ │ │ └── sys │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── README.md │ │ │ │ ├── codereview.cfg │ │ │ │ ├── plan9 │ │ │ │ ├── asm.s │ │ │ │ ├── asm_plan9_386.s │ │ │ │ ├── asm_plan9_amd64.s │ │ │ │ ├── const_plan9.go │ │ │ │ ├── dir_plan9.go │ │ │ │ ├── env_plan9.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── errors_plan9.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mksyscall.pl │ │ │ │ ├── mksysnum_plan9.sh │ │ │ │ ├── pwd_go15_plan9.go │ │ │ │ ├── pwd_plan9.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_plan9.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── zsyscall_plan9_386.go │ │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ │ └── zsysnum_plan9.go │ │ │ │ ├── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── creds_test.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_darwin_test.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_dragonfly_test.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_linux_test.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_netbsd_test.go │ │ │ │ ├── dev_openbsd.go │ │ │ │ ├── dev_openbsd_test.go │ │ │ │ ├── dev_solaris_test.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ ├── export_test.go │ │ │ │ ├── file_unix.go │ │ │ │ ├── flock.go │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── linux │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── mkall.go │ │ │ │ │ ├── mksysnum.pl │ │ │ │ │ └── types.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mkpost.go │ │ │ │ ├── mksyscall.pl │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ ├── mmap_unix_test.go │ │ │ │ ├── openbsd_pledge.go │ │ │ │ ├── openbsd_test.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_bsd_test.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_freebsd_test.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_linux_test.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_solaris_test.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── syscall_unix_test.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_dragonfly.go │ │ │ │ ├── types_freebsd.go │ │ │ │ ├── types_netbsd.go │ │ │ │ ├── types_openbsd.go │ │ │ │ ├── types_solaris.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ └── windows │ │ │ │ ├── asm_windows_386.s │ │ │ │ ├── asm_windows_amd64.s │ │ │ │ ├── dll_windows.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── env_windows.go │ │ │ │ ├── eventlog.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── memory_windows.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── registry │ │ │ │ ├── export_test.go │ │ │ │ ├── key.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── syscall.go │ │ │ │ ├── value.go │ │ │ │ └── zsyscall_windows.go │ │ │ │ ├── security_windows.go │ │ │ │ ├── service.go │ │ │ │ ├── str.go │ │ │ │ ├── svc │ │ │ │ ├── debug │ │ │ │ │ ├── log.go │ │ │ │ │ └── service.go │ │ │ │ ├── event.go │ │ │ │ ├── eventlog │ │ │ │ │ ├── install.go │ │ │ │ │ ├── log.go │ │ │ │ │ └── log_test.go │ │ │ │ ├── example │ │ │ │ │ ├── beep.go │ │ │ │ │ ├── install.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── manage.go │ │ │ │ │ └── service.go │ │ │ │ ├── go12.c │ │ │ │ ├── go12.go │ │ │ │ ├── go13.go │ │ │ │ ├── mgr │ │ │ │ │ ├── config.go │ │ │ │ │ ├── mgr.go │ │ │ │ │ ├── mgr_test.go │ │ │ │ │ └── service.go │ │ │ │ ├── security.go │ │ │ │ ├── service.go │ │ │ │ ├── svc_test.go │ │ │ │ ├── sys_386.s │ │ │ │ └── sys_amd64.s │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── syscall_windows_test.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── types_windows_386.go │ │ │ │ ├── types_windows_amd64.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── gopkg.in │ │ │ ├── alecthomas │ │ │ └── kingpin.v2 │ │ │ │ ├── .travis.yml │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ ├── _examples │ │ │ │ ├── chat1 │ │ │ │ │ └── main.go │ │ │ │ ├── chat2 │ │ │ │ │ └── main.go │ │ │ │ ├── completion │ │ │ │ │ └── main.go │ │ │ │ ├── curl │ │ │ │ │ └── main.go │ │ │ │ ├── modular │ │ │ │ │ └── main.go │ │ │ │ └── ping │ │ │ │ │ └── main.go │ │ │ │ ├── actions.go │ │ │ │ ├── app.go │ │ │ │ ├── app_test.go │ │ │ │ ├── args.go │ │ │ │ ├── args_test.go │ │ │ │ ├── cmd.go │ │ │ │ ├── cmd │ │ │ │ └── genvalues │ │ │ │ │ └── main.go │ │ │ │ ├── cmd_test.go │ │ │ │ ├── completions.go │ │ │ │ ├── completions_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── envar.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── flags.go │ │ │ │ ├── flags_test.go │ │ │ │ ├── global.go │ │ │ │ ├── guesswidth.go │ │ │ │ ├── guesswidth_unix.go │ │ │ │ ├── model.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ ├── parsers.go │ │ │ │ ├── parsers_test.go │ │ │ │ ├── templates.go │ │ │ │ ├── usage.go │ │ │ │ ├── usage_test.go │ │ │ │ ├── values.go │ │ │ │ ├── values.json │ │ │ │ ├── values_generated.go │ │ │ │ └── values_test.go │ │ │ └── fsnotify.v1 │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example_test.go │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── fsnotify_test.go │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── inotify_poller_test.go │ │ │ ├── inotify_test.go │ │ │ ├── integration_darwin_test.go │ │ │ ├── integration_test.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ └── vistio │ │ └── main.go ├── config │ ├── config.go │ ├── config_test.go │ └── testdata │ │ ├── good_full.yaml │ │ └── good_simple.yaml ├── model │ ├── snapshot.go │ ├── snapshot_test.go │ ├── vizceral.go │ └── vizceral_test.go ├── retrieval │ ├── generator.go │ ├── generator_test.go │ ├── promquery.go │ ├── promquery_test.go │ ├── retriever.go │ └── retriever_test.go ├── storage │ ├── chunk.go │ ├── chunk_test.go │ ├── interface.go │ ├── storage.go │ ├── storage_test.go │ └── storagemock │ │ └── Storage.go ├── vendor │ ├── github.com │ │ ├── alecthomas │ │ │ ├── template │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── examplefiles_test.go │ │ │ │ ├── examplefunc_test.go │ │ │ │ ├── exec.go │ │ │ │ ├── exec_test.go │ │ │ │ ├── funcs.go │ │ │ │ ├── helper.go │ │ │ │ ├── multi_test.go │ │ │ │ ├── parse │ │ │ │ │ ├── lex.go │ │ │ │ │ ├── lex_test.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── parse.go │ │ │ │ │ └── parse_test.go │ │ │ │ ├── template.go │ │ │ │ └── testdata │ │ │ │ │ ├── file1.tmpl │ │ │ │ │ ├── file2.tmpl │ │ │ │ │ ├── tmpl1.tmpl │ │ │ │ │ └── tmpl2.tmpl │ │ │ └── units │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ ├── bytes.go │ │ │ │ ├── bytes_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── si.go │ │ │ │ └── util.go │ │ ├── beorn7 │ │ │ └── perks │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── histogram │ │ │ │ ├── bench_test.go │ │ │ │ ├── histogram.go │ │ │ │ └── histogram_test.go │ │ │ │ ├── quantile │ │ │ │ ├── bench_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── exampledata.txt │ │ │ │ ├── stream.go │ │ │ │ └── stream_test.go │ │ │ │ └── topk │ │ │ │ ├── topk.go │ │ │ │ └── topk_test.go │ │ ├── cenkalti │ │ │ └── backoff │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── backoff.go │ │ │ │ ├── backoff_test.go │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── exponential.go │ │ │ │ ├── exponential_test.go │ │ │ │ ├── retry.go │ │ │ │ ├── retry_test.go │ │ │ │ ├── ticker.go │ │ │ │ ├── ticker_test.go │ │ │ │ ├── tries.go │ │ │ │ └── tries_test.go │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── cov_report.sh │ │ │ │ ├── spew │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── common_test.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── dump_test.go │ │ │ │ ├── dumpcgo_test.go │ │ │ │ ├── dumpnocgo_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── format.go │ │ │ │ ├── format_test.go │ │ │ │ ├── internal_test.go │ │ │ │ ├── internalunsafe_test.go │ │ │ │ ├── spew.go │ │ │ │ ├── spew_test.go │ │ │ │ └── testdata │ │ │ │ │ └── dumpcgo.go │ │ │ │ └── test_coverage.txt │ │ ├── golang │ │ │ └── protobuf │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── conformance │ │ │ │ ├── Makefile │ │ │ │ ├── conformance.go │ │ │ │ ├── conformance.sh │ │ │ │ ├── failure_list_go.txt │ │ │ │ ├── internal │ │ │ │ │ └── conformance_proto │ │ │ │ │ │ ├── conformance.pb.go │ │ │ │ │ │ └── conformance.proto │ │ │ │ └── test.sh │ │ │ │ ├── descriptor │ │ │ │ ├── descriptor.go │ │ │ │ └── descriptor_test.go │ │ │ │ ├── jsonpb │ │ │ │ ├── jsonpb.go │ │ │ │ ├── jsonpb_test.go │ │ │ │ └── jsonpb_test_proto │ │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ │ ├── more_test_objects.proto │ │ │ │ │ ├── test_objects.pb.go │ │ │ │ │ └── test_objects.proto │ │ │ │ ├── proto │ │ │ │ ├── all_test.go │ │ │ │ ├── any_test.go │ │ │ │ ├── clone.go │ │ │ │ ├── clone_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── discard.go │ │ │ │ ├── discard_test.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── equal.go │ │ │ │ ├── equal_test.go │ │ │ │ ├── extensions.go │ │ │ │ ├── extensions_test.go │ │ │ │ ├── lib.go │ │ │ │ ├── map_test.go │ │ │ │ ├── message_set.go │ │ │ │ ├── message_set_test.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto3_proto │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── proto3.proto │ │ │ │ ├── proto3_test.go │ │ │ │ ├── size2_test.go │ │ │ │ ├── size_test.go │ │ │ │ ├── table_marshal.go │ │ │ │ ├── table_merge.go │ │ │ │ ├── table_unmarshal.go │ │ │ │ ├── test_proto │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ ├── text.go │ │ │ │ ├── text_parser.go │ │ │ │ ├── text_parser_test.go │ │ │ │ └── text_test.go │ │ │ │ ├── protoc-gen-go │ │ │ │ ├── descriptor │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ └── descriptor.proto │ │ │ │ ├── doc.go │ │ │ │ ├── generator │ │ │ │ │ ├── generator.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── remap │ │ │ │ │ │ │ ├── remap.go │ │ │ │ │ │ │ └── remap_test.go │ │ │ │ │ └── name_test.go │ │ │ │ ├── golden_test.go │ │ │ │ ├── grpc │ │ │ │ │ └── grpc.go │ │ │ │ ├── link_grpc.go │ │ │ │ ├── main.go │ │ │ │ ├── plugin │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ ├── plugin.pb.golden │ │ │ │ │ └── plugin.proto │ │ │ │ └── testdata │ │ │ │ │ ├── deprecated │ │ │ │ │ ├── deprecated.pb.go │ │ │ │ │ └── deprecated.proto │ │ │ │ │ ├── extension_base │ │ │ │ │ ├── extension_base.pb.go │ │ │ │ │ └── extension_base.proto │ │ │ │ │ ├── extension_extra │ │ │ │ │ ├── extension_extra.pb.go │ │ │ │ │ └── extension_extra.proto │ │ │ │ │ ├── extension_test.go │ │ │ │ │ ├── extension_user │ │ │ │ │ ├── extension_user.pb.go │ │ │ │ │ └── extension_user.proto │ │ │ │ │ ├── grpc │ │ │ │ │ ├── grpc.pb.go │ │ │ │ │ └── grpc.proto │ │ │ │ │ ├── import_public │ │ │ │ │ ├── a.pb.go │ │ │ │ │ ├── a.proto │ │ │ │ │ ├── b.pb.go │ │ │ │ │ ├── b.proto │ │ │ │ │ └── sub │ │ │ │ │ │ ├── a.pb.go │ │ │ │ │ │ ├── a.proto │ │ │ │ │ │ ├── b.pb.go │ │ │ │ │ │ └── b.proto │ │ │ │ │ ├── import_public_test.go │ │ │ │ │ ├── imports │ │ │ │ │ ├── fmt │ │ │ │ │ │ ├── m.pb.go │ │ │ │ │ │ └── m.proto │ │ │ │ │ ├── test_a_1 │ │ │ │ │ │ ├── m1.pb.go │ │ │ │ │ │ ├── m1.proto │ │ │ │ │ │ ├── m2.pb.go │ │ │ │ │ │ └── m2.proto │ │ │ │ │ ├── test_a_2 │ │ │ │ │ │ ├── m3.pb.go │ │ │ │ │ │ ├── m3.proto │ │ │ │ │ │ ├── m4.pb.go │ │ │ │ │ │ └── m4.proto │ │ │ │ │ ├── test_b_1 │ │ │ │ │ │ ├── m1.pb.go │ │ │ │ │ │ ├── m1.proto │ │ │ │ │ │ ├── m2.pb.go │ │ │ │ │ │ └── m2.proto │ │ │ │ │ ├── test_import_a1m1.pb.go │ │ │ │ │ ├── test_import_a1m1.proto │ │ │ │ │ ├── test_import_a1m2.pb.go │ │ │ │ │ ├── test_import_a1m2.proto │ │ │ │ │ ├── test_import_all.pb.go │ │ │ │ │ └── test_import_all.proto │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── multi │ │ │ │ │ ├── multi1.pb.go │ │ │ │ │ ├── multi1.proto │ │ │ │ │ ├── multi2.pb.go │ │ │ │ │ ├── multi2.proto │ │ │ │ │ ├── multi3.pb.go │ │ │ │ │ └── multi3.proto │ │ │ │ │ ├── my_test │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ │ └── proto3 │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── proto3.proto │ │ │ │ ├── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ │ ├── any.pb.go │ │ │ │ │ └── any.proto │ │ │ │ ├── any_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ │ ├── duration.pb.go │ │ │ │ │ └── duration.proto │ │ │ │ ├── duration_test.go │ │ │ │ ├── empty │ │ │ │ │ ├── empty.pb.go │ │ │ │ │ └── empty.proto │ │ │ │ ├── struct │ │ │ │ │ ├── struct.pb.go │ │ │ │ │ └── struct.proto │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp │ │ │ │ │ ├── timestamp.pb.go │ │ │ │ │ └── timestamp.proto │ │ │ │ ├── timestamp_test.go │ │ │ │ └── wrappers │ │ │ │ │ ├── wrappers.pb.go │ │ │ │ │ └── wrappers.proto │ │ │ │ └── regenerate.sh │ │ ├── matttproud │ │ │ └── golang_protobuf_extensions │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.TRAVIS │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── ext │ │ │ │ └── moved.go │ │ │ │ ├── pbtest │ │ │ │ └── deleted.go │ │ │ │ ├── pbutil │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── all_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ └── encode_test.go │ │ │ │ └── testdata │ │ │ │ ├── README.THIRD_PARTY │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ ├── pmezard │ │ │ └── go-difflib │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── difflib │ │ │ │ ├── difflib.go │ │ │ │ └── difflib_test.go │ │ ├── prometheus │ │ │ ├── client_golang │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS.md │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── VERSION │ │ │ │ ├── api │ │ │ │ │ └── prometheus │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ └── api_test.go │ │ │ │ ├── examples │ │ │ │ │ ├── random │ │ │ │ │ │ └── main.go │ │ │ │ │ └── simple │ │ │ │ │ │ └── main.go │ │ │ │ └── prometheus │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── benchmark_test.go │ │ │ │ │ ├── collector.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── counter_test.go │ │ │ │ │ ├── desc.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── example_clustermanager_test.go │ │ │ │ │ ├── examples_test.go │ │ │ │ │ ├── expvar_collector.go │ │ │ │ │ ├── expvar_collector_test.go │ │ │ │ │ ├── fnv.go │ │ │ │ │ ├── gauge.go │ │ │ │ │ ├── gauge_test.go │ │ │ │ │ ├── go_collector.go │ │ │ │ │ ├── go_collector_test.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── histogram_test.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── http_test.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── metric_test.go │ │ │ │ │ ├── process_collector.go │ │ │ │ │ ├── process_collector_test.go │ │ │ │ │ ├── promhttp │ │ │ │ │ ├── http.go │ │ │ │ │ └── http_test.go │ │ │ │ │ ├── push │ │ │ │ │ ├── examples_test.go │ │ │ │ │ ├── push.go │ │ │ │ │ └── push_test.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── registry_test.go │ │ │ │ │ ├── summary.go │ │ │ │ │ ├── summary_test.go │ │ │ │ │ ├── untyped.go │ │ │ │ │ ├── value.go │ │ │ │ │ ├── vec.go │ │ │ │ │ └── vec_test.go │ │ │ ├── client_model │ │ │ │ ├── .gitignore │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── MAINTAINERS.md │ │ │ │ ├── Makefile │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── cpp │ │ │ │ │ ├── metrics.pb.cc │ │ │ │ │ └── metrics.pb.h │ │ │ │ ├── go │ │ │ │ │ └── metrics.pb.go │ │ │ │ ├── metrics.proto │ │ │ │ ├── pom.xml │ │ │ │ ├── python │ │ │ │ │ └── prometheus │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── client │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── metrics_pb2.py │ │ │ │ ├── ruby │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Gemfile │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Rakefile │ │ │ │ │ ├── lib │ │ │ │ │ │ └── prometheus │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ ├── model.rb │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── metrics.pb.rb │ │ │ │ │ │ │ └── version.rb │ │ │ │ │ └── prometheus-client-model.gemspec │ │ │ │ ├── setup.py │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── prometheus │ │ │ │ │ └── client │ │ │ │ │ └── Metrics.java │ │ │ ├── common │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── MAINTAINERS.md │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ ├── http_config.go │ │ │ │ │ ├── http_config_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── barney-no-pass.key │ │ │ │ │ │ ├── barney.crt │ │ │ │ │ │ ├── basic-auth-password │ │ │ │ │ │ ├── bearer.token │ │ │ │ │ │ ├── http.conf.basic-auth.good.yaml │ │ │ │ │ │ ├── http.conf.basic-auth.no-password.yaml │ │ │ │ │ │ ├── http.conf.basic-auth.no-username.yaml │ │ │ │ │ │ ├── http.conf.basic-auth.too-much.bad.yaml │ │ │ │ │ │ ├── http.conf.bearer-token-and-file-set.bad.yml │ │ │ │ │ │ ├── http.conf.empty.bad.yml │ │ │ │ │ │ ├── http.conf.good.yml │ │ │ │ │ │ ├── http.conf.invalid-bearer-token-file.bad.yml │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ ├── server.key │ │ │ │ │ │ ├── tls-ca-chain.pem │ │ │ │ │ │ ├── tls_config.cert_no_key.bad.yml │ │ │ │ │ │ ├── tls_config.empty.good.yml │ │ │ │ │ │ ├── tls_config.insecure.good.yml │ │ │ │ │ │ ├── tls_config.invalid_field.bad.yml │ │ │ │ │ │ └── tls_config.key_no_cert.bad.yml │ │ │ │ │ └── tls_config_test.go │ │ │ │ ├── expfmt │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_test.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── expfmt.go │ │ │ │ │ ├── fuzz.go │ │ │ │ │ ├── fuzz │ │ │ │ │ │ └── corpus │ │ │ │ │ │ │ ├── from_test_parse_0 │ │ │ │ │ │ │ ├── from_test_parse_1 │ │ │ │ │ │ │ ├── from_test_parse_2 │ │ │ │ │ │ │ ├── from_test_parse_3 │ │ │ │ │ │ │ ├── from_test_parse_4 │ │ │ │ │ │ │ ├── from_test_parse_error_0 │ │ │ │ │ │ │ ├── from_test_parse_error_1 │ │ │ │ │ │ │ ├── from_test_parse_error_10 │ │ │ │ │ │ │ ├── from_test_parse_error_11 │ │ │ │ │ │ │ ├── from_test_parse_error_12 │ │ │ │ │ │ │ ├── from_test_parse_error_13 │ │ │ │ │ │ │ ├── from_test_parse_error_14 │ │ │ │ │ │ │ ├── from_test_parse_error_15 │ │ │ │ │ │ │ ├── from_test_parse_error_16 │ │ │ │ │ │ │ ├── from_test_parse_error_17 │ │ │ │ │ │ │ ├── from_test_parse_error_18 │ │ │ │ │ │ │ ├── from_test_parse_error_19 │ │ │ │ │ │ │ ├── from_test_parse_error_2 │ │ │ │ │ │ │ ├── from_test_parse_error_3 │ │ │ │ │ │ │ ├── from_test_parse_error_4 │ │ │ │ │ │ │ ├── from_test_parse_error_5 │ │ │ │ │ │ │ ├── from_test_parse_error_6 │ │ │ │ │ │ │ ├── from_test_parse_error_7 │ │ │ │ │ │ │ ├── from_test_parse_error_8 │ │ │ │ │ │ │ ├── from_test_parse_error_9 │ │ │ │ │ │ │ └── minimal │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── json2 │ │ │ │ │ │ ├── json2_bad │ │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── protobuf.gz │ │ │ │ │ │ ├── text │ │ │ │ │ │ └── text.gz │ │ │ │ │ ├── text_create.go │ │ │ │ │ ├── text_create_test.go │ │ │ │ │ ├── text_parse.go │ │ │ │ │ └── text_parse_test.go │ │ │ │ ├── internal │ │ │ │ │ └── bitbucket.org │ │ │ │ │ │ └── ww │ │ │ │ │ │ └── goautoneg │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── autoneg.go │ │ │ │ │ │ └── autoneg_test.go │ │ │ │ ├── log │ │ │ │ │ ├── eventlog_formatter.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── log_test.go │ │ │ │ │ ├── syslog_formatter.go │ │ │ │ │ └── syslog_formatter_test.go │ │ │ │ ├── model │ │ │ │ │ ├── alert.go │ │ │ │ │ ├── alert_test.go │ │ │ │ │ ├── fingerprinting.go │ │ │ │ │ ├── fnv.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── labels_test.go │ │ │ │ │ ├── labelset.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── metric_test.go │ │ │ │ │ ├── model.go │ │ │ │ │ ├── signature.go │ │ │ │ │ ├── signature_test.go │ │ │ │ │ ├── silence.go │ │ │ │ │ ├── silence_test.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_test.go │ │ │ │ │ ├── value.go │ │ │ │ │ └── value_test.go │ │ │ │ ├── promlog │ │ │ │ │ ├── flag │ │ │ │ │ │ └── flag.go │ │ │ │ │ └── log.go │ │ │ │ ├── route │ │ │ │ │ ├── route.go │ │ │ │ │ └── route_test.go │ │ │ │ └── version │ │ │ │ │ └── info.go │ │ │ └── procfs │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── MAINTAINERS.md │ │ │ │ ├── Makefile │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── bcache │ │ │ │ ├── bcache.go │ │ │ │ ├── get.go │ │ │ │ └── get_test.go │ │ │ │ ├── buddyinfo.go │ │ │ │ ├── buddyinfo_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── fixtures.ttar │ │ │ │ ├── fs.go │ │ │ │ ├── fs_test.go │ │ │ │ ├── internal │ │ │ │ └── util │ │ │ │ │ └── parse.go │ │ │ │ ├── ipvs.go │ │ │ │ ├── ipvs_test.go │ │ │ │ ├── mdstat.go │ │ │ │ ├── mdstat_test.go │ │ │ │ ├── mountstats.go │ │ │ │ ├── mountstats_test.go │ │ │ │ ├── net_dev.go │ │ │ │ ├── net_dev_test.go │ │ │ │ ├── nfs │ │ │ │ ├── nfs.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_nfs.go │ │ │ │ ├── parse_nfs_test.go │ │ │ │ ├── parse_nfsd.go │ │ │ │ └── parse_nfsd_test.go │ │ │ │ ├── proc.go │ │ │ │ ├── proc_io.go │ │ │ │ ├── proc_io_test.go │ │ │ │ ├── proc_limits.go │ │ │ │ ├── proc_limits_test.go │ │ │ │ ├── proc_ns.go │ │ │ │ ├── proc_ns_test.go │ │ │ │ ├── proc_stat.go │ │ │ │ ├── proc_stat_test.go │ │ │ │ ├── proc_test.go │ │ │ │ ├── scripts │ │ │ │ └── check_license.sh │ │ │ │ ├── stat.go │ │ │ │ ├── stat_test.go │ │ │ │ ├── sysfs │ │ │ │ ├── .gitignore │ │ │ │ ├── doc.go │ │ │ │ ├── fixtures.ttar │ │ │ │ ├── fs.go │ │ │ │ ├── fs_test.go │ │ │ │ ├── net_class.go │ │ │ │ └── net_class_test.go │ │ │ │ ├── ttar │ │ │ │ ├── xfrm.go │ │ │ │ ├── xfrm_test.go │ │ │ │ └── xfs │ │ │ │ ├── parse.go │ │ │ │ ├── parse_test.go │ │ │ │ └── xfs.go │ │ ├── rs │ │ │ └── cors │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bench_test.go │ │ │ │ ├── cors.go │ │ │ │ ├── cors_test.go │ │ │ │ ├── examples │ │ │ │ ├── alice │ │ │ │ │ └── server.go │ │ │ │ ├── buffalo │ │ │ │ │ └── server.go │ │ │ │ ├── default │ │ │ │ │ └── server.go │ │ │ │ ├── gin │ │ │ │ │ └── server.go │ │ │ │ ├── goji │ │ │ │ │ └── server.go │ │ │ │ ├── gorilla │ │ │ │ │ └── server.go │ │ │ │ ├── httprouter │ │ │ │ │ └── server.go │ │ │ │ ├── martini │ │ │ │ │ └── server.go │ │ │ │ ├── negroni │ │ │ │ │ └── server.go │ │ │ │ ├── nethttp │ │ │ │ │ └── server.go │ │ │ │ └── openbar │ │ │ │ │ └── server.go │ │ │ │ ├── go.mod │ │ │ │ ├── utils.go │ │ │ │ ├── utils_test.go │ │ │ │ └── wrapper │ │ │ │ └── gin │ │ │ │ ├── gin.go │ │ │ │ └── gin_test.go │ │ └── stretchr │ │ │ ├── objx │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Taskfile.yml │ │ │ ├── accessors.go │ │ │ ├── accessors_test.go │ │ │ ├── codegen │ │ │ │ ├── array-access.txt │ │ │ │ ├── index.html │ │ │ │ ├── template.txt │ │ │ │ ├── template_test.txt │ │ │ │ └── types_list.txt │ │ │ ├── constants.go │ │ │ ├── conversions.go │ │ │ ├── conversions_test.go │ │ │ ├── doc.go │ │ │ ├── fixture_test.go │ │ │ ├── map.go │ │ │ ├── map_for_test.go │ │ │ ├── map_test.go │ │ │ ├── mutations.go │ │ │ ├── mutations_test.go │ │ │ ├── security.go │ │ │ ├── security_test.go │ │ │ ├── simple_example_test.go │ │ │ ├── tests.go │ │ │ ├── tests_test.go │ │ │ ├── type_specific_codegen.go │ │ │ ├── type_specific_codegen_test.go │ │ │ ├── value.go │ │ │ └── value_test.go │ │ │ └── testify │ │ │ ├── .gitignore │ │ │ ├── .travis.gofmt.sh │ │ │ ├── .travis.gogenerate.sh │ │ │ ├── .travis.govet.sh │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _codegen │ │ │ └── main.go │ │ │ ├── assert │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertions.go │ │ │ ├── assertions_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── forward_assertions_test.go │ │ │ ├── http_assertions.go │ │ │ └── http_assertions_test.go │ │ │ ├── doc.go │ │ │ ├── http │ │ │ ├── doc.go │ │ │ ├── test_response_writer.go │ │ │ └── test_round_tripper.go │ │ │ ├── mock │ │ │ ├── doc.go │ │ │ ├── mock.go │ │ │ └── mock_test.go │ │ │ ├── package_test.go │ │ │ ├── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── forward_requirements_test.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ ├── requirements.go │ │ │ └── requirements_test.go │ │ │ └── suite │ │ │ ├── doc.go │ │ │ ├── interfaces.go │ │ │ ├── suite.go │ │ │ └── suite_test.go │ ├── go.uber.org │ │ ├── atomic │ │ │ ├── .codecov.yml │ │ │ ├── .github │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── atomic.go │ │ │ ├── atomic_test.go │ │ │ ├── example_test.go │ │ │ ├── glide.lock │ │ │ ├── glide.yaml │ │ │ ├── scripts │ │ │ │ ├── cover.sh │ │ │ │ └── test-ubergo.sh │ │ │ ├── stress_test.go │ │ │ ├── string.go │ │ │ └── string_test.go │ │ ├── multierr │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── benchmarks_test.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── example_test.go │ │ │ ├── glide.lock │ │ │ ├── glide.yaml │ │ │ └── scripts │ │ │ │ └── cover.sh │ │ └── zap │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .readme.tmpl │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FAQ.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── array.go │ │ │ ├── array_test.go │ │ │ ├── benchmarks │ │ │ ├── apex_test.go │ │ │ ├── doc.go │ │ │ ├── kit_test.go │ │ │ ├── lion_test.go │ │ │ ├── log15_test.go │ │ │ ├── logrus_test.go │ │ │ ├── scenario_bench_test.go │ │ │ ├── zap_test.go │ │ │ └── zerolog_test.go │ │ │ ├── buffer │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── pool.go │ │ │ └── pool_test.go │ │ │ ├── check_license.sh │ │ │ ├── common_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── encoder_test.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── example_test.go │ │ │ ├── field.go │ │ │ ├── field_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── glide.lock │ │ │ ├── glide.yaml │ │ │ ├── global.go │ │ │ ├── global_test.go │ │ │ ├── http_handler.go │ │ │ ├── http_handler_test.go │ │ │ ├── internal │ │ │ ├── bufferpool │ │ │ │ └── bufferpool.go │ │ │ ├── color │ │ │ │ ├── color.go │ │ │ │ └── color_test.go │ │ │ ├── exit │ │ │ │ ├── exit.go │ │ │ │ └── exit_test.go │ │ │ ├── readme │ │ │ │ └── readme.go │ │ │ └── ztest │ │ │ │ ├── doc.go │ │ │ │ ├── timeout.go │ │ │ │ └── writer.go │ │ │ ├── level.go │ │ │ ├── level_test.go │ │ │ ├── logger.go │ │ │ ├── logger_bench_test.go │ │ │ ├── logger_test.go │ │ │ ├── options.go │ │ │ ├── scripts │ │ │ └── cover.sh │ │ │ ├── stacktrace.go │ │ │ ├── stacktrace_ext_test.go │ │ │ ├── stacktrace_test.go │ │ │ ├── sugar.go │ │ │ ├── sugar_test.go │ │ │ ├── time.go │ │ │ ├── time_test.go │ │ │ ├── writer.go │ │ │ ├── writer_test.go │ │ │ ├── zapcore │ │ │ ├── console_encoder.go │ │ │ ├── console_encoder_bench_test.go │ │ │ ├── core.go │ │ │ ├── core_test.go │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── encoder_test.go │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── field.go │ │ │ ├── field_test.go │ │ │ ├── hook.go │ │ │ ├── hook_test.go │ │ │ ├── json_encoder.go │ │ │ ├── json_encoder_bench_test.go │ │ │ ├── json_encoder_impl_test.go │ │ │ ├── level.go │ │ │ ├── level_strings.go │ │ │ ├── level_strings_test.go │ │ │ ├── level_test.go │ │ │ ├── marshaler.go │ │ │ ├── memory_encoder.go │ │ │ ├── memory_encoder_test.go │ │ │ ├── sampler.go │ │ │ ├── sampler_bench_test.go │ │ │ ├── sampler_test.go │ │ │ ├── tee.go │ │ │ ├── tee_logger_bench_test.go │ │ │ ├── tee_test.go │ │ │ ├── write_syncer.go │ │ │ ├── write_syncer_bench_test.go │ │ │ └── write_syncer_test.go │ │ │ ├── zapgrpc │ │ │ ├── zapgrpc.go │ │ │ └── zapgrpc_test.go │ │ │ └── zaptest │ │ │ ├── doc.go │ │ │ ├── logger.go │ │ │ ├── logger_test.go │ │ │ ├── observer │ │ │ ├── logged_entry.go │ │ │ ├── logged_entry_test.go │ │ │ ├── observer.go │ │ │ └── observer_test.go │ │ │ ├── testingt.go │ │ │ ├── testingt_test.go │ │ │ ├── timeout.go │ │ │ ├── timeout_test.go │ │ │ ├── writer.go │ │ │ └── writer_test.go │ ├── golang.org │ │ └── x │ │ │ ├── net │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── bpf │ │ │ │ ├── asm.go │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── instructions.go │ │ │ │ ├── instructions_test.go │ │ │ │ ├── setter.go │ │ │ │ ├── testdata │ │ │ │ │ ├── all_instructions.bpf │ │ │ │ │ └── all_instructions.txt │ │ │ │ ├── vm.go │ │ │ │ ├── vm_aluop_test.go │ │ │ │ ├── vm_bpf_test.go │ │ │ │ ├── vm_extension_test.go │ │ │ │ ├── vm_instructions.go │ │ │ │ ├── vm_jump_test.go │ │ │ │ ├── vm_load_test.go │ │ │ │ ├── vm_ret_test.go │ │ │ │ ├── vm_scratch_test.go │ │ │ │ └── vm_test.go │ │ │ ├── codereview.cfg │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ ├── ctxhttp │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ │ └── ctxhttp_test.go │ │ │ │ ├── go17.go │ │ │ │ ├── go19.go │ │ │ │ ├── pre_go17.go │ │ │ │ ├── pre_go19.go │ │ │ │ └── withtimeout_test.go │ │ │ ├── dict │ │ │ │ └── dict.go │ │ │ ├── dns │ │ │ │ └── dnsmessage │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── message.go │ │ │ │ │ └── message_test.go │ │ │ ├── html │ │ │ │ ├── atom │ │ │ │ │ ├── atom.go │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── table.go │ │ │ │ │ └── table_test.go │ │ │ │ ├── charset │ │ │ │ │ ├── charset.go │ │ │ │ │ ├── charset_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ │ └── meta-content-attribute.html │ │ │ │ ├── const.go │ │ │ │ ├── doc.go │ │ │ │ ├── doctype.go │ │ │ │ ├── entity.go │ │ │ │ ├── entity_test.go │ │ │ │ ├── escape.go │ │ │ │ ├── escape_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── foreign.go │ │ │ │ ├── node.go │ │ │ │ ├── node_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_test.go │ │ │ │ ├── render.go │ │ │ │ ├── render_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── go1.html │ │ │ │ │ └── webkit │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ │ ├── comments01.dat │ │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ │ ├── entities01.dat │ │ │ │ │ │ ├── entities02.dat │ │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ │ ├── isindex.dat │ │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ │ ├── ruby.dat │ │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ │ ├── scripted │ │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ │ └── webkit01.dat │ │ │ │ │ │ ├── tables01.dat │ │ │ │ │ │ ├── template.dat │ │ │ │ │ │ ├── tests1.dat │ │ │ │ │ │ ├── tests10.dat │ │ │ │ │ │ ├── tests11.dat │ │ │ │ │ │ ├── tests12.dat │ │ │ │ │ │ ├── tests14.dat │ │ │ │ │ │ ├── tests15.dat │ │ │ │ │ │ ├── tests16.dat │ │ │ │ │ │ ├── tests17.dat │ │ │ │ │ │ ├── tests18.dat │ │ │ │ │ │ ├── tests19.dat │ │ │ │ │ │ ├── tests2.dat │ │ │ │ │ │ ├── tests20.dat │ │ │ │ │ │ ├── tests21.dat │ │ │ │ │ │ ├── tests22.dat │ │ │ │ │ │ ├── tests23.dat │ │ │ │ │ │ ├── tests24.dat │ │ │ │ │ │ ├── tests25.dat │ │ │ │ │ │ ├── tests26.dat │ │ │ │ │ │ ├── tests3.dat │ │ │ │ │ │ ├── tests4.dat │ │ │ │ │ │ ├── tests5.dat │ │ │ │ │ │ ├── tests6.dat │ │ │ │ │ │ ├── tests7.dat │ │ │ │ │ │ ├── tests8.dat │ │ │ │ │ │ ├── tests9.dat │ │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ │ └── webkit02.dat │ │ │ │ ├── token.go │ │ │ │ └── token_test.go │ │ │ ├── http │ │ │ │ ├── httpguts │ │ │ │ │ ├── guts.go │ │ │ │ │ ├── httplex.go │ │ │ │ │ └── httplex_test.go │ │ │ │ └── httpproxy │ │ │ │ │ ├── export_test.go │ │ │ │ │ ├── go19_test.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ └── proxy_test.go │ │ │ ├── http2 │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ciphers.go │ │ │ │ ├── ciphers_test.go │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── configure_transport.go │ │ │ │ ├── databuffer.go │ │ │ │ ├── databuffer_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── flow.go │ │ │ │ ├── flow_test.go │ │ │ │ ├── frame.go │ │ │ │ ├── frame_test.go │ │ │ │ ├── go16.go │ │ │ │ ├── go17.go │ │ │ │ ├── go17_not18.go │ │ │ │ ├── go18.go │ │ │ │ ├── go18_test.go │ │ │ │ ├── go19.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── gotrack.go │ │ │ │ ├── gotrack_test.go │ │ │ │ ├── h2demo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Dockerfile.0 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── deployment-prod.yaml │ │ │ │ │ ├── h2demo.go │ │ │ │ │ ├── launch.go │ │ │ │ │ ├── rootCA.key │ │ │ │ │ ├── rootCA.pem │ │ │ │ │ ├── rootCA.srl │ │ │ │ │ ├── server.crt │ │ │ │ │ ├── server.key │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── tmpl.go │ │ │ │ ├── h2i │ │ │ │ │ ├── README.md │ │ │ │ │ └── h2i.go │ │ │ │ ├── headermap.go │ │ │ │ ├── hpack │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_test.go │ │ │ │ │ ├── hpack.go │ │ │ │ │ ├── hpack_test.go │ │ │ │ │ ├── huffman.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tables_test.go │ │ │ │ ├── http2.go │ │ │ │ ├── http2_test.go │ │ │ │ ├── not_go16.go │ │ │ │ ├── not_go17.go │ │ │ │ ├── not_go18.go │ │ │ │ ├── not_go19.go │ │ │ │ ├── pipe.go │ │ │ │ ├── pipe_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_push_test.go │ │ │ │ ├── server_test.go │ │ │ │ ├── testdata │ │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ │ ├── transport.go │ │ │ │ ├── transport_test.go │ │ │ │ ├── write.go │ │ │ │ ├── writesched.go │ │ │ │ ├── writesched_priority.go │ │ │ │ ├── writesched_priority_test.go │ │ │ │ ├── writesched_random.go │ │ │ │ ├── writesched_random_test.go │ │ │ │ ├── writesched_test.go │ │ │ │ └── z_spec_test.go │ │ │ ├── icmp │ │ │ │ ├── diag_test.go │ │ │ │ ├── dstunreach.go │ │ │ │ ├── echo.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── example_test.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipv4.go │ │ │ │ ├── ipv4_test.go │ │ │ │ ├── ipv6.go │ │ │ │ ├── listen_posix.go │ │ │ │ ├── listen_stub.go │ │ │ │ ├── message.go │ │ │ │ ├── message_test.go │ │ │ │ ├── messagebody.go │ │ │ │ ├── mpls.go │ │ │ │ ├── multipart.go │ │ │ │ ├── multipart_test.go │ │ │ │ ├── packettoobig.go │ │ │ │ ├── paramprob.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ └── timeexceeded.go │ │ │ ├── idna │ │ │ │ ├── example_test.go │ │ │ │ ├── idna.go │ │ │ │ ├── idna_test.go │ │ │ │ ├── punycode.go │ │ │ │ ├── punycode_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ │ ├── internal │ │ │ │ ├── iana │ │ │ │ │ ├── const.go │ │ │ │ │ └── gen.go │ │ │ │ ├── nettest │ │ │ │ │ ├── helper_bsd.go │ │ │ │ │ ├── helper_nobsd.go │ │ │ │ │ ├── helper_posix.go │ │ │ │ │ ├── helper_stub.go │ │ │ │ │ ├── helper_unix.go │ │ │ │ │ ├── helper_windows.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── rlimit.go │ │ │ │ │ └── stack.go │ │ │ │ ├── socket │ │ │ │ │ ├── cmsghdr.go │ │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ │ ├── defs_darwin.go │ │ │ │ │ ├── defs_dragonfly.go │ │ │ │ │ ├── defs_freebsd.go │ │ │ │ │ ├── defs_linux.go │ │ │ │ │ ├── defs_netbsd.go │ │ │ │ │ ├── defs_openbsd.go │ │ │ │ │ ├── defs_solaris.go │ │ │ │ │ ├── error_unix.go │ │ │ │ │ ├── error_windows.go │ │ │ │ │ ├── iovec_32bit.go │ │ │ │ │ ├── iovec_64bit.go │ │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ │ ├── iovec_stub.go │ │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ │ ├── msghdr_bsd.go │ │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ │ ├── msghdr_linux.go │ │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ │ ├── msghdr_stub.go │ │ │ │ │ ├── rawconn.go │ │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ │ ├── rawconn_msg.go │ │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ │ ├── rawconn_stub.go │ │ │ │ │ ├── reflect.go │ │ │ │ │ ├── socket.go │ │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ │ ├── socket_test.go │ │ │ │ │ ├── sys.go │ │ │ │ │ ├── sys_bsd.go │ │ │ │ │ ├── sys_bsdvar.go │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ ├── sys_dragonfly.go │ │ │ │ │ ├── sys_linux.go │ │ │ │ │ ├── sys_linux_386.go │ │ │ │ │ ├── sys_linux_386.s │ │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ │ ├── sys_linux_arm.go │ │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ │ ├── sys_linux_mips.go │ │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ │ ├── sys_netbsd.go │ │ │ │ │ ├── sys_posix.go │ │ │ │ │ ├── sys_solaris.go │ │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ │ ├── sys_stub.go │ │ │ │ │ ├── sys_unix.go │ │ │ │ │ ├── sys_windows.go │ │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ │ ├── zsys_linux_386.go │ │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ │ └── zsys_solaris_amd64.go │ │ │ │ ├── socks │ │ │ │ │ ├── client.go │ │ │ │ │ ├── dial_test.go │ │ │ │ │ └── socks.go │ │ │ │ ├── sockstest │ │ │ │ │ ├── server.go │ │ │ │ │ └── server_test.go │ │ │ │ └── timeseries │ │ │ │ │ ├── timeseries.go │ │ │ │ │ └── timeseries_test.go │ │ │ ├── ipv4 │ │ │ │ ├── batch.go │ │ │ │ ├── bpf_test.go │ │ │ │ ├── control.go │ │ │ │ ├── control_bsd.go │ │ │ │ ├── control_pktinfo.go │ │ │ │ ├── control_stub.go │ │ │ │ ├── control_test.go │ │ │ │ ├── control_unix.go │ │ │ │ ├── control_windows.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── dgramopt.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── genericopt.go │ │ │ │ ├── header.go │ │ │ │ ├── header_test.go │ │ │ │ ├── helper.go │ │ │ │ ├── iana.go │ │ │ │ ├── icmp.go │ │ │ │ ├── icmp_linux.go │ │ │ │ ├── icmp_stub.go │ │ │ │ ├── icmp_test.go │ │ │ │ ├── multicast_test.go │ │ │ │ ├── multicastlistener_test.go │ │ │ │ ├── multicastsockopt_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_go1_8.go │ │ │ │ ├── packet_go1_9.go │ │ │ │ ├── payload.go │ │ │ │ ├── payload_cmsg.go │ │ │ │ ├── payload_cmsg_go1_8.go │ │ │ │ ├── payload_cmsg_go1_9.go │ │ │ │ ├── payload_nocmsg.go │ │ │ │ ├── readwrite_go1_8_test.go │ │ │ │ ├── readwrite_go1_9_test.go │ │ │ │ ├── readwrite_test.go │ │ │ │ ├── sockopt.go │ │ │ │ ├── sockopt_posix.go │ │ │ │ ├── sockopt_stub.go │ │ │ │ ├── sys_asmreq.go │ │ │ │ ├── sys_asmreq_stub.go │ │ │ │ ├── sys_asmreqn.go │ │ │ │ ├── sys_asmreqn_stub.go │ │ │ │ ├── sys_bpf.go │ │ │ │ ├── sys_bpf_stub.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_ssmreq.go │ │ │ │ ├── sys_ssmreq_stub.go │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── unicast_test.go │ │ │ │ ├── unicastsockopt_test.go │ │ │ │ ├── zsys_darwin.go │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd.go │ │ │ │ ├── zsys_openbsd.go │ │ │ │ └── zsys_solaris.go │ │ │ ├── ipv6 │ │ │ │ ├── batch.go │ │ │ │ ├── bpf_test.go │ │ │ │ ├── control.go │ │ │ │ ├── control_rfc2292_unix.go │ │ │ │ ├── control_rfc3542_unix.go │ │ │ │ ├── control_stub.go │ │ │ │ ├── control_test.go │ │ │ │ ├── control_unix.go │ │ │ │ ├── control_windows.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── dgramopt.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── genericopt.go │ │ │ │ ├── header.go │ │ │ │ ├── header_test.go │ │ │ │ ├── helper.go │ │ │ │ ├── iana.go │ │ │ │ ├── icmp.go │ │ │ │ ├── icmp_bsd.go │ │ │ │ ├── icmp_linux.go │ │ │ │ ├── icmp_solaris.go │ │ │ │ ├── icmp_stub.go │ │ │ │ ├── icmp_test.go │ │ │ │ ├── icmp_windows.go │ │ │ │ ├── mocktransponder_test.go │ │ │ │ ├── multicast_test.go │ │ │ │ ├── multicastlistener_test.go │ │ │ │ ├── multicastsockopt_test.go │ │ │ │ ├── payload.go │ │ │ │ ├── payload_cmsg.go │ │ │ │ ├── payload_cmsg_go1_8.go │ │ │ │ ├── payload_cmsg_go1_9.go │ │ │ │ ├── payload_nocmsg.go │ │ │ │ ├── readwrite_go1_8_test.go │ │ │ │ ├── readwrite_go1_9_test.go │ │ │ │ ├── readwrite_test.go │ │ │ │ ├── sockopt.go │ │ │ │ ├── sockopt_posix.go │ │ │ │ ├── sockopt_stub.go │ │ │ │ ├── sockopt_test.go │ │ │ │ ├── sys_asmreq.go │ │ │ │ ├── sys_asmreq_stub.go │ │ │ │ ├── sys_bpf.go │ │ │ │ ├── sys_bpf_stub.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_ssmreq.go │ │ │ │ ├── sys_ssmreq_stub.go │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── unicast_test.go │ │ │ │ ├── unicastsockopt_test.go │ │ │ │ ├── zsys_darwin.go │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd.go │ │ │ │ ├── zsys_openbsd.go │ │ │ │ └── zsys_solaris.go │ │ │ ├── lif │ │ │ │ ├── address.go │ │ │ │ ├── address_test.go │ │ │ │ ├── binary.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── lif.go │ │ │ │ ├── link.go │ │ │ │ ├── link_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── syscall.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ ├── nettest │ │ │ │ ├── conntest.go │ │ │ │ ├── conntest_go16.go │ │ │ │ ├── conntest_go17.go │ │ │ │ └── conntest_test.go │ │ │ ├── netutil │ │ │ │ ├── listen.go │ │ │ │ └── listen_test.go │ │ │ ├── proxy │ │ │ │ ├── direct.go │ │ │ │ ├── per_host.go │ │ │ │ ├── per_host_test.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxy_test.go │ │ │ │ └── socks5.go │ │ │ ├── publicsuffix │ │ │ │ ├── gen.go │ │ │ │ ├── list.go │ │ │ │ ├── list_test.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── route │ │ │ │ ├── address.go │ │ │ │ ├── address_darwin_test.go │ │ │ │ ├── address_test.go │ │ │ │ ├── binary.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_announce.go │ │ │ │ ├── interface_classic.go │ │ │ │ ├── interface_freebsd.go │ │ │ │ ├── interface_multicast.go │ │ │ │ ├── interface_openbsd.go │ │ │ │ ├── message.go │ │ │ │ ├── message_darwin_test.go │ │ │ │ ├── message_freebsd_test.go │ │ │ │ ├── message_test.go │ │ │ │ ├── route.go │ │ │ │ ├── route_classic.go │ │ │ │ ├── route_openbsd.go │ │ │ │ ├── route_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_openbsd.go │ │ │ │ ├── syscall.go │ │ │ │ ├── zsys_darwin.go │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_netbsd.go │ │ │ │ └── zsys_openbsd.go │ │ │ ├── trace │ │ │ │ ├── events.go │ │ │ │ ├── histogram.go │ │ │ │ ├── histogram_test.go │ │ │ │ ├── trace.go │ │ │ │ ├── trace_go16.go │ │ │ │ ├── trace_go17.go │ │ │ │ └── trace_test.go │ │ │ ├── webdav │ │ │ │ ├── file.go │ │ │ │ ├── file_go1.6.go │ │ │ │ ├── file_go1.7.go │ │ │ │ ├── file_test.go │ │ │ │ ├── if.go │ │ │ │ ├── if_test.go │ │ │ │ ├── internal │ │ │ │ │ └── xml │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── atom_test.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── marshal.go │ │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ │ ├── read.go │ │ │ │ │ │ ├── read_test.go │ │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ │ ├── xml.go │ │ │ │ │ │ └── xml_test.go │ │ │ │ ├── litmus_test_server.go │ │ │ │ ├── lock.go │ │ │ │ ├── lock_test.go │ │ │ │ ├── prop.go │ │ │ │ ├── prop_test.go │ │ │ │ ├── webdav.go │ │ │ │ ├── webdav_test.go │ │ │ │ ├── xml.go │ │ │ │ └── xml_test.go │ │ │ ├── websocket │ │ │ │ ├── client.go │ │ │ │ ├── dial.go │ │ │ │ ├── dial_test.go │ │ │ │ ├── exampledial_test.go │ │ │ │ ├── examplehandler_test.go │ │ │ │ ├── hybi.go │ │ │ │ ├── hybi_test.go │ │ │ │ ├── server.go │ │ │ │ ├── websocket.go │ │ │ │ └── websocket_test.go │ │ │ └── xsrftoken │ │ │ │ ├── xsrf.go │ │ │ │ └── xsrf_test.go │ │ │ ├── sync │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── codereview.cfg │ │ │ ├── errgroup │ │ │ │ ├── errgroup.go │ │ │ │ ├── errgroup_example_md5all_test.go │ │ │ │ └── errgroup_test.go │ │ │ ├── semaphore │ │ │ │ ├── semaphore.go │ │ │ │ ├── semaphore_bench_test.go │ │ │ │ ├── semaphore_example_test.go │ │ │ │ └── semaphore_test.go │ │ │ ├── singleflight │ │ │ │ ├── singleflight.go │ │ │ │ └── singleflight_test.go │ │ │ └── syncmap │ │ │ │ ├── map.go │ │ │ │ ├── map_bench_test.go │ │ │ │ ├── map_reference_test.go │ │ │ │ └── map_test.go │ │ │ └── sys │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── codereview.cfg │ │ │ ├── cpu │ │ │ ├── cpu.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_test.go │ │ │ ├── cpu_x86.go │ │ │ └── cpu_x86.s │ │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ ├── asm_plan9_arm.s │ │ │ ├── const_plan9.go │ │ │ ├── dir_plan9.go │ │ │ ├── env_plan9.go │ │ │ ├── errors_plan9.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksyscall.pl │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── syscall_test.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ ├── zsyscall_plan9_arm.go │ │ │ └── zsysnum_plan9.go │ │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── creds_test.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_linux_test.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── linux │ │ │ │ ├── Dockerfile │ │ │ │ ├── mkall.go │ │ │ │ ├── mksysnum.pl │ │ │ │ └── types.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── mmap_unix_test.go │ │ │ ├── openbsd_pledge.go │ │ │ ├── openbsd_test.go │ │ │ ├── pagesize_unix.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_bsd_test.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_test.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_test.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gccgo.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_linux_test.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_solaris_test.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_test.go │ │ │ ├── timestruct.go │ │ │ ├── timestruct_test.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── xattr_test.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zptrace386_linux.go │ │ │ ├── zptracearm_linux.go │ │ │ ├── zptracemips_linux.go │ │ │ ├── zptracemipsle_linux.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ │ └── windows │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── registry │ │ │ ├── export_test.go │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── registry_test.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── svc │ │ │ ├── debug │ │ │ │ ├── log.go │ │ │ │ └── service.go │ │ │ ├── event.go │ │ │ ├── eventlog │ │ │ │ ├── install.go │ │ │ │ ├── log.go │ │ │ │ └── log_test.go │ │ │ ├── example │ │ │ │ ├── beep.go │ │ │ │ ├── install.go │ │ │ │ ├── main.go │ │ │ │ ├── manage.go │ │ │ │ └── service.go │ │ │ ├── go12.c │ │ │ ├── go12.go │ │ │ ├── go13.go │ │ │ ├── mgr │ │ │ │ ├── config.go │ │ │ │ ├── mgr.go │ │ │ │ ├── mgr_test.go │ │ │ │ └── service.go │ │ │ ├── security.go │ │ │ ├── service.go │ │ │ ├── svc_test.go │ │ │ ├── sys_386.s │ │ │ └── sys_amd64.s │ │ │ ├── syscall.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_windows.go │ │ │ ├── syscall_windows_test.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ └── zsyscall_windows.go │ └── gopkg.in │ │ ├── alecthomas │ │ └── kingpin.v2 │ │ │ ├── .travis.yml │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── _examples │ │ │ ├── chat1 │ │ │ │ └── main.go │ │ │ ├── chat2 │ │ │ │ └── main.go │ │ │ ├── completion │ │ │ │ └── main.go │ │ │ ├── curl │ │ │ │ └── main.go │ │ │ ├── modular │ │ │ │ └── main.go │ │ │ └── ping │ │ │ │ └── main.go │ │ │ ├── actions.go │ │ │ ├── app.go │ │ │ ├── app_test.go │ │ │ ├── args.go │ │ │ ├── args_test.go │ │ │ ├── cmd.go │ │ │ ├── cmd │ │ │ └── genvalues │ │ │ │ └── main.go │ │ │ ├── cmd_test.go │ │ │ ├── completions.go │ │ │ ├── completions_test.go │ │ │ ├── doc.go │ │ │ ├── envar.go │ │ │ ├── examples_test.go │ │ │ ├── flags.go │ │ │ ├── flags_test.go │ │ │ ├── global.go │ │ │ ├── guesswidth.go │ │ │ ├── guesswidth_unix.go │ │ │ ├── model.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── parsers.go │ │ │ ├── parsers_test.go │ │ │ ├── templates.go │ │ │ ├── usage.go │ │ │ ├── usage_test.go │ │ │ ├── values.go │ │ │ ├── values.json │ │ │ ├── values_generated.go │ │ │ └── values_test.go │ │ ├── fsnotify.v1 │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example_test.go │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── fsnotify_test.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── inotify_poller_test.go │ │ ├── inotify_test.go │ │ ├── integration_darwin_test.go │ │ ├── integration_test.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go │ │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── example_embedded_test.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── suite_test.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── version │ ├── version.go │ └── version_test.go ├── documentation ├── architecture.png ├── blank-screen.png ├── configuration.md └── sample.png ├── example └── docker │ ├── README.md │ ├── docker-compose.yaml │ ├── prometheus-mock │ ├── Dockerfile │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── debug │ ├── main.go │ ├── prometheus-mock │ └── vendor │ │ └── github.com │ │ ├── beorn7 │ │ └── perks │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── histogram │ │ │ ├── bench_test.go │ │ │ ├── histogram.go │ │ │ └── histogram_test.go │ │ │ ├── quantile │ │ │ ├── bench_test.go │ │ │ ├── example_test.go │ │ │ ├── exampledata.txt │ │ │ ├── stream.go │ │ │ └── stream_test.go │ │ │ └── topk │ │ │ ├── topk.go │ │ │ └── topk_test.go │ │ ├── golang │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Make.protobuf │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _conformance │ │ │ ├── Makefile │ │ │ ├── conformance.go │ │ │ └── conformance_proto │ │ │ │ ├── conformance.pb.go │ │ │ │ └── conformance.proto │ │ │ ├── descriptor │ │ │ ├── descriptor.go │ │ │ └── descriptor_test.go │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── Makefile │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ ├── more_test_objects.proto │ │ │ │ ├── test_objects.pb.go │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── all_test.go │ │ │ ├── any_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── map_test.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── golden_test.go │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ └── text_test.go │ │ │ ├── protoc-gen-go │ │ │ ├── Makefile │ │ │ ├── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.pb.go │ │ │ │ └── descriptor.proto │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ │ ├── Makefile │ │ │ │ ├── generator.go │ │ │ │ └── name_test.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ ├── link_grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ │ ├── Makefile │ │ │ │ ├── plugin.pb.go │ │ │ │ ├── plugin.pb.golden │ │ │ │ └── plugin.proto │ │ │ └── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── extension_base.proto │ │ │ │ ├── extension_extra.proto │ │ │ │ ├── extension_test.go │ │ │ │ ├── extension_user.proto │ │ │ │ ├── grpc.proto │ │ │ │ ├── imp.pb.go.golden │ │ │ │ ├── imp.proto │ │ │ │ ├── imp2.proto │ │ │ │ ├── imp3.proto │ │ │ │ ├── main_test.go │ │ │ │ ├── multi │ │ │ │ ├── multi1.proto │ │ │ │ ├── multi2.proto │ │ │ │ └── multi3.proto │ │ │ │ ├── my_test │ │ │ │ ├── test.pb.go │ │ │ │ ├── test.pb.go.golden │ │ │ │ └── test.proto │ │ │ │ └── proto3.proto │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── any_test.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── duration_test.go │ │ │ ├── empty │ │ │ ├── empty.pb.go │ │ │ └── empty.proto │ │ │ ├── regen.sh │ │ │ ├── struct │ │ │ ├── struct.pb.go │ │ │ └── struct.proto │ │ │ ├── timestamp.go │ │ │ ├── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ │ │ ├── timestamp_test.go │ │ │ └── wrappers │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers.proto │ │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── ext │ │ │ └── moved.go │ │ │ ├── pbtest │ │ │ └── deleted.go │ │ │ └── pbutil │ │ │ ├── all_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ └── fixtures_test.go │ │ └── prometheus │ │ ├── client_golang │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── VERSION │ │ ├── api │ │ │ └── prometheus │ │ │ │ ├── api.go │ │ │ │ └── api_test.go │ │ ├── examples │ │ │ ├── random │ │ │ │ └── main.go │ │ │ └── simple │ │ │ │ └── main.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── benchmark_test.go │ │ │ ├── collector.go │ │ │ ├── counter.go │ │ │ ├── counter_test.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── example_clustermanager_test.go │ │ │ ├── examples_test.go │ │ │ ├── expvar_collector.go │ │ │ ├── expvar_collector_test.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── gauge_test.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_test.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── metric.go │ │ │ ├── metric_test.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_test.go │ │ │ ├── promhttp │ │ │ ├── http.go │ │ │ └── http_test.go │ │ │ ├── push │ │ │ ├── examples_test.go │ │ │ ├── push.go │ │ │ └── push_test.go │ │ │ ├── registry.go │ │ │ ├── registry_test.go │ │ │ ├── summary.go │ │ │ ├── summary_test.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ └── vec_test.go │ │ ├── client_model │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── cpp │ │ │ ├── metrics.pb.cc │ │ │ └── metrics.pb.h │ │ ├── go │ │ │ └── metrics.pb.go │ │ ├── metrics.proto │ │ ├── pom.xml │ │ ├── python │ │ │ └── prometheus │ │ │ │ ├── __init__.py │ │ │ │ └── client │ │ │ │ ├── __init__.py │ │ │ │ └── model │ │ │ │ ├── __init__.py │ │ │ │ └── metrics_pb2.py │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── lib │ │ │ │ └── prometheus │ │ │ │ │ └── client │ │ │ │ │ ├── model.rb │ │ │ │ │ └── model │ │ │ │ │ ├── metrics.pb.rb │ │ │ │ │ └── version.rb │ │ │ └── prometheus-client-model.gemspec │ │ ├── setup.py │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── prometheus │ │ │ └── client │ │ │ └── Metrics.java │ │ ├── common │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── NOTICE │ │ ├── README.md │ │ ├── config │ │ │ ├── config.go │ │ │ ├── http_config.go │ │ │ ├── http_config_test.go │ │ │ ├── testdata │ │ │ │ ├── http.conf.bearer-token-and-file-set.bad.yml │ │ │ │ ├── http.conf.empty.bad.yml │ │ │ │ ├── http.conf.good.yml │ │ │ │ ├── http.conf.invalid-bearer-token-file.bad.yml │ │ │ │ ├── tls_config.cert_no_key.bad.yml │ │ │ │ ├── tls_config.empty.good.yml │ │ │ │ ├── tls_config.insecure.good.yml │ │ │ │ ├── tls_config.invalid_field.bad.yml │ │ │ │ └── tls_config.key_no_cert.bad.yml │ │ │ └── tls_config_test.go │ │ ├── expfmt │ │ │ ├── bench_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── fuzz │ │ │ │ └── corpus │ │ │ │ │ ├── from_test_parse_0 │ │ │ │ │ ├── from_test_parse_1 │ │ │ │ │ ├── from_test_parse_2 │ │ │ │ │ ├── from_test_parse_3 │ │ │ │ │ ├── from_test_parse_4 │ │ │ │ │ ├── from_test_parse_error_0 │ │ │ │ │ ├── from_test_parse_error_1 │ │ │ │ │ ├── from_test_parse_error_10 │ │ │ │ │ ├── from_test_parse_error_11 │ │ │ │ │ ├── from_test_parse_error_12 │ │ │ │ │ ├── from_test_parse_error_13 │ │ │ │ │ ├── from_test_parse_error_14 │ │ │ │ │ ├── from_test_parse_error_15 │ │ │ │ │ ├── from_test_parse_error_16 │ │ │ │ │ ├── from_test_parse_error_17 │ │ │ │ │ ├── from_test_parse_error_18 │ │ │ │ │ ├── from_test_parse_error_19 │ │ │ │ │ ├── from_test_parse_error_2 │ │ │ │ │ ├── from_test_parse_error_3 │ │ │ │ │ ├── from_test_parse_error_4 │ │ │ │ │ ├── from_test_parse_error_5 │ │ │ │ │ ├── from_test_parse_error_6 │ │ │ │ │ ├── from_test_parse_error_7 │ │ │ │ │ ├── from_test_parse_error_8 │ │ │ │ │ ├── from_test_parse_error_9 │ │ │ │ │ └── minimal │ │ │ ├── testdata │ │ │ │ ├── json2 │ │ │ │ ├── json2_bad │ │ │ │ ├── protobuf │ │ │ │ ├── protobuf.gz │ │ │ │ ├── text │ │ │ │ └── text.gz │ │ │ ├── text_create.go │ │ │ ├── text_create_test.go │ │ │ ├── text_parse.go │ │ │ └── text_parse_test.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ ├── README.txt │ │ │ │ ├── autoneg.go │ │ │ │ └── autoneg_test.go │ │ ├── log │ │ │ ├── eventlog_formatter.go │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ ├── syslog_formatter.go │ │ │ └── syslog_formatter_test.go │ │ ├── model │ │ │ ├── alert.go │ │ │ ├── alert_test.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labels_test.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── metric_test.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── signature_test.go │ │ │ ├── silence.go │ │ │ ├── silence_test.go │ │ │ ├── time.go │ │ │ ├── time_test.go │ │ │ ├── value.go │ │ │ └── value_test.go │ │ ├── promlog │ │ │ ├── flag │ │ │ │ └── flag.go │ │ │ └── log.go │ │ ├── route │ │ │ ├── route.go │ │ │ └── route_test.go │ │ └── version │ │ │ └── info.go │ │ └── procfs │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── bcache │ │ ├── bcache.go │ │ ├── get.go │ │ └── get_test.go │ │ ├── buddyinfo.go │ │ ├── buddyinfo_test.go │ │ ├── doc.go │ │ ├── fixtures │ │ ├── 584 │ │ │ └── stat │ │ ├── 26231 │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── exe │ │ │ ├── fd │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 10 │ │ │ ├── io │ │ │ ├── limits │ │ │ ├── mountstats │ │ │ └── stat │ │ ├── 26232 │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── fd │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 4 │ │ │ ├── limits │ │ │ └── stat │ │ ├── buddyinfo │ │ │ ├── short │ │ │ │ └── buddyinfo │ │ │ ├── sizemismatch │ │ │ │ └── buddyinfo │ │ │ └── valid │ │ │ │ └── buddyinfo │ │ ├── fs │ │ │ └── xfs │ │ │ │ └── stat │ │ ├── mdstat │ │ ├── net │ │ │ ├── ip_vs │ │ │ ├── ip_vs_stats │ │ │ └── xfrm_stat │ │ ├── self │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── exe │ │ │ ├── fd │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 10 │ │ │ ├── io │ │ │ ├── limits │ │ │ ├── mountstats │ │ │ └── stat │ │ ├── stat │ │ └── symlinktargets │ │ │ ├── README │ │ │ ├── abc │ │ │ ├── def │ │ │ ├── ghi │ │ │ ├── uvw │ │ │ └── xyz │ │ ├── fs.go │ │ ├── fs_test.go │ │ ├── ipvs.go │ │ ├── ipvs_test.go │ │ ├── mdstat.go │ │ ├── mdstat_test.go │ │ ├── mountstats.go │ │ ├── mountstats_test.go │ │ ├── proc.go │ │ ├── proc_io.go │ │ ├── proc_io_test.go │ │ ├── proc_limits.go │ │ ├── proc_limits_test.go │ │ ├── proc_stat.go │ │ ├── proc_stat_test.go │ │ ├── proc_test.go │ │ ├── stat.go │ │ ├── stat_test.go │ │ ├── sysfs │ │ ├── .gitignore │ │ ├── doc.go │ │ ├── fixtures.ttar │ │ ├── fs.go │ │ └── fs_test.go │ │ ├── ttar │ │ ├── xfrm.go │ │ ├── xfrm_test.go │ │ └── xfs │ │ ├── parse.go │ │ ├── parse_test.go │ │ └── xfs.go │ ├── prometheus.yml │ └── vistio.yaml ├── helm └── vistio │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── service.yaml │ └── statefulset.yaml │ ├── values-mesh-only.yaml │ ├── values-with-ingress.yaml │ └── values.yaml ├── vistio-mesh-only-1.0.yaml ├── vistio-mesh-only.yaml ├── vistio-with-ingress-1.0.yaml ├── vistio-with-ingress.yaml └── web ├── .babelrc ├── .env ├── .eslintrc ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── server.js ├── src ├── app.css ├── app.jsx ├── appConstants.js ├── appDispatcher.js ├── components │ ├── breadcrumbs.css │ ├── breadcrumbs.jsx │ ├── connectionChart.jsx │ ├── connectionList.jsx │ ├── controls.css │ ├── customVizceral.jsx │ ├── detailsPanel.css │ ├── detailsPanelConnection.jsx │ ├── detailsPanelNode.jsx │ ├── detailsSubpanel.jsx │ ├── displayOptions.jsx │ ├── filterActions.js │ ├── filterControls.jsx │ ├── filterStore.js │ ├── istio.png │ ├── loadingCover.css │ ├── loadingCover.jsx │ ├── locator.css │ ├── locator.jsx │ ├── notices.jsx │ ├── optionsPanel.css │ ├── optionsPanel.jsx │ ├── physicsOptions.css │ ├── physicsOptions.jsx │ ├── replayClock.css │ ├── replayClock.jsx │ ├── serverStatus.css │ ├── serverStatus.jsx │ ├── stepper.jsx │ ├── trafficActions.js │ ├── trafficFlow.css │ ├── trafficFlow.jsx │ └── trafficStore.js ├── favicon.ico └── index.html └── webpack.config.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/README.md -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/Gopkg.lock -------------------------------------------------------------------------------- /api/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/Gopkg.toml -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/api/api.go -------------------------------------------------------------------------------- /api/api/api_test.go: -------------------------------------------------------------------------------- 1 | package api 2 | -------------------------------------------------------------------------------- /api/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/cache/cache.go -------------------------------------------------------------------------------- /api/cache/cache_test.go: -------------------------------------------------------------------------------- 1 | package cache 2 | -------------------------------------------------------------------------------- /api/cache/cachemock/Cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/cache/cachemock/Cache.go -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/cmd/k8s-config-reloader/Dockerfile -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/cmd/k8s-config-reloader/Gopkg.lock -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/cmd/k8s-config-reloader/Gopkg.toml -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/cmd/k8s-config-reloader/Makefile -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/cmd/k8s-config-reloader/main.go -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /api/cmd/k8s-config-reloader/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /api/cmd/vistio/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/cmd/vistio/main.go -------------------------------------------------------------------------------- /api/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/config/config.go -------------------------------------------------------------------------------- /api/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/config/config_test.go -------------------------------------------------------------------------------- /api/config/testdata/good_full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/config/testdata/good_full.yaml -------------------------------------------------------------------------------- /api/config/testdata/good_simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/config/testdata/good_simple.yaml -------------------------------------------------------------------------------- /api/model/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/model/snapshot.go -------------------------------------------------------------------------------- /api/model/snapshot_test.go: -------------------------------------------------------------------------------- 1 | package model 2 | -------------------------------------------------------------------------------- /api/model/vizceral.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/model/vizceral.go -------------------------------------------------------------------------------- /api/model/vizceral_test.go: -------------------------------------------------------------------------------- 1 | package model 2 | -------------------------------------------------------------------------------- /api/retrieval/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/retrieval/generator.go -------------------------------------------------------------------------------- /api/retrieval/generator_test.go: -------------------------------------------------------------------------------- 1 | package retrieval 2 | -------------------------------------------------------------------------------- /api/retrieval/promquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/retrieval/promquery.go -------------------------------------------------------------------------------- /api/retrieval/promquery_test.go: -------------------------------------------------------------------------------- 1 | package retrieval 2 | -------------------------------------------------------------------------------- /api/retrieval/retriever.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/retrieval/retriever.go -------------------------------------------------------------------------------- /api/retrieval/retriever_test.go: -------------------------------------------------------------------------------- 1 | package retrieval 2 | -------------------------------------------------------------------------------- /api/storage/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/storage/chunk.go -------------------------------------------------------------------------------- /api/storage/chunk_test.go: -------------------------------------------------------------------------------- 1 | package storage 2 | -------------------------------------------------------------------------------- /api/storage/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/storage/interface.go -------------------------------------------------------------------------------- /api/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/storage/storage.go -------------------------------------------------------------------------------- /api/storage/storage_test.go: -------------------------------------------------------------------------------- 1 | package storage 2 | -------------------------------------------------------------------------------- /api/storage/storagemock/Storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/storage/storagemock/Storage.go -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/template/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/template/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/template/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/template/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/template/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/template/exec.go -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/template/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/template/funcs.go -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/template/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/template/helper.go -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/units/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/units/COPYING -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/units/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/units/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/units/bytes.go -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/units/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/units/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/units/si.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/units/si.go -------------------------------------------------------------------------------- /api/vendor/github.com/alecthomas/units/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/alecthomas/units/util.go -------------------------------------------------------------------------------- /api/vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /api/vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/beorn7/perks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/beorn7/perks/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/beorn7/perks/topk/topk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/beorn7/perks/topk/topk.go -------------------------------------------------------------------------------- /api/vendor/github.com/cenkalti/backoff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/cenkalti/backoff/.gitignore -------------------------------------------------------------------------------- /api/vendor/github.com/cenkalti/backoff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/cenkalti/backoff/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/cenkalti/backoff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/cenkalti/backoff/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/cenkalti/backoff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/cenkalti/backoff/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/cenkalti/backoff/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/cenkalti/backoff/backoff.go -------------------------------------------------------------------------------- /api/vendor/github.com/cenkalti/backoff/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/cenkalti/backoff/context.go -------------------------------------------------------------------------------- /api/vendor/github.com/cenkalti/backoff/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/cenkalti/backoff/retry.go -------------------------------------------------------------------------------- /api/vendor/github.com/cenkalti/backoff/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/cenkalti/backoff/ticker.go -------------------------------------------------------------------------------- /api/vendor/github.com/cenkalti/backoff/tries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/cenkalti/backoff/tries.go -------------------------------------------------------------------------------- /api/vendor/github.com/davecgh/go-spew/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/davecgh/go-spew/.gitignore -------------------------------------------------------------------------------- /api/vendor/github.com/davecgh/go-spew/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/davecgh/go-spew/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/davecgh/go-spew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/davecgh/go-spew/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/davecgh/go-spew/cov_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/davecgh/go-spew/cov_report.sh -------------------------------------------------------------------------------- /api/vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /api/vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/conformance/conformance.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname $0) 4 | exec go run conformance.go $* 5 | -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/golang/protobuf/regenerate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/golang/protobuf/regenerate.sh -------------------------------------------------------------------------------- /api/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/pmezard/go-difflib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/pmezard/go-difflib/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/client_golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/client_model/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/client_model/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Björn Rabenstein 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/client_model/ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/common/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/common/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/config/testdata/basic-auth-password: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/config/testdata/http.conf.basic-auth.no-username.yaml: -------------------------------------------------------------------------------- 1 | basic_auth: 2 | password: secret 3 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/config/testdata/tls_config.empty.good.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/config/testdata/tls_config.insecure.good.yml: -------------------------------------------------------------------------------- 1 | insecure_skip_verify: true 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/config/testdata/tls_config.invalid_field.bad.yml: -------------------------------------------------------------------------------- 1 | something_invalid: true 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0: -------------------------------------------------------------------------------- 1 | bla 3.14 -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1: -------------------------------------------------------------------------------- 1 | metric{label="\t"} 3.14 -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2 3 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11: -------------------------------------------------------------------------------- 1 | metric{label="bla"} blubb 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric bla 3 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16: -------------------------------------------------------------------------------- 1 | 2 | # TYPE met-ric 3 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17: -------------------------------------------------------------------------------- 1 | @invalidmetric{label="bla"} 3.14 2 -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18: -------------------------------------------------------------------------------- 1 | {label="bla"} 3.14 2 -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2: -------------------------------------------------------------------------------- 1 | 2 | metric{label="new 3 | line"} 3.14 4 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3: -------------------------------------------------------------------------------- 1 | metric{@="bla"} 3.14 -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4: -------------------------------------------------------------------------------- 1 | metric{__name__="bla"} 3.14 -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5: -------------------------------------------------------------------------------- 1 | metric{label+="bla"} 3.14 -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6: -------------------------------------------------------------------------------- 1 | metric{label=bla} 3.14 -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8: -------------------------------------------------------------------------------- 1 | metric{label="bla"+} 3.14 -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2.72 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal: -------------------------------------------------------------------------------- 1 | m{} 0 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/common/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/common/log/log.go -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/fs_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/mdstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/mdstat.go -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/net_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/net_dev.go -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/sysfs/.gitignore: -------------------------------------------------------------------------------- 1 | fixtures/ 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /api/vendor/github.com/prometheus/procfs/xfrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/prometheus/procfs/xfrm.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/rs/cors/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/rs/cors/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/rs/cors/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/rs/cors/bench_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/rs/cors/cors.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/rs/cors/cors_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/rs/cors 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/rs/cors/utils.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/rs/cors/utils_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/wrapper/gin/gin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/rs/cors/wrapper/gin/gin.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/.gitignore -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/Gopkg.lock -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/Gopkg.toml -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/Taskfile.yml -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/accessors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/accessors.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/constants.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/map_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/mutations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/mutations.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/security.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/testify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/testify/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/stretchr/testify/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/github.com/stretchr/testify/doc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/.codecov.yml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/.travis.yml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/atomic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/atomic.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/atomic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/atomic_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/example_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/glide.lock -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/glide.yaml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/scripts/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/scripts/cover.sh -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/stress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/stress_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/atomic/string_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/.codecov.yml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/.travis.yml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/CHANGELOG.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/error_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/example_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/glide.lock -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/glide.yaml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/multierr/scripts/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/multierr/scripts/cover.sh -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/.travis.yml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/array_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/benchmarks/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/benchmarks/doc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/buffer/buffer.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/buffer/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/buffer/buffer_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/buffer/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/buffer/pool_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/check_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/check_license.sh -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/common_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/config_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/encoder_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/error_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/example_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/field_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/flag_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/glide.lock -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/global_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/global_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/http_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/http_handler_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/internal/exit/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/internal/exit/exit.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/internal/ztest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/internal/ztest/doc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/level_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/level_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/logger_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/logger_bench_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/logger_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/scripts/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/scripts/cover.sh -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/stacktrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/stacktrace.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/stacktrace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/stacktrace_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/sugar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/sugar_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/time_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/writer_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/core_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/encoder.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/entry.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/entry_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/error.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/error_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/field.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/field_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/hook_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/level.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/level_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/level_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/marshaler.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/sampler.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/tee_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapcore/tee_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapgrpc/zapgrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zapgrpc/zapgrpc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zaptest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zaptest/doc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zaptest/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zaptest/logger.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zaptest/testingt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zaptest/testingt.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zaptest/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zaptest/timeout.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zaptest/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/go.uber.org/zap/zaptest/writer.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/README.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_aluop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/vm_aluop_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/errors_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/go18_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go19_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/go19_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/h2demo/tmpl.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/server_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/z_spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/http2/z_spec_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/diag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/diag_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/helper_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/helper_posix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/listen_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/listen_posix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/message_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/packettoobig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/packettoobig.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/timeexceeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/icmp/timeexceeded.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/idna/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/internal/iana/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/internal/iana/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/control_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/control_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/control_unix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/defs_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/defs_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/defs_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/genericopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/packet_go1_8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/packet_go1_8.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/packet_go1_9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/packet_go1_9.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/payload_cmsg.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sockopt_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_asmreq.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_asmreqn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_asmreqn.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_ssmreq.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/unicast_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/control_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/control_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/control_unix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/defs_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/defs_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/defs_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/genericopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_windows.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/payload_cmsg.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sockopt_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sockopt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sockopt_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_asmreq.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_ssmreq.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/unicast_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/lif/address_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/lif/defs_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/nettest/conntest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/nettest/conntest.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/publicsuffix/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/publicsuffix/list.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/defs_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/defs_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/interface.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/route_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/sys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/sys_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/sys_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/sys_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/zsys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/route/zsys_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/trace_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/trace/trace_go16.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/trace_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/trace/trace_go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/file_go1.6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/file_go1.6.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/file_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/file_go1.7.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sync/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sync/AUTHORS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sync/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sync/CONTRIBUTING.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sync/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sync/CONTRIBUTORS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sync/README.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sync/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sync/syncmap/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sync/syncmap/map.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sync/syncmap/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sync/syncmap/map_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/README.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu_mips64x.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/const_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/const_plan9.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/mksyscall.pl -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/creds_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/export_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/linux/mkall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/linux/mkall.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/linux/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/linux/types.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/openbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/openbsd_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/syscall_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/unix/xattr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/unix/xattr_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/svc/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/svc/event.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/svc/go12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/svc/go12.c -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/svc/go12.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/svc/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/svc/go13.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/alecthomas/kingpin.v2/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/alecthomas/kingpin.v2/app.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/alecthomas/kingpin.v2/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/alecthomas/kingpin.v2/cmd.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/alecthomas/kingpin.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/alecthomas/kingpin.v2/doc.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/.editorconfig -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/.gitignore -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/.travis.yml -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/AUTHORS -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/CHANGELOG.md -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/CONTRIBUTING.md -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/LICENSE -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/README.md -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/example_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/fen.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/fsnotify.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/fsnotify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/fsnotify_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/inotify.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/inotify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/inotify_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/kqueue.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/open_mode_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/open_mode_bsd.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/fsnotify.v1/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/fsnotify.v1/windows.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /api/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/api/version/version.go -------------------------------------------------------------------------------- /api/version/version_test.go: -------------------------------------------------------------------------------- 1 | package version 2 | -------------------------------------------------------------------------------- /documentation/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/documentation/architecture.png -------------------------------------------------------------------------------- /documentation/blank-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/documentation/blank-screen.png -------------------------------------------------------------------------------- /documentation/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/documentation/configuration.md -------------------------------------------------------------------------------- /documentation/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/documentation/sample.png -------------------------------------------------------------------------------- /example/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/README.md -------------------------------------------------------------------------------- /example/docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/docker-compose.yaml -------------------------------------------------------------------------------- /example/docker/prometheus-mock/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/prometheus-mock/Dockerfile -------------------------------------------------------------------------------- /example/docker/prometheus-mock/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/prometheus-mock/Gopkg.lock -------------------------------------------------------------------------------- /example/docker/prometheus-mock/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/prometheus-mock/Gopkg.toml -------------------------------------------------------------------------------- /example/docker/prometheus-mock/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/prometheus-mock/debug -------------------------------------------------------------------------------- /example/docker/prometheus-mock/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/prometheus-mock/main.go -------------------------------------------------------------------------------- /example/docker/prometheus-mock/prometheus-mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/prometheus-mock/prometheus-mock -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/matttproud/golang_protobuf_extensions/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/client_golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/client_model/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/client_model/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Björn Rabenstein 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/client_model/ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/config/testdata/tls_config.empty.good.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/config/testdata/tls_config.insecure.good.yml: -------------------------------------------------------------------------------- 1 | insecure_skip_verify: true 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/config/testdata/tls_config.invalid_field.bad.yml: -------------------------------------------------------------------------------- 1 | something_invalid: true 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0: -------------------------------------------------------------------------------- 1 | bla 3.14 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1: -------------------------------------------------------------------------------- 1 | metric{label="\t"} 3.14 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2 3 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11: -------------------------------------------------------------------------------- 1 | metric{label="bla"} blubb 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric bla 3 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16: -------------------------------------------------------------------------------- 1 | 2 | # TYPE met-ric 3 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17: -------------------------------------------------------------------------------- 1 | @invalidmetric{label="bla"} 3.14 2 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18: -------------------------------------------------------------------------------- 1 | {label="bla"} 3.14 2 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3: -------------------------------------------------------------------------------- 1 | metric{@="bla"} 3.14 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4: -------------------------------------------------------------------------------- 1 | metric{__name__="bla"} 3.14 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5: -------------------------------------------------------------------------------- 1 | metric{label+="bla"} 3.14 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6: -------------------------------------------------------------------------------- 1 | metric{label=bla} 3.14 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8: -------------------------------------------------------------------------------- 1 | metric{label="bla"+} 3.14 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2.72 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal: -------------------------------------------------------------------------------- 1 | m{} 0 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26231/cmdline: -------------------------------------------------------------------------------- 1 | vimtest.go+10 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26231/comm: -------------------------------------------------------------------------------- 1 | vim 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26231/fd/0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26231/fd/1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26231/fd/10: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26231/fd/2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26231/fd/3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26232/cmdline: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26232/comm: -------------------------------------------------------------------------------- 1 | ata_sff 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26232/fd/0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26232/fd/1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26232/fd/2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26232/fd/3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/26232/fd/4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/self/cmdline: -------------------------------------------------------------------------------- 1 | vimtest.go+10 -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/self/comm: -------------------------------------------------------------------------------- 1 | vim 2 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/self/fd/0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/self/fd/1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/self/fd/10: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/self/fd/2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/self/fd/3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/abc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/ghi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/uvw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/xyz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker/prometheus-mock/vendor/github.com/prometheus/procfs/sysfs/.gitignore: -------------------------------------------------------------------------------- 1 | fixtures/ 2 | -------------------------------------------------------------------------------- /example/docker/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/prometheus.yml -------------------------------------------------------------------------------- /example/docker/vistio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/example/docker/vistio.yaml -------------------------------------------------------------------------------- /helm/vistio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/.helmignore -------------------------------------------------------------------------------- /helm/vistio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/Chart.yaml -------------------------------------------------------------------------------- /helm/vistio/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/vistio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/vistio/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/vistio/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/vistio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/templates/service.yaml -------------------------------------------------------------------------------- /helm/vistio/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/templates/statefulset.yaml -------------------------------------------------------------------------------- /helm/vistio/values-mesh-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/values-mesh-only.yaml -------------------------------------------------------------------------------- /helm/vistio/values-with-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/values-with-ingress.yaml -------------------------------------------------------------------------------- /helm/vistio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/helm/vistio/values.yaml -------------------------------------------------------------------------------- /vistio-mesh-only-1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/vistio-mesh-only-1.0.yaml -------------------------------------------------------------------------------- /vistio-mesh-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/vistio-mesh-only.yaml -------------------------------------------------------------------------------- /vistio-with-ingress-1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/vistio-with-ingress-1.0.yaml -------------------------------------------------------------------------------- /vistio-with-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/vistio-with-ingress.yaml -------------------------------------------------------------------------------- /web/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/.babelrc -------------------------------------------------------------------------------- /web/.env: -------------------------------------------------------------------------------- 1 | UPDATE_URL="http://localhost:9091/graph" 2 | INTERVAL=1000 3 | MAX_REPLAY_OFFSET=43200 4 | -------------------------------------------------------------------------------- /web/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/.eslintrc -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/LICENSE -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/README.md -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/package.json -------------------------------------------------------------------------------- /web/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/server.js -------------------------------------------------------------------------------- /web/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/app.css -------------------------------------------------------------------------------- /web/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/app.jsx -------------------------------------------------------------------------------- /web/src/appConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/appConstants.js -------------------------------------------------------------------------------- /web/src/appDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/appDispatcher.js -------------------------------------------------------------------------------- /web/src/components/breadcrumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/breadcrumbs.css -------------------------------------------------------------------------------- /web/src/components/breadcrumbs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/breadcrumbs.jsx -------------------------------------------------------------------------------- /web/src/components/connectionChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/connectionChart.jsx -------------------------------------------------------------------------------- /web/src/components/connectionList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/connectionList.jsx -------------------------------------------------------------------------------- /web/src/components/controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/controls.css -------------------------------------------------------------------------------- /web/src/components/customVizceral.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/customVizceral.jsx -------------------------------------------------------------------------------- /web/src/components/detailsPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/detailsPanel.css -------------------------------------------------------------------------------- /web/src/components/detailsPanelConnection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/detailsPanelConnection.jsx -------------------------------------------------------------------------------- /web/src/components/detailsPanelNode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/detailsPanelNode.jsx -------------------------------------------------------------------------------- /web/src/components/detailsSubpanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/detailsSubpanel.jsx -------------------------------------------------------------------------------- /web/src/components/displayOptions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/displayOptions.jsx -------------------------------------------------------------------------------- /web/src/components/filterActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/filterActions.js -------------------------------------------------------------------------------- /web/src/components/filterControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/filterControls.jsx -------------------------------------------------------------------------------- /web/src/components/filterStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/filterStore.js -------------------------------------------------------------------------------- /web/src/components/istio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/istio.png -------------------------------------------------------------------------------- /web/src/components/loadingCover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/loadingCover.css -------------------------------------------------------------------------------- /web/src/components/loadingCover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/loadingCover.jsx -------------------------------------------------------------------------------- /web/src/components/locator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/locator.css -------------------------------------------------------------------------------- /web/src/components/locator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/locator.jsx -------------------------------------------------------------------------------- /web/src/components/notices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/notices.jsx -------------------------------------------------------------------------------- /web/src/components/optionsPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/optionsPanel.css -------------------------------------------------------------------------------- /web/src/components/optionsPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/optionsPanel.jsx -------------------------------------------------------------------------------- /web/src/components/physicsOptions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/physicsOptions.css -------------------------------------------------------------------------------- /web/src/components/physicsOptions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/physicsOptions.jsx -------------------------------------------------------------------------------- /web/src/components/replayClock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/replayClock.css -------------------------------------------------------------------------------- /web/src/components/replayClock.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/replayClock.jsx -------------------------------------------------------------------------------- /web/src/components/serverStatus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/serverStatus.css -------------------------------------------------------------------------------- /web/src/components/serverStatus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/serverStatus.jsx -------------------------------------------------------------------------------- /web/src/components/stepper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/stepper.jsx -------------------------------------------------------------------------------- /web/src/components/trafficActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/trafficActions.js -------------------------------------------------------------------------------- /web/src/components/trafficFlow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/trafficFlow.css -------------------------------------------------------------------------------- /web/src/components/trafficFlow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/trafficFlow.jsx -------------------------------------------------------------------------------- /web/src/components/trafficStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/components/trafficStore.js -------------------------------------------------------------------------------- /web/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/favicon.ico -------------------------------------------------------------------------------- /web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/src/index.html -------------------------------------------------------------------------------- /web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmnellis/vistio/HEAD/web/webpack.config.js --------------------------------------------------------------------------------