├── .github ├── ISSUE_TEMPLATE └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README-cn.md ├── README.md ├── agent ├── campaign.go ├── campaign_test.go ├── cleaner.go ├── cleaner_test.go ├── config.go ├── config_test.go ├── http.go ├── http_test.go ├── leader.go ├── leader_test.go ├── logutil.go ├── metrics.go ├── mysql_service_manager_test.go ├── node.go ├── node_test.go ├── postgresql_service_manager.go ├── registry.go ├── registry_test.go ├── server.go ├── server_test.go ├── service_manager.go ├── single_point.go ├── single_point_test.go ├── util.go └── version.go ├── checker ├── agent_maniplate.go ├── cfg.toml ├── chaos.go ├── config.go ├── job.go └── server.go ├── cmd ├── mysql-agent-checker │ └── main.go ├── mysql-agent-service-boot-daemon │ └── main.go ├── mysql-agent-service-boot │ └── main.go ├── mysql-agent-tear-down │ └── main.go └── mysql-agent │ └── main.go ├── codecov.yml ├── docs ├── 1az.png ├── 3az.png ├── MOHA常规测试.png ├── MoHAInMobike.png ├── agent_down.png ├── architecture.png ├── benchmark.md ├── bootstrap_timing.png ├── design.md ├── detail.md ├── docker.png ├── election-2.0.png ├── etcd_down.png ├── etcdmonitor.png ├── failover-op-1.png ├── failover-op-2.png ├── failover-op-3.png ├── failover-op-4.png ├── howto.md ├── lease-1.png ├── lease-2.png ├── lease-3.png ├── lease-4.png ├── lease-5.png ├── lease-6.png ├── lease.md ├── local.md ├── multi_slaves.md ├── mysql_down.png ├── network_down.png ├── operation.md ├── product-install.md ├── roadmap.md ├── spm-election-2.0.png └── spm.md ├── etc ├── copyright │ ├── copyright.py │ ├── copyright.txt │ └── copyright_old.txt ├── docker-compose │ ├── agent │ │ ├── Dockerfile │ │ ├── Dockerfile.production │ │ ├── docker-entrypoint.sh │ │ ├── haproxy-master.cfg │ │ ├── haproxy-slave.cfg │ │ ├── my.cnf │ │ ├── node01.toml │ │ ├── node02.toml │ │ └── node03.toml │ ├── deploy-example │ │ ├── config.toml │ │ ├── docker-compose.yaml │ │ └── my.cnf │ ├── docker-compose.yaml │ ├── postgresql │ │ ├── 10-config.sh │ │ ├── Dockerfile │ │ ├── docker-compose.yaml │ │ ├── docker-entrypoint.sh │ │ ├── haproxy-master.cfg │ │ ├── haproxy-slave.cfg │ │ ├── node01.toml │ │ ├── node02.toml │ │ ├── node03.toml │ │ └── postgresql.conf │ ├── prometheus-etcd.yml │ └── prometheus-mysql-agent.yml ├── etcd-image │ └── v3.3.2 │ │ └── Dockerfile ├── monitor │ ├── etcd_rev3.json │ ├── go-processes.json │ ├── import-dashboard.py │ └── mysql-agent.json ├── mysql-image │ └── 5.7.22-pmm │ │ └── Dockerfile ├── pumba │ ├── readme.md │ └── start.py └── scripts │ └── master_switch.sh ├── hooks └── pre-commit ├── logs └── .gitkeep ├── moctl ├── conf.go ├── conf.toml ├── recovery.go └── switch.go ├── moha_logo.png ├── pkg ├── etcd │ ├── etcd.go │ ├── etcd_test.go │ ├── locker.go │ ├── urls.go │ └── urls_test.go ├── file │ ├── file.go │ └── file_test.go ├── log │ └── log.go ├── mysql │ ├── mysql.go │ └── mysql_test.go ├── postgresql │ ├── postgresql.go │ └── postgresql_test.go ├── systemcall │ ├── file_descriptor.go │ └── process.go └── types │ ├── db_config.go │ ├── urls.go │ └── urls_test.go ├── release.py ├── supervise ├── log.c ├── log.h └── supervise.c └── vendor ├── github.com ├── BurntSushi │ └── toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── COMPATIBLE │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── _examples │ │ ├── example.go │ │ ├── example.toml │ │ ├── hard.toml │ │ ├── implicit.toml │ │ ├── invalid-apples.toml │ │ ├── invalid.toml │ │ ├── readme1.toml │ │ └── readme2.toml │ │ ├── cmd │ │ ├── toml-test-decoder │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── toml-test-encoder │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ └── main.go │ │ └── tomlv │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── decode.go │ │ ├── decode_meta.go │ │ ├── decode_test.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── encoding_types.go │ │ ├── encoding_types_1.1.go │ │ ├── lex.go │ │ ├── parse.go │ │ ├── session.vim │ │ ├── type_check.go │ │ └── type_fields.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 ├── coreos │ ├── bbolt │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── allocate_test.go │ │ ├── appveyor.yml │ │ ├── bolt_386.go │ │ ├── bolt_amd64.go │ │ ├── bolt_arm.go │ │ ├── bolt_arm64.go │ │ ├── bolt_linux.go │ │ ├── bolt_mips64x.go │ │ ├── bolt_mipsx.go │ │ ├── bolt_openbsd.go │ │ ├── bolt_ppc.go │ │ ├── bolt_ppc64.go │ │ ├── bolt_ppc64le.go │ │ ├── bolt_s390x.go │ │ ├── bolt_unix.go │ │ ├── bolt_unix_solaris.go │ │ ├── bolt_windows.go │ │ ├── boltsync_unix.go │ │ ├── bucket.go │ │ ├── bucket_test.go │ │ ├── cmd │ │ │ └── bolt │ │ │ │ ├── main.go │ │ │ │ └── main_test.go │ │ ├── cursor.go │ │ ├── cursor_test.go │ │ ├── db.go │ │ ├── db_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── freelist.go │ │ ├── freelist_test.go │ │ ├── node.go │ │ ├── node_test.go │ │ ├── page.go │ │ ├── page_test.go │ │ ├── quick_test.go │ │ ├── simulation_no_freelist_sync_test.go │ │ ├── simulation_test.go │ │ ├── tx.go │ │ └── tx_test.go │ ├── etcd │ │ ├── .dockerignore │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .godir │ │ ├── .header │ │ ├── .semaphore.sh │ │ ├── .travis.yml │ │ ├── .words │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── Dockerfile │ │ ├── Dockerfile-functional-tester │ │ ├── Dockerfile-release │ │ ├── Dockerfile-release.arm64 │ │ ├── Dockerfile-release.ppc64le │ │ ├── Dockerfile-test │ │ ├── Documentation │ │ │ ├── README.md │ │ │ ├── benchmarks │ │ │ │ ├── README.md │ │ │ │ ├── etcd-2-1-0-alpha-benchmarks.md │ │ │ │ ├── etcd-2-2-0-benchmarks.md │ │ │ │ ├── etcd-2-2-0-rc-benchmarks.md │ │ │ │ ├── etcd-2-2-0-rc-memory-benchmarks.md │ │ │ │ ├── etcd-3-demo-benchmarks.md │ │ │ │ ├── etcd-3-watch-memory-benchmark.md │ │ │ │ └── etcd-storage-memory-benchmark.md │ │ │ ├── branch_management.md │ │ │ ├── demo.md │ │ │ ├── dev-guide │ │ │ │ ├── api_concurrency_reference_v3.md │ │ │ │ ├── api_grpc_gateway.md │ │ │ │ ├── api_reference_v3.md │ │ │ │ ├── apispec │ │ │ │ │ └── swagger │ │ │ │ │ │ ├── rpc.swagger.json │ │ │ │ │ │ ├── v3election.swagger.json │ │ │ │ │ │ └── v3lock.swagger.json │ │ │ │ ├── experimental_apis.md │ │ │ │ ├── grpc_naming.md │ │ │ │ ├── interacting_v3.md │ │ │ │ ├── limit.md │ │ │ │ └── local_cluster.md │ │ │ ├── dev-internal │ │ │ │ ├── discovery_protocol.md │ │ │ │ ├── logging.md │ │ │ │ └── release.md │ │ │ ├── dl_build.md │ │ │ ├── docs.md │ │ │ ├── faq.md │ │ │ ├── integrations.md │ │ │ ├── learning │ │ │ │ ├── api.md │ │ │ │ ├── api_guarantees.md │ │ │ │ ├── auth_design.md │ │ │ │ ├── data_model.md │ │ │ │ ├── glossary.md │ │ │ │ └── why.md │ │ │ ├── metrics.md │ │ │ ├── op-guide │ │ │ │ ├── authentication.md │ │ │ │ ├── clustering.md │ │ │ │ ├── configuration.md │ │ │ │ ├── container.md │ │ │ │ ├── etcd-sample-grafana.png │ │ │ │ ├── etcd3_alert.rules │ │ │ │ ├── etcd3_alert.rules.yml │ │ │ │ ├── failures.md │ │ │ │ ├── gateway.md │ │ │ │ ├── grafana.json │ │ │ │ ├── grpc_proxy.md │ │ │ │ ├── hardware.md │ │ │ │ ├── maintenance.md │ │ │ │ ├── monitoring.md │ │ │ │ ├── performance.md │ │ │ │ ├── recovery.md │ │ │ │ ├── runtime-configuration.md │ │ │ │ ├── runtime-reconf-design.md │ │ │ │ ├── security.md │ │ │ │ ├── supported-platform.md │ │ │ │ ├── v2-migration.md │ │ │ │ └── versioning.md │ │ │ ├── platforms │ │ │ │ ├── aws.md │ │ │ │ ├── container-linux-systemd.md │ │ │ │ └── freebsd.md │ │ │ ├── production-users.md │ │ │ ├── reporting_bugs.md │ │ │ ├── rfc │ │ │ │ └── v3api.md │ │ │ ├── tuning.md │ │ │ ├── upgrades │ │ │ │ ├── upgrade_3_0.md │ │ │ │ ├── upgrade_3_1.md │ │ │ │ ├── upgrade_3_2.md │ │ │ │ ├── upgrade_3_3.md │ │ │ │ └── upgrading-etcd.md │ │ │ └── v2 │ │ │ │ ├── 04_to_2_snapshot_migration.md │ │ │ │ ├── README.md │ │ │ │ ├── admin_guide.md │ │ │ │ ├── api.md │ │ │ │ ├── api_v3.md │ │ │ │ ├── auth_api.md │ │ │ │ ├── authentication.md │ │ │ │ ├── backward_compatibility.md │ │ │ │ ├── benchmarks │ │ │ │ ├── README.md │ │ │ │ ├── etcd-2-1-0-alpha-benchmarks.md │ │ │ │ ├── etcd-2-2-0-benchmarks.md │ │ │ │ ├── etcd-2-2-0-rc-benchmarks.md │ │ │ │ ├── etcd-2-2-0-rc-memory-benchmarks.md │ │ │ │ ├── etcd-3-demo-benchmarks.md │ │ │ │ ├── etcd-3-watch-memory-benchmark.md │ │ │ │ └── etcd-storage-memory-benchmark.md │ │ │ │ ├── branch_management.md │ │ │ │ ├── clustering.md │ │ │ │ ├── configuration.md │ │ │ │ ├── dev │ │ │ │ └── release.md │ │ │ │ ├── discovery_protocol.md │ │ │ │ ├── docker_guide.md │ │ │ │ ├── errorcode.md │ │ │ │ ├── etcd_alert.rules │ │ │ │ ├── etcd_alert.rules.yml │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── internal-protocol-versioning.md │ │ │ │ ├── libraries-and-tools.md │ │ │ │ ├── members_api.md │ │ │ │ ├── metrics.md │ │ │ │ ├── other_apis.md │ │ │ │ ├── platforms │ │ │ │ └── freebsd.md │ │ │ │ ├── production-users.md │ │ │ │ ├── proxy.md │ │ │ │ ├── reporting_bugs.md │ │ │ │ ├── rfc │ │ │ │ └── v3api.md │ │ │ │ ├── runtime-configuration.md │ │ │ │ ├── runtime-reconf-design.md │ │ │ │ ├── security.md │ │ │ │ ├── tuning.md │ │ │ │ ├── upgrade_2_1.md │ │ │ │ ├── upgrade_2_2.md │ │ │ │ └── upgrade_2_3.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── Procfile │ │ ├── Procfile.v2 │ │ ├── README.md │ │ ├── ROADMAP.md │ │ ├── V2Procfile │ │ ├── alarm │ │ │ └── alarms.go │ │ ├── auth │ │ │ ├── authpb │ │ │ │ ├── auth.pb.go │ │ │ │ └── auth.proto │ │ │ ├── doc.go │ │ │ ├── jwt.go │ │ │ ├── jwt_test.go │ │ │ ├── range_perm_cache.go │ │ │ ├── range_perm_cache_test.go │ │ │ ├── simple_token.go │ │ │ ├── simple_token_test.go │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── bill-of-materials.json │ │ ├── bill-of-materials.override.json │ │ ├── build │ │ ├── build.bat │ │ ├── build.ps1 │ │ ├── client │ │ │ ├── README.md │ │ │ ├── auth_role.go │ │ │ ├── auth_user.go │ │ │ ├── cancelreq.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── cluster_error.go │ │ │ ├── curl.go │ │ │ ├── discover.go │ │ │ ├── doc.go │ │ │ ├── example_keys_test.go │ │ │ ├── fake_transport_test.go │ │ │ ├── integration │ │ │ │ ├── client_test.go │ │ │ │ ├── doc.go │ │ │ │ └── main_test.go │ │ │ ├── keys.generated.go │ │ │ ├── keys.go │ │ │ ├── keys_bench_test.go │ │ │ ├── keys_test.go │ │ │ ├── main_test.go │ │ │ ├── members.go │ │ │ ├── members_test.go │ │ │ └── util.go │ │ ├── clientv3 │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── clientv3util │ │ │ │ ├── example_key_test.go │ │ │ │ └── util.go │ │ │ ├── cluster.go │ │ │ ├── compact_op.go │ │ │ ├── compact_op_test.go │ │ │ ├── compare.go │ │ │ ├── concurrency │ │ │ │ ├── doc.go │ │ │ │ ├── election.go │ │ │ │ ├── example_election_test.go │ │ │ │ ├── example_mutex_test.go │ │ │ │ ├── example_stm_test.go │ │ │ │ ├── key.go │ │ │ │ ├── main_test.go │ │ │ │ ├── mutex.go │ │ │ │ ├── session.go │ │ │ │ └── stm.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── example_auth_test.go │ │ │ ├── example_cluster_test.go │ │ │ ├── example_kv_test.go │ │ │ ├── example_lease_test.go │ │ │ ├── example_maintenence_test.go │ │ │ ├── example_metrics_test.go │ │ │ ├── example_test.go │ │ │ ├── example_watch_test.go │ │ │ ├── health_balancer.go │ │ │ ├── health_balancer_test.go │ │ │ ├── integration │ │ │ │ ├── black_hole_test.go │ │ │ │ ├── cluster_test.go │ │ │ │ ├── dial_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── kv_test.go │ │ │ │ ├── lease_test.go │ │ │ │ ├── leasing_test.go │ │ │ │ ├── logger_test.go │ │ │ │ ├── main_test.go │ │ │ │ ├── maintenance_test.go │ │ │ │ ├── metrics_test.go │ │ │ │ ├── mirror_test.go │ │ │ │ ├── namespace_test.go │ │ │ │ ├── network_partition_test.go │ │ │ │ ├── role_test.go │ │ │ │ ├── server_shutdown_test.go │ │ │ │ ├── txn_test.go │ │ │ │ ├── user_test.go │ │ │ │ ├── util.go │ │ │ │ └── watch_test.go │ │ │ ├── kv.go │ │ │ ├── lease.go │ │ │ ├── leasing │ │ │ │ ├── cache.go │ │ │ │ ├── doc.go │ │ │ │ ├── kv.go │ │ │ │ ├── txn.go │ │ │ │ └── util.go │ │ │ ├── logger.go │ │ │ ├── logger_test.go │ │ │ ├── main_test.go │ │ │ ├── maintenance.go │ │ │ ├── mirror │ │ │ │ └── syncer.go │ │ │ ├── namespace │ │ │ │ ├── doc.go │ │ │ │ ├── kv.go │ │ │ │ ├── lease.go │ │ │ │ ├── util.go │ │ │ │ ├── util_test.go │ │ │ │ └── watch.go │ │ │ ├── naming │ │ │ │ ├── doc.go │ │ │ │ ├── grpc.go │ │ │ │ └── grpc_test.go │ │ │ ├── op.go │ │ │ ├── op_test.go │ │ │ ├── options.go │ │ │ ├── ordering │ │ │ │ ├── doc.go │ │ │ │ ├── kv.go │ │ │ │ ├── kv_test.go │ │ │ │ ├── logger_test.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── ready_wait.go │ │ │ ├── retry.go │ │ │ ├── sort.go │ │ │ ├── txn.go │ │ │ ├── txn_test.go │ │ │ ├── watch.go │ │ │ ├── watch_test.go │ │ │ └── yaml │ │ │ │ ├── config.go │ │ │ │ └── config_test.go │ │ ├── cmd │ │ │ ├── README.md │ │ │ ├── etcd │ │ │ ├── etcdctl │ │ │ └── tools │ │ ├── compactor │ │ │ ├── compactor.go │ │ │ ├── compactor_test.go │ │ │ ├── doc.go │ │ │ ├── periodic.go │ │ │ ├── periodic_test.go │ │ │ ├── revision.go │ │ │ └── revision_test.go │ │ ├── contrib │ │ │ ├── README.md │ │ │ ├── raftexample │ │ │ │ ├── Procfile │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── httpapi.go │ │ │ │ ├── kvstore.go │ │ │ │ ├── kvstore_test.go │ │ │ │ ├── listener.go │ │ │ │ ├── main.go │ │ │ │ ├── raft.go │ │ │ │ └── raftexample_test.go │ │ │ ├── recipes │ │ │ │ ├── barrier.go │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── double_barrier.go │ │ │ │ ├── key.go │ │ │ │ ├── priority_queue.go │ │ │ │ ├── queue.go │ │ │ │ ├── rwmutex.go │ │ │ │ └── watch.go │ │ │ └── systemd │ │ │ │ ├── etcd.service │ │ │ │ ├── etcd2-backup-coreos │ │ │ │ ├── .gitignore │ │ │ │ ├── 30-etcd2-backup-restore.conf │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ ├── etcd2-backup-install │ │ │ │ ├── etcd2-backup.service │ │ │ │ ├── etcd2-backup.timer │ │ │ │ ├── etcd2-join │ │ │ │ ├── etcd2-join.service │ │ │ │ ├── etcd2-restore.go │ │ │ │ └── etcd2-restore.service │ │ │ │ └── etcd3-multinode │ │ │ │ └── README.md │ │ ├── cover │ │ ├── discovery │ │ │ ├── discovery.go │ │ │ └── discovery_test.go │ │ ├── e2e │ │ │ ├── cluster_direct_test.go │ │ │ ├── cluster_proxy_test.go │ │ │ ├── cluster_test.go │ │ │ ├── ctl_v2_test.go │ │ │ ├── ctl_v3_alarm_test.go │ │ │ ├── ctl_v3_auth_test.go │ │ │ ├── ctl_v3_compact_test.go │ │ │ ├── ctl_v3_defrag_test.go │ │ │ ├── ctl_v3_elect_test.go │ │ │ ├── ctl_v3_endpoint_test.go │ │ │ ├── ctl_v3_kv_test.go │ │ │ ├── ctl_v3_lease_test.go │ │ │ ├── ctl_v3_lock_test.go │ │ │ ├── ctl_v3_make_mirror_test.go │ │ │ ├── ctl_v3_member_test.go │ │ │ ├── ctl_v3_migrate_test.go │ │ │ ├── ctl_v3_move_leader_test.go │ │ │ ├── ctl_v3_role_test.go │ │ │ ├── ctl_v3_snapshot_test.go │ │ │ ├── ctl_v3_test.go │ │ │ ├── ctl_v3_txn_test.go │ │ │ ├── ctl_v3_user_test.go │ │ │ ├── ctl_v3_watch_test.go │ │ │ ├── doc.go │ │ │ ├── etcd_config_test.go │ │ │ ├── etcd_corrupt_test.go │ │ │ ├── etcd_process.go │ │ │ ├── etcd_release_upgrade_test.go │ │ │ ├── etcd_spawn_cov.go │ │ │ ├── etcd_spawn_nocov.go │ │ │ ├── gateway_test.go │ │ │ ├── main_test.go │ │ │ ├── metrics_test.go │ │ │ ├── util.go │ │ │ ├── v2_curl_test.go │ │ │ ├── v2_test.go │ │ │ ├── v2v3_test.go │ │ │ └── v3_curl_test.go │ │ ├── embed │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── doc.go │ │ │ ├── etcd.go │ │ │ ├── serve.go │ │ │ ├── serve_test.go │ │ │ └── util.go │ │ ├── error │ │ │ ├── error.go │ │ │ └── error_test.go │ │ ├── etcd.conf.yml.sample │ │ ├── etcdctl │ │ │ ├── README.md │ │ │ ├── READMEv2.md │ │ │ ├── ctlv2 │ │ │ │ ├── command │ │ │ │ │ ├── auth_commands.go │ │ │ │ │ ├── backup_command.go │ │ │ │ │ ├── cluster_health.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── exec_watch_command.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── get_command.go │ │ │ │ │ ├── ls_command.go │ │ │ │ │ ├── member_commands.go │ │ │ │ │ ├── mk_command.go │ │ │ │ │ ├── mkdir_command.go │ │ │ │ │ ├── rm_command.go │ │ │ │ │ ├── rmdir_command.go │ │ │ │ │ ├── role_commands.go │ │ │ │ │ ├── set_command.go │ │ │ │ │ ├── set_dir_command.go │ │ │ │ │ ├── update_command.go │ │ │ │ │ ├── update_dir_command.go │ │ │ │ │ ├── user_commands.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_test.go │ │ │ │ │ └── watch_command.go │ │ │ │ ├── ctl.go │ │ │ │ ├── ctl_cov.go │ │ │ │ └── ctl_nocov.go │ │ │ ├── ctlv3 │ │ │ │ ├── command │ │ │ │ │ ├── alarm_command.go │ │ │ │ │ ├── auth_command.go │ │ │ │ │ ├── check.go │ │ │ │ │ ├── compaction_command.go │ │ │ │ │ ├── defrag_command.go │ │ │ │ │ ├── del_command.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── elect_command.go │ │ │ │ │ ├── ep_command.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── get_command.go │ │ │ │ │ ├── global.go │ │ │ │ │ ├── lease_command.go │ │ │ │ │ ├── lock_command.go │ │ │ │ │ ├── make_mirror_command.go │ │ │ │ │ ├── member_command.go │ │ │ │ │ ├── migrate_command.go │ │ │ │ │ ├── move_leader_command.go │ │ │ │ │ ├── printer.go │ │ │ │ │ ├── printer_fields.go │ │ │ │ │ ├── printer_json.go │ │ │ │ │ ├── printer_protobuf.go │ │ │ │ │ ├── printer_simple.go │ │ │ │ │ ├── printer_table.go │ │ │ │ │ ├── put_command.go │ │ │ │ │ ├── role_command.go │ │ │ │ │ ├── snapshot_command.go │ │ │ │ │ ├── txn_command.go │ │ │ │ │ ├── user_command.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── version_command.go │ │ │ │ │ ├── watch_command.go │ │ │ │ │ └── watch_command_test.go │ │ │ │ ├── ctl.go │ │ │ │ ├── ctl_cov.go │ │ │ │ ├── ctl_nocov.go │ │ │ │ └── help.go │ │ │ ├── doc │ │ │ │ └── mirror_maker.md │ │ │ ├── main.go │ │ │ └── main_test.go │ │ ├── etcdmain │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── doc.go │ │ │ ├── etcd.go │ │ │ ├── gateway.go │ │ │ ├── grpc_proxy.go │ │ │ ├── help.go │ │ │ ├── main.go │ │ │ └── util.go │ │ ├── etcdserver │ │ │ ├── api │ │ │ │ ├── capability.go │ │ │ │ ├── cluster.go │ │ │ │ ├── doc.go │ │ │ │ ├── etcdhttp │ │ │ │ │ ├── base.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── peer.go │ │ │ │ │ ├── peer_test.go │ │ │ │ │ └── version_test.go │ │ │ │ ├── v2http │ │ │ │ │ ├── capability.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_auth.go │ │ │ │ │ ├── client_auth_test.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── http_test.go │ │ │ │ │ ├── httptypes │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── errors_test.go │ │ │ │ │ │ ├── member.go │ │ │ │ │ │ └── member_test.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── ca.pem │ │ │ │ │ │ ├── otheruser.pem │ │ │ │ │ │ └── user.pem │ │ │ │ ├── v2v3 │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── store.go │ │ │ │ │ └── watcher.go │ │ │ │ ├── v3client │ │ │ │ │ ├── doc.go │ │ │ │ │ └── v3client.go │ │ │ │ ├── v3election │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── election.go │ │ │ │ │ └── v3electionpb │ │ │ │ │ │ ├── gw │ │ │ │ │ │ └── v3election.pb.gw.go │ │ │ │ │ │ ├── v3election.pb.go │ │ │ │ │ │ └── v3election.proto │ │ │ │ ├── v3lock │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── lock.go │ │ │ │ │ └── v3lockpb │ │ │ │ │ │ ├── gw │ │ │ │ │ │ └── v3lock.pb.gw.go │ │ │ │ │ │ ├── v3lock.pb.go │ │ │ │ │ │ └── v3lock.proto │ │ │ │ └── v3rpc │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── grpc.go │ │ │ │ │ ├── header.go │ │ │ │ │ ├── interceptor.go │ │ │ │ │ ├── key.go │ │ │ │ │ ├── lease.go │ │ │ │ │ ├── maintenance.go │ │ │ │ │ ├── member.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── quota.go │ │ │ │ │ ├── rpctypes │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── error_test.go │ │ │ │ │ └── md.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_test.go │ │ │ │ │ └── watch.go │ │ │ ├── apply.go │ │ │ ├── apply_auth.go │ │ │ ├── apply_v2.go │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── auth_requests.go │ │ │ │ └── auth_test.go │ │ │ ├── backend.go │ │ │ ├── cluster_util.go │ │ │ ├── cluster_util_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── consistent_index.go │ │ │ ├── consistent_index_test.go │ │ │ ├── corrupt.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── etcdserverpb │ │ │ │ ├── etcdserver.pb.go │ │ │ │ ├── etcdserver.proto │ │ │ │ ├── gw │ │ │ │ │ └── rpc.pb.gw.go │ │ │ │ ├── raft_internal.pb.go │ │ │ │ ├── raft_internal.proto │ │ │ │ ├── rpc.pb.go │ │ │ │ └── rpc.proto │ │ │ ├── membership │ │ │ │ ├── cluster.go │ │ │ │ ├── cluster_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── member.go │ │ │ │ ├── member_test.go │ │ │ │ └── store.go │ │ │ ├── metrics.go │ │ │ ├── quota.go │ │ │ ├── raft.go │ │ │ ├── raft_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ ├── snapshot_merge.go │ │ │ ├── stats │ │ │ │ ├── leader.go │ │ │ │ ├── queue.go │ │ │ │ ├── server.go │ │ │ │ └── stats.go │ │ │ ├── storage.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ ├── v2_server.go │ │ │ └── v3_server.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── hack │ │ │ ├── README.md │ │ │ ├── benchmark │ │ │ │ ├── README.md │ │ │ │ └── bench.sh │ │ │ ├── insta-discovery │ │ │ │ ├── Procfile │ │ │ │ ├── README.md │ │ │ │ └── discovery │ │ │ ├── kubernetes-deploy │ │ │ │ ├── README.md │ │ │ │ ├── etcd.yml │ │ │ │ └── vulcand.yml │ │ │ ├── patch │ │ │ │ ├── README.md │ │ │ │ └── cherrypick.sh │ │ │ ├── scripts-dev │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── docker-dns-srv │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── certs-gateway │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ │ ├── run.sh │ │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key.insecure │ │ │ │ │ ├── certs-wildcard │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ │ ├── run.sh │ │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key.insecure │ │ │ │ │ ├── certs │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ │ ├── run.sh │ │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key.insecure │ │ │ │ │ ├── etcd.zone │ │ │ │ │ ├── named.conf │ │ │ │ │ ├── rdns.zone │ │ │ │ │ └── resolv.conf │ │ │ │ ├── docker-dns │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── certs-common-name-auth │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ │ ├── run.sh │ │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key.insecure │ │ │ │ │ ├── certs-common-name-multi │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ │ ├── run.sh │ │ │ │ │ │ ├── server-1.crt │ │ │ │ │ │ ├── server-1.key.insecure │ │ │ │ │ │ ├── server-2.crt │ │ │ │ │ │ ├── server-2.key.insecure │ │ │ │ │ │ ├── server-3.crt │ │ │ │ │ │ ├── server-3.key.insecure │ │ │ │ │ │ ├── server-ca-csr-1.json │ │ │ │ │ │ ├── server-ca-csr-2.json │ │ │ │ │ │ └── server-ca-csr-3.json │ │ │ │ │ ├── certs-gateway │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ │ ├── run.sh │ │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key.insecure │ │ │ │ │ ├── certs-wildcard │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ │ ├── run.sh │ │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key.insecure │ │ │ │ │ ├── certs │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ ├── gencert.json │ │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ │ ├── run.sh │ │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ └── server.key.insecure │ │ │ │ │ ├── etcd.zone │ │ │ │ │ ├── insecure │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ └── run.sh │ │ │ │ │ ├── named.conf │ │ │ │ │ ├── rdns.zone │ │ │ │ │ └── resolv.conf │ │ │ │ └── docker-static-ip │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── certs-metrics-proxy │ │ │ │ │ ├── Procfile │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── gencert.json │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key.insecure │ │ │ │ │ └── certs │ │ │ │ │ ├── Procfile │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── gencert.json │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key.insecure │ │ │ └── tls-setup │ │ │ │ ├── Makefile │ │ │ │ ├── Procfile │ │ │ │ ├── README.md │ │ │ │ └── config │ │ │ │ ├── ca-config.json │ │ │ │ ├── ca-csr.json │ │ │ │ └── req-csr.json │ │ ├── integration │ │ │ ├── bridge.go │ │ │ ├── cluster.go │ │ │ ├── cluster_direct.go │ │ │ ├── cluster_proxy.go │ │ │ ├── cluster_test.go │ │ │ ├── doc.go │ │ │ ├── embed_test.go │ │ │ ├── fixtures-expired │ │ │ │ ├── README │ │ │ │ ├── etcd-root-ca-key.pem │ │ │ │ ├── etcd-root-ca.pem │ │ │ │ ├── gencerts.sh │ │ │ │ ├── server-key.pem │ │ │ │ └── server.pem │ │ │ ├── fixtures │ │ │ │ ├── ca-csr.json │ │ │ │ ├── ca.crt │ │ │ │ ├── gencert.json │ │ │ │ ├── gencerts.sh │ │ │ │ ├── revoke.crl │ │ │ │ ├── server-ca-csr-wildcard.json │ │ │ │ ├── server-ca-csr.json │ │ │ │ ├── server-ca-csr2.json │ │ │ │ ├── server-revoked.crt │ │ │ │ ├── server-revoked.key.insecure │ │ │ │ ├── server-wildcard.crt │ │ │ │ ├── server-wildcard.key.insecure │ │ │ │ ├── server.crt │ │ │ │ ├── server.key.insecure │ │ │ │ ├── server2.crt │ │ │ │ └── server2.key.insecure │ │ │ ├── logger_test.go │ │ │ ├── main_test.go │ │ │ ├── member_test.go │ │ │ ├── metrics_test.go │ │ │ ├── network_partition_test.go │ │ │ ├── util_test.go │ │ │ ├── v2_http_kv_test.go │ │ │ ├── v3_alarm_test.go │ │ │ ├── v3_auth_test.go │ │ │ ├── v3_barrier_test.go │ │ │ ├── v3_double_barrier_test.go │ │ │ ├── v3_election_test.go │ │ │ ├── v3_grpc_inflight_test.go │ │ │ ├── v3_grpc_test.go │ │ │ ├── v3_health_test.go │ │ │ ├── v3_leadership_test.go │ │ │ ├── v3_lease_test.go │ │ │ ├── v3_lock_test.go │ │ │ ├── v3_queue_test.go │ │ │ ├── v3_stm_test.go │ │ │ ├── v3_watch_test.go │ │ │ ├── v3election_grpc_test.go │ │ │ └── v3lock_grpc_test.go │ │ ├── lease │ │ │ ├── doc.go │ │ │ ├── leasehttp │ │ │ │ ├── doc.go │ │ │ │ ├── http.go │ │ │ │ └── http_test.go │ │ │ ├── leasepb │ │ │ │ ├── lease.pb.go │ │ │ │ └── lease.proto │ │ │ ├── lessor.go │ │ │ └── lessor_test.go │ │ ├── logos │ │ │ ├── etcd-glyph-color.png │ │ │ ├── etcd-glyph-color.svg │ │ │ ├── etcd-horizontal-bw.png │ │ │ ├── etcd-horizontal-bw.svg │ │ │ ├── etcd-horizontal-color.png │ │ │ ├── etcd-horizontal-color.svg │ │ │ ├── etcd-offset-bw.png │ │ │ ├── etcd-offset-bw.svg │ │ │ ├── etcd-offset-color.png │ │ │ ├── etcd-offset-color.svg │ │ │ ├── etcd-stacked-bw.png │ │ │ ├── etcd-stacked-bw.svg │ │ │ ├── etcd-stacked-color.png │ │ │ └── etcd-stacked-color.svg │ │ ├── main.go │ │ ├── main_test.go │ │ ├── meeting.ics │ │ ├── mvcc │ │ │ ├── backend │ │ │ │ ├── backend.go │ │ │ │ ├── backend_bench_test.go │ │ │ │ ├── backend_test.go │ │ │ │ ├── batch_tx.go │ │ │ │ ├── batch_tx_test.go │ │ │ │ ├── config_default.go │ │ │ │ ├── config_linux.go │ │ │ │ ├── config_windows.go │ │ │ │ ├── doc.go │ │ │ │ ├── metrics.go │ │ │ │ ├── read_tx.go │ │ │ │ └── tx_buffer.go │ │ │ ├── doc.go │ │ │ ├── index.go │ │ │ ├── index_test.go │ │ │ ├── key_index.go │ │ │ ├── key_index_test.go │ │ │ ├── kv.go │ │ │ ├── kv_test.go │ │ │ ├── kv_view.go │ │ │ ├── kvstore.go │ │ │ ├── kvstore_bench_test.go │ │ │ ├── kvstore_compaction.go │ │ │ ├── kvstore_compaction_test.go │ │ │ ├── kvstore_test.go │ │ │ ├── kvstore_txn.go │ │ │ ├── metrics.go │ │ │ ├── metrics_txn.go │ │ │ ├── mvccpb │ │ │ │ ├── kv.pb.go │ │ │ │ └── kv.proto │ │ │ ├── revision.go │ │ │ ├── revision_test.go │ │ │ ├── util.go │ │ │ ├── watchable_store.go │ │ │ ├── watchable_store_bench_test.go │ │ │ ├── watchable_store_test.go │ │ │ ├── watchable_store_txn.go │ │ │ ├── watcher.go │ │ │ ├── watcher_bench_test.go │ │ │ ├── watcher_group.go │ │ │ └── watcher_test.go │ │ ├── pkg │ │ │ ├── README.md │ │ │ ├── adt │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── interval_tree.go │ │ │ │ └── interval_tree_test.go │ │ │ ├── contention │ │ │ │ ├── contention.go │ │ │ │ └── doc.go │ │ │ ├── cors │ │ │ │ ├── cors.go │ │ │ │ └── cors_test.go │ │ │ ├── cpuutil │ │ │ │ ├── doc.go │ │ │ │ └── endian.go │ │ │ ├── crc │ │ │ │ ├── crc.go │ │ │ │ └── crc_test.go │ │ │ ├── debugutil │ │ │ │ ├── doc.go │ │ │ │ └── pprof.go │ │ │ ├── expect │ │ │ │ ├── expect.go │ │ │ │ └── expect_test.go │ │ │ ├── fileutil │ │ │ │ ├── dir_unix.go │ │ │ │ ├── dir_windows.go │ │ │ │ ├── fileutil.go │ │ │ │ ├── fileutil_test.go │ │ │ │ ├── lock.go │ │ │ │ ├── lock_flock.go │ │ │ │ ├── lock_linux.go │ │ │ │ ├── lock_linux_test.go │ │ │ │ ├── lock_plan9.go │ │ │ │ ├── lock_solaris.go │ │ │ │ ├── lock_test.go │ │ │ │ ├── lock_unix.go │ │ │ │ ├── lock_windows.go │ │ │ │ ├── preallocate.go │ │ │ │ ├── preallocate_darwin.go │ │ │ │ ├── preallocate_test.go │ │ │ │ ├── preallocate_unix.go │ │ │ │ ├── preallocate_unsupported.go │ │ │ │ ├── purge.go │ │ │ │ ├── purge_test.go │ │ │ │ ├── sync.go │ │ │ │ ├── sync_darwin.go │ │ │ │ └── sync_linux.go │ │ │ ├── flags │ │ │ │ ├── flag.go │ │ │ │ ├── flag_test.go │ │ │ │ ├── strings.go │ │ │ │ ├── strings_test.go │ │ │ │ ├── urls.go │ │ │ │ └── urls_test.go │ │ │ ├── httputil │ │ │ │ └── httputil.go │ │ │ ├── idutil │ │ │ │ ├── id.go │ │ │ │ └── id_test.go │ │ │ ├── ioutil │ │ │ │ ├── pagewriter.go │ │ │ │ ├── pagewriter_test.go │ │ │ │ ├── readcloser.go │ │ │ │ ├── readcloser_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_test.go │ │ │ │ └── util.go │ │ │ ├── logutil │ │ │ │ ├── merge_logger.go │ │ │ │ └── merge_logger_test.go │ │ │ ├── mock │ │ │ │ ├── mockstorage │ │ │ │ │ ├── doc.go │ │ │ │ │ └── storage_recorder.go │ │ │ │ ├── mockstore │ │ │ │ │ ├── doc.go │ │ │ │ │ └── store_recorder.go │ │ │ │ └── mockwait │ │ │ │ │ ├── doc.go │ │ │ │ │ └── wait_recorder.go │ │ │ ├── netutil │ │ │ │ ├── isolate_linux.go │ │ │ │ ├── isolate_stub.go │ │ │ │ ├── netutil.go │ │ │ │ ├── netutil_test.go │ │ │ │ ├── routes.go │ │ │ │ ├── routes_linux.go │ │ │ │ └── routes_linux_test.go │ │ │ ├── osutil │ │ │ │ ├── interrupt_unix.go │ │ │ │ ├── interrupt_windows.go │ │ │ │ ├── osutil.go │ │ │ │ ├── osutil_test.go │ │ │ │ ├── signal.go │ │ │ │ └── signal_linux.go │ │ │ ├── pathutil │ │ │ │ ├── path.go │ │ │ │ └── path_test.go │ │ │ ├── pbutil │ │ │ │ ├── pbutil.go │ │ │ │ └── pbutil_test.go │ │ │ ├── report │ │ │ │ ├── doc.go │ │ │ │ ├── report.go │ │ │ │ ├── report_test.go │ │ │ │ ├── timeseries.go │ │ │ │ ├── timeseries_test.go │ │ │ │ └── weighted.go │ │ │ ├── runtime │ │ │ │ ├── fds_linux.go │ │ │ │ └── fds_other.go │ │ │ ├── schedule │ │ │ │ ├── doc.go │ │ │ │ ├── schedule.go │ │ │ │ └── schedule_test.go │ │ │ ├── srv │ │ │ │ ├── srv.go │ │ │ │ └── srv_test.go │ │ │ ├── stringutil │ │ │ │ └── stringutil.go │ │ │ ├── testutil │ │ │ │ ├── assert.go │ │ │ │ ├── leak.go │ │ │ │ ├── leak_test.go │ │ │ │ ├── pauseable_handler.go │ │ │ │ ├── recorder.go │ │ │ │ └── testutil.go │ │ │ ├── tlsutil │ │ │ │ ├── doc.go │ │ │ │ └── tlsutil.go │ │ │ ├── transport │ │ │ │ ├── doc.go │ │ │ │ ├── fixtures │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── gencert.json │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key.insecure │ │ │ │ ├── keepalive_listener.go │ │ │ │ ├── keepalive_listener_test.go │ │ │ │ ├── limit_listen.go │ │ │ │ ├── listener.go │ │ │ │ ├── listener_test.go │ │ │ │ ├── listener_tls.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxy_test.go │ │ │ │ ├── timeout_conn.go │ │ │ │ ├── timeout_dialer.go │ │ │ │ ├── timeout_dialer_test.go │ │ │ │ ├── timeout_listener.go │ │ │ │ ├── timeout_listener_test.go │ │ │ │ ├── timeout_transport.go │ │ │ │ ├── timeout_transport_test.go │ │ │ │ ├── tls.go │ │ │ │ ├── transport.go │ │ │ │ └── unix_listener.go │ │ │ ├── types │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── id_test.go │ │ │ │ ├── set.go │ │ │ │ ├── set_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── slice_test.go │ │ │ │ ├── urls.go │ │ │ │ ├── urls_test.go │ │ │ │ ├── urlsmap.go │ │ │ │ └── urlsmap_test.go │ │ │ └── wait │ │ │ │ ├── wait.go │ │ │ │ ├── wait_test.go │ │ │ │ ├── wait_time.go │ │ │ │ └── wait_time_test.go │ │ ├── proxy │ │ │ ├── grpcproxy │ │ │ │ ├── adapter │ │ │ │ │ ├── auth_client_adapter.go │ │ │ │ │ ├── chan_stream.go │ │ │ │ │ ├── cluster_client_adapter.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── election_client_adapter.go │ │ │ │ │ ├── kv_client_adapter.go │ │ │ │ │ ├── lease_client_adapter.go │ │ │ │ │ ├── lock_client_adapter.go │ │ │ │ │ ├── maintenance_client_adapter.go │ │ │ │ │ └── watch_client_adapter.go │ │ │ │ ├── auth.go │ │ │ │ ├── cache │ │ │ │ │ └── store.go │ │ │ │ ├── cluster.go │ │ │ │ ├── cluster_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── election.go │ │ │ │ ├── health.go │ │ │ │ ├── kv.go │ │ │ │ ├── kv_test.go │ │ │ │ ├── leader.go │ │ │ │ ├── lease.go │ │ │ │ ├── lock.go │ │ │ │ ├── logger.go │ │ │ │ ├── maintenance.go │ │ │ │ ├── metrics.go │ │ │ │ ├── register.go │ │ │ │ ├── register_test.go │ │ │ │ ├── util.go │ │ │ │ ├── watch.go │ │ │ │ ├── watch_broadcast.go │ │ │ │ ├── watch_broadcasts.go │ │ │ │ ├── watch_ranges.go │ │ │ │ └── watcher.go │ │ │ ├── httpproxy │ │ │ │ ├── director.go │ │ │ │ ├── director_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── metrics.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxy_test.go │ │ │ │ ├── reverse.go │ │ │ │ └── reverse_test.go │ │ │ └── tcpproxy │ │ │ │ ├── doc.go │ │ │ │ ├── userspace.go │ │ │ │ └── userspace_test.go │ │ ├── raft │ │ │ ├── README.md │ │ │ ├── design.md │ │ │ ├── diff_test.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ ├── log_unstable.go │ │ │ ├── log_unstable_test.go │ │ │ ├── logger.go │ │ │ ├── node.go │ │ │ ├── node_bench_test.go │ │ │ ├── node_test.go │ │ │ ├── progress.go │ │ │ ├── progress_test.go │ │ │ ├── raft.go │ │ │ ├── raft_flow_control_test.go │ │ │ ├── raft_paper_test.go │ │ │ ├── raft_snap_test.go │ │ │ ├── raft_test.go │ │ │ ├── raftpb │ │ │ │ ├── raft.pb.go │ │ │ │ └── raft.proto │ │ │ ├── rafttest │ │ │ │ ├── doc.go │ │ │ │ ├── network.go │ │ │ │ ├── network_test.go │ │ │ │ ├── node.go │ │ │ │ ├── node_bench_test.go │ │ │ │ └── node_test.go │ │ │ ├── rawnode.go │ │ │ ├── rawnode_test.go │ │ │ ├── read_only.go │ │ │ ├── status.go │ │ │ ├── storage.go │ │ │ ├── storage_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── rafthttp │ │ │ ├── coder.go │ │ │ ├── doc.go │ │ │ ├── fake_roundtripper_test.go │ │ │ ├── functional_test.go │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── metrics.go │ │ │ ├── msg_codec.go │ │ │ ├── msg_codec_test.go │ │ │ ├── msgappv2_codec.go │ │ │ ├── msgappv2_codec_test.go │ │ │ ├── peer.go │ │ │ ├── peer_status.go │ │ │ ├── peer_test.go │ │ │ ├── pipeline.go │ │ │ ├── pipeline_test.go │ │ │ ├── probing_status.go │ │ │ ├── remote.go │ │ │ ├── snapshot_sender.go │ │ │ ├── snapshot_test.go │ │ │ ├── stream.go │ │ │ ├── stream_test.go │ │ │ ├── transport.go │ │ │ ├── transport_bench_test.go │ │ │ ├── transport_test.go │ │ │ ├── urlpick.go │ │ │ ├── urlpick_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── scripts │ │ │ ├── build-aci │ │ │ ├── build-binary │ │ │ ├── build-docker │ │ │ ├── genproto.sh │ │ │ ├── install-marker.sh │ │ │ ├── release.sh │ │ │ ├── updatebom.sh │ │ │ └── updatedep.sh │ │ ├── snap │ │ │ ├── db.go │ │ │ ├── message.go │ │ │ ├── metrics.go │ │ │ ├── snappb │ │ │ │ ├── snap.pb.go │ │ │ │ └── snap.proto │ │ │ ├── snapshotter.go │ │ │ └── snapshotter_test.go │ │ ├── store │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── event_history.go │ │ │ ├── event_queue.go │ │ │ ├── event_test.go │ │ │ ├── heap_test.go │ │ │ ├── metrics.go │ │ │ ├── node.go │ │ │ ├── node_extern.go │ │ │ ├── node_extern_test.go │ │ │ ├── node_test.go │ │ │ ├── stats.go │ │ │ ├── stats_test.go │ │ │ ├── store.go │ │ │ ├── store_bench_test.go │ │ │ ├── store_test.go │ │ │ ├── store_ttl_test.go │ │ │ ├── store_v2_test.go │ │ │ ├── store_v2v3_test.go │ │ │ ├── ttl_key_heap.go │ │ │ ├── watcher.go │ │ │ ├── watcher_hub.go │ │ │ ├── watcher_hub_test.go │ │ │ └── watcher_test.go │ │ ├── test │ │ ├── tools │ │ │ ├── benchmark │ │ │ │ ├── .gitignore │ │ │ │ ├── cmd │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── lease.go │ │ │ │ │ ├── mvcc-put.go │ │ │ │ │ ├── mvcc.go │ │ │ │ │ ├── put.go │ │ │ │ │ ├── range.go │ │ │ │ │ ├── root.go │ │ │ │ │ ├── stm.go │ │ │ │ │ ├── txn_put.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── watch.go │ │ │ │ │ ├── watch_get.go │ │ │ │ │ └── watch_latency.go │ │ │ │ ├── doc.go │ │ │ │ └── main.go │ │ │ ├── etcd-dump-db │ │ │ │ ├── README.md │ │ │ │ ├── backend.go │ │ │ │ ├── doc.go │ │ │ │ ├── main.go │ │ │ │ └── utils.go │ │ │ ├── etcd-dump-logs │ │ │ │ ├── doc.go │ │ │ │ └── main.go │ │ │ ├── functional-tester │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ ├── etcd-agent │ │ │ │ │ ├── agent.go │ │ │ │ │ ├── agent_test.go │ │ │ │ │ ├── client │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── rpc.go │ │ │ │ │ └── rpc_test.go │ │ │ │ ├── etcd-runner │ │ │ │ │ ├── command │ │ │ │ │ │ ├── election_command.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── global.go │ │ │ │ │ │ ├── help.go │ │ │ │ │ │ ├── lease_renewer_command.go │ │ │ │ │ │ ├── lock_racer_command.go │ │ │ │ │ │ ├── root.go │ │ │ │ │ │ └── watch_command.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── main.go │ │ │ │ ├── etcd-tester │ │ │ │ │ ├── checks.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── etcd_runner_stresser.go │ │ │ │ │ ├── failpoint.go │ │ │ │ │ ├── failure.go │ │ │ │ │ ├── failure_agent.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── key_stresser.go │ │ │ │ │ ├── lease_stresser.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── member.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── status.go │ │ │ │ │ ├── stresser.go │ │ │ │ │ ├── tester.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── v2_stresser.go │ │ │ │ └── scripts │ │ │ │ │ ├── agent-1.sh │ │ │ │ │ ├── agent-2.sh │ │ │ │ │ ├── agent-3.sh │ │ │ │ │ ├── tester-limit.sh │ │ │ │ │ ├── tester-runner.sh │ │ │ │ │ └── tester.sh │ │ │ └── local-tester │ │ │ │ ├── Procfile │ │ │ │ ├── README.md │ │ │ │ ├── bridge.sh │ │ │ │ ├── bridge │ │ │ │ ├── bridge.go │ │ │ │ └── dispatch.go │ │ │ │ └── faults.sh │ │ ├── version │ │ │ └── version.go │ │ └── wal │ │ │ ├── decoder.go │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── file_pipeline.go │ │ │ ├── metrics.go │ │ │ ├── record_test.go │ │ │ ├── repair.go │ │ │ ├── repair_test.go │ │ │ ├── util.go │ │ │ ├── wal.go │ │ │ ├── wal_bench_test.go │ │ │ ├── wal_test.go │ │ │ └── walpb │ │ │ ├── record.go │ │ │ ├── record.pb.go │ │ │ └── record.proto │ ├── go-semver │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example.go │ │ └── semver │ │ │ ├── semver.go │ │ │ ├── semver_test.go │ │ │ └── sort.go │ ├── go-systemd │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── Jenkinsfile │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── activation │ │ │ ├── files.go │ │ │ ├── files_test.go │ │ │ ├── listeners.go │ │ │ ├── listeners_test.go │ │ │ ├── packetconns.go │ │ │ └── packetconns_test.go │ │ ├── code-of-conduct.md │ │ ├── daemon │ │ │ ├── sdnotify.go │ │ │ ├── sdnotify_test.go │ │ │ ├── watchdog.go │ │ │ └── watchdog_test.go │ │ ├── dbus │ │ │ ├── dbus.go │ │ │ ├── dbus_test.go │ │ │ ├── methods.go │ │ │ ├── methods_test.go │ │ │ ├── properties.go │ │ │ ├── set.go │ │ │ ├── set_test.go │ │ │ ├── subscription.go │ │ │ ├── subscription_set.go │ │ │ ├── subscription_set_test.go │ │ │ └── subscription_test.go │ │ ├── examples │ │ │ └── activation │ │ │ │ ├── activation.go │ │ │ │ ├── httpserver │ │ │ │ ├── README.md │ │ │ │ ├── hello.service │ │ │ │ ├── hello.socket │ │ │ │ └── httpserver.go │ │ │ │ ├── listen.go │ │ │ │ └── udpconn.go │ │ ├── fixtures │ │ │ ├── enable-disable.service │ │ │ ├── mask-unmask.service │ │ │ ├── reload.service │ │ │ ├── start-failed.service │ │ │ ├── start-stop.service │ │ │ ├── subscribe-events-set.service │ │ │ └── subscribe-events.service │ │ ├── journal │ │ │ └── journal.go │ │ ├── login1 │ │ │ ├── dbus.go │ │ │ └── dbus_test.go │ │ ├── machine1 │ │ │ ├── dbus.go │ │ │ └── dbus_test.go │ │ ├── scripts │ │ │ └── jenkins │ │ │ │ └── periodic-go-systemd-builder.sh │ │ ├── sdjournal │ │ │ ├── functions.go │ │ │ ├── functions_test.go │ │ │ ├── journal.go │ │ │ ├── journal_test.go │ │ │ └── read.go │ │ ├── test │ │ ├── unit │ │ │ ├── deserialize.go │ │ │ ├── deserialize_test.go │ │ │ ├── end_to_end_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── option.go │ │ │ ├── option_test.go │ │ │ ├── serialize.go │ │ │ └── serialize_test.go │ │ └── util │ │ │ ├── util.go │ │ │ ├── util_cgo.go │ │ │ ├── util_stub.go │ │ │ └── util_test.go │ └── pkg │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── build │ │ ├── capnslog │ │ ├── README.md │ │ ├── example │ │ │ └── hello_dolly.go │ │ ├── formatters.go │ │ ├── glog_formatter.go │ │ ├── init.go │ │ ├── init_windows.go │ │ ├── journald_formatter.go │ │ ├── log_hijack.go │ │ ├── logmap.go │ │ ├── pkg_logger.go │ │ └── syslog_formatter.go │ │ ├── cryptoutil │ │ ├── aes.go │ │ └── aes_test.go │ │ ├── dlopen │ │ ├── dlopen.go │ │ ├── dlopen_example.go │ │ └── dlopen_test.go │ │ ├── flagutil │ │ ├── env.go │ │ ├── env_file.go │ │ ├── env_test.go │ │ ├── file_env_test.go │ │ ├── types.go │ │ └── types_test.go │ │ ├── health │ │ ├── README.md │ │ ├── health.go │ │ └── health_test.go │ │ ├── httputil │ │ ├── README.md │ │ ├── cookie.go │ │ ├── cookie_test.go │ │ ├── json.go │ │ └── json_test.go │ │ ├── k8s-tlsutil │ │ └── k8s-tlsutil.go │ │ ├── multierror │ │ ├── multierror.go │ │ └── multierror_test.go │ │ ├── netutil │ │ ├── proxy.go │ │ ├── url.go │ │ └── url_test.go │ │ ├── progressutil │ │ ├── iocopy.go │ │ ├── iocopy_test.go │ │ ├── progressbar.go │ │ └── progressbar_test.go │ │ ├── test │ │ ├── timeutil │ │ ├── backoff.go │ │ └── backoff_test.go │ │ └── yamlutil │ │ ├── yaml.go │ │ └── yaml_test.go ├── dgrijalva │ └── jwt-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── cmd │ │ └── jwt │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ └── args.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_test.go │ │ ├── ecdsa_utils.go │ │ ├── errors.go │ │ ├── example_test.go │ │ ├── hmac.go │ │ ├── hmac_example_test.go │ │ ├── hmac_test.go │ │ ├── http_example_test.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── none_test.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── request │ │ ├── doc.go │ │ ├── extractor.go │ │ ├── extractor_example_test.go │ │ ├── extractor_test.go │ │ ├── oauth2.go │ │ ├── request.go │ │ └── request_test.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_pss_test.go │ │ ├── rsa_test.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── test │ │ ├── ec256-private.pem │ │ ├── ec256-public.pem │ │ ├── ec384-private.pem │ │ ├── ec384-public.pem │ │ ├── ec512-private.pem │ │ ├── ec512-public.pem │ │ ├── helpers.go │ │ ├── hmacTestKey │ │ ├── privateSecure.pem │ │ ├── sample_key │ │ └── sample_key.pub │ │ └── token.go ├── dustin │ └── go-humanize │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── big.go │ │ ├── bigbytes.go │ │ ├── bigbytes_test.go │ │ ├── bytes.go │ │ ├── bytes_test.go │ │ ├── comma.go │ │ ├── comma_test.go │ │ ├── commaf.go │ │ ├── commaf_test.go │ │ ├── common_test.go │ │ ├── english │ │ ├── words.go │ │ └── words_test.go │ │ ├── ftoa.go │ │ ├── ftoa_test.go │ │ ├── humanize.go │ │ ├── number.go │ │ ├── number_test.go │ │ ├── ordinals.go │ │ ├── ordinals_test.go │ │ ├── si.go │ │ ├── si_test.go │ │ ├── times.go │ │ └── times_test.go ├── ghodss │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ ├── yaml.go │ │ └── yaml_test.go ├── go-sql-driver │ └── mysql │ │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appengine.go │ │ ├── benchmark_test.go │ │ ├── buffer.go │ │ ├── collations.go │ │ ├── connection.go │ │ ├── connection_test.go │ │ ├── const.go │ │ ├── driver.go │ │ ├── driver_test.go │ │ ├── dsn.go │ │ ├── dsn_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── infile.go │ │ ├── packets.go │ │ ├── packets_test.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── statement.go │ │ ├── transaction.go │ │ ├── utils.go │ │ └── utils_test.go ├── gogo │ └── protobuf │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── GOLANG_CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── Readme.md │ │ ├── _conformance │ │ ├── Makefile │ │ ├── conformance.go │ │ └── conformance_proto │ │ │ ├── conformance.pb.go │ │ │ └── conformance.proto │ │ ├── bench.md │ │ ├── codec │ │ ├── codec.go │ │ └── codec_test.go │ │ ├── custom_types.md │ │ ├── extensions.md │ │ ├── gogoproto │ │ ├── Makefile │ │ ├── doc.go │ │ ├── gogo.pb.go │ │ ├── gogo.pb.golden │ │ ├── gogo.proto │ │ └── helper.go │ │ ├── gogoreplace │ │ └── main.go │ │ ├── install-protobuf.sh │ │ ├── io │ │ ├── full.go │ │ ├── io.go │ │ ├── io_test.go │ │ ├── uint32.go │ │ ├── uint32_test.go │ │ └── varint.go │ │ ├── jsonpb │ │ ├── jsonpb.go │ │ ├── jsonpb_test.go │ │ └── jsonpb_test_proto │ │ │ ├── Makefile │ │ │ ├── bytes.go │ │ │ ├── more_test_objects.pb.go │ │ │ ├── more_test_objects.proto │ │ │ ├── test_objects.pb.go │ │ │ └── test_objects.proto │ │ ├── plugin │ │ ├── compare │ │ │ ├── compare.go │ │ │ └── comparetest.go │ │ ├── defaultcheck │ │ │ └── defaultcheck.go │ │ ├── description │ │ │ ├── description.go │ │ │ └── descriptiontest.go │ │ ├── embedcheck │ │ │ └── embedcheck.go │ │ ├── enumstringer │ │ │ └── enumstringer.go │ │ ├── equal │ │ │ ├── equal.go │ │ │ └── equaltest.go │ │ ├── face │ │ │ ├── face.go │ │ │ └── facetest.go │ │ ├── gostring │ │ │ ├── gostring.go │ │ │ └── gostringtest.go │ │ ├── marshalto │ │ │ └── marshalto.go │ │ ├── oneofcheck │ │ │ └── oneofcheck.go │ │ ├── populate │ │ │ └── populate.go │ │ ├── size │ │ │ ├── size.go │ │ │ └── sizetest.go │ │ ├── stringer │ │ │ ├── stringer.go │ │ │ └── stringertest.go │ │ ├── testgen │ │ │ └── testgen.go │ │ ├── union │ │ │ ├── union.go │ │ │ └── uniontest.go │ │ └── unmarshal │ │ │ └── unmarshal.go │ │ ├── proto │ │ ├── Makefile │ │ ├── all_test.go │ │ ├── any_test.go │ │ ├── clone.go │ │ ├── clone_test.go │ │ ├── decode.go │ │ ├── decode_gogo.go │ │ ├── decode_test.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── encode_test.go │ │ ├── equal.go │ │ ├── equal_test.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── extensions_test.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── map_test.go │ │ ├── message_set.go │ │ ├── message_set_test.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── proto3_proto │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── proto3_test.go │ │ ├── size2_test.go │ │ ├── size_test.go │ │ ├── skip_gogo.go │ │ ├── testdata │ │ │ ├── Makefile │ │ │ ├── golden_test.go │ │ │ ├── test.pb.go │ │ │ ├── test.pb.go.golden │ │ │ └── test.proto │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── text_parser_test.go │ │ ├── text_test.go │ │ ├── timestamp.go │ │ └── timestamp_gogo.go │ │ ├── protobuf │ │ ├── Makefile │ │ └── google │ │ │ └── protobuf │ │ │ ├── any.proto │ │ │ ├── compiler │ │ │ └── plugin.proto │ │ │ ├── descriptor.proto │ │ │ ├── duration.proto │ │ │ ├── empty.proto │ │ │ ├── field_mask.proto │ │ │ ├── struct.proto │ │ │ ├── timestamp.proto │ │ │ └── wrappers.proto │ │ ├── protoc-gen-combo │ │ └── combo.go │ │ ├── protoc-gen-gofast │ │ └── main.go │ │ ├── protoc-gen-gogo │ │ ├── Makefile │ │ ├── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.go │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ ├── descriptor_test.go │ │ │ └── helper.go │ │ ├── doc.go │ │ ├── generator │ │ │ ├── generator.go │ │ │ ├── helper.go │ │ │ └── name_test.go │ │ ├── grpc │ │ │ └── grpc.go │ │ ├── main.go │ │ ├── plugin │ │ │ ├── Makefile │ │ │ └── plugin.pb.go │ │ └── 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 │ │ │ ├── .gitignore │ │ │ ├── multi1.proto │ │ │ ├── multi2.proto │ │ │ └── multi3.proto │ │ │ ├── my_test │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ │ └── proto3.proto │ │ ├── protoc-gen-gogofast │ │ └── main.go │ │ ├── protoc-gen-gogofaster │ │ └── main.go │ │ ├── protoc-gen-gogoslick │ │ └── main.go │ │ ├── protoc-gen-gogotypes │ │ └── main.go │ │ ├── protoc-gen-gostring │ │ └── main.go │ │ ├── protoc-min-version │ │ └── minversion.go │ │ ├── sortkeys │ │ └── sortkeys.go │ │ ├── test │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── asymetric-issue125 │ │ │ ├── Makefile │ │ │ ├── asym.pb.go │ │ │ ├── asym.proto │ │ │ ├── asym_test.go │ │ │ ├── asympb_test.go │ │ │ └── pop.go │ │ ├── bug_test.go │ │ ├── casttype │ │ │ ├── Makefile │ │ │ ├── casttype.proto │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ └── mytypes.go │ │ ├── castvalue │ │ │ ├── Makefile │ │ │ ├── castvalue.pb.go │ │ │ ├── castvalue.proto │ │ │ ├── castvaluepb_test.go │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ └── mytypes.go │ │ ├── combos │ │ │ ├── both │ │ │ │ ├── bug_test.go │ │ │ │ ├── t.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ ├── marshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── t.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ └── unmarshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── t.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ ├── custom-dash-type │ │ │ └── customdash.go │ │ ├── custom │ │ │ ├── custom.go │ │ │ └── custom_test.go │ │ ├── custombytesnonstruct │ │ │ ├── Makefile │ │ │ ├── custombytesnonstruct_test.go │ │ │ ├── customtype.go │ │ │ ├── proto.pb.go │ │ │ └── proto.proto │ │ ├── dashfilename │ │ │ ├── dash-filename.proto │ │ │ ├── df_test.go │ │ │ └── doc.go │ │ ├── data │ │ │ ├── Makefile │ │ │ ├── data.pb.go │ │ │ ├── data.proto │ │ │ └── datapb_test.go │ │ ├── defaultconflict │ │ │ ├── df.proto │ │ │ ├── dg.proto │ │ │ ├── doc.go │ │ │ ├── nc.proto │ │ │ ├── nc_test.go │ │ │ ├── ne.proto │ │ │ └── nx.proto │ │ ├── embedconflict │ │ │ ├── .gitignore │ │ │ ├── doc.go │ │ │ ├── eb.proto │ │ │ ├── ec.proto │ │ │ ├── ec_test.go │ │ │ ├── ee.proto │ │ │ ├── em.proto │ │ │ ├── en.proto │ │ │ └── er.proto │ │ ├── empty-issue70 │ │ │ ├── Makefile │ │ │ ├── empty.pb.go │ │ │ ├── empty.proto │ │ │ └── empty_test.go │ │ ├── enumcustomname │ │ │ ├── Makefile │ │ │ ├── enumcustomname.pb.go │ │ │ └── enumcustomname.proto │ │ ├── enumdecl │ │ │ ├── Makefile │ │ │ ├── enumdecl.pb.go │ │ │ ├── enumdecl.proto │ │ │ ├── enumdeclpb_test.go │ │ │ └── models.go │ │ ├── enumdecl_all │ │ │ ├── Makefile │ │ │ ├── enumdeclall.pb.go │ │ │ ├── enumdeclall.proto │ │ │ ├── enumdeclallpb_test.go │ │ │ └── models.go │ │ ├── enumprefix │ │ │ ├── Makefile │ │ │ ├── enumprefix.pb.go │ │ │ └── enumprefix.proto │ │ ├── enumstringer │ │ │ ├── Makefile │ │ │ ├── enumstringer.pb.go │ │ │ ├── enumstringer.proto │ │ │ ├── enumstringerpb_test.go │ │ │ └── string.go │ │ ├── example │ │ │ ├── Makefile │ │ │ ├── example.pb.go │ │ │ ├── example.proto │ │ │ ├── example_test.go │ │ │ └── examplepb_test.go │ │ ├── extension_test.go │ │ ├── filedotname │ │ │ ├── Makefile │ │ │ ├── file.dot.pb.go │ │ │ ├── file.dot.proto │ │ │ └── file.dotpb_test.go │ │ ├── fuzztests │ │ │ ├── Makefile │ │ │ ├── fuzz.pb.go │ │ │ ├── fuzz.proto │ │ │ └── fuzz_test.go │ │ ├── group │ │ │ ├── Makefile │ │ │ ├── group.pb.go │ │ │ ├── group.proto │ │ │ └── grouppb_test.go │ │ ├── importdedup │ │ │ ├── Makefile │ │ │ ├── importdedup_test.go │ │ │ ├── proto.pb.go │ │ │ ├── proto.proto │ │ │ └── subpkg │ │ │ │ ├── customtype.go │ │ │ │ ├── subproto.pb.go │ │ │ │ └── subproto.proto │ │ ├── importduplicate │ │ │ ├── Makefile │ │ │ ├── importduplicate.pb.go │ │ │ ├── importduplicate.proto │ │ │ ├── importduplicate_test.go │ │ │ ├── importduplicatepb_test.go │ │ │ ├── proto │ │ │ │ ├── proto.pb.go │ │ │ │ ├── proto.proto │ │ │ │ └── protopb_test.go │ │ │ └── sortkeys │ │ │ │ ├── sortable.pb.go │ │ │ │ ├── sortable.proto │ │ │ │ └── sortablepb_test.go │ │ ├── indeximport-issue72 │ │ │ ├── Makefile │ │ │ ├── index │ │ │ │ ├── index.pb.go │ │ │ │ ├── index.proto │ │ │ │ └── indexpb_test.go │ │ │ ├── indeximport.pb.go │ │ │ ├── indeximport.proto │ │ │ └── indeximportpb_test.go │ │ ├── int64support │ │ │ ├── Makefile │ │ │ ├── object.pb.go │ │ │ ├── object.proto │ │ │ ├── object_js.go │ │ │ ├── object_js_test.go │ │ │ └── objectpb_test.go │ │ ├── issue260 │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── issue260.pb.go │ │ │ ├── issue260.proto │ │ │ ├── issue260pb_test.go │ │ │ └── models.go │ │ ├── issue261 │ │ │ ├── Makefile │ │ │ ├── issue261.pb.go │ │ │ └── issue261.proto │ │ ├── issue262 │ │ │ ├── Makefile │ │ │ ├── timefail.pb.go │ │ │ └── timefail.proto │ │ ├── issue270 │ │ │ ├── a │ │ │ │ ├── a1.proto │ │ │ │ └── a2.proto │ │ │ ├── b │ │ │ │ └── b.proto │ │ │ ├── doc.go │ │ │ └── issue270_test.go │ │ ├── issue312 │ │ │ ├── Makefile │ │ │ ├── events │ │ │ │ ├── Makefile │ │ │ │ ├── events.pb.go │ │ │ │ ├── events.proto │ │ │ │ └── eventspb_test.go │ │ │ ├── issue312.pb.go │ │ │ └── issue312.proto │ │ ├── issue322 │ │ │ ├── Makefile │ │ │ ├── issue322.pb.go │ │ │ ├── issue322.proto │ │ │ └── issue322pb_test.go │ │ ├── issue330 │ │ │ ├── Makefile │ │ │ ├── issue330.pb.go │ │ │ ├── issue330.proto │ │ │ ├── issue330pb_test.go │ │ │ └── type.go │ │ ├── issue34 │ │ │ ├── Makefile │ │ │ ├── issue34_test.go │ │ │ ├── proto.pb.go │ │ │ └── proto.proto │ │ ├── issue42order │ │ │ ├── Makefile │ │ │ ├── issue42.pb.go │ │ │ ├── issue42.proto │ │ │ └── order_test.go │ │ ├── issue8 │ │ │ ├── Makefile │ │ │ ├── proto.pb.go │ │ │ ├── proto.proto │ │ │ └── protopb_test.go │ │ ├── jsonpb-gogo │ │ │ ├── jsonpb_gogo.go │ │ │ └── jsonpb_gogo_test.go │ │ ├── mapdefaults │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ ├── map.pb.go │ │ │ ├── map.proto │ │ │ └── map_test.go.in │ │ ├── mapsproto2 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ ├── doc.go │ │ │ ├── header.proto │ │ │ ├── mapsproto2.proto │ │ │ └── mapsproto2_test.go.in │ │ ├── mixbench │ │ │ ├── .gitignore │ │ │ ├── marshal.txt │ │ │ ├── marshaler.txt │ │ │ ├── mixbench.go │ │ │ ├── oldmarshaler.txt │ │ │ ├── oldunmarshaler.txt │ │ │ ├── unmarshal.txt │ │ │ ├── unmarshaler.txt │ │ │ ├── unsafe_marshaler.txt │ │ │ └── unsafe_unmarshaler.txt │ │ ├── moredefaults │ │ │ ├── Makefile │ │ │ ├── md.pb.go │ │ │ ├── md.proto │ │ │ ├── md_test.go │ │ │ └── mdpb_test.go │ │ ├── nopackage │ │ │ ├── Makefile │ │ │ ├── nopackage.pb.go │ │ │ ├── nopackage.proto │ │ │ └── nopackage_test.go │ │ ├── oneof │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ ├── doc.go │ │ │ └── one.proto │ │ ├── oneof3 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ ├── doc.go │ │ │ └── one.proto │ │ ├── oneofembed │ │ │ ├── Makefile │ │ │ ├── oneofembed.pb.go │ │ │ ├── oneofembed.proto │ │ │ └── oneofembedpb_test.go │ │ ├── packed │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── packed.pb.go │ │ │ ├── packed.proto │ │ │ └── packed_test.go │ │ ├── proto3extension │ │ │ ├── Makefile │ │ │ ├── proto3ext.pb.go │ │ │ └── proto3ext.proto │ │ ├── protosize │ │ │ ├── Makefile │ │ │ ├── protosize.pb.go │ │ │ ├── protosize.proto │ │ │ ├── protosize_test.go │ │ │ └── protosizepb_test.go │ │ ├── registration │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── registration.proto │ │ │ └── registration_test.go.in │ │ ├── required │ │ │ ├── Makefile │ │ │ ├── requiredexample.pb.go │ │ │ ├── requiredexample.proto │ │ │ └── requiredexamplepb_test.go │ │ ├── sizerconflict │ │ │ ├── doc.go │ │ │ ├── sizerconflict.proto │ │ │ └── sizerconflict_test.go │ │ ├── sizeunderscore │ │ │ ├── Makefile │ │ │ ├── sizeunderscore.pb.go │ │ │ ├── sizeunderscore.proto │ │ │ └── sizeunderscorepb_test.go │ │ ├── stdtypes │ │ │ ├── Makefile │ │ │ ├── concurrency_test.go │ │ │ ├── stdtypes.pb.go │ │ │ ├── stdtypes.proto │ │ │ └── stdtypespb_test.go │ │ ├── t.go │ │ ├── tags │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── tags.pb.go │ │ │ ├── tags.proto │ │ │ └── tags_test.go │ │ ├── theproto3 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ ├── doc.go │ │ │ ├── footer.proto │ │ │ ├── header.proto │ │ │ ├── maps.proto │ │ │ ├── proto3_test.go.in │ │ │ └── theproto3.proto │ │ ├── thetest.pb.go │ │ ├── thetest.proto │ │ ├── thetestpb_test.go │ │ ├── typedecl │ │ │ ├── Makefile │ │ │ ├── models.go │ │ │ ├── typedecl.pb.go │ │ │ ├── typedecl.proto │ │ │ └── typedeclpb_test.go │ │ ├── typedecl_all │ │ │ ├── Makefile │ │ │ ├── models.go │ │ │ ├── typedeclall.pb.go │ │ │ ├── typedeclall.proto │ │ │ └── typedeclallpb_test.go │ │ ├── typedeclimport │ │ │ ├── Makefile │ │ │ ├── models.go │ │ │ ├── subpkg │ │ │ │ ├── subpkg.pb.go │ │ │ │ └── subpkg.proto │ │ │ ├── typedeclimport.pb.go │ │ │ ├── typedeclimport.proto │ │ │ └── typedeclimport_test.go │ │ ├── types │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ ├── types.proto │ │ │ └── types_test.go.in │ │ ├── unmarshalmerge │ │ │ ├── Makefile │ │ │ ├── unmarshalmerge.pb.go │ │ │ ├── unmarshalmerge.proto │ │ │ ├── unmarshalmerge_test.go │ │ │ └── unmarshalmergepb_test.go │ │ ├── unrecognized │ │ │ ├── Makefile │ │ │ ├── oldnew_test.go │ │ │ ├── unrecognized.pb.go │ │ │ ├── unrecognized.proto │ │ │ └── unrecognizedpb_test.go │ │ ├── unrecognizedgroup │ │ │ ├── Makefile │ │ │ ├── oldnew_test.go │ │ │ ├── unrecognizedgroup.pb.go │ │ │ ├── unrecognizedgroup.proto │ │ │ └── unrecognizedgrouppb_test.go │ │ ├── uuid.go │ │ └── uuid_test.go │ │ ├── types │ │ ├── Makefile │ │ ├── any.go │ │ ├── any.pb.go │ │ ├── any_test.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration.pb.go │ │ ├── duration_gogo.go │ │ ├── duration_test.go │ │ ├── empty.pb.go │ │ ├── field_mask.pb.go │ │ ├── struct.pb.go │ │ ├── timestamp.go │ │ ├── timestamp.pb.go │ │ ├── timestamp_gogo.go │ │ ├── timestamp_test.go │ │ └── wrappers.pb.go │ │ ├── vanity │ │ ├── command │ │ │ └── command.go │ │ ├── enum.go │ │ ├── field.go │ │ ├── file.go │ │ ├── foreach.go │ │ ├── msg.go │ │ └── test │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── fast │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── faster │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── gofast │ │ │ └── .gitignore │ │ │ ├── gogovanity.proto │ │ │ ├── proto3.proto │ │ │ ├── slick │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── vanity.proto │ │ │ └── vanity_test.go │ │ └── version │ │ └── version.go ├── golang │ ├── groupcache │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── byteview.go │ │ ├── byteview_test.go │ │ ├── consistenthash │ │ │ ├── consistenthash.go │ │ │ └── consistenthash_test.go │ │ ├── groupcache.go │ │ ├── groupcache_test.go │ │ ├── groupcachepb │ │ │ ├── groupcache.pb.go │ │ │ └── groupcache.proto │ │ ├── http.go │ │ ├── http_test.go │ │ ├── lru │ │ │ ├── lru.go │ │ │ └── lru_test.go │ │ ├── peers.go │ │ ├── singleflight │ │ │ ├── singleflight.go │ │ │ └── singleflight_test.go │ │ ├── sinks.go │ │ └── testpb │ │ │ ├── test.pb.go │ │ │ └── test.proto │ └── 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 │ │ ├── discard.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 ├── google │ └── btree │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ ├── btree_mem.go │ │ └── btree_test.go ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_clone.go │ │ ├── client_clone_legacy.go │ │ ├── client_server_test.go │ │ ├── client_test.go │ │ ├── compression.go │ │ ├── compression_test.go │ │ ├── conn.go │ │ ├── conn_broadcast_test.go │ │ ├── conn_read.go │ │ ├── conn_read_legacy.go │ │ ├── conn_test.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── examples │ │ ├── autobahn │ │ │ ├── README.md │ │ │ ├── fuzzingclient.json │ │ │ └── server.go │ │ ├── chat │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── home.html │ │ │ ├── hub.go │ │ │ └── main.go │ │ ├── command │ │ │ ├── README.md │ │ │ ├── home.html │ │ │ └── main.go │ │ ├── echo │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ └── server.go │ │ └── filewatch │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── mask_test.go │ │ ├── prepared.go │ │ ├── prepared_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── util.go │ │ └── util_test.go ├── grpc-ecosystem │ ├── go-grpc-prometheus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_reporter.go │ │ ├── client_test.go │ │ ├── examples │ │ │ └── testproto │ │ │ │ ├── Makefile │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ ├── server.go │ │ ├── server_reporter.go │ │ ├── server_test.go │ │ └── util.go │ └── grpc-gateway │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── .travis │ │ ├── install-protoc.sh │ │ └── install-swagger-codegen.sh │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── examples │ │ ├── browser │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── a_bit_of_everything_service.spec.js │ │ │ ├── bower.json │ │ │ ├── echo_service.spec.js │ │ │ ├── gulpfile.js │ │ │ ├── index.html │ │ │ └── package.json │ │ ├── client_test.go │ │ ├── clients │ │ │ ├── abe │ │ │ │ ├── .gitignore │ │ │ │ ├── .swagger-codegen-ignore │ │ │ │ ├── ProtobufDuration.go │ │ │ │ ├── a_bit_of_everything_nested.go │ │ │ │ ├── a_bit_of_everything_service_api.go │ │ │ │ ├── api_client.go │ │ │ │ ├── api_response.go │ │ │ │ ├── configuration.go │ │ │ │ ├── examplepb_a_bit_of_everything.go │ │ │ │ ├── examplepb_body.go │ │ │ │ ├── examplepb_numeric_enum.go │ │ │ │ ├── nested_deep_enum.go │ │ │ │ ├── protobuf_empty.go │ │ │ │ └── sub_string_message.go │ │ │ └── echo │ │ │ │ ├── .gitignore │ │ │ │ ├── .swagger-codegen-ignore │ │ │ │ ├── api_client.go │ │ │ │ ├── api_response.go │ │ │ │ ├── configuration.go │ │ │ │ ├── echo_service_api.go │ │ │ │ └── examplepb_simple_message.go │ │ ├── examplepb │ │ │ ├── a_bit_of_everything.pb.go │ │ │ ├── a_bit_of_everything.pb.gw.go │ │ │ ├── a_bit_of_everything.proto │ │ │ ├── a_bit_of_everything.swagger.json │ │ │ ├── echo_service.pb.go │ │ │ ├── echo_service.pb.gw.go │ │ │ ├── echo_service.proto │ │ │ ├── echo_service.swagger.json │ │ │ ├── flow_combination.pb.go │ │ │ ├── flow_combination.pb.gw.go │ │ │ ├── flow_combination.proto │ │ │ ├── stream.pb.go │ │ │ ├── stream.pb.gw.go │ │ │ └── stream.proto │ │ ├── integration_test.go │ │ ├── main.go │ │ ├── main_test.go │ │ ├── proto_error_test.go │ │ ├── server │ │ │ ├── a_bit_of_everything.go │ │ │ ├── cmd │ │ │ │ └── example-server │ │ │ │ │ └── main.go │ │ │ ├── echo.go │ │ │ ├── flow_combination.go │ │ │ └── main.go │ │ ├── sub │ │ │ ├── message.pb.go │ │ │ └── message.proto │ │ └── sub2 │ │ │ ├── message.pb.go │ │ │ └── message.proto │ │ ├── options │ │ └── options.proto │ │ ├── protoc-gen-grpc-gateway │ │ ├── descriptor │ │ │ ├── registry.go │ │ │ ├── registry_test.go │ │ │ ├── services.go │ │ │ ├── services_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── generator │ │ │ └── generator.go │ │ ├── gengateway │ │ │ ├── doc.go │ │ │ ├── generator.go │ │ │ ├── generator_test.go │ │ │ ├── template.go │ │ │ └── template_test.go │ │ ├── httprule │ │ │ ├── compile.go │ │ │ ├── compile_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ └── main.go │ │ ├── protoc-gen-swagger │ │ ├── genswagger │ │ │ ├── doc.go │ │ │ ├── generator.go │ │ │ ├── template.go │ │ │ ├── template_test.go │ │ │ └── types.go │ │ ├── main.go │ │ ├── main_test.go │ │ └── options │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ ├── openapiv2.pb.go │ │ │ └── openapiv2.proto │ │ ├── runtime │ │ ├── context.go │ │ ├── context_test.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── internal │ │ │ ├── stream_chunk.pb.go │ │ │ └── stream_chunk.proto │ │ ├── marshal_json.go │ │ ├── marshal_json_test.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_jsonpb_test.go │ │ ├── marshal_proto.go │ │ ├── marshal_proto_test.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── marshaler_registry_test.go │ │ ├── mux.go │ │ ├── mux_test.go │ │ ├── pattern.go │ │ ├── pattern_test.go │ │ ├── proto2_convert.go │ │ ├── proto_errors.go │ │ ├── query.go │ │ └── query_test.go │ │ ├── third_party │ │ └── googleapis │ │ │ ├── LICENSE │ │ │ ├── README.grpc-gateway │ │ │ └── google │ │ │ └── api │ │ │ ├── annotations.proto │ │ │ └── http.proto │ │ └── utilities │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── trie.go │ │ └── trie_test.go ├── jonboulle │ └── clockwork │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── clockwork.go │ │ ├── clockwork_test.go │ │ └── example_test.go ├── juju │ └── errors │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── errortypes.go │ │ ├── errortypes_test.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── functions.go │ │ ├── functions_test.go │ │ ├── package_test.go │ │ ├── path.go │ │ └── path_test.go ├── lib │ └── pq │ │ ├── .gitignore │ │ ├── .travis.sh │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── TESTS.md │ │ ├── array.go │ │ ├── array_test.go │ │ ├── bench_test.go │ │ ├── buf.go │ │ ├── certs │ │ ├── README │ │ ├── bogus_root.crt │ │ ├── postgresql.crt │ │ ├── postgresql.key │ │ ├── root.crt │ │ ├── server.crt │ │ └── server.key │ │ ├── conn.go │ │ ├── conn_go18.go │ │ ├── conn_test.go │ │ ├── connector.go │ │ ├── connector_example_test.go │ │ ├── connector_test.go │ │ ├── copy.go │ │ ├── copy_test.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── error.go │ │ ├── example │ │ └── listen │ │ │ └── doc.go │ │ ├── go.mod │ │ ├── go18_test.go │ │ ├── hstore │ │ ├── hstore.go │ │ └── hstore_test.go │ │ ├── issues_test.go │ │ ├── notify.go │ │ ├── notify_test.go │ │ ├── oid │ │ ├── doc.go │ │ ├── gen.go │ │ └── types.go │ │ ├── rows.go │ │ ├── rows_test.go │ │ ├── ssl.go │ │ ├── ssl_go1.7.go │ │ ├── ssl_permissions.go │ │ ├── ssl_renegotiation.go │ │ ├── ssl_test.go │ │ ├── ssl_windows.go │ │ ├── url.go │ │ ├── url_test.go │ │ ├── user_posix.go │ │ ├── user_windows.go │ │ ├── uuid.go │ │ └── uuid_test.go ├── 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 ├── petar │ └── GoLLRB │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc │ │ ├── Sedgewick-LLRB.pdf │ │ ├── Sedgewick-RedBlackBST.java │ │ └── Sedgewick-Talk-Penn2008.pdf │ │ ├── example │ │ └── ex1.go │ │ └── llrb │ │ ├── avgvar.go │ │ ├── iterator.go │ │ ├── iterator_test.go │ │ ├── llrb-stats.go │ │ ├── llrb.go │ │ ├── llrb_test.go │ │ └── util.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 │ │ ├── .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 ├── satori │ └── go.uuid │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec.go │ │ ├── codec_test.go │ │ ├── generator.go │ │ ├── generator_test.go │ │ ├── sql.go │ │ ├── sql_test.go │ │ ├── uuid.go │ │ └── uuid_test.go ├── siddontang │ ├── go-mysql │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── canal │ │ │ ├── canal.go │ │ │ ├── canal_test.go │ │ │ ├── config.go │ │ │ ├── dump.go │ │ │ ├── handler.go │ │ │ ├── master.go │ │ │ ├── rows.go │ │ │ └── sync.go │ │ ├── client │ │ │ ├── auth.go │ │ │ ├── client_test.go │ │ │ ├── conn.go │ │ │ ├── req.go │ │ │ ├── resp.go │ │ │ └── stmt.go │ │ ├── cmd │ │ │ ├── go-binlogparser │ │ │ │ └── main.go │ │ │ ├── go-canal │ │ │ │ └── main.go │ │ │ ├── go-mysqlbinlog │ │ │ │ └── main.go │ │ │ └── go-mysqldump │ │ │ │ └── main.go │ │ ├── docker │ │ │ └── Makefile │ │ ├── driver │ │ │ ├── dirver_test.go │ │ │ └── driver.go │ │ ├── dump │ │ │ ├── dump.go │ │ │ ├── dump_test.go │ │ │ └── parser.go │ │ ├── failover │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── failover.go │ │ │ ├── failover_test.go │ │ │ ├── handler.go │ │ │ ├── mariadb_gtid_handler.go │ │ │ ├── mysql_gtid_handler.go │ │ │ └── server.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── mysql │ │ │ ├── const.go │ │ │ ├── errcode.go │ │ │ ├── errname.go │ │ │ ├── error.go │ │ │ ├── field.go │ │ │ ├── gtid.go │ │ │ ├── mariadb_gtid.go │ │ │ ├── mariadb_gtid_test.go │ │ │ ├── mysql_gtid.go │ │ │ ├── mysql_test.go │ │ │ ├── parse_binary.go │ │ │ ├── position.go │ │ │ ├── result.go │ │ │ ├── resultset.go │ │ │ ├── resultset_helper.go │ │ │ ├── state.go │ │ │ └── util.go │ │ ├── packet │ │ │ └── conn.go │ │ ├── replication │ │ │ ├── backup.go │ │ │ ├── binlogstreamer.go │ │ │ ├── binlogsyncer.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── generic_event.go │ │ │ ├── json_binary.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── replication_test.go │ │ │ ├── row_event.go │ │ │ ├── row_event_test.go │ │ │ ├── time.go │ │ │ └── time_test.go │ │ ├── schema │ │ │ ├── schema.go │ │ │ └── schema_test.go │ │ ├── server │ │ │ ├── auth.go │ │ │ ├── command.go │ │ │ ├── conn.go │ │ │ ├── resp.go │ │ │ ├── server_test.go │ │ │ └── stmt.go │ │ └── vitess_license │ └── go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arena │ │ ├── arena.go │ │ └── arena_test.go │ │ ├── bson │ │ ├── LICENSE │ │ ├── bson.go │ │ ├── bson_test.go │ │ ├── decode.go │ │ └── encode.go │ │ ├── bytes2 │ │ ├── chunked_writer.go │ │ └── cw_test.go │ │ ├── cache │ │ ├── lru_cache.go │ │ ├── lru_cache_test.go │ │ └── perf_test.go │ │ ├── config │ │ ├── config.go │ │ ├── config_test.go │ │ ├── read.go │ │ └── write.go │ │ ├── exec2 │ │ ├── exec.go │ │ └── exec_test.go │ │ ├── filelock │ │ ├── LICENSE │ │ ├── file_lock_generic.go │ │ ├── file_lock_solaris.go │ │ ├── file_lock_test.go │ │ ├── file_lock_unix.go │ │ └── file_lock_windows.go │ │ ├── hack │ │ ├── hack.go │ │ └── hack_test.go │ │ ├── ioutil2 │ │ ├── ioutil.go │ │ ├── sectionwriter.go │ │ └── sectionwriter_test.go │ │ ├── list2 │ │ ├── list.go │ │ ├── list_bench_test.go │ │ └── list_test.go │ │ ├── log │ │ ├── doc.go │ │ ├── filehandler.go │ │ ├── handler.go │ │ ├── log.go │ │ ├── log_test.go │ │ └── sockethandler.go │ │ ├── num │ │ ├── bytes.go │ │ ├── cmp.go │ │ ├── num_test.go │ │ └── str.go │ │ ├── ring │ │ ├── ring.go │ │ └── ring_test.go │ │ ├── rpc │ │ ├── client.go │ │ ├── codec.go │ │ ├── conn.go │ │ ├── rpc_test.go │ │ └── server.go │ │ ├── snappy │ │ ├── LICENSE │ │ ├── decode.go │ │ ├── encode.go │ │ ├── snappy.go │ │ └── snappy_test.go │ │ ├── sync2 │ │ ├── atomic.go │ │ ├── atomic_test.go │ │ ├── semaphore.go │ │ └── semaphore_test.go │ │ ├── tb │ │ └── error.go │ │ ├── time2 │ │ ├── sleep.go │ │ ├── ticker.go │ │ ├── wheel.go │ │ └── wheel_test.go │ │ ├── timingwheel │ │ ├── timingwheel.go │ │ └── timingwheel_test.go │ │ ├── vitess_license │ │ └── websocket │ │ ├── client.go │ │ ├── client_test.go │ │ ├── conn.go │ │ ├── pingpong_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ └── util.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── alt_exit_test.go │ │ ├── appveyor.yml │ │ ├── doc.go │ │ ├── entry.go │ │ ├── entry_test.go │ │ ├── example_basic_test.go │ │ ├── example_hook_test.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── formatter_bench_test.go │ │ ├── hook_test.go │ │ ├── hooks.go │ │ ├── hooks │ │ ├── syslog │ │ │ ├── README.md │ │ │ ├── syslog.go │ │ │ └── syslog_test.go │ │ └── test │ │ │ ├── test.go │ │ │ └── test_test.go │ │ ├── json_formatter.go │ │ ├── json_formatter_test.go │ │ ├── logger.go │ │ ├── logger_bench_test.go │ │ ├── logrus.go │ │ ├── logrus_test.go │ │ ├── terminal_bsd.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_linux.go │ │ ├── text_formatter.go │ │ ├── text_formatter_test.go │ │ └── writer.go ├── soheilhy │ └── cmux │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench_test.go │ │ ├── buffer.go │ │ ├── cmux.go │ │ ├── cmux_test.go │ │ ├── doc.go │ │ ├── example_recursive_test.go │ │ ├── example_test.go │ │ ├── example_tls_test.go │ │ ├── matchers.go │ │ ├── patricia.go │ │ └── patricia_test.go ├── tmc │ └── grpc-websocket-proxy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ └── cmd │ │ │ └── wsechoserver │ │ │ ├── echoserver │ │ │ ├── Makefile │ │ │ ├── echoserver.pb.go │ │ │ ├── echoserver.pb.gw.go │ │ │ ├── echoserver.proto │ │ │ └── gen.go │ │ │ ├── main.go │ │ │ └── server.go │ │ └── wsproxy │ │ ├── doc.go │ │ └── websocket_proxy.go ├── ugorji │ └── go │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec │ │ ├── 0doc.go │ │ ├── README.md │ │ ├── binc.go │ │ ├── cbor.go │ │ ├── cbor_test.go │ │ ├── codec_test.go │ │ ├── codecgen │ │ │ ├── README.md │ │ │ ├── gen.go │ │ │ └── z.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fast-path.generated.go │ │ ├── fast-path.go.tmpl │ │ ├── fast-path.not.go │ │ ├── gen-dec-array.go.tmpl │ │ ├── gen-dec-map.go.tmpl │ │ ├── gen-helper.generated.go │ │ ├── gen-helper.go.tmpl │ │ ├── gen.generated.go │ │ ├── gen.go │ │ ├── goversion_arrayof_gte_go15.go │ │ ├── goversion_arrayof_lt_go15.go │ │ ├── goversion_makemap_gte_go19.go │ │ ├── goversion_makemap_lt_go19.go │ │ ├── goversion_unexportedembeddedptr_gte_go110.go │ │ ├── goversion_unexportedembeddedptr_lt_go110.go │ │ ├── goversion_unsupported_lt_go14.go │ │ ├── goversion_vendor_eq_go15.go │ │ ├── goversion_vendor_eq_go16.go │ │ ├── goversion_vendor_gte_go17.go │ │ ├── goversion_vendor_lt_go15.go │ │ ├── helper.go │ │ ├── helper_internal.go │ │ ├── helper_not_unsafe.go │ │ ├── helper_test.go │ │ ├── helper_unsafe.go │ │ ├── json.go │ │ ├── mammoth-test.go.tmpl │ │ ├── mammoth2-test.go.tmpl │ │ ├── mammoth2_codecgen_generated_test.go │ │ ├── mammoth2_generated_test.go │ │ ├── mammoth_generated_test.go │ │ ├── msgpack.go │ │ ├── noop.go │ │ ├── py_test.go │ │ ├── rpc.go │ │ ├── shared_test.go │ │ ├── simple.go │ │ ├── test-cbor-goldens.json │ │ ├── test.py │ │ ├── values_flex_test.go │ │ ├── values_test.go │ │ ├── xml.go │ │ └── z_all_test.go │ │ └── msgpack.org.md └── xiang90 │ └── probing │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── prober.go │ ├── prober_test.go │ ├── server.go │ └── status.go ├── golang.org └── x │ ├── crypto │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── acme │ │ ├── acme.go │ │ ├── acme_test.go │ │ ├── autocert │ │ │ ├── autocert.go │ │ │ ├── autocert_test.go │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── example_test.go │ │ │ ├── listener.go │ │ │ ├── renewal.go │ │ │ └── renewal_test.go │ │ ├── jws.go │ │ ├── jws_test.go │ │ ├── types.go │ │ └── types_test.go │ ├── argon2 │ │ ├── argon2.go │ │ ├── argon2_test.go │ │ ├── blake2b.go │ │ ├── blamka_amd64.go │ │ ├── blamka_amd64.s │ │ ├── blamka_generic.go │ │ └── blamka_ref.go │ ├── bcrypt │ │ ├── base64.go │ │ ├── bcrypt.go │ │ └── bcrypt_test.go │ ├── blake2b │ │ ├── blake2b.go │ │ ├── blake2bAVX2_amd64.go │ │ ├── blake2bAVX2_amd64.s │ │ ├── blake2b_amd64.go │ │ ├── blake2b_amd64.s │ │ ├── blake2b_generic.go │ │ ├── blake2b_ref.go │ │ ├── blake2b_test.go │ │ ├── blake2x.go │ │ └── register.go │ ├── blake2s │ │ ├── blake2s.go │ │ ├── blake2s_386.go │ │ ├── blake2s_386.s │ │ ├── blake2s_amd64.go │ │ ├── blake2s_amd64.s │ │ ├── blake2s_generic.go │ │ ├── blake2s_ref.go │ │ ├── blake2s_test.go │ │ ├── blake2x.go │ │ └── register.go │ ├── blowfish │ │ ├── block.go │ │ ├── blowfish_test.go │ │ ├── cipher.go │ │ └── const.go │ ├── bn256 │ │ ├── bn256.go │ │ ├── bn256_test.go │ │ ├── constants.go │ │ ├── curve.go │ │ ├── example_test.go │ │ ├── gfp12.go │ │ ├── gfp2.go │ │ ├── gfp6.go │ │ ├── optate.go │ │ └── twist.go │ ├── cast5 │ │ ├── cast5.go │ │ └── cast5_test.go │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ ├── chacha20poly1305_test.go │ │ └── chacha20poly1305_vectors_test.go │ ├── codereview.cfg │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── asn1_test.go │ │ ├── builder.go │ │ ├── cryptobyte_test.go │ │ ├── example_test.go │ │ └── string.go │ ├── curve25519 │ │ ├── const_amd64.h │ │ ├── const_amd64.s │ │ ├── cswap_amd64.s │ │ ├── curve25519.go │ │ ├── curve25519_test.go │ │ ├── doc.go │ │ ├── freeze_amd64.s │ │ ├── ladderstep_amd64.s │ │ ├── mont25519_amd64.go │ │ ├── mul_amd64.s │ │ └── square_amd64.s │ ├── ed25519 │ │ ├── ed25519.go │ │ ├── ed25519_test.go │ │ ├── internal │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ └── testdata │ │ │ └── sign.input.gz │ ├── hkdf │ │ ├── example_test.go │ │ ├── hkdf.go │ │ └── hkdf_test.go │ ├── internal │ │ └── chacha20 │ │ │ ├── chacha_generic.go │ │ │ └── chacha_test.go │ ├── md4 │ │ ├── example_test.go │ │ ├── md4.go │ │ ├── md4_test.go │ │ └── md4block.go │ ├── nacl │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ └── example_test.go │ │ ├── box │ │ │ ├── box.go │ │ │ ├── box_test.go │ │ │ └── example_test.go │ │ └── secretbox │ │ │ ├── example_test.go │ │ │ ├── secretbox.go │ │ │ └── secretbox_test.go │ ├── ocsp │ │ ├── ocsp.go │ │ └── ocsp_test.go │ ├── openpgp │ │ ├── armor │ │ │ ├── armor.go │ │ │ ├── armor_test.go │ │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── canonical_text_test.go │ │ ├── clearsign │ │ │ ├── clearsign.go │ │ │ └── clearsign_test.go │ │ ├── elgamal │ │ │ ├── elgamal.go │ │ │ └── elgamal_test.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── packet │ │ │ ├── compressed.go │ │ │ ├── compressed_test.go │ │ │ ├── config.go │ │ │ ├── encrypted_key.go │ │ │ ├── encrypted_key_test.go │ │ │ ├── literal.go │ │ │ ├── ocfb.go │ │ │ ├── ocfb_test.go │ │ │ ├── one_pass_signature.go │ │ │ ├── opaque.go │ │ │ ├── opaque_test.go │ │ │ ├── packet.go │ │ │ ├── packet_test.go │ │ │ ├── private_key.go │ │ │ ├── private_key_test.go │ │ │ ├── public_key.go │ │ │ ├── public_key_test.go │ │ │ ├── public_key_v3.go │ │ │ ├── public_key_v3_test.go │ │ │ ├── reader.go │ │ │ ├── signature.go │ │ │ ├── signature_test.go │ │ │ ├── signature_v3.go │ │ │ ├── signature_v3_test.go │ │ │ ├── symmetric_key_encrypted.go │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ ├── symmetrically_encrypted.go │ │ │ ├── symmetrically_encrypted_test.go │ │ │ ├── userattribute.go │ │ │ ├── userattribute_test.go │ │ │ ├── userid.go │ │ │ └── userid_test.go │ │ ├── read.go │ │ ├── read_test.go │ │ ├── s2k │ │ │ ├── s2k.go │ │ │ └── s2k_test.go │ │ ├── write.go │ │ └── write_test.go │ ├── otr │ │ ├── libotr_test_helper.c │ │ ├── otr.go │ │ ├── otr_test.go │ │ └── smp.go │ ├── pbkdf2 │ │ ├── pbkdf2.go │ │ └── pbkdf2_test.go │ ├── pkcs12 │ │ ├── bmp-string.go │ │ ├── bmp-string_test.go │ │ ├── crypto.go │ │ ├── crypto_test.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── rc2 │ │ │ │ ├── bench_test.go │ │ │ │ ├── rc2.go │ │ │ │ └── rc2_test.go │ │ ├── mac.go │ │ ├── mac_test.go │ │ ├── pbkdf.go │ │ ├── pbkdf_test.go │ │ ├── pkcs12.go │ │ ├── pkcs12_test.go │ │ └── safebags.go │ ├── poly1305 │ │ ├── poly1305.go │ │ ├── poly1305_test.go │ │ ├── sum_amd64.go │ │ ├── sum_amd64.s │ │ ├── sum_arm.go │ │ ├── sum_arm.s │ │ └── sum_ref.go │ ├── ripemd160 │ │ ├── ripemd160.go │ │ ├── ripemd160_test.go │ │ └── ripemd160block.go │ ├── salsa20 │ │ ├── salsa │ │ │ ├── hsalsa20.go │ │ │ ├── salsa2020_amd64.s │ │ │ ├── salsa208.go │ │ │ ├── salsa20_amd64.go │ │ │ ├── salsa20_ref.go │ │ │ └── salsa_test.go │ │ ├── salsa20.go │ │ └── salsa20_test.go │ ├── scrypt │ │ ├── example_test.go │ │ ├── scrypt.go │ │ └── scrypt_test.go │ ├── sha3 │ │ ├── doc.go │ │ ├── hashes.go │ │ ├── keccakf.go │ │ ├── keccakf_amd64.go │ │ ├── keccakf_amd64.s │ │ ├── register.go │ │ ├── sha3.go │ │ ├── sha3_test.go │ │ ├── shake.go │ │ ├── testdata │ │ │ └── keccakKats.json.deflate │ │ ├── xor.go │ │ ├── xor_generic.go │ │ └── xor_unaligned.go │ ├── ssh │ │ ├── agent │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── example_test.go │ │ │ ├── forward.go │ │ │ ├── keyring.go │ │ │ ├── keyring_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ └── testdata_test.go │ │ ├── benchmark_test.go │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── certs.go │ │ ├── certs_test.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── cipher_test.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── client_auth_test.go │ │ ├── client_test.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── handshake.go │ │ ├── handshake_test.go │ │ ├── kex.go │ │ ├── kex_test.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── knownhosts │ │ │ ├── knownhosts.go │ │ │ └── knownhosts_test.go │ │ ├── mac.go │ │ ├── mempipe_test.go │ │ ├── messages.go │ │ ├── messages_test.go │ │ ├── mux.go │ │ ├── mux_test.go │ │ ├── server.go │ │ ├── session.go │ │ ├── session_test.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ ├── tcpip_test.go │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── terminal_test.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ ├── test │ │ │ ├── agent_unix_test.go │ │ │ ├── banner_test.go │ │ │ ├── cert_test.go │ │ │ ├── dial_unix_test.go │ │ │ ├── doc.go │ │ │ ├── forward_unix_test.go │ │ │ ├── multi_auth_test.go │ │ │ ├── session_test.go │ │ │ ├── sshd_test_pw.c │ │ │ ├── test_unix_test.go │ │ │ └── testdata_test.go │ │ ├── testdata │ │ │ ├── doc.go │ │ │ └── keys.go │ │ ├── testdata_test.go │ │ ├── transport.go │ │ └── transport_test.go │ ├── tea │ │ ├── cipher.go │ │ └── tea_test.go │ ├── twofish │ │ ├── twofish.go │ │ └── twofish_test.go │ ├── xtea │ │ ├── block.go │ │ ├── cipher.go │ │ └── xtea_test.go │ └── xts │ │ ├── xts.go │ │ └── xts_test.go │ ├── 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 │ ├── http │ │ └── 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 │ │ └── 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 │ │ ├── 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_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 │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── example_test.go │ │ ├── export_test.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_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 │ │ ├── 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 │ ├── text │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── example_test.go │ │ ├── fold.go │ │ ├── fold_test.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── icu.go │ │ ├── icu_test.go │ │ ├── info.go │ │ ├── map.go │ │ ├── map_test.go │ │ ├── tables10.0.0.go │ │ ├── tables10.0.0_test.go │ │ ├── tables9.0.0.go │ │ ├── tables9.0.0_test.go │ │ └── trieval.go │ ├── cmd │ │ └── gotext │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── examples │ │ │ ├── extract │ │ │ │ ├── catalog.go │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ └── main.go │ │ │ ├── extract_http │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── main.go │ │ │ │ └── pkg │ │ │ │ │ └── pkg.go │ │ │ └── rewrite │ │ │ │ ├── main.go │ │ │ │ └── printer.go │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── main.go │ │ │ └── rewrite.go │ ├── codereview.cfg │ ├── collate │ │ ├── build │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── colelem.go │ │ │ ├── colelem_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── order.go │ │ │ ├── order_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── trie_test.go │ │ ├── collate.go │ │ ├── collate_test.go │ │ ├── export_test.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── option_test.go │ │ ├── reg_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── table_test.go │ │ ├── tables.go │ │ └── tools │ │ │ └── colcmp │ │ │ ├── Makefile │ │ │ ├── chars.go │ │ │ ├── col.go │ │ │ ├── colcmp.go │ │ │ ├── darwin.go │ │ │ ├── gen.go │ │ │ └── icu.go │ ├── currency │ │ ├── common.go │ │ ├── currency.go │ │ ├── currency_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── tables.go │ │ └── tables_test.go │ ├── date │ │ ├── data_test.go │ │ ├── gen.go │ │ ├── gen_test.go │ │ └── tables.go │ ├── doc.go │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ ├── charmap_test.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── example_test.go │ │ ├── htmlindex │ │ │ ├── gen.go │ │ │ ├── htmlindex.go │ │ │ ├── htmlindex_test.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── ianaindex │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── ianaindex.go │ │ │ ├── ianaindex_test.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── enctest │ │ │ │ └── enctest.go │ │ │ ├── identifier │ │ │ │ ├── gen.go │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── maketables.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── all_test.go │ │ │ ├── euckr.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── testdata │ │ │ ├── candide-gb18030.txt │ │ │ ├── candide-utf-16le.txt │ │ │ ├── candide-utf-32be.txt │ │ │ ├── candide-utf-8.txt │ │ │ ├── candide-windows-1252.txt │ │ │ ├── rashomon-euc-jp.txt │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ ├── rashomon-shift-jis.txt │ │ │ ├── rashomon-utf-8.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ ├── traditionalchinese │ │ │ ├── all_test.go │ │ │ ├── big5.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ ├── unicode.go │ │ │ ├── unicode_test.go │ │ │ └── utf32 │ │ │ ├── utf32.go │ │ │ └── utf32_test.go │ ├── feature │ │ └── plural │ │ │ ├── common.go │ │ │ ├── data_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── plural.go │ │ │ ├── plural_test.go │ │ │ └── tables.go │ ├── gen.go │ ├── internal │ │ ├── catmsg │ │ │ ├── catmsg.go │ │ │ ├── catmsg_test.go │ │ │ ├── codec.go │ │ │ ├── varint.go │ │ │ └── varint_test.go │ │ ├── cldrtree │ │ │ ├── cldrtree.go │ │ │ ├── cldrtree_test.go │ │ │ ├── generate.go │ │ │ ├── option.go │ │ │ ├── testdata │ │ │ │ ├── test1 │ │ │ │ │ ├── common │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ │ └── test2 │ │ │ │ │ ├── common │ │ │ │ │ └── main │ │ │ │ │ │ ├── en.xml │ │ │ │ │ │ ├── en_001.xml │ │ │ │ │ │ ├── en_GB.xml │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ ├── tree.go │ │ │ └── type.go │ │ ├── colltab │ │ │ ├── collate_test.go │ │ │ ├── collelem.go │ │ │ ├── collelem_test.go │ │ │ ├── colltab.go │ │ │ ├── colltab_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── numeric.go │ │ │ ├── numeric_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ ├── trie_test.go │ │ │ ├── weighter.go │ │ │ └── weighter_test.go │ │ ├── export │ │ │ ├── README │ │ │ └── idna │ │ │ │ ├── common_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen10.0.0_test.go │ │ │ │ ├── gen9.0.0_test.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna10.0.0_test.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── idna9.0.0_test.go │ │ │ │ ├── idna_test.go │ │ │ │ ├── punycode.go │ │ │ │ ├── punycode_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ ├── format │ │ │ ├── format.go │ │ │ ├── parser.go │ │ │ └── parser_test.go │ │ ├── gen.go │ │ ├── gen │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── gen_test.go │ │ ├── internal.go │ │ ├── internal_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── number │ │ │ ├── common.go │ │ │ ├── decimal.go │ │ │ ├── decimal_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── number.go │ │ │ ├── number_test.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── roundingmode_string.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── stringset │ │ │ ├── set.go │ │ │ └── set_test.go │ │ ├── tables.go │ │ ├── tag │ │ │ ├── tag.go │ │ │ └── tag_test.go │ │ ├── testtext │ │ │ ├── codesize.go │ │ │ ├── flag.go │ │ │ ├── gc.go │ │ │ ├── gccgo.go │ │ │ ├── go1_6.go │ │ │ ├── go1_7.go │ │ │ └── text.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── data_test.go │ │ │ ├── example_compact_test.go │ │ │ ├── example_test.go │ │ │ ├── gen_test.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ ├── ucd │ │ │ ├── example_test.go │ │ │ ├── ucd.go │ │ │ └── ucd_test.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── coverage_test.go │ │ ├── display │ │ │ ├── dict.go │ │ │ ├── dict_test.go │ │ │ ├── display.go │ │ │ ├── display_test.go │ │ │ ├── examples_test.go │ │ │ ├── lookup.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── httpexample_test.go │ │ ├── index.go │ │ ├── language.go │ │ ├── language_test.go │ │ ├── lookup.go │ │ ├── lookup_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── tables.go │ │ ├── tags.go │ │ └── testdata │ │ │ ├── CLDRLocaleMatcherTest.txt │ │ │ └── GoLocaleMatcherTest.txt │ ├── message │ │ ├── catalog.go │ │ ├── catalog │ │ │ ├── catalog.go │ │ │ ├── catalog_test.go │ │ │ ├── dict.go │ │ │ ├── go19.go │ │ │ └── gopre19.go │ │ ├── catalog_test.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── fmt_test.go │ │ ├── format.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── pipeline │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── message.go │ │ │ ├── pipeline.go │ │ │ └── rewrite.go │ │ └── print.go │ ├── number │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── number.go │ │ ├── number_test.go │ │ └── option.go │ ├── runes │ │ ├── cond.go │ │ ├── cond_test.go │ │ ├── example_test.go │ │ ├── runes.go │ │ └── runes_test.go │ ├── search │ │ ├── index.go │ │ ├── pattern.go │ │ ├── pattern_test.go │ │ ├── search.go │ │ └── tables.go │ ├── secure │ │ ├── bidirule │ │ │ ├── bench_test.go │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ ├── bidirule10.0.0_test.go │ │ │ ├── bidirule9.0.0.go │ │ │ ├── bidirule9.0.0_test.go │ │ │ └── bidirule_test.go │ │ ├── doc.go │ │ └── precis │ │ │ ├── benchmark_test.go │ │ │ ├── class.go │ │ │ ├── class_test.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── enforce10.0.0_test.go │ │ │ ├── enforce9.0.0_test.go │ │ │ ├── enforce_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profile_test.go │ │ │ ├── profiles.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ ├── transform │ │ ├── examples_test.go │ │ ├── transform.go │ │ └── transform_test.go │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── core_test.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── ranges_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ └── trieval.go │ │ ├── cldr │ │ │ ├── base.go │ │ │ ├── cldr.go │ │ │ ├── cldr_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── data_test.go │ │ │ ├── decode.go │ │ │ ├── examples_test.go │ │ │ ├── makexml.go │ │ │ ├── resolve.go │ │ │ ├── resolve_test.go │ │ │ ├── slice.go │ │ │ ├── slice_test.go │ │ │ └── xml.go │ │ ├── doc.go │ │ ├── norm │ │ │ ├── composition.go │ │ │ ├── composition_test.go │ │ │ ├── data10.0.0_test.go │ │ │ ├── data9.0.0_test.go │ │ │ ├── example_iter_test.go │ │ │ ├── example_test.go │ │ │ ├── forminfo.go │ │ │ ├── forminfo_test.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── normalize_test.go │ │ │ ├── readwriter.go │ │ │ ├── readwriter_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trie.go │ │ │ ├── triegen.go │ │ │ └── ucd_test.go │ │ ├── rangetable │ │ │ ├── gen.go │ │ │ ├── merge.go │ │ │ ├── merge_test.go │ │ │ ├── rangetable.go │ │ │ ├── rangetable_test.go │ │ │ ├── tables10.0.0.go │ │ │ └── tables9.0.0.go │ │ └── runenames │ │ │ ├── bits.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_bits.go │ │ │ ├── runenames.go │ │ │ ├── runenames_test.go │ │ │ └── tables.go │ └── width │ │ ├── common_test.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_trieval.go │ │ ├── kind_string.go │ │ ├── runes_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ ├── transform.go │ │ ├── transform_test.go │ │ ├── trieval.go │ │ └── width.go │ └── time │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ └── rate │ ├── rate.go │ ├── rate_go16.go │ ├── rate_go17.go │ └── rate_test.go ├── google.golang.org ├── genproto │ ├── .github │ │ └── CODEOWNERS │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── googleapis │ │ ├── api │ │ │ ├── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ └── http.pb.go │ │ │ ├── authorization_config.pb.go │ │ │ ├── configchange │ │ │ │ └── config_change.pb.go │ │ │ ├── distribution │ │ │ │ └── distribution.pb.go │ │ │ ├── experimental.pb.go │ │ │ ├── httpbody │ │ │ │ └── httpbody.pb.go │ │ │ ├── label │ │ │ │ └── label.pb.go │ │ │ ├── metric │ │ │ │ └── metric.pb.go │ │ │ ├── monitoredres │ │ │ │ └── monitored_resource.pb.go │ │ │ ├── serviceconfig │ │ │ │ ├── auth.pb.go │ │ │ │ ├── backend.pb.go │ │ │ │ ├── billing.pb.go │ │ │ │ ├── consumer.pb.go │ │ │ │ ├── context.pb.go │ │ │ │ ├── control.pb.go │ │ │ │ ├── documentation.pb.go │ │ │ │ ├── endpoint.pb.go │ │ │ │ ├── log.pb.go │ │ │ │ ├── logging.pb.go │ │ │ │ ├── monitoring.pb.go │ │ │ │ ├── quota.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── source_info.pb.go │ │ │ │ ├── system_parameter.pb.go │ │ │ │ └── usage.pb.go │ │ │ ├── servicecontrol │ │ │ │ └── v1 │ │ │ │ │ ├── check_error.pb.go │ │ │ │ │ ├── distribution.pb.go │ │ │ │ │ ├── log_entry.pb.go │ │ │ │ │ ├── metric_value.pb.go │ │ │ │ │ ├── operation.pb.go │ │ │ │ │ ├── quota_controller.pb.go │ │ │ │ │ └── service_controller.pb.go │ │ │ └── servicemanagement │ │ │ │ └── v1 │ │ │ │ ├── resources.pb.go │ │ │ │ └── servicemanager.pb.go │ │ ├── appengine │ │ │ ├── legacy │ │ │ │ └── audit_data.pb.go │ │ │ ├── logging │ │ │ │ └── v1 │ │ │ │ │ └── request_log.pb.go │ │ │ └── v1 │ │ │ │ ├── app_yaml.pb.go │ │ │ │ ├── appengine.pb.go │ │ │ │ ├── application.pb.go │ │ │ │ ├── audit_data.pb.go │ │ │ │ ├── deploy.pb.go │ │ │ │ ├── instance.pb.go │ │ │ │ ├── location.pb.go │ │ │ │ ├── operation.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ └── version.pb.go │ │ ├── assistant │ │ │ └── embedded │ │ │ │ ├── v1alpha1 │ │ │ │ └── embedded_assistant.pb.go │ │ │ │ └── v1alpha2 │ │ │ │ └── embedded_assistant.pb.go │ │ ├── bigtable │ │ │ ├── admin │ │ │ │ ├── cluster │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── bigtable_cluster_data.pb.go │ │ │ │ │ │ ├── bigtable_cluster_service.pb.go │ │ │ │ │ │ └── bigtable_cluster_service_messages.pb.go │ │ │ │ ├── table │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── bigtable_table_data.pb.go │ │ │ │ │ │ ├── bigtable_table_service.pb.go │ │ │ │ │ │ └── bigtable_table_service_messages.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── bigtable_instance_admin.pb.go │ │ │ │ │ ├── bigtable_table_admin.pb.go │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── instance.pb.go │ │ │ │ │ └── table.pb.go │ │ │ ├── v1 │ │ │ │ ├── bigtable_data.pb.go │ │ │ │ ├── bigtable_service.pb.go │ │ │ │ └── bigtable_service_messages.pb.go │ │ │ └── v2 │ │ │ │ ├── bigtable.pb.go │ │ │ │ └── data.pb.go │ │ ├── bytestream │ │ │ └── bytestream.pb.go │ │ ├── cloud │ │ │ ├── audit │ │ │ │ └── audit_log.pb.go │ │ │ ├── bigquery │ │ │ │ ├── datatransfer │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── datatransfer.pb.go │ │ │ │ │ │ └── transfer.pb.go │ │ │ │ └── logging │ │ │ │ │ └── v1 │ │ │ │ │ └── audit_data.pb.go │ │ │ ├── billing │ │ │ │ └── v1 │ │ │ │ │ └── cloud_billing.pb.go │ │ │ ├── dataproc │ │ │ │ ├── v1 │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ └── operations.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ ├── operations.pb.go │ │ │ │ │ └── workflow_templates.pb.go │ │ │ ├── dialogflow │ │ │ │ └── v2beta1 │ │ │ │ │ ├── agent.pb.go │ │ │ │ │ ├── context.pb.go │ │ │ │ │ ├── entity_type.pb.go │ │ │ │ │ ├── intent.pb.go │ │ │ │ │ ├── session.pb.go │ │ │ │ │ ├── session_entity_type.pb.go │ │ │ │ │ └── webhook.pb.go │ │ │ ├── functions │ │ │ │ └── v1beta2 │ │ │ │ │ ├── functions.pb.go │ │ │ │ │ └── operations.pb.go │ │ │ ├── iot │ │ │ │ └── v1 │ │ │ │ │ ├── device_manager.pb.go │ │ │ │ │ └── resources.pb.go │ │ │ ├── language │ │ │ │ ├── v1 │ │ │ │ │ └── language_service.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── language_service.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ └── language_service.pb.go │ │ │ ├── location │ │ │ │ └── locations.pb.go │ │ │ ├── ml │ │ │ │ └── v1 │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ └── project_service.pb.go │ │ │ ├── oslogin │ │ │ │ ├── common │ │ │ │ │ └── common.pb.go │ │ │ │ ├── v1 │ │ │ │ │ └── oslogin.pb.go │ │ │ │ ├── v1alpha │ │ │ │ │ └── oslogin.pb.go │ │ │ │ └── v1beta │ │ │ │ │ └── oslogin.pb.go │ │ │ ├── resourcemanager │ │ │ │ └── v2 │ │ │ │ │ └── folders.pb.go │ │ │ ├── runtimeconfig │ │ │ │ └── v1beta1 │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ └── runtimeconfig.pb.go │ │ │ ├── speech │ │ │ │ ├── v1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ └── v1p1beta1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ ├── support │ │ │ │ ├── common │ │ │ │ │ └── common.pb.go │ │ │ │ └── v1alpha1 │ │ │ │ │ └── cloud_support.pb.go │ │ │ ├── texttospeech │ │ │ │ └── v1beta1 │ │ │ │ │ └── cloud_tts.pb.go │ │ │ ├── videointelligence │ │ │ │ ├── v1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ ├── v1beta2 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ └── v1p1beta1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ └── vision │ │ │ │ ├── v1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ │ │ ├── v1p1beta1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ │ │ └── v1p2beta1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ ├── container │ │ │ ├── v1 │ │ │ │ └── cluster_service.pb.go │ │ │ ├── v1alpha1 │ │ │ │ └── cluster_service.pb.go │ │ │ └── v1beta1 │ │ │ │ └── cluster_service.pb.go │ │ ├── datastore │ │ │ ├── admin │ │ │ │ └── v1beta1 │ │ │ │ │ └── datastore_admin.pb.go │ │ │ ├── v1 │ │ │ │ ├── datastore.pb.go │ │ │ │ ├── entity.pb.go │ │ │ │ └── query.pb.go │ │ │ └── v1beta3 │ │ │ │ ├── datastore.pb.go │ │ │ │ ├── entity.pb.go │ │ │ │ └── query.pb.go │ │ ├── devtools │ │ │ ├── build │ │ │ │ └── v1 │ │ │ │ │ ├── build_events.pb.go │ │ │ │ │ ├── build_status.pb.go │ │ │ │ │ └── publish_build_event.pb.go │ │ │ ├── cloudbuild │ │ │ │ └── v1 │ │ │ │ │ └── cloudbuild.pb.go │ │ │ ├── clouddebugger │ │ │ │ └── v2 │ │ │ │ │ ├── controller.pb.go │ │ │ │ │ ├── data.pb.go │ │ │ │ │ └── debugger.pb.go │ │ │ ├── clouderrorreporting │ │ │ │ └── v1beta1 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── error_group_service.pb.go │ │ │ │ │ ├── error_stats_service.pb.go │ │ │ │ │ └── report_errors_service.pb.go │ │ │ ├── cloudprofiler │ │ │ │ └── v2 │ │ │ │ │ └── profiler.pb.go │ │ │ ├── cloudtrace │ │ │ │ ├── v1 │ │ │ │ │ └── trace.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── trace.pb.go │ │ │ │ │ └── tracing.pb.go │ │ │ ├── containeranalysis │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── bill_of_materials.pb.go │ │ │ │ │ ├── containeranalysis.pb.go │ │ │ │ │ ├── image_basis.pb.go │ │ │ │ │ ├── package_vulnerability.pb.go │ │ │ │ │ ├── provenance.pb.go │ │ │ │ │ └── source_context.pb.go │ │ │ ├── remoteexecution │ │ │ │ └── v1test │ │ │ │ │ └── remote_execution.pb.go │ │ │ ├── remoteworkers │ │ │ │ └── v1test2 │ │ │ │ │ ├── bots.pb.go │ │ │ │ │ ├── command.pb.go │ │ │ │ │ └── tasks.pb.go │ │ │ ├── source │ │ │ │ └── v1 │ │ │ │ │ └── source_context.pb.go │ │ │ └── sourcerepo │ │ │ │ └── v1 │ │ │ │ └── sourcerepo.pb.go │ │ ├── example │ │ │ └── library │ │ │ │ └── v1 │ │ │ │ └── library.pb.go │ │ ├── firestore │ │ │ ├── admin │ │ │ │ └── v1beta1 │ │ │ │ │ ├── firestore_admin.pb.go │ │ │ │ │ └── index.pb.go │ │ │ └── v1beta1 │ │ │ │ ├── common.pb.go │ │ │ │ ├── document.pb.go │ │ │ │ ├── firestore.pb.go │ │ │ │ ├── query.pb.go │ │ │ │ └── write.pb.go │ │ ├── genomics │ │ │ ├── v1 │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── cigar.pb.go │ │ │ │ ├── datasets.pb.go │ │ │ │ ├── operations.pb.go │ │ │ │ ├── position.pb.go │ │ │ │ ├── range.pb.go │ │ │ │ ├── readalignment.pb.go │ │ │ │ ├── readgroup.pb.go │ │ │ │ ├── readgroupset.pb.go │ │ │ │ ├── reads.pb.go │ │ │ │ ├── references.pb.go │ │ │ │ └── variants.pb.go │ │ │ └── v1alpha2 │ │ │ │ └── pipelines.pb.go │ │ ├── iam │ │ │ ├── admin │ │ │ │ └── v1 │ │ │ │ │ └── iam.pb.go │ │ │ └── v1 │ │ │ │ ├── iam_policy.pb.go │ │ │ │ ├── logging │ │ │ │ └── audit_data.pb.go │ │ │ │ └── policy.pb.go │ │ ├── logging │ │ │ ├── type │ │ │ │ ├── http_request.pb.go │ │ │ │ └── log_severity.pb.go │ │ │ └── v2 │ │ │ │ ├── log_entry.pb.go │ │ │ │ ├── logging.pb.go │ │ │ │ ├── logging_config.pb.go │ │ │ │ └── logging_metrics.pb.go │ │ ├── longrunning │ │ │ └── operations.pb.go │ │ ├── monitoring │ │ │ └── v3 │ │ │ │ ├── alert.pb.go │ │ │ │ ├── alert_service.pb.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── group.pb.go │ │ │ │ ├── group_service.pb.go │ │ │ │ ├── metric.pb.go │ │ │ │ ├── metric_service.pb.go │ │ │ │ ├── mutation_record.pb.go │ │ │ │ ├── notification.pb.go │ │ │ │ ├── notification_service.pb.go │ │ │ │ ├── uptime.pb.go │ │ │ │ └── uptime_service.pb.go │ │ ├── privacy │ │ │ └── dlp │ │ │ │ ├── v2 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ │ │ ├── v2beta1 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ │ │ └── v2beta2 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ ├── pubsub │ │ │ ├── v1 │ │ │ │ └── pubsub.pb.go │ │ │ └── v1beta2 │ │ │ │ └── pubsub.pb.go │ │ ├── rpc │ │ │ ├── code │ │ │ │ └── code.pb.go │ │ │ ├── errdetails │ │ │ │ └── error_details.pb.go │ │ │ └── status │ │ │ │ └── status.pb.go │ │ ├── spanner │ │ │ ├── admin │ │ │ │ ├── database │ │ │ │ │ └── v1 │ │ │ │ │ │ └── spanner_database_admin.pb.go │ │ │ │ └── instance │ │ │ │ │ └── v1 │ │ │ │ │ └── spanner_instance_admin.pb.go │ │ │ └── v1 │ │ │ │ ├── keys.pb.go │ │ │ │ ├── mutation.pb.go │ │ │ │ ├── query_plan.pb.go │ │ │ │ ├── result_set.pb.go │ │ │ │ ├── spanner.pb.go │ │ │ │ ├── transaction.pb.go │ │ │ │ └── type.pb.go │ │ ├── storagetransfer │ │ │ └── v1 │ │ │ │ ├── transfer.pb.go │ │ │ │ └── transfer_types.pb.go │ │ ├── streetview │ │ │ └── publish │ │ │ │ └── v1 │ │ │ │ ├── resources.pb.go │ │ │ │ ├── rpcmessages.pb.go │ │ │ │ └── streetview_publish.pb.go │ │ ├── type │ │ │ ├── color │ │ │ │ └── color.pb.go │ │ │ ├── date │ │ │ │ └── date.pb.go │ │ │ ├── dayofweek │ │ │ │ └── dayofweek.pb.go │ │ │ ├── latlng │ │ │ │ └── latlng.pb.go │ │ │ ├── money │ │ │ │ └── money.pb.go │ │ │ ├── postaladdress │ │ │ │ └── postal_address.pb.go │ │ │ └── timeofday │ │ │ │ └── timeofday.pb.go │ │ └── watcher │ │ │ └── v1 │ │ │ └── watch.pb.go │ ├── protobuf │ │ ├── api │ │ │ └── api.pb.go │ │ ├── field_mask │ │ │ └── field_mask.pb.go │ │ ├── ptype │ │ │ └── type.pb.go │ │ └── source_context │ │ │ └── source_context.pb.go │ ├── regen.go │ └── regen.sh └── grpc │ ├── .github │ └── ISSUE_TEMPLATE │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── Documentation │ ├── compression.md │ ├── encoding.md │ ├── gomock-example.md │ ├── grpc-auth-support.md │ ├── grpc-metadata.md │ ├── server-reflection-tutorial.md │ └── versioning.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── backoff.go │ ├── backoff_test.go │ ├── balancer.go │ ├── balancer │ ├── balancer.go │ ├── base │ │ ├── balancer.go │ │ └── base.go │ └── roundrobin │ │ ├── roundrobin.go │ │ └── roundrobin_test.go │ ├── balancer_conn_wrappers.go │ ├── balancer_switching_test.go │ ├── balancer_test.go │ ├── balancer_v1_wrapper.go │ ├── benchmark │ ├── benchmain │ │ └── main.go │ ├── benchmark.go │ ├── benchmark16_test.go │ ├── benchmark17_test.go │ ├── benchresult │ │ └── main.go │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ ├── control.pb.go │ │ ├── control.proto │ │ ├── messages.pb.go │ │ ├── messages.proto │ │ ├── payloads.pb.go │ │ ├── payloads.proto │ │ ├── services.pb.go │ │ ├── services.proto │ │ ├── stats.pb.go │ │ └── stats.proto │ ├── latency │ │ ├── latency.go │ │ └── latency_test.go │ ├── primitives │ │ ├── code_string_test.go │ │ ├── context_test.go │ │ └── primitives_test.go │ ├── server │ │ └── main.go │ ├── stats │ │ ├── histogram.go │ │ ├── stats.go │ │ └── util.go │ └── worker │ │ ├── benchmark_client.go │ │ ├── benchmark_server.go │ │ ├── main.go │ │ └── util.go │ ├── call.go │ ├── call_test.go │ ├── clientconn.go │ ├── clientconn_test.go │ ├── codec.go │ ├── codec_test.go │ ├── codegen.sh │ ├── codes │ ├── code_string.go │ ├── codes.go │ └── codes_test.go │ ├── connectivity │ └── connectivity.go │ ├── credentials │ ├── credentials.go │ ├── credentials_test.go │ ├── credentials_util_go17.go │ ├── credentials_util_go18.go │ ├── credentials_util_pre_go17.go │ └── oauth │ │ └── oauth.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ ├── gzip │ │ └── gzip.go │ └── proto │ │ ├── proto.go │ │ ├── proto_benchmark_test.go │ │ └── proto_test.go │ ├── examples │ ├── README.md │ ├── gotutorial.md │ ├── helloworld │ │ ├── greeter_client │ │ │ └── main.go │ │ ├── greeter_server │ │ │ └── main.go │ │ ├── helloworld │ │ │ ├── helloworld.pb.go │ │ │ └── helloworld.proto │ │ └── mock_helloworld │ │ │ ├── hw_mock.go │ │ │ └── hw_mock_test.go │ └── route_guide │ │ ├── README.md │ │ ├── client │ │ └── client.go │ │ ├── mock_routeguide │ │ ├── rg_mock.go │ │ └── rg_mock_test.go │ │ ├── routeguide │ │ ├── route_guide.pb.go │ │ └── route_guide.proto │ │ ├── server │ │ └── server.go │ │ └── testdata │ │ └── route_guide_db.json │ ├── go16.go │ ├── go17.go │ ├── grpclb.go │ ├── grpclb │ ├── grpc_lb_v1 │ │ ├── messages │ │ │ ├── messages.pb.go │ │ │ └── messages.proto │ │ └── service │ │ │ ├── service.pb.go │ │ │ └── service.proto │ └── grpclb_test.go │ ├── grpclb_picker.go │ ├── grpclb_remote_balancer.go │ ├── grpclb_util.go │ ├── grpclog │ ├── glogger │ │ └── glogger.go │ ├── grpclog.go │ ├── logger.go │ ├── loggerv2.go │ └── loggerv2_test.go │ ├── health │ ├── grpc_health_v1 │ │ ├── health.pb.go │ │ └── health.proto │ └── health.go │ ├── interceptor.go │ ├── internal │ └── internal.go │ ├── interop │ ├── client │ │ └── client.go │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── http2 │ │ └── negative_http2_client.go │ ├── server │ │ └── server.go │ └── test_utils.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ ├── metadata.go │ └── metadata_test.go │ ├── naming │ ├── dns_resolver.go │ ├── dns_resolver_test.go │ ├── go17.go │ ├── go17_test.go │ ├── go18.go │ ├── go18_test.go │ └── naming.go │ ├── peer │ └── peer.go │ ├── picker_wrapper.go │ ├── picker_wrapper_test.go │ ├── pickfirst.go │ ├── pickfirst_test.go │ ├── proxy.go │ ├── proxy_test.go │ ├── reflection │ ├── README.md │ ├── grpc_reflection_v1alpha │ │ ├── reflection.pb.go │ │ └── reflection.proto │ ├── grpc_testing │ │ ├── proto2.pb.go │ │ ├── proto2.proto │ │ ├── proto2_ext.pb.go │ │ ├── proto2_ext.proto │ │ ├── proto2_ext2.pb.go │ │ ├── proto2_ext2.proto │ │ ├── test.pb.go │ │ └── test.proto │ ├── grpc_testingv3 │ │ ├── testv3.pb.go │ │ └── testv3.proto │ ├── serverreflection.go │ └── serverreflection_test.go │ ├── resolver │ ├── dns │ │ ├── dns_resolver.go │ │ ├── dns_resolver_test.go │ │ ├── go17.go │ │ ├── go17_test.go │ │ ├── go18.go │ │ └── go18_test.go │ ├── manual │ │ └── manual.go │ ├── passthrough │ │ └── passthrough.go │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── resolver_conn_wrapper_test.go │ ├── rpc_util.go │ ├── rpc_util_test.go │ ├── server.go │ ├── server_test.go │ ├── service_config.go │ ├── service_config_test.go │ ├── stats │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── handlers.go │ ├── stats.go │ └── stats_test.go │ ├── status │ ├── status.go │ └── status_test.go │ ├── stream.go │ ├── stress │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ ├── metrics.pb.go │ │ └── metrics.proto │ └── metrics_client │ │ └── main.go │ ├── tap │ └── tap.go │ ├── test │ ├── bufconn │ │ ├── bufconn.go │ │ └── bufconn_test.go │ ├── codec_perf │ │ ├── perf.pb.go │ │ └── perf.proto │ ├── end2end_test.go │ ├── gracefulstop_test.go │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── leakcheck │ │ ├── leakcheck.go │ │ └── leakcheck_test.go │ ├── race.go │ └── servertester.go │ ├── testdata │ ├── ca.pem │ ├── server1.key │ ├── server1.pem │ └── testdata.go │ ├── trace.go │ ├── transport │ ├── bdp_estimator.go │ ├── control.go │ ├── go16.go │ ├── go17.go │ ├── handler_server.go │ ├── handler_server_test.go │ ├── http2_client.go │ ├── http2_server.go │ ├── http_util.go │ ├── http_util_test.go │ ├── log.go │ ├── transport.go │ └── transport_test.go │ └── vet.sh ├── gopkg.in ├── DATA-DOG │ └── go-sqlmock.v1 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── argument.go │ │ ├── argument_test.go │ │ ├── driver.go │ │ ├── driver_test.go │ │ ├── examples │ │ ├── basic │ │ │ ├── basic.go │ │ │ └── basic_test.go │ │ ├── blog │ │ │ ├── blog.go │ │ │ └── blog_test.go │ │ ├── doc.go │ │ └── orders │ │ │ ├── orders.go │ │ │ └── orders_test.go │ │ ├── expectations.go │ │ ├── expectations_before_go18.go │ │ ├── expectations_go18.go │ │ ├── expectations_go18_test.go │ │ ├── expectations_test.go │ │ ├── result.go │ │ ├── result_test.go │ │ ├── rows.go │ │ ├── rows_go18.go │ │ ├── rows_go18_test.go │ │ ├── rows_test.go │ │ ├── sqlmock.go │ │ ├── sqlmock_go18.go │ │ ├── sqlmock_go18_test.go │ │ ├── sqlmock_test.go │ │ ├── statement.go │ │ ├── statement_test.go │ │ ├── stubs_test.go │ │ ├── util.go │ │ └── util_test.go ├── check.v1 │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── TODO │ ├── benchmark.go │ ├── benchmark_test.go │ ├── bootstrap_test.go │ ├── check.go │ ├── check_test.go │ ├── checkers.go │ ├── checkers_test.go │ ├── export_test.go │ ├── fixture_test.go │ ├── foundation_test.go │ ├── helpers.go │ ├── helpers_test.go │ ├── printer.go │ ├── printer_test.go │ ├── reporter.go │ ├── reporter_test.go │ ├── run.go │ └── run_test.go ├── natefinch │ └── lumberjack.v2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chown.go │ │ ├── chown_linux.go │ │ ├── example_test.go │ │ ├── linux_test.go │ │ ├── lumberjack.go │ │ ├── lumberjack_test.go │ │ ├── rotate_test.go │ │ └── testing_test.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 └── logger └── logger.go /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/Makefile -------------------------------------------------------------------------------- /README-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/README-cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/README.md -------------------------------------------------------------------------------- /agent/campaign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/campaign.go -------------------------------------------------------------------------------- /agent/campaign_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/campaign_test.go -------------------------------------------------------------------------------- /agent/cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/cleaner.go -------------------------------------------------------------------------------- /agent/cleaner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/cleaner_test.go -------------------------------------------------------------------------------- /agent/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/config.go -------------------------------------------------------------------------------- /agent/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/config_test.go -------------------------------------------------------------------------------- /agent/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/http.go -------------------------------------------------------------------------------- /agent/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/http_test.go -------------------------------------------------------------------------------- /agent/leader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/leader.go -------------------------------------------------------------------------------- /agent/leader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/leader_test.go -------------------------------------------------------------------------------- /agent/logutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/logutil.go -------------------------------------------------------------------------------- /agent/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/metrics.go -------------------------------------------------------------------------------- /agent/mysql_service_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/mysql_service_manager_test.go -------------------------------------------------------------------------------- /agent/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/node.go -------------------------------------------------------------------------------- /agent/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/node_test.go -------------------------------------------------------------------------------- /agent/postgresql_service_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/postgresql_service_manager.go -------------------------------------------------------------------------------- /agent/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/registry.go -------------------------------------------------------------------------------- /agent/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/registry_test.go -------------------------------------------------------------------------------- /agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/server.go -------------------------------------------------------------------------------- /agent/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/server_test.go -------------------------------------------------------------------------------- /agent/service_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/service_manager.go -------------------------------------------------------------------------------- /agent/single_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/single_point.go -------------------------------------------------------------------------------- /agent/single_point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/single_point_test.go -------------------------------------------------------------------------------- /agent/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/util.go -------------------------------------------------------------------------------- /agent/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/agent/version.go -------------------------------------------------------------------------------- /checker/agent_maniplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/checker/agent_maniplate.go -------------------------------------------------------------------------------- /checker/cfg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/checker/cfg.toml -------------------------------------------------------------------------------- /checker/chaos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/checker/chaos.go -------------------------------------------------------------------------------- /checker/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/checker/config.go -------------------------------------------------------------------------------- /checker/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/checker/job.go -------------------------------------------------------------------------------- /checker/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/checker/server.go -------------------------------------------------------------------------------- /cmd/mysql-agent-checker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/cmd/mysql-agent-checker/main.go -------------------------------------------------------------------------------- /cmd/mysql-agent-service-boot-daemon/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/cmd/mysql-agent-service-boot-daemon/main.go -------------------------------------------------------------------------------- /cmd/mysql-agent-service-boot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/cmd/mysql-agent-service-boot/main.go -------------------------------------------------------------------------------- /cmd/mysql-agent-tear-down/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/cmd/mysql-agent-tear-down/main.go -------------------------------------------------------------------------------- /cmd/mysql-agent/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/cmd/mysql-agent/main.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/1az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/1az.png -------------------------------------------------------------------------------- /docs/3az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/3az.png -------------------------------------------------------------------------------- /docs/MOHA常规测试.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/MOHA常规测试.png -------------------------------------------------------------------------------- /docs/MoHAInMobike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/MoHAInMobike.png -------------------------------------------------------------------------------- /docs/agent_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/agent_down.png -------------------------------------------------------------------------------- /docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/architecture.png -------------------------------------------------------------------------------- /docs/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/benchmark.md -------------------------------------------------------------------------------- /docs/bootstrap_timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/bootstrap_timing.png -------------------------------------------------------------------------------- /docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/design.md -------------------------------------------------------------------------------- /docs/detail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/detail.md -------------------------------------------------------------------------------- /docs/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/docker.png -------------------------------------------------------------------------------- /docs/election-2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/election-2.0.png -------------------------------------------------------------------------------- /docs/etcd_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/etcd_down.png -------------------------------------------------------------------------------- /docs/etcdmonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/etcdmonitor.png -------------------------------------------------------------------------------- /docs/failover-op-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/failover-op-1.png -------------------------------------------------------------------------------- /docs/failover-op-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/failover-op-2.png -------------------------------------------------------------------------------- /docs/failover-op-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/failover-op-3.png -------------------------------------------------------------------------------- /docs/failover-op-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/failover-op-4.png -------------------------------------------------------------------------------- /docs/howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/howto.md -------------------------------------------------------------------------------- /docs/lease-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/lease-1.png -------------------------------------------------------------------------------- /docs/lease-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/lease-2.png -------------------------------------------------------------------------------- /docs/lease-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/lease-3.png -------------------------------------------------------------------------------- /docs/lease-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/lease-4.png -------------------------------------------------------------------------------- /docs/lease-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/lease-5.png -------------------------------------------------------------------------------- /docs/lease-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/lease-6.png -------------------------------------------------------------------------------- /docs/lease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/lease.md -------------------------------------------------------------------------------- /docs/local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/local.md -------------------------------------------------------------------------------- /docs/multi_slaves.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/multi_slaves.md -------------------------------------------------------------------------------- /docs/mysql_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/mysql_down.png -------------------------------------------------------------------------------- /docs/network_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/network_down.png -------------------------------------------------------------------------------- /docs/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/operation.md -------------------------------------------------------------------------------- /docs/product-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/product-install.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/spm-election-2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/spm-election-2.0.png -------------------------------------------------------------------------------- /docs/spm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/docs/spm.md -------------------------------------------------------------------------------- /etc/copyright/copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/copyright/copyright.py -------------------------------------------------------------------------------- /etc/copyright/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/copyright/copyright.txt -------------------------------------------------------------------------------- /etc/copyright/copyright_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/copyright/copyright_old.txt -------------------------------------------------------------------------------- /etc/docker-compose/agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/agent/Dockerfile -------------------------------------------------------------------------------- /etc/docker-compose/agent/haproxy-master.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/agent/haproxy-master.cfg -------------------------------------------------------------------------------- /etc/docker-compose/agent/haproxy-slave.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/agent/haproxy-slave.cfg -------------------------------------------------------------------------------- /etc/docker-compose/agent/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/agent/my.cnf -------------------------------------------------------------------------------- /etc/docker-compose/agent/node01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/agent/node01.toml -------------------------------------------------------------------------------- /etc/docker-compose/agent/node02.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/agent/node02.toml -------------------------------------------------------------------------------- /etc/docker-compose/agent/node03.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/agent/node03.toml -------------------------------------------------------------------------------- /etc/docker-compose/deploy-example/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/deploy-example/my.cnf -------------------------------------------------------------------------------- /etc/docker-compose/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/docker-compose.yaml -------------------------------------------------------------------------------- /etc/docker-compose/postgresql/10-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/postgresql/10-config.sh -------------------------------------------------------------------------------- /etc/docker-compose/postgresql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/postgresql/Dockerfile -------------------------------------------------------------------------------- /etc/docker-compose/postgresql/node01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/postgresql/node01.toml -------------------------------------------------------------------------------- /etc/docker-compose/postgresql/node02.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/postgresql/node02.toml -------------------------------------------------------------------------------- /etc/docker-compose/postgresql/node03.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/postgresql/node03.toml -------------------------------------------------------------------------------- /etc/docker-compose/prometheus-etcd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/docker-compose/prometheus-etcd.yml -------------------------------------------------------------------------------- /etc/etcd-image/v3.3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/etcd-image/v3.3.2/Dockerfile -------------------------------------------------------------------------------- /etc/monitor/etcd_rev3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/monitor/etcd_rev3.json -------------------------------------------------------------------------------- /etc/monitor/go-processes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/monitor/go-processes.json -------------------------------------------------------------------------------- /etc/monitor/import-dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/monitor/import-dashboard.py -------------------------------------------------------------------------------- /etc/monitor/mysql-agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/monitor/mysql-agent.json -------------------------------------------------------------------------------- /etc/mysql-image/5.7.22-pmm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/mysql-image/5.7.22-pmm/Dockerfile -------------------------------------------------------------------------------- /etc/pumba/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/pumba/readme.md -------------------------------------------------------------------------------- /etc/pumba/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/pumba/start.py -------------------------------------------------------------------------------- /etc/scripts/master_switch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/etc/scripts/master_switch.sh -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moctl/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/moctl/conf.go -------------------------------------------------------------------------------- /moctl/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/moctl/conf.toml -------------------------------------------------------------------------------- /moctl/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/moctl/recovery.go -------------------------------------------------------------------------------- /moctl/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/moctl/switch.go -------------------------------------------------------------------------------- /moha_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/moha_logo.png -------------------------------------------------------------------------------- /pkg/etcd/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/etcd/etcd.go -------------------------------------------------------------------------------- /pkg/etcd/etcd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/etcd/etcd_test.go -------------------------------------------------------------------------------- /pkg/etcd/locker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/etcd/locker.go -------------------------------------------------------------------------------- /pkg/etcd/urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/etcd/urls.go -------------------------------------------------------------------------------- /pkg/etcd/urls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/etcd/urls_test.go -------------------------------------------------------------------------------- /pkg/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/file/file.go -------------------------------------------------------------------------------- /pkg/file/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/file/file_test.go -------------------------------------------------------------------------------- /pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/log/log.go -------------------------------------------------------------------------------- /pkg/mysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/mysql/mysql.go -------------------------------------------------------------------------------- /pkg/mysql/mysql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/mysql/mysql_test.go -------------------------------------------------------------------------------- /pkg/postgresql/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/postgresql/postgresql.go -------------------------------------------------------------------------------- /pkg/postgresql/postgresql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/postgresql/postgresql_test.go -------------------------------------------------------------------------------- /pkg/systemcall/file_descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/systemcall/file_descriptor.go -------------------------------------------------------------------------------- /pkg/systemcall/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/systemcall/process.go -------------------------------------------------------------------------------- /pkg/types/db_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/types/db_config.go -------------------------------------------------------------------------------- /pkg/types/urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/types/urls.go -------------------------------------------------------------------------------- /pkg/types/urls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/pkg/types/urls_test.go -------------------------------------------------------------------------------- /release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/release.py -------------------------------------------------------------------------------- /supervise/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/supervise/log.c -------------------------------------------------------------------------------- /supervise/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/supervise/log.h -------------------------------------------------------------------------------- /supervise/supervise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/supervise/supervise.c -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/BurntSushi/toml/Makefile -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/BurntSushi/toml/README.md -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/_examples/readme2.toml: -------------------------------------------------------------------------------- 1 | some_key_NAME = "wat" 2 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/BurntSushi/toml/decode.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/BurntSushi/toml/encode.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/beorn7/perks/README.md -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/topk/topk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/beorn7/perks/topk/topk.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/Makefile -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/bolt_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/bolt_386.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/bolt_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/bolt_arm.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/bolt_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/bolt_ppc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/bolt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/bolt_unix.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/bucket.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/cursor.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/db.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/db_test.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/errors.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/freelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/freelist.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/node.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/node_test.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/page.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/page_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/page_test.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/tx.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/bbolt/tx_test.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.godir: -------------------------------------------------------------------------------- 1 | github.com/coreos/etcd 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/.header -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.semaphore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/.semaphore.sh -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/.words -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Documentation/README.md: -------------------------------------------------------------------------------- 1 | docs.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/Procfile -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Procfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/Procfile.v2 -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/V2Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/V2Procfile -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/auth/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/auth/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/auth/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/auth/jwt.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/auth/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/auth/store.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/build -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/build.bat: -------------------------------------------------------------------------------- 1 | powershell -ExecutionPolicy Bypass -File build.ps1 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/build.ps1 -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/client/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/client/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/cmd/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/etcd: -------------------------------------------------------------------------------- 1 | ../ -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/etcdctl: -------------------------------------------------------------------------------- 1 | ../etcdctl -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/tools: -------------------------------------------------------------------------------- 1 | ../tools -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/contrib/systemd/etcd2-backup-coreos/.gitignore: -------------------------------------------------------------------------------- 1 | rclone.conf 2 | bin 3 | etcd2-backup.tgz 4 | *~ 5 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/cover -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/e2e/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/e2e/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/e2e/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/e2e/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/embed/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/embed/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/embed/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/embed/etcd.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/embed/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/embed/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/README.md: -------------------------------------------------------------------------------- 1 | Various hacks that are used by developers. 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/README: -------------------------------------------------------------------------------- 1 | scripts for etcd development -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns-srv/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver 127.0.0.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/scripts-dev/docker-dns/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver 127.0.0.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/lease/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/lease/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/main.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/main_test.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/meeting.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/meeting.ics -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/mvcc/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/mvcc/index.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/mvcc/kv.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/mvcc/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/pkg/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/raft/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/raft/log.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/raft/node.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/raft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/raft/raft.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/raft/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/snap/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/snap/db.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/store/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/store/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/store/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/store/node.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/test -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/tools/benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | benchmark 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/wal/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/repair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/wal/repair.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/wal/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/wal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/etcd/wal/wal.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/go-semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/go-systemd/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/go-systemd/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/go-systemd/test -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/pkg/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/pkg/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/pkg/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/pkg/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/pkg/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/build: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | go build ./... 4 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/netutil/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/pkg/netutil/url.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/coreos/pkg/test -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/dgrijalva/jwt-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/dgrijalva/jwt-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/dgrijalva/jwt-go/ecdsa.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/dgrijalva/jwt-go/hmac.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/dgrijalva/jwt-go/none.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/dgrijalva/jwt-go/rsa.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/dgrijalva/jwt-go/token.go -------------------------------------------------------------------------------- /vendor/github.com/dustin/go-humanize/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/dustin/go-humanize/big.go -------------------------------------------------------------------------------- /vendor/github.com/dustin/go-humanize/si.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/dustin/go-humanize/si.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ghodss/yaml/yaml_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/README -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/Readme.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/bench.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/full.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/io/full.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/io/io.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/dashfilename/doc.go: -------------------------------------------------------------------------------- 1 | package dashfilename 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go: -------------------------------------------------------------------------------- 1 | package defaultcheck 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/doc.go: -------------------------------------------------------------------------------- 1 | package embedconflict 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/issue270/doc.go: -------------------------------------------------------------------------------- 1 | package issue270 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/jsonpb-gogo/jsonpb_gogo.go: -------------------------------------------------------------------------------- 1 | package jsonpb_gogo 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/mixbench/.gitignore: -------------------------------------------------------------------------------- 1 | mixbench -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof/doc.go: -------------------------------------------------------------------------------- 1 | package one 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof3/doc.go: -------------------------------------------------------------------------------- 1 | package oneof3 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/packed/doc.go: -------------------------------------------------------------------------------- 1 | package packed 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/sizerconflict/doc.go: -------------------------------------------------------------------------------- 1 | package sizerconflict 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gogo/protobuf/test/t.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/tags/doc.go: -------------------------------------------------------------------------------- 1 | package tags 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/theproto3/doc.go: -------------------------------------------------------------------------------- 1 | package theproto3 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/doc.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/golang/groupcache/http.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/google/btree/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/google/btree/btree.go -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree_mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/google/btree/btree_mem.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gorilla/websocket/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gorilla/websocket/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gorilla/websocket/conn.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gorilla/websocket/json.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gorilla/websocket/mask.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/gorilla/websocket/util.go -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/.gitignore: -------------------------------------------------------------------------------- 1 | _output/ 2 | .idea 3 | -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/examples/browser/.gitignore: -------------------------------------------------------------------------------- 1 | /bower_components 2 | /node_modules 3 | -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/examples/clients/abe/.gitignore: -------------------------------------------------------------------------------- 1 | /docs 2 | -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/examples/clients/abe/.swagger-codegen-ignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/examples/clients/echo/.gitignore: -------------------------------------------------------------------------------- 1 | /docs 2 | -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/examples/clients/echo/.swagger-codegen-ignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | -------------------------------------------------------------------------------- /vendor/github.com/jonboulle/clockwork/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3 4 | 5 | sudo: false 6 | -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/doc.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/error.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/error_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/errortypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/errortypes.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/functions.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/path.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/juju/errors/path_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/.travis.sh -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/TESTS.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/array.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/array_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/certs/README -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/certs/root.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/certs/server.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/certs/server.key -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/conn_go18.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/conn_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/connector.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/connector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/connector_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/copy_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/encode_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/lib/pq 2 | -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/go18_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/hstore/hstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/hstore/hstore.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/issues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/issues_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/notify_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/oid/gen.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/rows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/rows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/rows_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/ssl.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/ssl_go1.7.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_permissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/ssl_permissions.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/ssl_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/ssl_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/url_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/user_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/lib/pq/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/petar/GoLLRB/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/petar/GoLLRB/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/petar/GoLLRB/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/petar/GoLLRB/README.md -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/llrb/llrb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/petar/GoLLRB/llrb/llrb.go -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/llrb/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/petar/GoLLRB/llrb/util.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Björn Rabenstein 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.empty.good.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.insecure.good.yml: -------------------------------------------------------------------------------- 1 | insecure_skip_verify: true 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.invalid_field.bad.yml: -------------------------------------------------------------------------------- 1 | something_invalid: true 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0: -------------------------------------------------------------------------------- 1 | bla 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1: -------------------------------------------------------------------------------- 1 | metric{label="\t"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2 3 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11: -------------------------------------------------------------------------------- 1 | metric{label="bla"} blubb 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric bla 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16: -------------------------------------------------------------------------------- 1 | 2 | # TYPE met-ric 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17: -------------------------------------------------------------------------------- 1 | @invalidmetric{label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18: -------------------------------------------------------------------------------- 1 | {label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2: -------------------------------------------------------------------------------- 1 | 2 | metric{label="new 3 | line"} 3.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3: -------------------------------------------------------------------------------- 1 | metric{@="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4: -------------------------------------------------------------------------------- 1 | metric{__name__="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5: -------------------------------------------------------------------------------- 1 | metric{label+="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6: -------------------------------------------------------------------------------- 1 | metric{label=bla} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8: -------------------------------------------------------------------------------- 1 | metric{label="bla"+} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2.72 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal: -------------------------------------------------------------------------------- 1 | m{} 0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/sysfs/.gitignore: -------------------------------------------------------------------------------- 1 | fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/xfrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/prometheus/procfs/xfrm.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/satori/go.uuid/codec.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/satori/go.uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go-mysql/.gitignore: -------------------------------------------------------------------------------- 1 | var 2 | bin 3 | .idea -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/siddontang/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/siddontang/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/log/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/siddontang/go/log/doc.go -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/siddontang/go/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/num/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/siddontang/go/num/cmp.go -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/num/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/siddontang/go/num/str.go -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/rpc/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/siddontang/go/rpc/conn.go -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/tb/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/siddontang/go/tb/error.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/soheilhy/cmux/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/soheilhy/cmux/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/soheilhy/cmux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/soheilhy/cmux/README.md -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/soheilhy/cmux/buffer.go -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/cmux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/soheilhy/cmux/cmux.go -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/soheilhy/cmux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/soheilhy/cmux/matchers.go -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/patricia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/soheilhy/cmux/patricia.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/0doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/0doc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/README.md -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/binc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/binc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/cbor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/cbor.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/codecgen/z.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const genCodecPath = "github.com/ugorji/go/codec" 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/decode.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/encode.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/gen.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/helper.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/json.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/noop.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/rpc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/simple.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/test.py -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/codec/xml.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/msgpack.org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/ugorji/go/msgpack.org.md -------------------------------------------------------------------------------- /vendor/github.com/xiang90/probing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/xiang90/probing/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xiang90/probing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/xiang90/probing/README.md -------------------------------------------------------------------------------- /vendor/github.com/xiang90/probing/prober.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/xiang90/probing/prober.go -------------------------------------------------------------------------------- /vendor/github.com/xiang90/probing/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/xiang90/probing/server.go -------------------------------------------------------------------------------- /vendor/github.com/xiang90/probing/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/github.com/xiang90/probing/status.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/acme/jws_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/argon2/argon2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/argon2/argon2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/openpgp/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/otr/otr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/pkcs12/crypto.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/pkcs12/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/sha3/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/tea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/tea/tea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/crypto/xts/xts_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/diag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/diag_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/date/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/date/gen_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/date/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/message/print.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/number/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/number/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/number/number.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/number/option.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/search/search.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/search/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/time/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/time/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @pongad @jba 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/grpclb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/grpclb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/DATA-DOG/go-sqlmock.v1/examples/doc.go: -------------------------------------------------------------------------------- 1 | package examples 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go_import_path: gopkg.in/check.v1 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/benchmark.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/check.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/check_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/checkers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/checkers.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/checkers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/checkers_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/export_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/fixture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/fixture_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/helpers.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/helpers_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/printer.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/printer_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/reporter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/reporter_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/run.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/check.v1/run_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiot/moha/HEAD/vendor/logger/logger.go --------------------------------------------------------------------------------