├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DCO ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── Makefile ├── README.md ├── ROADMAP.md ├── apps ├── dummy │ ├── Dockerfile │ ├── Makefile │ ├── check.sh │ ├── cluster.yaml │ ├── on-change.sh │ ├── peer-finder.go │ ├── run.sh │ ├── seed.sh │ ├── sequence.sh │ ├── start.sh │ └── stop.sh └── galera │ ├── Dockerfile │ ├── Makefile │ ├── check.sh │ ├── client.yaml │ ├── cluster-ephemeral.yaml │ ├── cluster-local.yaml │ ├── cluster.yaml │ ├── container-common.sh │ ├── database.sql │ ├── demo.md │ ├── fixuser_and_run.sh │ ├── on-change.sh │ ├── peer-finder.go │ ├── run.sh │ ├── seed.sh │ ├── sequence.sh │ ├── start.sh │ └── stop.sh ├── boilerplate.go.txt ├── cmd └── operator │ └── main.go ├── code-of-conduct.md ├── codecov.yaml ├── doc ├── Rationale.md ├── alpha-features.md ├── best_practices.md ├── design │ ├── cluster_lifecycle.md │ ├── cluster_status.md │ ├── disaster_recovery.md │ ├── operator_recovery.md │ ├── physical_recovery.md │ ├── reconciliation.md │ ├── replication.md │ └── resource_ownership_and_GC.md ├── dev │ ├── debug_e2e_flake.md │ ├── developer_guide.md │ └── release.md ├── inherited │ ├── design │ │ ├── abs_backup.md │ │ ├── arch.png │ │ ├── backup_operator.md │ │ ├── cluster_restore.md │ │ ├── cluster_upgrade.md │ │ ├── persistent_volumes_etcd_data.md │ │ ├── restore_operator.md │ │ ├── s3_backup.md │ │ └── upgrade.jpg │ ├── upgrade │ │ ├── migrate_cr_070.md │ │ └── upgrade_guide.md │ └── walkthrough │ │ ├── backup-operator.md │ │ └── restore-operator.md └── user │ ├── client_service.md │ ├── cluster_tls.md │ ├── conditions_and_events.md │ ├── demo-script.md │ ├── install_guide.md │ ├── rbac.md │ ├── resource_labels.md │ └── spec_examples.md ├── example ├── ceph-admin-secret.yaml ├── cluster.yaml ├── crd.yaml ├── deployment-operator.yaml ├── operator.yaml ├── rbac │ ├── cluster-role-binding-template.yaml │ ├── cluster-role-template.yaml │ ├── create_role.sh │ ├── role-binding-template.yaml │ └── role-template.yaml ├── storage.yaml └── tls │ ├── certs │ ├── ca-config.json │ ├── ca-csr.json │ ├── etcd-client-ca.crt │ ├── etcd-client.crt │ ├── etcd-client.json │ ├── etcd-client.key │ ├── gen-cert.sh │ ├── peer-ca.crt │ ├── peer.crt │ ├── peer.json │ ├── peer.key │ ├── server-ca.crt │ ├── server.crt │ ├── server.json │ └── server.key │ └── example-tls-cluster.yaml ├── glide.lock ├── glide.yaml ├── go-list.sh ├── hack ├── build │ ├── Dockerfile │ ├── docker_push │ └── operator │ │ └── build ├── ci │ ├── get_kube.sh │ ├── rbac_utils.sh │ └── run ├── k8s │ └── codegen │ │ └── Dockerfile ├── lib │ └── build.sh └── test ├── pkg ├── apis │ └── clusterlabs │ │ └── v1alpha1 │ │ ├── cluster.go │ │ ├── cluster_tls.go │ │ ├── doc.go │ │ ├── register.go │ │ ├── status.go │ │ └── zz_generated.deepcopy.go ├── chaos │ └── chaos.go ├── client │ └── client.go ├── cluster │ ├── Fragemts_go │ ├── cluster.go │ ├── cluster_test.go │ ├── error.go │ ├── error_test.go │ ├── exec.go │ ├── metrics.go │ ├── reconcile.go │ ├── replicate.go │ ├── replicate_test.go │ └── statefulset.go ├── controller │ ├── controller.go │ ├── controller_test.go │ ├── informer.go │ ├── metrics.go │ └── util.go ├── generated │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── clusterlabs │ │ │ └── v1alpha1 │ │ │ ├── clusterlabs_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_clusterlabs_client.go │ │ │ └── fake_replicatedstatefulset.go │ │ │ ├── generated_expansion.go │ │ │ └── replicatedstatefulset.go │ ├── informers │ │ └── externalversions │ │ │ ├── clusterlabs │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── replicatedstatefulset.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── clusterlabs │ │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ └── replicatedstatefulset.go └── util │ ├── constants │ └── constants.go │ ├── k8sutil │ ├── crd.go │ ├── events_util.go │ ├── exec_test.go │ ├── exec_util.go │ ├── k8sutil.go │ ├── node_util.go │ ├── pod_util.go │ ├── sts_util.go │ └── tls.go │ ├── logging.go │ ├── logging_test.go │ ├── member.go │ ├── member_test.go │ ├── probe │ └── readyz.go │ ├── retry.go │ └── tls.go ├── test ├── e2e │ ├── README.md │ ├── basic_test.go │ ├── cluster_status_test.go │ ├── e2esh │ │ └── main_test.go │ ├── e2eslow │ │ ├── disruptive_test.go │ │ ├── main_test.go │ │ └── tls_test.go │ ├── e2eutil │ │ ├── crd_util.go │ │ ├── etcd_util.go │ │ ├── spec_util.go │ │ ├── tls.go │ │ ├── util.go │ │ └── wait_util.go │ ├── framework │ │ ├── framework.go │ │ └── main_entry.go │ ├── main_test.go │ ├── recovery_test.go │ ├── resize_test.go │ ├── upgradetest │ │ ├── README.md │ │ ├── framework │ │ │ └── framework.go │ │ ├── main_test.go │ │ └── upgrade_test.go │ └── util.go ├── logcollector │ └── main.go └── pod │ ├── Dockerfile │ ├── README.md │ ├── build │ ├── run-test-pod │ └── test-pod.yaml ├── vendor ├── github.com │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bench_test.go │ │ │ ├── benchmarks │ │ │ │ └── v0.1.0 │ │ │ ├── example_test.go │ │ │ ├── purell.go │ │ │ ├── purell_test.go │ │ │ └── urlnorm_test.go │ │ └── urlesc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── urlesc.go │ │ │ └── urlesc_test.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 │ │ ├── etcd │ │ │ ├── .dockerignore │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .godir │ │ │ ├── .header │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── DCO │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-release │ │ │ ├── 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_grpc_gateway.md │ │ │ │ │ ├── api_reference_v3.md │ │ │ │ │ ├── apispec │ │ │ │ │ │ └── swagger │ │ │ │ │ │ │ └── rpc.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 │ │ │ │ ├── learning │ │ │ │ │ ├── api.md │ │ │ │ │ ├── api_guarantees.md │ │ │ │ │ ├── data_model.md │ │ │ │ │ ├── glossary.md │ │ │ │ │ └── why.md │ │ │ │ ├── libraries-and-tools.md │ │ │ │ ├── metrics.md │ │ │ │ ├── op-guide │ │ │ │ │ ├── clustering.md │ │ │ │ │ ├── configuration.md │ │ │ │ │ ├── container.md │ │ │ │ │ ├── etcd-sample-grafana.png │ │ │ │ │ ├── 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 │ │ │ │ │ └── freebsd.md │ │ │ │ ├── production-users.md │ │ │ │ ├── reporting_bugs.md │ │ │ │ ├── rfc │ │ │ │ │ └── v3api.md │ │ │ │ ├── tuning.md │ │ │ │ ├── upgrades │ │ │ │ │ ├── upgrade_3_0.md │ │ │ │ │ └── upgrade_3_1.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 │ │ │ │ │ ├── faq.md │ │ │ │ │ ├── glossary.md │ │ │ │ │ ├── implementation-faq.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 │ │ │ ├── NEWS │ │ │ ├── NOTICE │ │ │ ├── Procfile │ │ │ ├── README.md │ │ │ ├── ROADMAP.md │ │ │ ├── V2Procfile │ │ │ ├── alarm │ │ │ │ └── alarms.go │ │ │ ├── auth │ │ │ │ ├── authpb │ │ │ │ │ ├── auth.pb.go │ │ │ │ │ └── auth.proto │ │ │ │ ├── doc.go │ │ │ │ ├── range_perm_cache.go │ │ │ │ ├── range_perm_cache_test.go │ │ │ │ ├── simple_token.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── members.go │ │ │ │ ├── members_test.go │ │ │ │ ├── srv.go │ │ │ │ ├── srv_test.go │ │ │ │ └── util.go │ │ │ ├── clientv3 │ │ │ │ ├── README.md │ │ │ │ ├── auth.go │ │ │ │ ├── balancer.go │ │ │ │ ├── balancer_test.go │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── cluster.go │ │ │ │ ├── compact_op.go │ │ │ │ ├── compact_op_test.go │ │ │ │ ├── compare.go │ │ │ │ ├── concurrency │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── election.go │ │ │ │ │ ├── key.go │ │ │ │ │ ├── mutex.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── stm.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.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 │ │ │ │ ├── integration │ │ │ │ │ ├── cluster_test.go │ │ │ │ │ ├── dial_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── kv_test.go │ │ │ │ │ ├── lease_test.go │ │ │ │ │ ├── logger_test.go │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── metrics_test.go │ │ │ │ │ ├── mirror_test.go │ │ │ │ │ ├── role_test.go │ │ │ │ │ ├── txn_test.go │ │ │ │ │ ├── user_test.go │ │ │ │ │ └── watch_test.go │ │ │ │ ├── kv.go │ │ │ │ ├── lease.go │ │ │ │ ├── logger.go │ │ │ │ ├── main_test.go │ │ │ │ ├── maintenance.go │ │ │ │ ├── mirror │ │ │ │ │ └── syncer.go │ │ │ │ ├── naming │ │ │ │ │ ├── grpc.go │ │ │ │ │ └── grpc_test.go │ │ │ │ ├── op.go │ │ │ │ ├── op_test.go │ │ │ │ ├── retry.go │ │ │ │ ├── sort.go │ │ │ │ ├── txn.go │ │ │ │ ├── txn_test.go │ │ │ │ ├── watch.go │ │ │ │ └── watch_test.go │ │ │ ├── cmd │ │ │ │ ├── README.md │ │ │ │ ├── etcd │ │ │ │ ├── etcdctl │ │ │ │ └── tools │ │ │ ├── compactor │ │ │ │ ├── compactor.go │ │ │ │ ├── compactor_test.go │ │ │ │ └── doc.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 │ │ │ │ │ ├── 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 │ │ │ ├── cover │ │ │ ├── discovery │ │ │ │ ├── discovery.go │ │ │ │ ├── discovery_test.go │ │ │ │ ├── srv.go │ │ │ │ └── srv_test.go │ │ │ ├── e2e │ │ │ │ ├── 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_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_release_upgrade_test.go │ │ │ │ ├── etcd_test.go │ │ │ │ ├── gateway_test.go │ │ │ │ ├── main_test.go │ │ │ │ ├── v2_curl_test.go │ │ │ │ └── v3_curl_test.go │ │ │ ├── embed │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── etcd.go │ │ │ │ ├── serve.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 │ │ │ │ ├── ctlv3 │ │ │ │ │ ├── command │ │ │ │ │ │ ├── alarm_command.go │ │ │ │ │ │ ├── auth_command.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── ctl.go │ │ │ │ │ └── help.go │ │ │ │ ├── doc │ │ │ │ │ └── mirror_maker.md │ │ │ │ └── main.go │ │ │ ├── etcdmain │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── etcd.go │ │ │ │ ├── gateway.go │ │ │ │ ├── grpc_proxy.go │ │ │ │ ├── help.go │ │ │ │ └── main.go │ │ │ ├── etcdserver │ │ │ │ ├── api │ │ │ │ │ ├── capability.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── doc.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 │ │ │ │ │ │ ├── peer.go │ │ │ │ │ │ ├── peer_test.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── ca.pem │ │ │ │ │ │ │ ├── otheruser.pem │ │ │ │ │ │ │ └── user.pem │ │ │ │ │ └── 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 │ │ │ │ │ │ └── watch.go │ │ │ │ ├── apply.go │ │ │ │ ├── apply_auth.go │ │ │ │ ├── apply_v2.go │ │ │ │ ├── auth │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── auth_requests.go │ │ │ │ │ └── auth_test.go │ │ │ │ ├── cluster_util.go │ │ │ │ ├── cluster_util_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── consistent_index.go │ │ │ │ ├── consistent_index_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── etcdserverpb │ │ │ │ │ ├── etcdserver.pb.go │ │ │ │ │ ├── etcdserver.proto │ │ │ │ │ ├── raft_internal.pb.go │ │ │ │ │ ├── raft_internal.proto │ │ │ │ │ ├── rpc.pb.go │ │ │ │ │ ├── rpc.pb.gw.go │ │ │ │ │ └── rpc.proto │ │ │ │ ├── membership │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── cluster_test.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 │ │ │ │ └── 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 │ │ │ │ │ ├── ca-csr.json │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── gencert.json │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ ├── revoke.crl │ │ │ │ │ ├── server-ca-csr.json │ │ │ │ │ ├── server-revoked.crt │ │ │ │ │ ├── server-revoked.key.insecure │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key.insecure │ │ │ │ ├── logger_test.go │ │ │ │ ├── main_test.go │ │ │ │ ├── member_test.go │ │ │ │ ├── network_partition_test.go │ │ │ │ ├── v2_http_kv_test.go │ │ │ │ ├── v3_auth_test.go │ │ │ │ ├── v3_barrier_test.go │ │ │ │ ├── v3_double_barrier_test.go │ │ │ │ ├── v3_election_test.go │ │ │ │ ├── v3_grpc_test.go │ │ │ │ ├── v3_lease_test.go │ │ │ │ ├── v3_lock_test.go │ │ │ │ ├── v3_maintenance_test.go │ │ │ │ ├── v3_queue_test.go │ │ │ │ ├── v3_stm_test.go │ │ │ │ └── v3_watch_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 │ │ │ ├── mvcc │ │ │ │ ├── backend │ │ │ │ │ ├── backend.go │ │ │ │ │ ├── backend_bench_test.go │ │ │ │ │ ├── backend_test.go │ │ │ │ │ ├── batch_tx.go │ │ │ │ │ ├── batch_tx_test.go │ │ │ │ │ ├── boltoption_default.go │ │ │ │ │ ├── boltoption_linux.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── metrics.go │ │ │ │ ├── doc.go │ │ │ │ ├── index.go │ │ │ │ ├── index_test.go │ │ │ │ ├── key_index.go │ │ │ │ ├── key_index_test.go │ │ │ │ ├── kv.go │ │ │ │ ├── kv_test.go │ │ │ │ ├── kvstore.go │ │ │ │ ├── kvstore_bench_test.go │ │ │ │ ├── kvstore_compaction.go │ │ │ │ ├── kvstore_compaction_test.go │ │ │ │ ├── kvstore_test.go │ │ │ │ ├── metrics.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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_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 │ │ │ │ ├── monotime │ │ │ │ │ ├── issue15006.s │ │ │ │ │ ├── monotime.go │ │ │ │ │ ├── nanotime.go │ │ │ │ │ └── nanotime_test.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 │ │ │ │ ├── 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 │ │ │ │ ├── runtime │ │ │ │ │ ├── fds_linux.go │ │ │ │ │ └── fds_other.go │ │ │ │ ├── schedule │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── schedule.go │ │ │ │ │ └── schedule_test.go │ │ │ │ ├── stringutil │ │ │ │ │ └── stringutil.go │ │ │ │ ├── testutil │ │ │ │ │ ├── leak.go │ │ │ │ │ ├── leak_test.go │ │ │ │ │ ├── pauseable_handler.go │ │ │ │ │ ├── recorder.go │ │ │ │ │ └── testutil.go │ │ │ │ ├── tlsutil │ │ │ │ │ ├── doc.go │ │ │ │ │ └── tlsutil.go │ │ │ │ ├── transport │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── keepalive_listener.go │ │ │ │ │ ├── keepalive_listener_test.go │ │ │ │ │ ├── limit_listen.go │ │ │ │ │ ├── listener.go │ │ │ │ │ ├── listener_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 │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── cache │ │ │ │ │ │ └── store.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── kv.go │ │ │ │ │ ├── kv_client_adapter.go │ │ │ │ │ ├── kv_test.go │ │ │ │ │ ├── lease.go │ │ │ │ │ ├── maintenance.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── watch.go │ │ │ │ │ ├── watch_broadcast.go │ │ │ │ │ ├── watch_broadcasts.go │ │ │ │ │ ├── watch_client_adapter.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 │ │ │ │ ├── release.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 │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Procfile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── docker-compose.yml │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── lease_renewer_command.go │ │ │ │ │ │ │ ├── lock_racer_command.go │ │ │ │ │ │ │ └── watch_command.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── help.go │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── etcd-tester │ │ │ │ │ │ ├── checks.go │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ ├── doc.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 │ │ │ │ │ └── test │ │ │ │ └── local-tester │ │ │ │ │ ├── Procfile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── 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 │ │ │ │ ├── wal_unix.go │ │ │ │ ├── wal_windows.go │ │ │ │ └── walpb │ │ │ │ ├── record.go │ │ │ │ ├── record.pb.go │ │ │ │ └── record.proto │ │ ├── go-systemd │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── DCO │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── activation │ │ │ │ ├── files.go │ │ │ │ ├── files_test.go │ │ │ │ ├── listeners.go │ │ │ │ ├── listeners_test.go │ │ │ │ ├── packetconns.go │ │ │ │ └── packetconns_test.go │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── progressbar.go │ │ │ └── progressbar_test.go │ │ │ ├── test │ │ │ ├── timeutil │ │ │ ├── backoff.go │ │ │ └── backoff_test.go │ │ │ └── yamlutil │ │ │ ├── yaml.go │ │ │ └── yaml_test.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cov_report.sh │ │ │ ├── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── dump_test.go │ │ │ ├── dumpcgo_test.go │ │ │ ├── dumpnocgo_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── internal_test.go │ │ │ ├── internalunsafe_test.go │ │ │ ├── spew.go │ │ │ ├── spew_test.go │ │ │ └── testdata │ │ │ │ └── dumpcgo.go │ │ │ └── test_coverage.txt │ ├── docker │ │ └── spdystream │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── connection.go │ │ │ ├── handlers.go │ │ │ ├── priority.go │ │ │ ├── priority_test.go │ │ │ ├── spdy │ │ │ ├── dictionary.go │ │ │ ├── read.go │ │ │ ├── spdy_test.go │ │ │ ├── types.go │ │ │ └── write.go │ │ │ ├── spdy_bench_test.go │ │ │ ├── spdy_test.go │ │ │ ├── stream.go │ │ │ ├── utils.go │ │ │ └── ws │ │ │ ├── connection.go │ │ │ └── ws_test.go │ ├── emicklei │ │ └── go-restful │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Srcfile │ │ │ ├── bench_curly_test.go │ │ │ ├── bench_test.go │ │ │ ├── bench_test.sh │ │ │ ├── compress.go │ │ │ ├── compress_test.go │ │ │ ├── compressor_cache.go │ │ │ ├── compressor_pools.go │ │ │ ├── compressors.go │ │ │ ├── constants.go │ │ │ ├── container.go │ │ │ ├── container_test.go │ │ │ ├── cors_filter.go │ │ │ ├── cors_filter_test.go │ │ │ ├── coverage.sh │ │ │ ├── curly.go │ │ │ ├── curly_route.go │ │ │ ├── curly_test.go │ │ │ ├── doc.go │ │ │ ├── doc_examples_test.go │ │ │ ├── entity_accessors.go │ │ │ ├── entity_accessors_test.go │ │ │ ├── examples │ │ │ ├── .goconvey │ │ │ ├── google_app_engine │ │ │ │ ├── .goconvey │ │ │ │ ├── app.yaml │ │ │ │ ├── datastore │ │ │ │ │ ├── .goconvey │ │ │ │ │ ├── app.yaml │ │ │ │ │ └── main.go │ │ │ │ ├── restful-appstats-integration.go │ │ │ │ └── restful-user-service.go │ │ │ ├── home.html │ │ │ ├── msgpack │ │ │ │ ├── msgpack_entity.go │ │ │ │ └── msgpack_entity_test.go │ │ │ ├── restful-CORS-filter.go │ │ │ ├── restful-NCSA-logging.go │ │ │ ├── restful-basic-authentication.go │ │ │ ├── restful-cpuprofiler-service.go │ │ │ ├── restful-curly-router.go │ │ │ ├── restful-curly-router_test.go │ │ │ ├── restful-encoding-filter.go │ │ │ ├── restful-filters.go │ │ │ ├── restful-form-handling.go │ │ │ ├── restful-hello-world.go │ │ │ ├── restful-html-template.go │ │ │ ├── restful-multi-containers.go │ │ │ ├── restful-no-cache-filter.go │ │ │ ├── restful-options-filter.go │ │ │ ├── restful-path-tail.go │ │ │ ├── restful-pre-post-filters.go │ │ │ ├── restful-resource-functions.go │ │ │ ├── restful-route_test.go │ │ │ ├── restful-routefunction_test.go │ │ │ ├── restful-serve-static.go │ │ │ ├── restful-swagger.go │ │ │ ├── restful-user-resource.go │ │ │ └── restful-user-service.go │ │ │ ├── filter.go │ │ │ ├── filter_test.go │ │ │ ├── jsr311.go │ │ │ ├── jsr311_test.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── logger.go │ │ │ ├── mime.go │ │ │ ├── mime_test.go │ │ │ ├── options_filter.go │ │ │ ├── options_filter_test.go │ │ │ ├── parameter.go │ │ │ ├── path_expression.go │ │ │ ├── path_expression_test.go │ │ │ ├── request.go │ │ │ ├── request_test.go │ │ │ ├── response.go │ │ │ ├── response_test.go │ │ │ ├── route.go │ │ │ ├── route_builder.go │ │ │ ├── route_builder_test.go │ │ │ ├── route_test.go │ │ │ ├── router.go │ │ │ ├── service_error.go │ │ │ ├── tracer_test.go │ │ │ ├── web_service.go │ │ │ ├── web_service_container.go │ │ │ └── web_service_test.go │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ ├── yaml.go │ │ │ └── yaml_test.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── .drone.sec │ │ │ ├── .drone.yml │ │ │ ├── .github │ │ │ │ └── CONTRIBUTING.md │ │ │ ├── .gitignore │ │ │ ├── .pullapprove.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── pointer.go │ │ │ └── pointer_test.go │ │ ├── jsonreference │ │ │ ├── .drone.sec │ │ │ ├── .drone.yml │ │ │ ├── .github │ │ │ │ └── CONTRIBUTING.md │ │ │ ├── .gitignore │ │ │ ├── .pullapprove.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── reference.go │ │ │ └── reference_test.go │ │ ├── spec │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ │ └── CONTRIBUTING.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth_test.go │ │ │ ├── bindata.go │ │ │ ├── contact_info.go │ │ │ ├── contact_info_test.go │ │ │ ├── expander.go │ │ │ ├── expander_test.go │ │ │ ├── external_docs.go │ │ │ ├── external_docs_test.go │ │ │ ├── fixtures │ │ │ │ ├── expansion │ │ │ │ │ ├── all-the-things.json │ │ │ │ │ ├── circularRefs.json │ │ │ │ │ ├── circularSpec.json │ │ │ │ │ ├── circularSpec.yaml │ │ │ │ │ ├── clickmeter.json │ │ │ │ │ ├── clickmeter.yaml │ │ │ │ │ ├── invalid-refs.json │ │ │ │ │ ├── missingItemRef.json │ │ │ │ │ ├── missingRef.json │ │ │ │ │ ├── overflow.json │ │ │ │ │ ├── params.json │ │ │ │ │ ├── schemas1.json │ │ │ │ │ └── schemas2.json │ │ │ │ ├── local_expansion │ │ │ │ │ ├── item.json │ │ │ │ │ └── spec.json │ │ │ │ └── specs │ │ │ │ │ ├── deeper │ │ │ │ │ ├── arrayProp.json │ │ │ │ │ └── stringProp.json │ │ │ │ │ ├── refed.json │ │ │ │ │ ├── resolution.json │ │ │ │ │ └── resolution2.json │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── info.go │ │ │ ├── info_test.go │ │ │ ├── items.go │ │ │ ├── items_test.go │ │ │ ├── license.go │ │ │ ├── license_test.go │ │ │ ├── operation.go │ │ │ ├── operation_test.go │ │ │ ├── parameter.go │ │ │ ├── parameters_test.go │ │ │ ├── path_item.go │ │ │ ├── path_item_test.go │ │ │ ├── paths.go │ │ │ ├── paths_test.go │ │ │ ├── properties_test.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── response_test.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── schema_test.go │ │ │ ├── schemas │ │ │ │ ├── jsonschema-draft-04.json │ │ │ │ └── v2 │ │ │ │ │ ├── README.md │ │ │ │ │ └── schema.json │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── structs_test.go │ │ │ ├── swagger.go │ │ │ ├── swagger_test.go │ │ │ ├── tag.go │ │ │ ├── xml_object.go │ │ │ └── xml_object_test.go │ │ └── swag │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ └── CONTRIBUTING.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_test.go │ │ │ ├── convert_types.go │ │ │ ├── convert_types_test.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── loading.go │ │ │ ├── loading_test.go │ │ │ ├── net.go │ │ │ ├── net_test.go │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ ├── yaml.go │ │ │ └── yaml_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 │ │ │ └── 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 │ │ │ ├── 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 │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── 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 │ │ │ │ ├── unsafeboth │ │ │ │ │ ├── bug_test.go │ │ │ │ │ ├── t.go │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ ├── thetest.proto │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ └── uuid.go │ │ │ │ ├── unsafemarshaler │ │ │ │ │ ├── bug_test.go │ │ │ │ │ ├── t.go │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ ├── thetest.proto │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ └── uuid.go │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ ├── 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 │ │ │ ├── indeximport-issue72 │ │ │ │ ├── Makefile │ │ │ │ ├── index │ │ │ │ │ ├── index.pb.go │ │ │ │ │ ├── index.proto │ │ │ │ │ └── indexpb_test.go │ │ │ │ ├── indeximport.pb.go │ │ │ │ ├── indeximport.proto │ │ │ │ └── indeximportpb_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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── header.proto │ │ │ │ ├── mapsproto2.proto │ │ │ │ └── mapsproto2_test.go.in │ │ │ ├── mixbench │ │ │ │ ├── marshal.txt │ │ │ │ ├── marshaler.txt │ │ │ │ ├── mixbench.go │ │ │ │ ├── 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 │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── 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 │ │ │ │ ├── sizerconflict.proto │ │ │ │ └── sizerconflict_test.go │ │ │ ├── sizeunderscore │ │ │ │ ├── Makefile │ │ │ │ ├── sizeunderscore.pb.go │ │ │ │ ├── sizeunderscore.proto │ │ │ │ └── sizeunderscorepb_test.go │ │ │ ├── stdtypes │ │ │ │ ├── Makefile │ │ │ │ ├── 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 │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── 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 │ │ ├── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ ├── glog_file.go │ │ │ └── glog_test.go │ │ ├── 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 │ │ │ ├── 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 │ │ └── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── fuzz.go │ │ │ └── fuzz_test.go │ ├── googleapis │ │ └── gnostic │ │ │ ├── .gitignore │ │ │ ├── .travis-install.sh │ │ │ ├── .travis.yml │ │ │ ├── COMPILE-PROTOS.sh │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── OpenAPIv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ └── openapi-2.0.json │ │ │ ├── OpenAPIv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── openapi-3.0.json │ │ │ └── schema-generator │ │ │ │ ├── 3.0.md │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── README.md │ │ │ ├── apps │ │ │ ├── petstore-builder │ │ │ │ ├── README.md │ │ │ │ ├── main.go │ │ │ │ ├── petstore-v2.go │ │ │ │ └── petstore-v3.go │ │ │ └── report │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extension-handler.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── errors │ │ │ │ ├── petstore-badproperties.yaml │ │ │ │ ├── petstore-missingversion.yaml │ │ │ │ └── petstore-unresolvedrefs.yaml │ │ │ ├── v2.0 │ │ │ │ ├── json │ │ │ │ │ ├── api-with-examples.json │ │ │ │ │ ├── petstore-expanded.json │ │ │ │ │ ├── petstore-minimal.json │ │ │ │ │ ├── petstore-separate │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── Error.json │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ ├── NewPet.json │ │ │ │ │ │ │ ├── Pet.json │ │ │ │ │ │ │ ├── parameters.json │ │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── petstore-simple.json │ │ │ │ │ ├── petstore-with-external-docs.json │ │ │ │ │ ├── petstore.json │ │ │ │ │ └── uber.json │ │ │ │ └── yaml │ │ │ │ │ ├── api-with-examples.yaml │ │ │ │ │ ├── petstore-expanded.yaml │ │ │ │ │ ├── petstore-minimal.yaml │ │ │ │ │ ├── petstore-separate │ │ │ │ │ ├── common │ │ │ │ │ │ └── Error.yaml │ │ │ │ │ └── spec │ │ │ │ │ │ ├── NewPet.yaml │ │ │ │ │ │ ├── Pet.yaml │ │ │ │ │ │ ├── parameters.yaml │ │ │ │ │ │ ├── swagger.text │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ ├── petstore-simple.yaml │ │ │ │ │ ├── petstore-with-external-docs.yaml │ │ │ │ │ ├── petstore.yaml │ │ │ │ │ └── uber.yaml │ │ │ └── v3.0 │ │ │ │ ├── json │ │ │ │ └── petstore.json │ │ │ │ └── yaml │ │ │ │ └── petstore.yaml │ │ │ ├── extensions │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ ├── extensions.go │ │ │ └── sample │ │ │ │ ├── Makefile │ │ │ │ ├── x-sampleone.json │ │ │ │ └── x-sampletwo.json │ │ │ ├── generate-gnostic │ │ │ ├── README.md │ │ │ ├── domain.go │ │ │ ├── generate-compiler.go │ │ │ ├── generate-extension.go │ │ │ ├── generate-extension_test.go │ │ │ ├── generate-proto.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ ├── test │ │ │ │ ├── errors │ │ │ │ │ ├── x-extension-name-collision.errors │ │ │ │ │ └── x-unsupportedprimitives.errors │ │ │ │ ├── x-extension-name-collision.json │ │ │ │ └── x-unsupportedprimitives.json │ │ │ └── types.go │ │ │ ├── gnostic.go │ │ │ ├── gnostic_test.go │ │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ │ ├── jsonwriter │ │ │ ├── README.md │ │ │ └── writer.go │ │ │ ├── plugins │ │ │ ├── README.md │ │ │ ├── gnostic-analyze │ │ │ │ ├── README.md │ │ │ │ ├── main.go │ │ │ │ ├── statistics │ │ │ │ │ └── stats.go │ │ │ │ └── summarize │ │ │ │ │ └── main.go │ │ │ ├── gnostic-go-generator │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── encode-templates │ │ │ │ │ └── main.go │ │ │ │ ├── examples │ │ │ │ │ └── v2.0 │ │ │ │ │ │ ├── apis_guru │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ │ ├── bookstore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bookstore.json │ │ │ │ │ │ ├── bookstore_test.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ └── xkcd │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── swagger.json │ │ │ │ ├── funcmap.go │ │ │ │ ├── gofmt.go │ │ │ │ ├── main.go │ │ │ │ ├── renderer.go │ │ │ │ ├── templates.go │ │ │ │ └── templates │ │ │ │ │ ├── client.go.tmpl │ │ │ │ │ ├── provider.go.tmpl │ │ │ │ │ ├── server.go.tmpl │ │ │ │ │ └── types.go.tmpl │ │ │ ├── gnostic-go-sample │ │ │ │ └── main.go │ │ │ ├── gnostic-swift-generator │ │ │ │ ├── Makefile │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Sources │ │ │ │ │ ├── TemplateEncoder │ │ │ │ │ │ └── main.swift │ │ │ │ │ └── gnostic-swift-generator │ │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ │ ├── Renderer.swift │ │ │ │ │ │ ├── TemplateFunctions.swift │ │ │ │ │ │ ├── TemplateLoader.swift │ │ │ │ │ │ ├── Templates.swift │ │ │ │ │ │ ├── helpers.swift │ │ │ │ │ │ ├── io.swift │ │ │ │ │ │ ├── main.swift │ │ │ │ │ │ └── plugin.pb.swift │ │ │ │ ├── Templates │ │ │ │ │ ├── client.swift.tmpl │ │ │ │ │ ├── fetch.swift.tmpl │ │ │ │ │ ├── server.swift.tmpl │ │ │ │ │ └── types.swift.tmpl │ │ │ │ └── examples │ │ │ │ │ └── bookstore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Package.swift │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Sources │ │ │ │ │ └── Server │ │ │ │ │ │ └── main.swift │ │ │ │ │ ├── Tests │ │ │ │ │ ├── BookstoreTests │ │ │ │ │ │ └── BookstoreTests.swift │ │ │ │ │ └── LinuxMain.swift │ │ │ │ │ └── bookstore.json │ │ │ ├── gnostic-swift-sample │ │ │ │ ├── Package.swift │ │ │ │ └── Sources │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ ├── io.swift │ │ │ │ │ ├── main.swift │ │ │ │ │ └── plugin.pb.swift │ │ │ ├── plugin.pb.go │ │ │ └── plugin.proto │ │ │ ├── printer │ │ │ ├── README.md │ │ │ └── code.go │ │ │ ├── test │ │ │ ├── README.md │ │ │ ├── errors │ │ │ │ ├── invalid-plugin-invocation.errors │ │ │ │ ├── petstore-badproperties.errors │ │ │ │ ├── petstore-missingversion.errors │ │ │ │ └── petstore-unresolvedrefs.errors │ │ │ ├── library-example-with-ext.json │ │ │ ├── library-example-with-ext.text.out │ │ │ ├── v2.0 │ │ │ │ ├── petstore.text │ │ │ │ └── yaml │ │ │ │ │ ├── petstore-separate │ │ │ │ │ └── spec │ │ │ │ │ │ └── swagger.text │ │ │ │ │ └── sample-petstore.out │ │ │ └── v3.0 │ │ │ │ └── petstore.text │ │ │ └── tools │ │ │ ├── README.md │ │ │ ├── format-schema │ │ │ └── main.go │ │ │ └── j2y2j │ │ │ └── main.go │ ├── gregjones │ │ └── httpcache │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── diskcache │ │ │ ├── diskcache.go │ │ │ └── diskcache_test.go │ │ │ ├── httpcache.go │ │ │ ├── httpcache_test.go │ │ │ ├── leveldbcache │ │ │ ├── leveldbcache.go │ │ │ └── leveldbcache_test.go │ │ │ ├── memcache │ │ │ ├── appengine.go │ │ │ ├── appengine_test.go │ │ │ ├── memcache.go │ │ │ └── memcache_test.go │ │ │ └── redis │ │ │ ├── redis.go │ │ │ └── redis_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 │ │ │ ├── test_all.sh │ │ │ └── util.go │ │ └── grpc-gateway │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── .travis │ │ │ ├── install-protoc.sh │ │ │ └── install-swagger-codegen.sh │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bin │ │ │ └── .gitignore │ │ │ ├── examples │ │ │ ├── browser │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── a_bit_of_everything_service.spec.js │ │ │ │ ├── bin │ │ │ │ │ └── .gitignore │ │ │ │ ├── bower.json │ │ │ │ ├── echo_service.spec.js │ │ │ │ ├── gulpfile.js │ │ │ │ ├── index.html │ │ │ │ └── package.json │ │ │ ├── client_test.go │ │ │ ├── clients │ │ │ │ ├── abe │ │ │ │ │ ├── ABitOfEverythingNested.go │ │ │ │ │ ├── ABitOfEverythingServiceApi.go │ │ │ │ │ ├── ExamplepbABitOfEverything.go │ │ │ │ │ ├── ExamplepbNumericEnum.go │ │ │ │ │ ├── NestedDeepEnum.go │ │ │ │ │ ├── ProtobufEmpty.go │ │ │ │ │ ├── Sub2IdMessage.go │ │ │ │ │ └── SubStringMessage.go │ │ │ │ └── echo │ │ │ │ │ ├── EchoServiceApi.go │ │ │ │ │ └── ExamplepbSimpleMessage.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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── runtime │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── handler.go │ │ │ ├── internal │ │ │ │ ├── stream_chunk.pb.go │ │ │ │ └── stream_chunk.proto │ │ │ ├── marshal_json.go │ │ │ ├── marshal_json_test.go │ │ │ ├── marshal_jsonpb.go │ │ │ ├── marshal_jsonpb_test.go │ │ │ ├── marshaler.go │ │ │ ├── marshaler_registry.go │ │ │ ├── marshaler_registry_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── proto2_convert.go │ │ │ ├── query.go │ │ │ └── query_test.go │ │ │ ├── third_party │ │ │ └── googleapis │ │ │ │ ├── LICENSE │ │ │ │ ├── README.grcp-gateway │ │ │ │ └── google │ │ │ │ └── api │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── annotations.proto │ │ │ │ ├── http.pb.go │ │ │ │ └── http.proto │ │ │ └── utilities │ │ │ ├── doc.go │ │ │ ├── pattern.go │ │ │ ├── trie.go │ │ │ └── trie_test.go │ ├── hashicorp │ │ └── golang-lru │ │ │ ├── .gitignore │ │ │ ├── 2q.go │ │ │ ├── 2q_test.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arc.go │ │ │ ├── arc_test.go │ │ │ ├── lru.go │ │ │ ├── lru_test.go │ │ │ └── simplelru │ │ │ ├── lru.go │ │ │ └── lru_test.go │ ├── howeyc │ │ └── gopass │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── OPENSOLARIS.LICENSE │ │ │ ├── README.md │ │ │ ├── pass.go │ │ │ ├── pass_test.go │ │ │ ├── terminal.go │ │ │ └── terminal_solaris.go │ ├── imdario │ │ └── mergo │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── merge.go │ │ │ ├── mergo.go │ │ │ ├── mergo_test.go │ │ │ └── testdata │ │ │ ├── license.yml │ │ │ └── thing.yml │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example_test.go │ │ │ ├── extra │ │ │ ├── fuzzy_decoder.go │ │ │ ├── fuzzy_decoder_test.go │ │ │ ├── naming_strategy.go │ │ │ ├── naming_strategy_test.go │ │ │ ├── privat_fields.go │ │ │ ├── private_fields_test.go │ │ │ ├── time_as_int64_codec.go │ │ │ └── time_as_int64_codec_test.go │ │ │ ├── feature_adapter.go │ │ │ ├── feature_any.go │ │ │ ├── feature_any_array.go │ │ │ ├── feature_any_bool.go │ │ │ ├── feature_any_float.go │ │ │ ├── feature_any_int32.go │ │ │ ├── feature_any_int64.go │ │ │ ├── feature_any_invalid.go │ │ │ ├── feature_any_nil.go │ │ │ ├── feature_any_number.go │ │ │ ├── feature_any_object.go │ │ │ ├── feature_any_string.go │ │ │ ├── feature_any_uint32.go │ │ │ ├── feature_any_uint64.go │ │ │ ├── feature_config.go │ │ │ ├── feature_iter.go │ │ │ ├── feature_iter_array.go │ │ │ ├── feature_iter_float.go │ │ │ ├── feature_iter_int.go │ │ │ ├── feature_iter_object.go │ │ │ ├── feature_iter_skip.go │ │ │ ├── feature_iter_skip_sloppy.go │ │ │ ├── feature_iter_skip_strict.go │ │ │ ├── feature_iter_string.go │ │ │ ├── feature_json_number.go │ │ │ ├── feature_pool.go │ │ │ ├── feature_reflect.go │ │ │ ├── feature_reflect_array.go │ │ │ ├── feature_reflect_extension.go │ │ │ ├── feature_reflect_map.go │ │ │ ├── feature_reflect_native.go │ │ │ ├── feature_reflect_object.go │ │ │ ├── feature_reflect_slice.go │ │ │ ├── feature_reflect_struct_decoder.go │ │ │ ├── feature_stream.go │ │ │ ├── feature_stream_float.go │ │ │ ├── feature_stream_int.go │ │ │ ├── feature_stream_string.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── jsoniter.go │ │ │ ├── jsoniter_1dot8_only_test.go │ │ │ ├── jsoniter_adapter_test.go │ │ │ ├── jsoniter_alias_test.go │ │ │ ├── jsoniter_any_array_test.go │ │ │ ├── jsoniter_any_bool_test.go │ │ │ ├── jsoniter_any_float_test.go │ │ │ ├── jsoniter_any_int_test.go │ │ │ ├── jsoniter_any_map_test.go │ │ │ ├── jsoniter_any_null_test.go │ │ │ ├── jsoniter_any_object_test.go │ │ │ ├── jsoniter_any_string_test.go │ │ │ ├── jsoniter_array_test.go │ │ │ ├── jsoniter_bool_test.go │ │ │ ├── jsoniter_customize_test.go │ │ │ ├── jsoniter_demo_test.go │ │ │ ├── jsoniter_encode_interface_test.go │ │ │ ├── jsoniter_fixed_array_test.go │ │ │ ├── jsoniter_float_test.go │ │ │ ├── jsoniter_int_test.go │ │ │ ├── jsoniter_interface_test.go │ │ │ ├── jsoniter_invalid_test.go │ │ │ ├── jsoniter_io_test.go │ │ │ ├── jsoniter_iterator_test.go │ │ │ ├── jsoniter_large_file_test.go │ │ │ ├── jsoniter_map_test.go │ │ │ ├── jsoniter_must_be_valid_test.go │ │ │ ├── jsoniter_nested_test.go │ │ │ ├── jsoniter_null_test.go │ │ │ ├── jsoniter_object_test.go │ │ │ ├── jsoniter_optional_test.go │ │ │ ├── jsoniter_raw_message_test.go │ │ │ ├── jsoniter_reader_test.go │ │ │ ├── jsoniter_reflect_native_test.go │ │ │ ├── jsoniter_skip_test.go │ │ │ ├── jsoniter_sloppy_test.go │ │ │ ├── jsoniter_stream_test.go │ │ │ ├── jsoniter_string_test.go │ │ │ ├── jsoniter_struct_decoder_test.go │ │ │ ├── jsoniter_wrap_test.go │ │ │ ├── output_tests │ │ │ ├── array │ │ │ │ ├── array │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── byte │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── map │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_map │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_slice │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_struct_various │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── slice │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_empty_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_various │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── builtins │ │ │ │ ├── bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── bool_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── byte │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── byte_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int16 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int16_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int8_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint16 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint16_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint8_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── uintptr │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── caseless_unmarshal │ │ │ │ ├── caseless_test.go │ │ │ │ └── types.go │ │ │ ├── json_marshal │ │ │ │ ├── string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_field │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── struct_field_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── map │ │ │ │ ├── int16 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── int64 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── int8 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── array_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── map_string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_array_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_map_string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_slice_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_various │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── slice_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_empty │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_empty_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_various │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string_alias │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── uint16 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── uint32 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ └── uint8 │ │ │ │ │ └── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── map_key_text_marshal │ │ │ │ ├── string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── struct │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── marshal_fail_case.go │ │ │ ├── partial_unmarshal │ │ │ │ ├── partial_test.go │ │ │ │ └── types.go │ │ │ ├── slice │ │ │ │ ├── array │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── byte │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── map │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_array │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_map │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_slice │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_struct_various │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── slice │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_empty_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_various │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── struct │ │ │ │ ├── alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── anonymous │ │ │ │ │ ├── no_overlap │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── json_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── map_string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_map_string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_slice_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_struct_various │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── slice_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string_with_tag │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── struct_various │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── text_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ └── overlap │ │ │ │ │ │ ├── different_levels │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ignore_deeper_level │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_1_both_tagged │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_1_no_tags │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_1_tagged │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_2_both_tagged │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_2_no_tags │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── same_level_2_tagged │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── array │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── empty_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── everything │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64s │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64s_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32s │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32s_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── map │ │ │ │ │ ├── int32_ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32_struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_float64_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_int32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_ptr_struct_empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_ptr_struct_strings │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_struct_empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_struct_strings │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptrs_float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptrs_int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptrs_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── slice │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── strings │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── strings_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── struct │ │ │ │ │ ├── empties │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── empty_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float32s │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32s │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── strings │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ └── strings_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── struct_tags │ │ │ │ ├── fieldname │ │ │ │ │ ├── embedded │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── struct │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── omitempty │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── embedded │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── map_string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_float32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_map_string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_slice_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string_json_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string_text_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_json_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_text_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_uint32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── slice_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_json_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_text_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_json_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_text_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ └── string │ │ │ │ │ ├── bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── int16 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── int8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint16 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ └── text_marshal │ │ │ │ ├── string_alias │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ │ ├── struct │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ │ ├── struct_alias │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ │ ├── struct_field │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ │ └── struct_field_alias │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ ├── skip_tests │ │ │ ├── array │ │ │ │ ├── inputs.go │ │ │ │ └── skip_test.go │ │ │ ├── number │ │ │ │ ├── inputs.go │ │ │ │ └── skip_test.go │ │ │ ├── object │ │ │ │ ├── inputs.go │ │ │ │ └── skip_test.go │ │ │ └── string │ │ │ │ ├── inputs.go │ │ │ │ └── skip_test.go │ │ │ ├── test.sh │ │ │ └── unmarshal_input_test.go │ ├── juju │ │ └── ratelimit │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ratelimit.go │ │ │ ├── ratelimit_test.go │ │ │ └── reader.go │ ├── mailru │ │ └── easyjson │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── benchmark │ │ │ ├── codec_test.go │ │ │ ├── data.go │ │ │ ├── data_codec.go │ │ │ ├── data_ffjson.go │ │ │ ├── data_var.go │ │ │ ├── default_test.go │ │ │ ├── dummy_test.go │ │ │ ├── easyjson_test.go │ │ │ ├── example.json │ │ │ ├── ffjson_test.go │ │ │ └── ujson.sh │ │ │ ├── bootstrap │ │ │ └── bootstrap.go │ │ │ ├── buffer │ │ │ ├── pool.go │ │ │ └── pool_test.go │ │ │ ├── easyjson │ │ │ └── main.go │ │ │ ├── gen │ │ │ ├── decoder.go │ │ │ ├── encoder.go │ │ │ ├── generator.go │ │ │ └── generator_test.go │ │ │ ├── helpers.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ ├── lexer.go │ │ │ └── lexer_test.go │ │ │ ├── jwriter │ │ │ └── writer.go │ │ │ ├── opt │ │ │ ├── gotemplate_Bool.go │ │ │ ├── gotemplate_Float32.go │ │ │ ├── gotemplate_Float64.go │ │ │ ├── gotemplate_Int.go │ │ │ ├── gotemplate_Int16.go │ │ │ ├── gotemplate_Int32.go │ │ │ ├── gotemplate_Int64.go │ │ │ ├── gotemplate_Int8.go │ │ │ ├── gotemplate_String.go │ │ │ ├── gotemplate_Uint.go │ │ │ ├── gotemplate_Uint16.go │ │ │ ├── gotemplate_Uint32.go │ │ │ ├── gotemplate_Uint64.go │ │ │ ├── gotemplate_Uint8.go │ │ │ ├── optional │ │ │ │ └── opt.go │ │ │ └── opts.go │ │ │ ├── parser │ │ │ ├── parser.go │ │ │ ├── parser_unix.go │ │ │ └── parser_windows.go │ │ │ ├── raw.go │ │ │ └── tests │ │ │ ├── basic_test.go │ │ │ ├── data.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── named_type.go │ │ │ ├── nested_easy.go │ │ │ ├── nothing.go │ │ │ ├── omitempty.go │ │ │ ├── required_test.go │ │ │ └── snake.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _example │ │ │ │ ├── escape-seq │ │ │ │ │ └── main.go │ │ │ │ ├── logrus │ │ │ │ │ └── main.go │ │ │ │ └── title │ │ │ │ │ └── main.go │ │ │ ├── cmd │ │ │ │ └── colorable │ │ │ │ │ └── colorable.go │ │ │ ├── colorable_appengine.go │ │ │ ├── colorable_others.go │ │ │ ├── colorable_test.go │ │ │ ├── colorable_windows.go │ │ │ └── noncolorable.go │ │ └── go-isatty │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── isatty_appengine.go │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_linux_ppc64x.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_others_test.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_windows.go │ │ │ └── isatty_windows_test.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ext │ │ │ └── moved.go │ │ │ ├── pbtest │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ └── quick.go │ │ │ └── pbutil │ │ │ ├── all_test.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── fixtures_test.go │ ├── mgutz │ │ └── ansi │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ansi.go │ │ │ ├── ansi_test.go │ │ │ ├── cmd │ │ │ └── ansi-mgutz │ │ │ │ └── main.go │ │ │ ├── doc.go │ │ │ └── print.go │ ├── pborman │ │ └── uuid │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── node.go │ │ │ ├── seq_test.go │ │ │ ├── sql.go │ │ │ ├── sql_test.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── uuid_test.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── peterbourgon │ │ └── diskv │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── basic_test.go │ │ │ ├── compression.go │ │ │ ├── compression_test.go │ │ │ ├── diskv.go │ │ │ ├── examples │ │ │ ├── content-addressable-store │ │ │ │ └── cas.go │ │ │ └── super-simple-store │ │ │ │ └── super-simple-store.go │ │ │ ├── import_test.go │ │ │ ├── index.go │ │ │ ├── index_test.go │ │ │ ├── issues_test.go │ │ │ ├── keys_test.go │ │ │ ├── speed_test.go │ │ │ └── stream_test.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bench_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── example_test.go │ │ │ ├── format_test.go │ │ │ ├── stack.go │ │ │ └── stack_test.go │ ├── prometheus │ │ ├── client_golang │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── api │ │ │ │ └── prometheus │ │ │ │ │ ├── api.go │ │ │ │ │ └── api_test.go │ │ │ ├── examples │ │ │ │ ├── random │ │ │ │ │ └── main.go │ │ │ │ └── simple │ │ │ │ │ └── main.go │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counter_test.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_clustermanager_test.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── expvar_collector_test.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── gauge_test.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── go_collector_test.go │ │ │ │ ├── histogram.go │ │ │ │ ├── histogram_test.go │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ ├── metric.go │ │ │ │ ├── metric_test.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── process_collector_test.go │ │ │ │ ├── promhttp │ │ │ │ ├── http.go │ │ │ │ └── http_test.go │ │ │ │ ├── push │ │ │ │ ├── examples_test.go │ │ │ │ ├── push.go │ │ │ │ └── push_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── summary.go │ │ │ │ ├── summary_test.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.go │ │ │ │ └── vec_test.go │ │ ├── client_model │ │ │ ├── .gitignore │ │ │ ├── AUTHORS.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── 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 │ │ │ │ ├── testdata │ │ │ │ │ ├── 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.go │ │ │ │ └── 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 │ │ │ ├── route │ │ │ │ ├── route.go │ │ │ │ └── route_test.go │ │ │ └── version │ │ │ │ └── info.go │ │ └── procfs │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── buddyinfo.go │ │ │ ├── buddyinfo_test.go │ │ │ ├── doc.go │ │ │ ├── fixtures │ │ │ ├── 584 │ │ │ │ └── stat │ │ │ ├── 26231 │ │ │ │ ├── cmdline │ │ │ │ ├── comm │ │ │ │ ├── exe │ │ │ │ ├── fd │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ └── 10 │ │ │ │ ├── io │ │ │ │ ├── limits │ │ │ │ ├── mountstats │ │ │ │ └── stat │ │ │ ├── 26232 │ │ │ │ ├── cmdline │ │ │ │ ├── comm │ │ │ │ ├── fd │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ └── 4 │ │ │ │ ├── limits │ │ │ │ └── stat │ │ │ ├── buddyinfo │ │ │ │ ├── short │ │ │ │ │ └── buddyinfo │ │ │ │ ├── sizemismatch │ │ │ │ │ └── buddyinfo │ │ │ │ └── valid │ │ │ │ │ └── buddyinfo │ │ │ ├── fs │ │ │ │ └── xfs │ │ │ │ │ └── stat │ │ │ ├── mdstat │ │ │ ├── net │ │ │ │ ├── ip_vs │ │ │ │ ├── ip_vs_stats │ │ │ │ └── xfrm_stat │ │ │ ├── self │ │ │ ├── stat │ │ │ └── symlinktargets │ │ │ │ ├── README │ │ │ │ ├── abc │ │ │ │ ├── def │ │ │ │ ├── ghi │ │ │ │ ├── uvw │ │ │ │ └── xyz │ │ │ ├── fs.go │ │ │ ├── fs_test.go │ │ │ ├── ipvs.go │ │ │ ├── ipvs_test.go │ │ │ ├── mdstat.go │ │ │ ├── mdstat_test.go │ │ │ ├── mountstats.go │ │ │ ├── mountstats_test.go │ │ │ ├── proc.go │ │ │ ├── proc_io.go │ │ │ ├── proc_io_test.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_limits_test.go │ │ │ ├── proc_stat.go │ │ │ ├── proc_stat_test.go │ │ │ ├── proc_test.go │ │ │ ├── stat.go │ │ │ ├── stat_test.go │ │ │ ├── sysfs │ │ │ ├── doc.go │ │ │ ├── fixtures │ │ │ │ └── fs │ │ │ │ │ └── xfs │ │ │ │ │ ├── sda1 │ │ │ │ │ └── stats │ │ │ │ │ │ └── stats │ │ │ │ │ └── sdb1 │ │ │ │ │ └── stats │ │ │ │ │ └── stats │ │ │ ├── fs.go │ │ │ └── fs_test.go │ │ │ ├── xfrm.go │ │ │ ├── xfrm_test.go │ │ │ └── xfs │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ └── xfs.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── alt_exit_test.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── examples │ │ │ ├── basic │ │ │ │ └── basic.go │ │ │ └── hook │ │ │ │ └── hook.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_appengine.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_solaris.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ ├── text_formatter_test.go │ │ │ └── writer.go │ ├── spf13 │ │ └── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bool_slice_test.go │ │ │ ├── bool_test.go │ │ │ ├── count.go │ │ │ ├── count_test.go │ │ │ ├── duration.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── golangflag_test.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── int_slice_test.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ip_slice_test.go │ │ │ ├── ip_test.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_test.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_array_test.go │ │ │ ├── string_slice.go │ │ │ ├── string_slice_test.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ ├── uint_slice.go │ │ │ ├── uint_slice_test.go │ │ │ └── verify │ │ │ ├── all.sh │ │ │ ├── gofmt.sh │ │ │ └── golint.sh │ └── x-cray │ │ └── logrus-prefixed-formatter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── examples │ │ ├── basic.go │ │ └── themes.go │ │ ├── formatter.go │ │ ├── formatter_test.go │ │ └── logrus_prefixed_formatter_suite_test.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 │ │ ├── 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 │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ ├── chacha_generic.go │ │ │ │ └── chacha_test.go │ │ ├── codereview.cfg │ │ ├── cryptobyte │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── cert_test.go │ │ │ │ ├── dial_unix_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── forward_unix_test.go │ │ │ │ ├── session_test.go │ │ │ │ ├── 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 │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── setter.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ ├── pre_go19.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ ├── example_test.go │ │ │ │ ├── message.go │ │ │ │ └── message_test.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── ciphers_test.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── databuffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── go19_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── server.go │ │ │ ├── server_push_test.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_priority_test.go │ │ │ ├── writesched_random.go │ │ │ ├── writesched_random_test.go │ │ │ ├── writesched_test.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── ping_test.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── example_test.go │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ ├── socket_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ ├── httplex.go │ │ │ │ └── httplex_test.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_solaris.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── link_test.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ ├── conntest_go17.go │ │ │ └── conntest_test.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ ├── trace_go17.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── dial_test.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── xsrftoken │ │ │ ├── xsrf.go │ │ │ └── xsrf_test.go │ │ ├── sys │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ ├── const_plan9.go │ │ │ ├── dir_plan9.go │ │ │ ├── env_plan9.go │ │ │ ├── env_unset.go │ │ │ ├── errors_plan9.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksyscall.pl │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── syscall_test.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── creds_test.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_darwin_test.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_dragonfly_test.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_linux_test.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_netbsd_test.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_openbsd_test.go │ │ │ ├── dev_solaris_test.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── env_unset.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── export_test.go │ │ │ ├── file_unix.go │ │ │ ├── flock.go │ │ │ ├── flock_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── linux │ │ │ │ ├── Dockerfile │ │ │ │ ├── mkall.go │ │ │ │ ├── mksysnum.pl │ │ │ │ └── types.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── mmap_unix_test.go │ │ │ ├── openbsd_pledge.go │ │ │ ├── openbsd_test.go │ │ │ ├── pagesize_unix.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_bsd_test.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_test.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_linux_test.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_no_getwd.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_solaris_test.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_test.go │ │ │ ├── timestruct.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 │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── dll_windows.go │ │ │ ├── env_unset.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── registry │ │ │ ├── export_test.go │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── registry_test.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── svc │ │ │ ├── debug │ │ │ │ ├── log.go │ │ │ │ └── service.go │ │ │ ├── event.go │ │ │ ├── eventlog │ │ │ │ ├── install.go │ │ │ │ ├── log.go │ │ │ │ └── log_test.go │ │ │ ├── example │ │ │ │ ├── beep.go │ │ │ │ ├── install.go │ │ │ │ ├── main.go │ │ │ │ ├── manage.go │ │ │ │ └── service.go │ │ │ ├── go12.c │ │ │ ├── go12.go │ │ │ ├── go13.go │ │ │ ├── mgr │ │ │ │ ├── config.go │ │ │ │ ├── mgr.go │ │ │ │ ├── mgr_test.go │ │ │ │ └── service.go │ │ │ ├── security.go │ │ │ ├── service.go │ │ │ ├── svc_test.go │ │ │ ├── sys_386.s │ │ │ └── sys_amd64.s │ │ │ ├── syscall.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_windows.go │ │ │ ├── syscall_windows_test.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── 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 │ │ │ ├── tables.go │ │ │ ├── tables_test.go │ │ │ └── trieval.go │ │ ├── cmd │ │ │ └── gotext │ │ │ │ ├── doc.go │ │ │ │ ├── extract.go │ │ │ │ ├── main.go │ │ │ │ └── message.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 │ │ ├── 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 │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── plural.go │ │ │ │ ├── plural_test.go │ │ │ │ └── tables.go │ │ ├── gen.go │ │ ├── internal │ │ │ ├── catmsg │ │ │ │ ├── catmsg.go │ │ │ │ ├── catmsg_test.go │ │ │ │ ├── codec.go │ │ │ │ ├── varint.go │ │ │ │ └── varint_test.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 │ │ │ │ │ ├── gen_common.go │ │ │ │ │ ├── gen_test.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── idna.go │ │ │ │ │ ├── idna_test.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── punycode_test.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ ├── format │ │ │ │ └── format.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 │ │ │ ├── data_test.go │ │ │ ├── display │ │ │ │ ├── dict.go │ │ │ │ ├── dict_test.go │ │ │ │ ├── display.go │ │ │ │ ├── display_test.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── lookup.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.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 │ │ │ │ └── localeMatcherTest.txt │ │ ├── message │ │ │ ├── catalog.go │ │ │ ├── catalog │ │ │ │ ├── catalog.go │ │ │ │ ├── catalog_test.go │ │ │ │ └── dict.go │ │ │ ├── fmt_test.go │ │ │ ├── format.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ └── print.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 │ │ │ │ └── bidirule_test.go │ │ │ ├── doc.go │ │ │ └── precis │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── class.go │ │ │ │ ├── class_test.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── enforce_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profile_test.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables.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 │ │ │ │ ├── tables.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 │ │ │ │ ├── example_iter_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── forminfo_test.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_test.go │ │ │ │ ├── maketables.go │ │ │ │ ├── norm_test.go │ │ │ │ ├── normalize.go │ │ │ │ ├── normalize_test.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── readwriter_test.go │ │ │ │ ├── tables.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 │ │ │ │ └── tables.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 │ │ │ ├── tables.go │ │ │ ├── tables_test.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ └── rate │ │ ├── rate.go │ │ └── rate_test.go ├── google.golang.org │ ├── genproto │ │ ├── .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 │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── billing │ │ │ │ │ └── v1 │ │ │ │ │ │ └── cloud_billing.pb.go │ │ │ │ ├── dataproc │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ │ └── operations.pb.go │ │ │ │ ├── functions │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ ├── functions.pb.go │ │ │ │ │ │ └── operations.pb.go │ │ │ │ ├── language │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── language_service.pb.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ └── language_service.pb.go │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ └── language_service.pb.go │ │ │ │ ├── ml │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ │ └── project_service.pb.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ │ └── project_service.pb.go │ │ │ │ ├── runtimeconfig │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ │ └── runtimeconfig.pb.go │ │ │ │ ├── speech │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ ├── support │ │ │ │ │ ├── common │ │ │ │ │ │ └── common.pb.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ └── cloud_support.pb.go │ │ │ │ ├── videointelligence │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ └── vision │ │ │ │ │ └── v1 │ │ │ │ │ ├── geometry.pb.go │ │ │ │ │ ├── image_annotator.pb.go │ │ │ │ │ ├── text_annotation.pb.go │ │ │ │ │ └── web_detection.pb.go │ │ │ ├── container │ │ │ │ └── v1 │ │ │ │ │ └── cluster_service.pb.go │ │ │ ├── datastore │ │ │ │ ├── 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 │ │ │ │ ├── remoteexecution │ │ │ │ │ └── v1test │ │ │ │ │ │ └── remote_execution.pb.go │ │ │ │ ├── source │ │ │ │ │ └── v1 │ │ │ │ │ │ └── source_context.pb.go │ │ │ │ └── sourcerepo │ │ │ │ │ └── v1 │ │ │ │ │ └── sourcerepo.pb.go │ │ │ ├── example │ │ │ │ └── library │ │ │ │ │ └── v1 │ │ │ │ │ └── library.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 │ │ │ │ │ └── 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 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── group.pb.go │ │ │ │ │ ├── group_service.pb.go │ │ │ │ │ ├── metric.pb.go │ │ │ │ │ └── metric_service.pb.go │ │ │ ├── privacy │ │ │ │ └── dlp │ │ │ │ │ └── v2beta1 │ │ │ │ │ ├── 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 │ │ │ ├── tracing │ │ │ │ └── v1 │ │ │ │ │ └── trace.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 │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Documentation │ │ ├── gomock-example.md │ │ ├── grpc-auth-support.md │ │ ├── grpc-metadata.md │ │ └── server-reflection-tutorial.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PATENTS │ │ ├── README.md │ │ ├── backoff.go │ │ ├── backoff_test.go │ │ ├── balancer.go │ │ ├── balancer_test.go │ │ ├── benchmark │ │ ├── benchmark.go │ │ ├── benchmark_test.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 │ │ ├── server │ │ │ ├── main.go │ │ │ └── testdata │ │ │ │ ├── ca.pem │ │ │ │ ├── server1.key │ │ │ │ └── server1.pem │ │ ├── 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_benchmark_test.go │ │ ├── codec_test.go │ │ ├── codegen.sh │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── coverage.sh │ │ ├── credentials │ │ ├── credentials.go │ │ ├── credentials_test.go │ │ ├── credentials_util_go17.go │ │ ├── credentials_util_go18.go │ │ ├── credentials_util_pre_go17.go │ │ └── oauth │ │ │ └── oauth.go │ │ ├── doc.go │ │ ├── examples │ │ ├── README.md │ │ ├── gotutorial.md │ │ ├── helloworld │ │ │ ├── greeter_client │ │ │ │ └── main.go │ │ │ ├── greeter_server │ │ │ │ └── main.go │ │ │ ├── helloworld │ │ │ │ ├── helloworld.pb.go │ │ │ │ └── helloworld.proto │ │ │ └── mock │ │ │ │ ├── hw_test.go │ │ │ │ └── mock_helloworld │ │ │ │ └── hw_mock.go │ │ └── route_guide │ │ │ ├── README.md │ │ │ ├── client │ │ │ └── client.go │ │ │ ├── routeguide │ │ │ ├── route_guide.pb.go │ │ │ └── route_guide.proto │ │ │ ├── server │ │ │ └── server.go │ │ │ └── testdata │ │ │ ├── ca.pem │ │ │ ├── route_guide_db.json │ │ │ ├── server1.key │ │ │ └── server1.pem │ │ ├── go16.go │ │ ├── go17.go │ │ ├── grpclb.go │ │ ├── grpclb │ │ ├── grpc_lb_v1 │ │ │ ├── grpclb.pb.go │ │ │ └── grpclb.proto │ │ ├── grpclb_server_generated.go │ │ └── grpclb_test.go │ │ ├── grpclog │ │ ├── glogger │ │ │ └── glogger.go │ │ └── logger.go │ │ ├── health │ │ ├── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health.proto │ │ └── health.go │ │ ├── interceptor.go │ │ ├── internal │ │ └── internal.go │ │ ├── interop │ │ ├── client │ │ │ ├── client.go │ │ │ └── testdata │ │ │ │ ├── ca.pem │ │ │ │ ├── server1.key │ │ │ │ └── server1.pem │ │ ├── grpc_testing │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── http2 │ │ │ └── negative_http2_client.go │ │ ├── server │ │ │ ├── server.go │ │ │ └── testdata │ │ │ │ ├── ca.pem │ │ │ │ ├── server1.key │ │ │ │ └── server1.pem │ │ └── test_utils.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ ├── metadata.go │ │ └── metadata_test.go │ │ ├── naming │ │ └── naming.go │ │ ├── peer │ │ └── peer.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 │ │ ├── serverreflection.go │ │ └── serverreflection_test.go │ │ ├── rpc_util.go │ │ ├── rpc_util_test.go │ │ ├── server.go │ │ ├── server_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 │ │ │ └── testdata │ │ │ │ ├── ca.pem │ │ │ │ ├── server1.key │ │ │ │ └── server1.pem │ │ ├── grpc_testing │ │ │ ├── metrics.pb.go │ │ │ └── metrics.proto │ │ └── metrics_client │ │ │ └── main.go │ │ ├── tap │ │ └── tap.go │ │ ├── test │ │ ├── codec_perf │ │ │ ├── perf.pb.go │ │ │ └── perf.proto │ │ ├── end2end_test.go │ │ ├── grpc_testing │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── race_test.go │ │ ├── servertester_test.go │ │ └── testdata │ │ │ ├── ca.pem │ │ │ ├── server1.key │ │ │ └── server1.pem │ │ ├── testdata │ │ ├── ca.pem │ │ ├── server1.key │ │ └── server1.pem │ │ ├── trace.go │ │ └── transport │ │ ├── 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 │ │ ├── testdata │ │ ├── ca.pem │ │ ├── server1.key │ │ └── server1.pem │ │ ├── transport.go │ │ └── transport_test.go ├── gopkg.in │ ├── inf.v0 │ │ ├── LICENSE │ │ ├── benchmark_test.go │ │ ├── dec.go │ │ ├── dec_go1_2_test.go │ │ ├── dec_internal_test.go │ │ ├── dec_test.go │ │ ├── example_test.go │ │ ├── rounder.go │ │ ├── rounder_example_test.go │ │ └── rounder_test.go │ └── yaml.v2 │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── suite_test.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── k8s.io │ ├── api │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── admission │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── admissionregistration │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta2 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── authentication │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── authorization │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── autoscaling │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v2beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── batch │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v2alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── certificates │ │ ├── OWNERS │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── core │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── meta.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── taint_test.go │ │ │ ├── toleration.go │ │ │ ├── toleration_test.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── events │ │ ├── OWNERS │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── extensions │ │ ├── OWNERS │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── imagepolicy │ │ ├── OWNERS │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── OWNERS │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── policy │ │ ├── OWNERS │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── rbac │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── scheduling │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── settings │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ └── storage │ │ ├── OWNERS │ │ ├── v1 │ │ ├── BUILD │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ │ ├── v1alpha1 │ │ ├── BUILD │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ ├── BUILD │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ ├── apiextensions-apiserver │ ├── BUILD │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── artifacts │ │ ├── customresource-01 │ │ │ ├── noxu-apiservice.yaml │ │ │ ├── noxu-resource-definition.yaml │ │ │ └── noxu.yaml │ │ ├── example │ │ │ ├── apiservice.yaml │ │ │ ├── auth-delegator.yaml │ │ │ ├── auth-reader.yaml │ │ │ ├── rc.yaml │ │ │ ├── sa.yaml │ │ │ └── service.yaml │ │ └── simple-image │ │ │ └── Dockerfile │ ├── examples │ │ └── client-go │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── hack │ │ │ ├── update-codegen.sh │ │ │ └── verify-codegen.sh │ │ │ └── pkg │ │ │ ├── apis │ │ │ └── cr │ │ │ │ ├── BUILD │ │ │ │ ├── register.go │ │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── client │ │ │ ├── clientset │ │ │ └── versioned │ │ │ │ ├── BUILD │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── cr │ │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── cr_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── example.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_cr_client.go │ │ │ │ └── fake_example.go │ │ │ │ └── generated_expansion.go │ │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── BUILD │ │ │ │ ├── cr │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── example.go │ │ │ │ │ └── interface.go │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ └── internalinterfaces │ │ │ │ ├── BUILD │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ └── cr │ │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── example.go │ │ │ └── expansion_generated.go │ ├── hack │ │ ├── build-image.sh │ │ ├── update-codegen.sh │ │ └── verify-codegen.sh │ ├── main.go │ ├── pkg │ │ ├── apis │ │ │ └── apiextensions │ │ │ │ ├── BUILD │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── fuzzer │ │ │ │ ├── BUILD │ │ │ │ └── fuzzer.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_test.go │ │ │ │ ├── install │ │ │ │ ├── BUILD │ │ │ │ ├── install.go │ │ │ │ └── roundtrip_test.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_jsonschema.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_test.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── marshal.go │ │ │ │ ├── marshal_test.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_jsonschema.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── validation │ │ │ │ ├── BUILD │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apiserver │ │ │ ├── BUILD │ │ │ ├── apiserver.go │ │ │ ├── customresource_discovery.go │ │ │ ├── customresource_discovery_controller.go │ │ │ ├── customresource_handler.go │ │ │ ├── customresource_handler_test.go │ │ │ └── validation │ │ │ │ ├── BUILD │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ ├── client │ │ │ ├── clientset │ │ │ │ ├── clientset │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ │ └── apiextensions │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── apiextensions_client.go │ │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apiextensions_client.go │ │ │ │ │ │ └── fake_customresourcedefinition.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── internalclientset │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── apiextensions │ │ │ │ │ └── internalversion │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── apiextensions_client.go │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apiextensions_client.go │ │ │ │ │ └── fake_customresourcedefinition.go │ │ │ │ │ └── generated_expansion.go │ │ │ ├── informers │ │ │ │ ├── externalversions │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── apiextensions │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── internalinterfaces │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── factory_interfaces.go │ │ │ │ └── internalversion │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── apiextensions │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── internalversion │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── internalinterfaces │ │ │ │ │ ├── BUILD │ │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ │ └── apiextensions │ │ │ │ ├── internalversion │ │ │ │ ├── BUILD │ │ │ │ ├── customresourcedefinition.go │ │ │ │ └── expansion_generated.go │ │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── customresourcedefinition.go │ │ │ │ └── expansion_generated.go │ │ ├── cmd │ │ │ └── server │ │ │ │ ├── BUILD │ │ │ │ └── start.go │ │ ├── controller │ │ │ ├── finalizer │ │ │ │ ├── BUILD │ │ │ │ └── crd_finalizer.go │ │ │ └── status │ │ │ │ ├── BUILD │ │ │ │ ├── naming_controller.go │ │ │ │ └── naming_controller_test.go │ │ ├── features │ │ │ ├── BUILD │ │ │ └── kube_features.go │ │ └── registry │ │ │ ├── customresource │ │ │ ├── BUILD │ │ │ ├── etcd.go │ │ │ └── strategy.go │ │ │ └── customresourcedefinition │ │ │ ├── BUILD │ │ │ ├── etcd.go │ │ │ └── strategy.go │ └── test │ │ └── integration │ │ ├── BUILD │ │ ├── apiserver.local.config │ │ └── certificates │ │ │ ├── apiserver.crt │ │ │ └── apiserver.key │ │ ├── basic_test.go │ │ ├── finalization_test.go │ │ ├── registration_test.go │ │ ├── testserver │ │ ├── BUILD │ │ ├── resources.go │ │ └── start.go │ │ └── validation_test.go │ ├── apimachinery │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── hack │ │ ├── godep-deps.sh │ │ └── sync-from-kubernetes.sh │ ├── pkg │ │ ├── OWNERS │ │ ├── api │ │ │ ├── equality │ │ │ │ ├── BUILD │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ └── errors_test.go │ │ │ ├── meta │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── meta_test.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── multirestmapper_test.go │ │ │ │ ├── priority.go │ │ │ │ ├── priority_test.go │ │ │ │ ├── restmapper.go │ │ │ │ ├── restmapper_test.go │ │ │ │ └── unstructured.go │ │ │ ├── resource │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── amount_test.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── math_test.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_example_test.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── quantity_proto_test.go │ │ │ │ ├── quantity_test.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── scale_int_test.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── testing │ │ │ │ ├── BUILD │ │ │ │ ├── codec.go │ │ │ │ ├── fuzzer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── fuzzer.go │ │ │ │ │ ├── valuefuzz.go │ │ │ │ │ └── valuefuzz_test.go │ │ │ │ └── roundtrip │ │ │ │ │ ├── BUILD │ │ │ │ │ └── roundtrip.go │ │ │ └── validation │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ ├── objectmeta.go │ │ │ │ ├── objectmeta_test.go │ │ │ │ └── path │ │ │ │ ├── BUILD │ │ │ │ ├── name.go │ │ │ │ └── name_test.go │ │ ├── apimachinery │ │ │ ├── BUILD │ │ │ ├── announced │ │ │ │ ├── BUILD │ │ │ │ ├── announced.go │ │ │ │ ├── announced_test.go │ │ │ │ └── group_factory.go │ │ │ ├── doc.go │ │ │ ├── registered │ │ │ │ ├── BUILD │ │ │ │ ├── registered.go │ │ │ │ └── registered_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── apis │ │ │ ├── meta │ │ │ │ ├── fuzzer │ │ │ │ │ ├── BUILD │ │ │ │ │ └── fuzzer.go │ │ │ │ ├── internalversion │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── register_test.go │ │ │ │ │ ├── roundtrip_test.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ ├── controller_ref_test.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── conversion_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration_test.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── group_version_test.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── labels_test.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── micro_time.go │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ ├── micro_time_test.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_proto.go │ │ │ │ │ ├── time_test.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── types_test.go │ │ │ │ │ ├── unstructured │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ ├── unstructured_list_test.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── validation │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── validation.go │ │ │ │ │ │ └── validation_test.go │ │ │ │ │ ├── watch.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ └── testapigroup │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fuzzer │ │ │ │ ├── BUILD │ │ │ │ └── fuzzer.go │ │ │ │ ├── install │ │ │ │ ├── BUILD │ │ │ │ ├── install.go │ │ │ │ └── roundtrip_test.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── conversion │ │ │ ├── BUILD │ │ │ ├── cloner.go │ │ │ ├── converter.go │ │ │ ├── converter_test.go │ │ │ ├── deep_copy_test.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ ├── helper_test.go │ │ │ ├── queryparams │ │ │ │ ├── BUILD │ │ │ │ ├── convert.go │ │ │ │ ├── convert_test.go │ │ │ │ └── doc.go │ │ │ └── unstructured │ │ │ │ ├── BUILD │ │ │ │ ├── converter.go │ │ │ │ ├── doc.go │ │ │ │ └── testing │ │ │ │ ├── BUILD │ │ │ │ └── converter_test.go │ │ ├── fields │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── fields_test.go │ │ │ ├── requirements.go │ │ │ ├── selector.go │ │ │ └── selector_test.go │ │ ├── labels │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── labels_test.go │ │ │ ├── selector.go │ │ │ ├── selector_test.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── runtime │ │ │ ├── BUILD │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── conversion_test.go │ │ │ ├── converter.go │ │ │ ├── converter_test.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── embedded_test.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── BUILD │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── group_version_test.go │ │ │ │ └── interfaces.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── scheme_test.go │ │ │ ├── serializer │ │ │ │ ├── BUILD │ │ │ │ ├── codec_factory.go │ │ │ │ ├── codec_test.go │ │ │ │ ├── json │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── json.go │ │ │ │ │ ├── json_test.go │ │ │ │ │ ├── meta.go │ │ │ │ │ └── meta_test.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── protobuf_extension.go │ │ │ │ ├── recognizer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── recognizer.go │ │ │ │ │ └── testing │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── recognizer_test.go │ │ │ │ ├── streaming │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── streaming.go │ │ │ │ │ └── streaming_test.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── versioning │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── versioning.go │ │ │ │ │ └── versioning_test.go │ │ │ │ └── yaml │ │ │ │ │ ├── BUILD │ │ │ │ │ └── yaml.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── swagger_doc_generator_test.go │ │ │ ├── testing │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ ├── BUILD │ │ │ └── operator.go │ │ ├── test │ │ │ ├── BUILD │ │ │ ├── api_meta_help_test.go │ │ │ ├── api_meta_meta_test.go │ │ │ ├── apis_meta_v1_unstructed_unstructure_test.go │ │ │ ├── runtime_helper_test.go │ │ │ ├── runtime_serializer_protobuf_protobuf_test.go │ │ │ ├── runtime_unversioned_test.go │ │ │ ├── util.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── types │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── cache │ │ │ │ ├── BUILD │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── lruexpirecache.go │ │ │ │ └── lruexpirecache_test.go │ │ │ ├── clock │ │ │ │ ├── BUILD │ │ │ │ ├── clock.go │ │ │ │ └── clock_test.go │ │ │ ├── diff │ │ │ │ ├── BUILD │ │ │ │ ├── diff.go │ │ │ │ └── diff_test.go │ │ │ ├── errors │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ └── errors_test.go │ │ │ ├── framer │ │ │ │ ├── BUILD │ │ │ │ ├── framer.go │ │ │ │ └── framer_test.go │ │ │ ├── httpstream │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── httpstream.go │ │ │ │ ├── httpstream_test.go │ │ │ │ └── spdy │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── connection_test.go │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ ├── roundtripper_test.go │ │ │ │ │ ├── upgrade.go │ │ │ │ │ └── upgrade_test.go │ │ │ ├── initialization │ │ │ │ ├── BUILD │ │ │ │ └── initialization.go │ │ │ ├── intstr │ │ │ │ ├── BUILD │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── intstr.go │ │ │ │ └── intstr_test.go │ │ │ ├── json │ │ │ │ ├── BUILD │ │ │ │ ├── json.go │ │ │ │ └── json_test.go │ │ │ ├── jsonmergepatch │ │ │ │ ├── BUILD │ │ │ │ ├── patch.go │ │ │ │ └── patch_test.go │ │ │ ├── mergepatch │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── net │ │ │ │ ├── BUILD │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_test.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_range_test.go │ │ │ │ ├── port_split.go │ │ │ │ ├── port_split_test.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── proxy │ │ │ │ ├── BUILD │ │ │ │ ├── dial.go │ │ │ │ ├── dial_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── transport.go │ │ │ │ ├── transport_test.go │ │ │ │ ├── upgradeaware.go │ │ │ │ └── upgradeaware_test.go │ │ │ ├── rand │ │ │ │ ├── BUILD │ │ │ │ ├── rand.go │ │ │ │ └── rand_test.go │ │ │ ├── remotecommand │ │ │ │ ├── BUILD │ │ │ │ └── constants.go │ │ │ ├── runtime │ │ │ │ ├── BUILD │ │ │ │ ├── runtime.go │ │ │ │ └── runtime_test.go │ │ │ ├── sets │ │ │ │ ├── BUILD │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int64.go │ │ │ │ ├── set_test.go │ │ │ │ ├── string.go │ │ │ │ └── types │ │ │ │ │ ├── BUILD │ │ │ │ │ └── types.go │ │ │ ├── strategicpatch │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ ├── patch_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── swagger-merge-item.json │ │ │ │ │ └── swagger-precision-item.json │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ └── openapi.go │ │ │ │ └── types.go │ │ │ ├── uuid │ │ │ │ ├── BUILD │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── BUILD │ │ │ │ ├── field │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── errors_test.go │ │ │ │ │ ├── path.go │ │ │ │ │ └── path_test.go │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ │ ├── wait │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── wait.go │ │ │ │ └── wait_test.go │ │ │ ├── waitgroup │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── waitgroup.go │ │ │ │ └── waitgroup_test.go │ │ │ └── yaml │ │ │ │ ├── BUILD │ │ │ │ ├── decoder.go │ │ │ │ └── decoder_test.go │ │ ├── version │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── filter_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── streamwatcher.go │ │ │ ├── streamwatcher_test.go │ │ │ ├── until.go │ │ │ ├── until_test.go │ │ │ ├── watch.go │ │ │ ├── watch_test.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── json │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── fields.go │ │ └── fields_test.go │ │ ├── netutil │ │ ├── BUILD │ │ └── addr.go │ │ └── reflect │ │ ├── BUILD │ │ ├── deep_equal.go │ │ └── deep_equal_test.go │ ├── client-go │ ├── .github │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ ├── INSTALL.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── discovery │ │ ├── BUILD │ │ ├── cached │ │ │ ├── BUILD │ │ │ ├── memcache.go │ │ │ └── memcache_test.go │ │ ├── discovery_client.go │ │ ├── discovery_client_test.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── discovery.go │ │ │ └── discovery_test.go │ │ ├── helper.go │ │ ├── helper_blackbox_test.go │ │ ├── restmapper.go │ │ ├── restmapper_test.go │ │ └── unstructured.go │ ├── dynamic │ │ ├── BUILD │ │ ├── client.go │ │ ├── client_pool.go │ │ ├── client_test.go │ │ ├── dynamic_util.go │ │ ├── dynamic_util_test.go │ │ └── fake │ │ │ ├── BUILD │ │ │ ├── client.go │ │ │ └── client_pool.go │ ├── examples │ │ ├── README.md │ │ ├── create-update-delete-deployment │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── in-cluster-client-configuration │ │ │ ├── BUILD │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── out-of-cluster-client-configuration │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ └── main.go │ │ └── workqueue │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ └── main.go │ ├── informers │ │ ├── BUILD │ │ ├── admissionregistration │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── initializerconfiguration.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apps │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ ├── autoscaling │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ └── v2beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ ├── batch │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── job.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── cronjob.go │ │ │ │ └── interface.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── cronjob.go │ │ │ │ └── interface.go │ │ ├── certificates │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── interface.go │ │ ├── core │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── interface.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ ├── events │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ ├── extensions │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── ingress.go │ │ │ │ ├── interface.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ └── replicaset.go │ │ ├── factory.go │ │ ├── generic.go │ │ ├── internalinterfaces │ │ │ ├── BUILD │ │ │ └── factory_interfaces.go │ │ ├── networking │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── networkpolicy.go │ │ ├── policy │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.go │ │ ├── rbac │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── scheduling │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ ├── settings │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── podpreset.go │ │ └── storage │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── storageclass.go │ │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── volumeattachment.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── storageclass.go │ ├── kubernetes │ │ ├── BUILD │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── import.go │ │ ├── scheme │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ └── fake_initializerconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── initializerconfiguration.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── scale.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_replicaset.go │ │ │ │ ├── fake_scale.go │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── scale.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ ├── fake_tokenreview.go │ │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authentication_client.go │ │ │ │ ├── fake_tokenreview.go │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authorization_client.go │ │ │ │ ├── fake_generated_expansion.go │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── batch_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ └── fake_job.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ └── fake_cronjob.go │ │ │ │ └── generated_expansion.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_cronjob.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_certificates_client.go │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ └── fake_certificatesigningrequest_expansion.go │ │ │ │ └── generated_expansion.go │ │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_componentstatus.go │ │ │ │ ├── fake_configmap.go │ │ │ │ ├── fake_core_client.go │ │ │ │ ├── fake_endpoints.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_event_expansion.go │ │ │ │ ├── fake_limitrange.go │ │ │ │ ├── fake_namespace.go │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ ├── fake_node.go │ │ │ │ ├── fake_node_expansion.go │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ ├── fake_pod.go │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ ├── fake_podtemplate.go │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ ├── fake_resourcequota.go │ │ │ │ ├── fake_secret.go │ │ │ │ ├── fake_service.go │ │ │ │ ├── fake_service_expansion.go │ │ │ │ └── fake_serviceaccount.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespace_expansion.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── pod_expansion.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ └── serviceaccount.go │ │ │ ├── events │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_event.go │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ ├── fake_extensions_client.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ ├── fake_replicaset.go │ │ │ │ ├── fake_scale.go │ │ │ │ └── fake_scale_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── scale.go │ │ │ │ └── scale_expansion.go │ │ │ ├── networking │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_networking_client.go │ │ │ │ └── fake_networkpolicy.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_eviction.go │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_rbac_client.go │ │ │ │ ├── fake_role.go │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── scheduling │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_priorityclass.go │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_podpreset.go │ │ │ │ └── fake_settings_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── podpreset.go │ │ │ │ └── settings_client.go │ │ │ └── storage │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ └── fake_storageclass.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── storageclass.go │ │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ └── fake_volumeattachment.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── volumeattachment.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_storage_client.go │ │ │ └── fake_storageclass.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── storageclass.go │ ├── listers │ │ ├── admissionregistration │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── initializerconfiguration.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ └── v1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── tokenreview.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── tokenreview.go │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── job.go │ │ │ │ └── job_expansion.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ ├── certificates │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── expansion_generated.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ └── serviceaccount.go │ │ ├── events │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── daemonset_expansion_test.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ └── scale.go │ │ ├── imagepolicy │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── imagereview.go │ │ ├── networking │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── networkpolicy.go │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── scheduling │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── podpreset.go │ │ └── storage │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── storageclass.go │ │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── volumeattachment.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── storageclass.go │ ├── pkg │ │ └── version │ │ │ ├── .gitattributes │ │ │ ├── BUILD │ │ │ ├── base.go │ │ │ ├── def.bzl │ │ │ ├── doc.go │ │ │ └── version.go │ ├── plugin │ │ └── pkg │ │ │ ├── auth │ │ │ └── authenticator │ │ │ │ └── token │ │ │ │ └── oidc │ │ │ │ └── testing │ │ │ │ ├── BUILD │ │ │ │ └── provider.go │ │ │ └── client │ │ │ └── auth │ │ │ ├── BUILD │ │ │ ├── azure │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── azure.go │ │ │ └── azure_test.go │ │ │ ├── gcp │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── gcp.go │ │ │ └── gcp_test.go │ │ │ ├── oidc │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── oidc.go │ │ │ └── oidc_test.go │ │ │ ├── openstack │ │ │ ├── BUILD │ │ │ ├── openstack.go │ │ │ └── openstack_test.go │ │ │ └── plugins.go │ ├── rest │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── client.go │ │ ├── client_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ └── fake.go │ │ ├── plugin.go │ │ ├── plugin_test.go │ │ ├── request.go │ │ ├── request_test.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── url_utils_test.go │ │ ├── urlbackoff.go │ │ ├── urlbackoff_test.go │ │ ├── versions.go │ │ ├── watch │ │ │ ├── BUILD │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── encoder.go │ │ │ └── encoder_test.go │ │ └── zz_generated.deepcopy.go │ ├── scale │ │ ├── BUILD │ │ ├── client.go │ │ ├── client_test.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ └── client.go │ │ ├── interfaces.go │ │ ├── roundtrip_test.go │ │ ├── scheme │ │ │ ├── BUILD │ │ │ ├── appsint │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── appsv1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── appsv1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── autoscalingv1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── doc.go │ │ │ ├── extensionsint │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── extensionsv1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── util.go │ ├── testing │ │ ├── BUILD │ │ ├── actions.go │ │ ├── fake.go │ │ └── fixture.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ └── template │ │ │ ├── BUILD │ │ │ ├── exec.go │ │ │ └── funcs.go │ ├── tools │ │ ├── auth │ │ │ ├── BUILD │ │ │ ├── clientauth.go │ │ │ └── clientauth_test.go │ │ ├── cache │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── controller.go │ │ │ ├── controller_test.go │ │ │ ├── delta_fifo.go │ │ │ ├── delta_fifo_test.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── expiration_cache_test.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── fifo_test.go │ │ │ ├── heap.go │ │ │ ├── heap_test.go │ │ │ ├── index.go │ │ │ ├── index_test.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_cache.go │ │ │ ├── mutation_detector.go │ │ │ ├── mutation_detector_test.go │ │ │ ├── processor_listener_test.go │ │ │ ├── reflector.go │ │ │ ├── reflector_metrics.go │ │ │ ├── reflector_test.go │ │ │ ├── shared_informer.go │ │ │ ├── shared_informer_test.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ ├── testing │ │ │ │ ├── BUILD │ │ │ │ ├── fake_controller_source.go │ │ │ │ └── fake_controller_source_test.go │ │ │ ├── thread_safe_store.go │ │ │ ├── undelta_store.go │ │ │ └── undelta_store_test.go │ │ ├── clientcmd │ │ │ ├── BUILD │ │ │ ├── api │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_test.go │ │ │ │ ├── latest │ │ │ │ │ ├── BUILD │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_test.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── client_config_test.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── loader_test.go │ │ │ ├── merged_client_builder.go │ │ │ ├── merged_client_builder_test.go │ │ │ ├── overrides.go │ │ │ ├── overrides_test.go │ │ │ ├── validation.go │ │ │ └── validation_test.go │ │ ├── leaderelection │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── leaderelection.go │ │ │ ├── leaderelection_test.go │ │ │ └── resourcelock │ │ │ │ ├── BUILD │ │ │ │ ├── configmaplock.go │ │ │ │ ├── endpointslock.go │ │ │ │ └── interface.go │ │ ├── metrics │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ ├── BUILD │ │ │ ├── pager.go │ │ │ └── pager_test.go │ │ ├── portforward │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── portforward.go │ │ │ └── portforward_test.go │ │ ├── record │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── event_test.go │ │ │ ├── events_cache.go │ │ │ ├── events_cache_test.go │ │ │ └── fake.go │ │ ├── reference │ │ │ ├── BUILD │ │ │ └── ref.go │ │ └── remotecommand │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── errorstream.go │ │ │ ├── remotecommand.go │ │ │ ├── resize.go │ │ │ ├── v1.go │ │ │ ├── v2.go │ │ │ ├── v2_test.go │ │ │ ├── v3.go │ │ │ ├── v4.go │ │ │ └── v4_test.go │ ├── transport │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── round_trippers_test.go │ │ ├── spdy │ │ │ ├── BUILD │ │ │ └── spdy.go │ │ ├── transport.go │ │ └── transport_test.go │ └── util │ │ ├── buffer │ │ ├── BUILD │ │ ├── ring_growing.go │ │ └── ring_growing_test.go │ │ ├── cert │ │ ├── BUILD │ │ ├── cert.go │ │ ├── csr.go │ │ ├── csr_test.go │ │ ├── io.go │ │ ├── pem.go │ │ ├── pem_test.go │ │ ├── testdata │ │ │ └── dontUseThisKey.pem │ │ └── triple │ │ │ ├── BUILD │ │ │ └── triple.go │ │ ├── certificate │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── certificate_manager.go │ │ ├── certificate_manager_test.go │ │ ├── certificate_store.go │ │ ├── certificate_store_test.go │ │ └── csr │ │ │ ├── BUILD │ │ │ ├── csr.go │ │ │ └── csr_test.go │ │ ├── exec │ │ ├── BUILD │ │ └── exec.go │ │ ├── flowcontrol │ │ ├── BUILD │ │ ├── backoff.go │ │ ├── backoff_test.go │ │ ├── throttle.go │ │ └── throttle_test.go │ │ ├── homedir │ │ ├── BUILD │ │ └── homedir.go │ │ ├── integer │ │ ├── BUILD │ │ ├── integer.go │ │ └── integer_test.go │ │ ├── jsonpath │ │ ├── BUILD │ │ ├── doc.go │ │ ├── jsonpath.go │ │ ├── jsonpath_test.go │ │ ├── node.go │ │ ├── parser.go │ │ └── parser_test.go │ │ ├── retry │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── util.go │ │ └── util_test.go │ │ ├── testing │ │ ├── BUILD │ │ ├── fake_handler.go │ │ ├── fake_handler_test.go │ │ └── tmpdir.go │ │ └── workqueue │ │ ├── BUILD │ │ ├── default_rate_limiters.go │ │ ├── default_rate_limiters_test.go │ │ ├── delaying_queue.go │ │ ├── delaying_queue_test.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ ├── queue_test.go │ │ ├── rate_limitting_queue.go │ │ └── rate_limitting_queue_test.go │ └── kube-openapi │ ├── .gitignore │ ├── .travis.yml │ ├── Godeps │ ├── Godeps.json │ └── Readme │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── example │ └── openapi-gen │ │ └── main.go │ └── pkg │ ├── aggregator │ ├── aggregator.go │ └── aggregator_test.go │ ├── builder │ ├── doc.go │ ├── openapi.go │ ├── openapi_test.go │ └── util.go │ ├── common │ ├── common.go │ └── doc.go │ ├── generators │ ├── README │ ├── openapi.go │ └── openapi_test.go │ ├── handler │ └── handler.go │ └── util │ ├── proto │ ├── doc.go │ ├── document.go │ ├── openapi.go │ ├── openapi_suite_test.go │ ├── openapi_test.go │ ├── testing │ │ ├── openapi.go │ │ └── swagger.json │ └── validation │ │ ├── errors.go │ │ ├── types.go │ │ └── validation.go │ ├── trie.go │ └── util.go └── version └── version.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/DCO -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /apps/dummy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/Dockerfile -------------------------------------------------------------------------------- /apps/dummy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/Makefile -------------------------------------------------------------------------------- /apps/dummy/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/check.sh -------------------------------------------------------------------------------- /apps/dummy/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/cluster.yaml -------------------------------------------------------------------------------- /apps/dummy/on-change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/on-change.sh -------------------------------------------------------------------------------- /apps/dummy/peer-finder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/peer-finder.go -------------------------------------------------------------------------------- /apps/dummy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/run.sh -------------------------------------------------------------------------------- /apps/dummy/seed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/seed.sh -------------------------------------------------------------------------------- /apps/dummy/sequence.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $RANDOM 4 | -------------------------------------------------------------------------------- /apps/dummy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/start.sh -------------------------------------------------------------------------------- /apps/dummy/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/dummy/stop.sh -------------------------------------------------------------------------------- /apps/galera/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/Dockerfile -------------------------------------------------------------------------------- /apps/galera/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/Makefile -------------------------------------------------------------------------------- /apps/galera/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/check.sh -------------------------------------------------------------------------------- /apps/galera/client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/client.yaml -------------------------------------------------------------------------------- /apps/galera/cluster-ephemeral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/cluster-ephemeral.yaml -------------------------------------------------------------------------------- /apps/galera/cluster-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/cluster-local.yaml -------------------------------------------------------------------------------- /apps/galera/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/cluster.yaml -------------------------------------------------------------------------------- /apps/galera/container-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/container-common.sh -------------------------------------------------------------------------------- /apps/galera/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/database.sql -------------------------------------------------------------------------------- /apps/galera/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/demo.md -------------------------------------------------------------------------------- /apps/galera/fixuser_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/fixuser_and_run.sh -------------------------------------------------------------------------------- /apps/galera/on-change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/on-change.sh -------------------------------------------------------------------------------- /apps/galera/peer-finder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/peer-finder.go -------------------------------------------------------------------------------- /apps/galera/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/run.sh -------------------------------------------------------------------------------- /apps/galera/seed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/seed.sh -------------------------------------------------------------------------------- /apps/galera/sequence.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/sequence.sh -------------------------------------------------------------------------------- /apps/galera/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/start.sh -------------------------------------------------------------------------------- /apps/galera/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/apps/galera/stop.sh -------------------------------------------------------------------------------- /boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/boilerplate.go.txt -------------------------------------------------------------------------------- /cmd/operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/cmd/operator/main.go -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/codecov.yaml -------------------------------------------------------------------------------- /doc/Rationale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/Rationale.md -------------------------------------------------------------------------------- /doc/alpha-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/alpha-features.md -------------------------------------------------------------------------------- /doc/best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/best_practices.md -------------------------------------------------------------------------------- /doc/design/cluster_lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/design/cluster_lifecycle.md -------------------------------------------------------------------------------- /doc/design/cluster_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/design/cluster_status.md -------------------------------------------------------------------------------- /doc/design/disaster_recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/design/disaster_recovery.md -------------------------------------------------------------------------------- /doc/design/operator_recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/design/operator_recovery.md -------------------------------------------------------------------------------- /doc/design/physical_recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/design/physical_recovery.md -------------------------------------------------------------------------------- /doc/design/reconciliation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/design/reconciliation.md -------------------------------------------------------------------------------- /doc/design/replication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/design/replication.md -------------------------------------------------------------------------------- /doc/design/resource_ownership_and_GC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/design/resource_ownership_and_GC.md -------------------------------------------------------------------------------- /doc/dev/debug_e2e_flake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/dev/debug_e2e_flake.md -------------------------------------------------------------------------------- /doc/dev/developer_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/dev/developer_guide.md -------------------------------------------------------------------------------- /doc/dev/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/dev/release.md -------------------------------------------------------------------------------- /doc/inherited/design/abs_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/design/abs_backup.md -------------------------------------------------------------------------------- /doc/inherited/design/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/design/arch.png -------------------------------------------------------------------------------- /doc/inherited/design/backup_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/design/backup_operator.md -------------------------------------------------------------------------------- /doc/inherited/design/cluster_restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/design/cluster_restore.md -------------------------------------------------------------------------------- /doc/inherited/design/cluster_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/design/cluster_upgrade.md -------------------------------------------------------------------------------- /doc/inherited/design/restore_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/design/restore_operator.md -------------------------------------------------------------------------------- /doc/inherited/design/s3_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/design/s3_backup.md -------------------------------------------------------------------------------- /doc/inherited/design/upgrade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/design/upgrade.jpg -------------------------------------------------------------------------------- /doc/inherited/upgrade/migrate_cr_070.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/upgrade/migrate_cr_070.md -------------------------------------------------------------------------------- /doc/inherited/upgrade/upgrade_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/inherited/upgrade/upgrade_guide.md -------------------------------------------------------------------------------- /doc/user/client_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/user/client_service.md -------------------------------------------------------------------------------- /doc/user/cluster_tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/user/cluster_tls.md -------------------------------------------------------------------------------- /doc/user/conditions_and_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/user/conditions_and_events.md -------------------------------------------------------------------------------- /doc/user/demo-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/user/demo-script.md -------------------------------------------------------------------------------- /doc/user/install_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/user/install_guide.md -------------------------------------------------------------------------------- /doc/user/rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/user/rbac.md -------------------------------------------------------------------------------- /doc/user/resource_labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/user/resource_labels.md -------------------------------------------------------------------------------- /doc/user/spec_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/doc/user/spec_examples.md -------------------------------------------------------------------------------- /example/ceph-admin-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/ceph-admin-secret.yaml -------------------------------------------------------------------------------- /example/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/cluster.yaml -------------------------------------------------------------------------------- /example/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/crd.yaml -------------------------------------------------------------------------------- /example/deployment-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/deployment-operator.yaml -------------------------------------------------------------------------------- /example/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/operator.yaml -------------------------------------------------------------------------------- /example/rbac/cluster-role-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/rbac/cluster-role-template.yaml -------------------------------------------------------------------------------- /example/rbac/create_role.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/rbac/create_role.sh -------------------------------------------------------------------------------- /example/rbac/role-binding-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/rbac/role-binding-template.yaml -------------------------------------------------------------------------------- /example/rbac/role-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/rbac/role-template.yaml -------------------------------------------------------------------------------- /example/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/storage.yaml -------------------------------------------------------------------------------- /example/tls/certs/ca-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/ca-config.json -------------------------------------------------------------------------------- /example/tls/certs/ca-csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/ca-csr.json -------------------------------------------------------------------------------- /example/tls/certs/etcd-client-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/etcd-client-ca.crt -------------------------------------------------------------------------------- /example/tls/certs/etcd-client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/etcd-client.crt -------------------------------------------------------------------------------- /example/tls/certs/etcd-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/etcd-client.json -------------------------------------------------------------------------------- /example/tls/certs/etcd-client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/etcd-client.key -------------------------------------------------------------------------------- /example/tls/certs/gen-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/gen-cert.sh -------------------------------------------------------------------------------- /example/tls/certs/peer-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/peer-ca.crt -------------------------------------------------------------------------------- /example/tls/certs/peer.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/peer.crt -------------------------------------------------------------------------------- /example/tls/certs/peer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/peer.json -------------------------------------------------------------------------------- /example/tls/certs/peer.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/peer.key -------------------------------------------------------------------------------- /example/tls/certs/server-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/server-ca.crt -------------------------------------------------------------------------------- /example/tls/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/server.crt -------------------------------------------------------------------------------- /example/tls/certs/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/server.json -------------------------------------------------------------------------------- /example/tls/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/certs/server.key -------------------------------------------------------------------------------- /example/tls/example-tls-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/example/tls/example-tls-cluster.yaml -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/glide.yaml -------------------------------------------------------------------------------- /go-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/go-list.sh -------------------------------------------------------------------------------- /hack/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/hack/build/Dockerfile -------------------------------------------------------------------------------- /hack/build/docker_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/hack/build/docker_push -------------------------------------------------------------------------------- /hack/build/operator/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/hack/build/operator/build -------------------------------------------------------------------------------- /hack/ci/get_kube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/hack/ci/get_kube.sh -------------------------------------------------------------------------------- /hack/ci/rbac_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/hack/ci/rbac_utils.sh -------------------------------------------------------------------------------- /hack/ci/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/hack/ci/run -------------------------------------------------------------------------------- /hack/k8s/codegen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/hack/k8s/codegen/Dockerfile -------------------------------------------------------------------------------- /hack/lib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/hack/lib/build.sh -------------------------------------------------------------------------------- /hack/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/hack/test -------------------------------------------------------------------------------- /pkg/apis/clusterlabs/v1alpha1/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/apis/clusterlabs/v1alpha1/cluster.go -------------------------------------------------------------------------------- /pkg/apis/clusterlabs/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/apis/clusterlabs/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/clusterlabs/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/apis/clusterlabs/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/clusterlabs/v1alpha1/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/apis/clusterlabs/v1alpha1/status.go -------------------------------------------------------------------------------- /pkg/chaos/chaos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/chaos/chaos.go -------------------------------------------------------------------------------- /pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/client/client.go -------------------------------------------------------------------------------- /pkg/cluster/Fragemts_go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/Fragemts_go -------------------------------------------------------------------------------- /pkg/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/cluster.go -------------------------------------------------------------------------------- /pkg/cluster/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/cluster_test.go -------------------------------------------------------------------------------- /pkg/cluster/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/error.go -------------------------------------------------------------------------------- /pkg/cluster/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/error_test.go -------------------------------------------------------------------------------- /pkg/cluster/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/exec.go -------------------------------------------------------------------------------- /pkg/cluster/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/metrics.go -------------------------------------------------------------------------------- /pkg/cluster/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/reconcile.go -------------------------------------------------------------------------------- /pkg/cluster/replicate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/replicate.go -------------------------------------------------------------------------------- /pkg/cluster/replicate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/replicate_test.go -------------------------------------------------------------------------------- /pkg/cluster/statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/cluster/statefulset.go -------------------------------------------------------------------------------- /pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/controller/controller.go -------------------------------------------------------------------------------- /pkg/controller/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/controller/controller_test.go -------------------------------------------------------------------------------- /pkg/controller/informer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/controller/informer.go -------------------------------------------------------------------------------- /pkg/controller/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/controller/metrics.go -------------------------------------------------------------------------------- /pkg/controller/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/controller/util.go -------------------------------------------------------------------------------- /pkg/generated/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/generated/clientset/versioned/doc.go -------------------------------------------------------------------------------- /pkg/util/constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/constants/constants.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/k8sutil/crd.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/events_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/k8sutil/events_util.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/k8sutil/exec_test.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/exec_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/k8sutil/exec_util.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/k8sutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/k8sutil/k8sutil.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/node_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/k8sutil/node_util.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/pod_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/k8sutil/pod_util.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/sts_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/k8sutil/sts_util.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/k8sutil/tls.go -------------------------------------------------------------------------------- /pkg/util/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/logging.go -------------------------------------------------------------------------------- /pkg/util/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/logging_test.go -------------------------------------------------------------------------------- /pkg/util/member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/member.go -------------------------------------------------------------------------------- /pkg/util/member_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/member_test.go -------------------------------------------------------------------------------- /pkg/util/probe/readyz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/probe/readyz.go -------------------------------------------------------------------------------- /pkg/util/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/retry.go -------------------------------------------------------------------------------- /pkg/util/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/pkg/util/tls.go -------------------------------------------------------------------------------- /test/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/README.md -------------------------------------------------------------------------------- /test/e2e/basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/basic_test.go -------------------------------------------------------------------------------- /test/e2e/cluster_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/cluster_status_test.go -------------------------------------------------------------------------------- /test/e2e/e2esh/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2esh/main_test.go -------------------------------------------------------------------------------- /test/e2e/e2eslow/disruptive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2eslow/disruptive_test.go -------------------------------------------------------------------------------- /test/e2e/e2eslow/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2eslow/main_test.go -------------------------------------------------------------------------------- /test/e2e/e2eslow/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2eslow/tls_test.go -------------------------------------------------------------------------------- /test/e2e/e2eutil/crd_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2eutil/crd_util.go -------------------------------------------------------------------------------- /test/e2e/e2eutil/etcd_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2eutil/etcd_util.go -------------------------------------------------------------------------------- /test/e2e/e2eutil/spec_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2eutil/spec_util.go -------------------------------------------------------------------------------- /test/e2e/e2eutil/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2eutil/tls.go -------------------------------------------------------------------------------- /test/e2e/e2eutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2eutil/util.go -------------------------------------------------------------------------------- /test/e2e/e2eutil/wait_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/e2eutil/wait_util.go -------------------------------------------------------------------------------- /test/e2e/framework/framework.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/framework/framework.go -------------------------------------------------------------------------------- /test/e2e/framework/main_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/framework/main_entry.go -------------------------------------------------------------------------------- /test/e2e/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/main_test.go -------------------------------------------------------------------------------- /test/e2e/recovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/recovery_test.go -------------------------------------------------------------------------------- /test/e2e/resize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/resize_test.go -------------------------------------------------------------------------------- /test/e2e/upgradetest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/upgradetest/README.md -------------------------------------------------------------------------------- /test/e2e/upgradetest/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/upgradetest/main_test.go -------------------------------------------------------------------------------- /test/e2e/upgradetest/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/upgradetest/upgrade_test.go -------------------------------------------------------------------------------- /test/e2e/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/e2e/util.go -------------------------------------------------------------------------------- /test/logcollector/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/logcollector/main.go -------------------------------------------------------------------------------- /test/pod/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/pod/Dockerfile -------------------------------------------------------------------------------- /test/pod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/pod/README.md -------------------------------------------------------------------------------- /test/pod/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/pod/build -------------------------------------------------------------------------------- /test/pod/run-test-pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/pod/run-test-pod -------------------------------------------------------------------------------- /test/pod/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/test/pod/test-pod.yaml -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/beorn7/perks/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/.header -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/NEWS -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/Procfile -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/V2Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/V2Procfile -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/auth/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/auth/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/build.ps1 -------------------------------------------------------------------------------- /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/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/cover -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/e2e/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/e2e/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/main.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/mvcc/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/mvcc/kv.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/raft/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/raft/log.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/snap/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/snap/db.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/wal/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/wal/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/wal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/etcd/wal/wal.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/go-systemd/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/go-systemd/test -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/pkg/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/pkg/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/pkg/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/pkg/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/coreos/pkg/test -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/google_app_engine/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/google_app_engine/datastore/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/spec/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/fixtures/specs/deeper/stringProp.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "string" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/spec/info.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/spec/ref.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/spec/spec.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/spec/tag.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/gogo/protobuf/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/gogo/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/gogo/protobuf/README -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/gogo/protobuf/Readme.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/gogo/protobuf/bench.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /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/t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/google/btree/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/google/btree/btree.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/grpc-ecosystem/grpc-gateway/.gitignore: -------------------------------------------------------------------------------- 1 | _output/ 2 | -------------------------------------------------------------------------------- /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/browser/bin/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/howeyc/gopass/README.md -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/pass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/howeyc/gopass/pass.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /coverage.txt 3 | /profile.out 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/skip_tests/array/skip_test.go: -------------------------------------------------------------------------------- 1 | ../number/skip_test.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/skip_tests/object/skip_test.go: -------------------------------------------------------------------------------- 1 | ../number/skip_test.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/skip_tests/string/skip_test.go: -------------------------------------------------------------------------------- 1 | ../number/skip_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/ratelimit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/juju/ratelimit/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/.gitignore: -------------------------------------------------------------------------------- 1 | .root 2 | *_easyjson.go 3 | *.iml 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mailru/easyjson/raw.go -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/tests/nothing.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | // No structs in this file 4 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mgutz/ansi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mgutz/ansi/README.md -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mgutz/ansi/ansi.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/ansi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mgutz/ansi/ansi_test.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mgutz/ansi/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/mgutz/ansi/print.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/json.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/pkg/errors/stack.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/ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /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/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/cmdline: -------------------------------------------------------------------------------- 1 | vimtest.go+10 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/comm: -------------------------------------------------------------------------------- 1 | vim 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/exe: -------------------------------------------------------------------------------- 1 | /usr/bin/vim -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/10: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/cmdline: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/comm: -------------------------------------------------------------------------------- 1 | ata_sff 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/4: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/self: -------------------------------------------------------------------------------- 1 | 26231 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/abc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/ghi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/uvw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/xyz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/ip_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/beekhof/rss-operator/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/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/icmp/ping_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/file_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/README -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/cases/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/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/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/message/print.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/search/search.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/search/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/width/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/time/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/README: -------------------------------------------------------------------------------- 1 | This repository provides supplementary Go time packages. 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/coverage.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/grpclb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/grpclb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/inf.v0/benchmark_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec_go1_2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/inf.v0/dec_go1_2_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/inf.v0/dec_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/inf.v0/example_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/inf.v0/rounder_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/Godeps/Godeps.json -------------------------------------------------------------------------------- /vendor/k8s.io/api/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/Godeps/Readme -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/admission/v1beta1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/authentication/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/authentication/v1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/authorization/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/authorization/v1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/authorization/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/autoscaling/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v2alpha1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v2alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/batch/v2alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/certificates/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/meta.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/taint_test.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/events/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/events/v1beta1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/events/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/extensions/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/extensions/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/imagepolicy/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/imagepolicy/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/networking/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/networking/v1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/policy/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/v1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/storage/v1/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/apimachinery/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/apimachinery/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/apimachinery/pkg/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/Godeps/Readme -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/INSTALL.md -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/dynamic/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/dynamic/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/rest/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/scale/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/scale/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/scale/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/scale/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/scale/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/scale/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/testing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/client-go/testing/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/kube-openapi/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/kube-openapi/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/kube-openapi/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/vendor/k8s.io/kube-openapi/README.md -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beekhof/rss-operator/HEAD/version/version.go --------------------------------------------------------------------------------