├── README.md ├── inference ├── MLE_LSHMLE_partial.ipynb ├── SimEnc_partial.ipynb ├── couchbase.txt ├── decompress.ipynb ├── finesse └── ubuntu.txt ├── partial ├── decode_docker.cpp ├── encode_docker.cpp └── libz_j │ ├── Makefile │ ├── adler32.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── zfunc.h │ ├── zutil.c │ └── zutil.h ├── simenc ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── Makefile ├── acme │ ├── challenges.go │ ├── client.go │ ├── client_test.go │ ├── crypto.go │ ├── crypto_test.go │ ├── dns_challenge.go │ ├── dns_challenge_manual.go │ ├── dns_challenge_test.go │ ├── error.go │ ├── http.go │ ├── http_challenge.go │ ├── http_challenge_server.go │ ├── http_challenge_test.go │ ├── http_test.go │ ├── jws.go │ ├── messages.go │ ├── pop_challenge.go │ ├── provider.go │ ├── testdata │ │ └── resolv.conf.1 │ ├── tls_sni_challenge.go │ ├── tls_sni_challenge_server.go │ ├── tls_sni_challenge_test.go │ ├── utils.go │ └── utils_test.go ├── bin │ └── config-example.yml ├── blobs.go ├── check_forwardserver.sh ├── circle.yml ├── cmd │ ├── digest │ │ └── main.go │ ├── registry-api-descriptor-template │ │ └── main.go │ └── registry │ │ ├── config-cache.yml │ │ ├── config-dev.yml │ │ ├── config-example.yml │ │ └── main.go ├── config-example.yml ├── configuration │ ├── configuration.go │ ├── configuration_test.go │ └── parser.go ├── context │ ├── context.go │ ├── doc.go │ ├── http.go │ ├── http_test.go │ ├── logger.go │ ├── trace.go │ ├── trace_test.go │ ├── util.go │ ├── version.go │ └── version_test.go ├── contrib │ ├── apache │ │ ├── README.MD │ │ └── apache.conf │ ├── compose │ │ ├── README.md │ │ ├── docker-compose.yml │ │ └── nginx │ │ │ ├── Dockerfile │ │ │ ├── docker-registry-v2.conf │ │ │ ├── docker-registry.conf │ │ │ ├── nginx.conf │ │ │ └── registry.conf │ ├── docker-integration │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── golem.conf │ │ ├── helpers.bash │ │ ├── install_certs.sh │ │ ├── malevolent-certs │ │ │ ├── localregistry.cert │ │ │ └── localregistry.key │ │ ├── malevolent.bats │ │ ├── nginx │ │ │ ├── Dockerfile │ │ │ ├── docker-registry-v2.conf │ │ │ ├── nginx.conf │ │ │ ├── registry-basic.conf │ │ │ ├── registry-noauth.conf │ │ │ ├── registry.conf │ │ │ ├── test.passwd │ │ │ └── v1 │ │ │ │ └── search.json │ │ ├── plugins.bats │ │ ├── run_multiversion.sh │ │ ├── tls.bats │ │ ├── token.bats │ │ ├── tokenserver-oauth │ │ │ ├── .htpasswd │ │ │ ├── Dockerfile │ │ │ ├── certs │ │ │ │ ├── auth.localregistry.cert │ │ │ │ ├── auth.localregistry.key │ │ │ │ ├── localregistry.cert │ │ │ │ ├── localregistry.key │ │ │ │ ├── signing.cert │ │ │ │ └── signing.key │ │ │ ├── registry-config-notls.yml │ │ │ └── registry-config.yml │ │ └── tokenserver │ │ │ ├── .htpasswd │ │ │ ├── Dockerfile │ │ │ ├── certs │ │ │ ├── auth.localregistry.cert │ │ │ ├── auth.localregistry.key │ │ │ ├── localregistry.cert │ │ │ ├── localregistry.key │ │ │ ├── signing.cert │ │ │ └── signing.key │ │ │ └── registry-config.yml │ └── token-server │ │ ├── errors.go │ │ ├── main.go │ │ └── token.go ├── coverpkg.sh ├── digestset │ ├── set.go │ └── set_test.go ├── doc.go ├── docs │ ├── README.md │ ├── configuration.md │ └── spec │ │ ├── api.md │ │ ├── api.md.tmpl │ │ ├── auth │ │ ├── index.md │ │ ├── jwt.md │ │ ├── oauth.md │ │ ├── scope.md │ │ └── token.md │ │ ├── implementations.md │ │ ├── index.md │ │ ├── json.md │ │ ├── manifest-v2-1.md │ │ ├── manifest-v2-2.md │ │ └── menu.md ├── errors.go ├── go.mod ├── go.sum ├── golang.org │ └── x │ │ ├── crypto │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── codereview.cfg │ │ └── ocsp │ │ │ ├── ocsp.go │ │ │ └── ocsp_test.go │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── go17.go │ │ │ ├── pre_go17.go │ │ │ └── withtimeout_test.go │ │ └── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ └── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ └── rate │ │ ├── rate.go │ │ ├── rate_go16.go │ │ ├── rate_go17.go │ │ └── rate_test.go ├── gopkg.in │ └── square │ │ └── go-jose.v1 │ │ ├── .gitcookies.sh.enc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── BUG-BOUNTY.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asymmetric.go │ │ ├── asymmetric_test.go │ │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── cbc_hmac_test.go │ │ ├── concat_kdf.go │ │ ├── concat_kdf_test.go │ │ ├── ecdh_es.go │ │ ├── ecdh_es_test.go │ │ ├── key_wrap.go │ │ └── key_wrap_test.go │ │ ├── crypter.go │ │ ├── crypter_test.go │ │ ├── doc.go │ │ ├── doc_test.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── indent.go │ │ ├── number_test.go │ │ ├── scanner.go │ │ ├── scanner_test.go │ │ ├── stream.go │ │ ├── stream_test.go │ │ ├── tagkey_test.go │ │ ├── tags.go │ │ ├── tags_test.go │ │ └── testdata │ │ │ └── code.json.gz │ │ ├── json_fork_test.go │ │ ├── jwe.go │ │ ├── jwe_test.go │ │ ├── jwk.go │ │ ├── jwk_test.go │ │ ├── jws.go │ │ ├── jws_test.go │ │ ├── shared.go │ │ ├── signing.go │ │ ├── signing_test.go │ │ ├── symmetric.go │ │ ├── symmetric_test.go │ │ ├── utils.go │ │ └── utils_test.go ├── health │ ├── api │ │ ├── api.go │ │ └── api_test.go │ ├── checks │ │ ├── checks.go │ │ └── checks_test.go │ ├── doc.go │ ├── health.go │ └── health_test.go ├── letsencrypt │ ├── LICENSE │ ├── README │ └── lets.go ├── manifest │ ├── doc.go │ ├── manifestlist │ │ ├── manifestlist.go │ │ └── manifestlist_test.go │ ├── schema1 │ │ ├── config_builder.go │ │ ├── config_builder_test.go │ │ ├── manifest.go │ │ ├── manifest_test.go │ │ ├── reference_builder.go │ │ ├── reference_builder_test.go │ │ ├── sign.go │ │ └── verify.go │ ├── schema2 │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── manifest.go │ │ └── manifest_test.go │ └── versioned.go ├── manifests.go ├── miekg │ └── dns │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_test.go │ │ ├── clientconfig.go │ │ ├── clientconfig_test.go │ │ ├── compress_generate.go │ │ ├── dane.go │ │ ├── defaults.go │ │ ├── dns.go │ │ ├── dns_bench_test.go │ │ ├── dns_test.go │ │ ├── dnssec.go │ │ ├── dnssec_keygen.go │ │ ├── dnssec_keyscan.go │ │ ├── dnssec_privkey.go │ │ ├── dnssec_test.go │ │ ├── doc.go │ │ ├── dyn_test.go │ │ ├── edns.go │ │ ├── edns_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── fuzz_test.go │ │ ├── generate.go │ │ ├── issue_test.go │ │ ├── labels.go │ │ ├── labels_test.go │ │ ├── msg.go │ │ ├── msg_generate.go │ │ ├── msg_helpers.go │ │ ├── msg_test.go │ │ ├── nsecx.go │ │ ├── nsecx_test.go │ │ ├── parse_test.go │ │ ├── privaterr.go │ │ ├── privaterr_test.go │ │ ├── rawmsg.go │ │ ├── remote_test.go │ │ ├── reverse.go │ │ ├── sanitize.go │ │ ├── sanitize_test.go │ │ ├── scan.go │ │ ├── scan_rr.go │ │ ├── scanner.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── sig0.go │ │ ├── sig0_test.go │ │ ├── singleinflight.go │ │ ├── smimea.go │ │ ├── tlsa.go │ │ ├── tsig.go │ │ ├── tsig_test.go │ │ ├── types.go │ │ ├── types_generate.go │ │ ├── types_test.go │ │ ├── udp.go │ │ ├── udp_linux.go │ │ ├── udp_other.go │ │ ├── udp_windows.go │ │ ├── update.go │ │ ├── update_test.go │ │ ├── xfr.go │ │ ├── xfr_test.go │ │ ├── zcompress.go │ │ ├── zmsg.go │ │ └── ztypes.go ├── notifications │ ├── bridge.go │ ├── bridge_test.go │ ├── endpoint.go │ ├── event.go │ ├── event_test.go │ ├── http.go │ ├── http_test.go │ ├── listener.go │ ├── listener_test.go │ ├── metrics.go │ ├── metrics_test.go │ ├── sinks.go │ └── sinks_test.go ├── project │ ├── dev-image │ │ └── Dockerfile │ └── hooks │ │ ├── README.md │ │ ├── configure-hooks.sh │ │ └── pre-commit ├── redistest ├── reference │ ├── helpers.go │ ├── normalize.go │ ├── normalize_test.go │ ├── reference.go │ ├── reference_test.go │ ├── regexp.go │ └── regexp_test.go ├── registry.go ├── registry │ ├── api │ │ ├── errcode │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── handler.go │ │ │ └── register.go │ │ └── v2 │ │ │ ├── descriptors.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── headerparser.go │ │ │ ├── headerparser_test.go │ │ │ ├── routes.go │ │ │ ├── routes_test.go │ │ │ ├── urls.go │ │ │ └── urls_test.go │ ├── auth │ │ ├── auth.go │ │ ├── htpasswd │ │ │ ├── access.go │ │ │ ├── access_test.go │ │ │ ├── htpasswd.go │ │ │ └── htpasswd_test.go │ │ ├── silly │ │ │ ├── access.go │ │ │ └── access_test.go │ │ └── token │ │ │ ├── accesscontroller.go │ │ │ ├── stringset.go │ │ │ ├── token.go │ │ │ ├── token_test.go │ │ │ └── util.go │ ├── client │ │ ├── auth │ │ │ ├── api_version.go │ │ │ ├── challenge │ │ │ │ ├── addr.go │ │ │ │ ├── authchallenge.go │ │ │ │ └── authchallenge_test.go │ │ │ ├── session.go │ │ │ └── session_test.go │ │ ├── blob_writer.go │ │ ├── blob_writer_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── repository.go │ │ ├── repository_test.go │ │ └── transport │ │ │ ├── http_reader.go │ │ │ └── transport.go │ ├── doc.go │ ├── handlers │ │ ├── api_test.go │ │ ├── app.go │ │ ├── app_test.go │ │ ├── basicauth.go │ │ ├── basicauth_prego14.go │ │ ├── blob.go │ │ ├── blobupload.go │ │ ├── catalog.go │ │ ├── context.go │ │ ├── health_test.go │ │ ├── helpers.go │ │ ├── hmac.go │ │ ├── hmac_test.go │ │ ├── hooks.go │ │ ├── mail.go │ │ ├── manifests.go │ │ ├── registries.go │ │ └── tags.go │ ├── listener │ │ └── listener.go │ ├── middleware │ │ ├── registry │ │ │ └── middleware.go │ │ └── repository │ │ │ └── middleware.go │ ├── proxy │ │ ├── proxyauth.go │ │ ├── proxyblobstore.go │ │ ├── proxyblobstore_test.go │ │ ├── proxymanifeststore.go │ │ ├── proxymanifeststore_test.go │ │ ├── proxymetrics.go │ │ ├── proxyregistry.go │ │ ├── proxytagservice.go │ │ ├── proxytagservice_test.go │ │ └── scheduler │ │ │ ├── scheduler.go │ │ │ └── scheduler_test.go │ ├── registry.go │ ├── registry_test.go │ ├── root.go │ └── storage │ │ ├── blob_test.go │ │ ├── blobcachemetrics.go │ │ ├── blobserver.go │ │ ├── blobstore.go │ │ ├── blobwriter.go │ │ ├── blobwriter_nonresumable.go │ │ ├── blobwriter_resumable.go │ │ ├── cache │ │ ├── cache.go │ │ ├── cachecheck │ │ │ └── suite.go │ │ ├── cachedblobdescriptorstore.go │ │ ├── memory │ │ │ ├── memory.go │ │ │ └── memory_test.go │ │ └── redis │ │ │ ├── redis.go │ │ │ └── redis_test.go │ │ ├── catalog.go │ │ ├── catalog_test.go │ │ ├── dedup.MD │ │ ├── digester_resumable_test.go │ │ ├── doc.go │ │ ├── driver │ │ ├── azure │ │ │ ├── azure.go │ │ │ └── azure_test.go │ │ ├── base │ │ │ ├── base.go │ │ │ └── regulator.go │ │ ├── distributed │ │ │ ├── driver.go │ │ │ └── driver_test.go │ │ ├── factory │ │ │ └── factory.go │ │ ├── fileinfo.go │ │ ├── filesystem │ │ │ ├── driver.go │ │ │ └── driver_test.go │ │ ├── gcache │ │ │ ├── arc.go │ │ │ ├── blobcache.go │ │ │ ├── cache.go │ │ │ ├── clock.go │ │ │ ├── helpers_test.go │ │ │ ├── lfu.go │ │ │ ├── lru.go │ │ │ ├── simple.go │ │ │ ├── singleflight.go │ │ │ ├── stats.go │ │ │ ├── utils.go │ │ │ └── wercker.yml │ │ ├── gcs │ │ │ ├── doc.go │ │ │ ├── gcs.go │ │ │ └── gcs_test.go │ │ ├── inmemory │ │ │ ├── driver.go │ │ │ ├── driver_test.go │ │ │ └── mfs.go │ │ ├── middleware │ │ │ ├── cloudfront │ │ │ │ └── middleware.go │ │ │ ├── redirect │ │ │ │ ├── middleware.go │ │ │ │ └── middleware_test.go │ │ │ └── storagemiddleware.go │ │ ├── oss │ │ │ ├── doc.go │ │ │ ├── oss.go │ │ │ └── oss_test.go │ │ ├── s3-aws │ │ │ ├── s3.go │ │ │ ├── s3_test.go │ │ │ └── s3_v2_signer.go │ │ ├── s3-goamz │ │ │ ├── s3.go │ │ │ └── s3_test.go │ │ ├── storagedriver.go │ │ ├── swift │ │ │ ├── swift.go │ │ │ └── swift_test.go │ │ ├── testdriver │ │ │ └── testdriver.go │ │ └── testsuites │ │ │ └── testsuites.go │ │ ├── filereader.go │ │ ├── filereader_test.go │ │ ├── garbagecollect.go │ │ ├── garbagecollect_test.go │ │ ├── j_dedup.go │ │ ├── linkedblobstore.go │ │ ├── linkedblobstore_test.go │ │ ├── manifestlisthandler.go │ │ ├── manifeststore.go │ │ ├── manifeststore_test.go │ │ ├── paths.go │ │ ├── paths_test.go │ │ ├── purgeuploads.go │ │ ├── purgeuploads_test.go │ │ ├── registry.go │ │ ├── schema2manifesthandler.go │ │ ├── schema2manifesthandler_test.go │ │ ├── signedmanifesthandler.go │ │ ├── tagstore.go │ │ ├── tagstore_test.go │ │ ├── util.go │ │ ├── vacuum.go │ │ ├── walk.go │ │ └── walk_test.go ├── run │ ├── 7000 │ │ └── redis.conf │ ├── 7001 │ │ └── redis.conf │ ├── Dockerfile │ ├── config-dev.yml │ ├── flushall-cluster.sh │ ├── redis-cluster-7002.conf │ ├── redis-cluster-7003.conf │ ├── redis-cluster-7004.conf │ ├── redis-cluster-7005.conf │ ├── redis-compose.yml │ ├── redis-forget-nodes.sh │ ├── remotehostsamaranth.txt │ ├── remotehostshulk.txt │ ├── remotehostthors.txt │ ├── run_redis_cluster.sh │ ├── run_registry.sh │ ├── stack.yml │ └── start-redis-cluster.sh ├── stack.yml ├── tags.go ├── testutil │ ├── handler.go │ ├── manifests.go │ └── tarfile.go ├── uuid │ ├── uuid.go │ └── uuid_test.go ├── vendor.conf ├── vendor │ ├── cloud.google.com │ │ └── go │ │ │ ├── LICENSE │ │ │ ├── compute │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ │ └── version.go │ │ │ └── metadata │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── metadata.go │ │ │ │ ├── retry.go │ │ │ │ ├── retry_linux.go │ │ │ │ └── tidyfix.go │ │ │ ├── iam │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── apiv1 │ │ │ │ └── iampb │ │ │ │ │ ├── iam_policy.pb.go │ │ │ │ │ ├── options.pb.go │ │ │ │ │ └── policy.pb.go │ │ │ └── iam.go │ │ │ ├── internal │ │ │ ├── .repo-metadata-full.json │ │ │ ├── README.md │ │ │ ├── annotate.go │ │ │ ├── optional │ │ │ │ └── optional.go │ │ │ ├── retry.go │ │ │ ├── trace │ │ │ │ └── trace.go │ │ │ └── version │ │ │ │ ├── update_version.sh │ │ │ │ └── version.go │ │ │ └── storage │ │ │ ├── LICENSE │ │ │ └── internal │ │ │ ├── apiv2 │ │ │ ├── auxiliary.go │ │ │ ├── doc.go │ │ │ ├── gapic_metadata.json │ │ │ ├── storage_client.go │ │ │ ├── storagepb │ │ │ │ └── storage.pb.go │ │ │ └── version.go │ │ │ └── version.go │ ├── github.com │ │ ├── Sirupsen │ │ │ └── logrus │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── alt_exit.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── buffer_pool.go │ │ │ │ ├── doc.go │ │ │ │ ├── entry.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.go │ │ │ │ ├── hooks.go │ │ │ │ ├── json_formatter.go │ │ │ │ ├── logger.go │ │ │ │ ├── logrus.go │ │ │ │ ├── terminal_appengine.go │ │ │ │ ├── terminal_bsd.go │ │ │ │ ├── terminal_check_appengine.go │ │ │ │ ├── terminal_check_bsd.go │ │ │ │ ├── terminal_check_js.go │ │ │ │ ├── terminal_check_no_terminal.go │ │ │ │ ├── terminal_check_notappengine.go │ │ │ │ ├── terminal_check_solaris.go │ │ │ │ ├── terminal_check_unix.go │ │ │ │ ├── terminal_check_windows.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── terminal_notwindows.go │ │ │ │ ├── terminal_solaris.go │ │ │ │ ├── terminal_windows.go │ │ │ │ ├── text_formatter.go │ │ │ │ └── writer.go │ │ ├── ahmetb │ │ │ └── azure-sdk-for-go │ │ │ │ ├── LICENSE │ │ │ │ └── storage │ │ │ │ ├── README.md │ │ │ │ ├── blob.go │ │ │ │ ├── client.go │ │ │ │ ├── file.go │ │ │ │ ├── queue.go │ │ │ │ ├── table.go │ │ │ │ ├── table_entities.go │ │ │ │ └── util.go │ │ ├── allegro │ │ │ └── bigcache │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bigcache.go │ │ │ │ ├── bytes.go │ │ │ │ ├── bytes_appengine.go │ │ │ │ ├── clock.go │ │ │ │ ├── config.go │ │ │ │ ├── encoding.go │ │ │ │ ├── entry_not_found_error.go │ │ │ │ ├── fnv.go │ │ │ │ ├── hash.go │ │ │ │ ├── iterator.go │ │ │ │ ├── logger.go │ │ │ │ ├── queue │ │ │ │ └── bytes_queue.go │ │ │ │ ├── shard.go │ │ │ │ ├── stats.go │ │ │ │ └── utils.go │ │ ├── aws │ │ │ └── aws-sdk-go │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── NOTICE.txt │ │ │ │ ├── aws │ │ │ │ ├── awserr │ │ │ │ │ ├── error.go │ │ │ │ │ └── types.go │ │ │ │ ├── awsutil │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── path_value.go │ │ │ │ │ ├── prettify.go │ │ │ │ │ └── string_value.go │ │ │ │ ├── client │ │ │ │ │ ├── client.go │ │ │ │ │ ├── default_retryer.go │ │ │ │ │ └── metadata │ │ │ │ │ │ └── client_info.go │ │ │ │ ├── config.go │ │ │ │ ├── convert_types.go │ │ │ │ ├── corehandlers │ │ │ │ │ ├── handlers.go │ │ │ │ │ └── param_validator.go │ │ │ │ ├── credentials │ │ │ │ │ ├── chain_provider.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── ec2rolecreds │ │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ │ ├── endpointcreds │ │ │ │ │ │ └── provider.go │ │ │ │ │ ├── env_provider.go │ │ │ │ │ ├── example.ini │ │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ │ ├── static_provider.go │ │ │ │ │ └── stscreds │ │ │ │ │ │ └── assume_role_provider.go │ │ │ │ ├── defaults │ │ │ │ │ └── defaults.go │ │ │ │ ├── ec2metadata │ │ │ │ │ ├── api.go │ │ │ │ │ └── service.go │ │ │ │ ├── endpoints │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── v3model.go │ │ │ │ │ └── v3model_codegen.go │ │ │ │ ├── errors.go │ │ │ │ ├── logger.go │ │ │ │ ├── request │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── http_request.go │ │ │ │ │ ├── offset_reader.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── request_1_7.go │ │ │ │ │ ├── request_1_8.go │ │ │ │ │ ├── request_pagination.go │ │ │ │ │ ├── retryer.go │ │ │ │ │ └── validation.go │ │ │ │ ├── session │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── signer │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── uri_path.go │ │ │ │ │ │ └── v4.go │ │ │ │ ├── types.go │ │ │ │ └── version.go │ │ │ │ ├── private │ │ │ │ ├── protocol │ │ │ │ │ ├── idempotency.go │ │ │ │ │ ├── query │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── queryutil │ │ │ │ │ │ │ └── queryutil.go │ │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ │ └── unmarshal_error.go │ │ │ │ │ ├── rest │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── payload.go │ │ │ │ │ │ └── unmarshal.go │ │ │ │ │ ├── restxml │ │ │ │ │ │ └── restxml.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── xml │ │ │ │ │ │ └── xmlutil │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ │ └── xml_to_struct.go │ │ │ │ └── waiter │ │ │ │ │ └── waiter.go │ │ │ │ └── service │ │ │ │ ├── cloudfront │ │ │ │ └── sign │ │ │ │ │ ├── policy.go │ │ │ │ │ ├── privkey.go │ │ │ │ │ ├── randomreader.go │ │ │ │ │ ├── sign_cookie.go │ │ │ │ │ └── sign_url.go │ │ │ │ ├── s3 │ │ │ │ ├── api.go │ │ │ │ ├── bucket_location.go │ │ │ │ ├── content_md5.go │ │ │ │ ├── customizations.go │ │ │ │ ├── host_style_bucket.go │ │ │ │ ├── platform_handlers.go │ │ │ │ ├── platform_handlers_go1.6.go │ │ │ │ ├── service.go │ │ │ │ ├── sse.go │ │ │ │ ├── statusok_error.go │ │ │ │ ├── unmarshal_error.go │ │ │ │ └── waiters.go │ │ │ │ └── sts │ │ │ │ ├── api.go │ │ │ │ ├── customizations.go │ │ │ │ └── service.go │ │ ├── bshuster-repo │ │ │ └── logrus-logstash-hook │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── logstash.go │ │ │ │ └── logstash_formatter.go │ │ ├── bugsnag │ │ │ ├── bugsnag-go │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── appengine.go │ │ │ │ ├── bugsnag.go │ │ │ │ ├── configuration.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors │ │ │ │ │ ├── README.md │ │ │ │ │ ├── error.go │ │ │ │ │ ├── parse_panic.go │ │ │ │ │ └── stackframe.go │ │ │ │ ├── event.go │ │ │ │ ├── json_tags.go │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── notifier.go │ │ │ │ ├── panicwrap.go │ │ │ │ └── payload.go │ │ │ ├── osext │ │ │ │ ├── LICENSE │ │ │ │ ├── osext.go │ │ │ │ ├── osext_plan9.go │ │ │ │ ├── osext_procfs.go │ │ │ │ ├── osext_sysctl.go │ │ │ │ └── osext_windows.go │ │ │ └── panicwrap │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dup2.go │ │ │ │ ├── dup3.go │ │ │ │ ├── monitor.go │ │ │ │ ├── monitor_windows.go │ │ │ │ └── panicwrap.go │ │ ├── deckarep │ │ │ └── golang-set │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── iterator.go │ │ │ │ ├── set.go │ │ │ │ ├── threadsafe.go │ │ │ │ └── threadunsafe.go │ │ ├── denverdino │ │ │ └── aliyungo │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── common │ │ │ │ ├── client.go │ │ │ │ ├── regions.go │ │ │ │ ├── request.go │ │ │ │ ├── types.go │ │ │ │ └── version.go │ │ │ │ ├── oss │ │ │ │ ├── client.go │ │ │ │ ├── export.go │ │ │ │ ├── multi.go │ │ │ │ ├── regions.go │ │ │ │ └── signature.go │ │ │ │ └── util │ │ │ │ ├── attempt.go │ │ │ │ ├── encoding.go │ │ │ │ ├── iso6801.go │ │ │ │ ├── signature.go │ │ │ │ └── util.go │ │ ├── docker │ │ │ ├── goamz │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── aws │ │ │ │ │ ├── attempt.go │ │ │ │ │ ├── aws.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── regions.go │ │ │ │ │ ├── retry.go │ │ │ │ │ └── sign.go │ │ │ │ └── s3 │ │ │ │ │ ├── lifecycle.go │ │ │ │ │ ├── multi.go │ │ │ │ │ ├── s3.go │ │ │ │ │ └── sign.go │ │ │ └── libtrust │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── README.md │ │ │ │ ├── certificates.go │ │ │ │ ├── doc.go │ │ │ │ ├── ec_key.go │ │ │ │ ├── filter.go │ │ │ │ ├── hash.go │ │ │ │ ├── jsonsign.go │ │ │ │ ├── key.go │ │ │ │ ├── key_files.go │ │ │ │ ├── key_manager.go │ │ │ │ ├── rsa_key.go │ │ │ │ └── util.go │ │ ├── garyburd │ │ │ └── redigo │ │ │ │ ├── internal │ │ │ │ └── commandinfo.go │ │ │ │ └── redis │ │ │ │ ├── conn.go │ │ │ │ ├── doc.go │ │ │ │ ├── log.go │ │ │ │ ├── pool.go │ │ │ │ ├── pubsub.go │ │ │ │ ├── redis.go │ │ │ │ ├── reply.go │ │ │ │ ├── scan.go │ │ │ │ └── script.go │ │ ├── go-ini │ │ │ └── ini │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── README_ZH.md │ │ │ │ ├── error.go │ │ │ │ ├── ini.go │ │ │ │ ├── key.go │ │ │ │ ├── parser.go │ │ │ │ ├── section.go │ │ │ │ └── struct.go │ │ ├── go-redis │ │ │ └── redis │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── cluster.go │ │ │ │ ├── cluster_commands.go │ │ │ │ ├── command.go │ │ │ │ ├── commands.go │ │ │ │ ├── doc.go │ │ │ │ ├── internal │ │ │ │ ├── consistenthash │ │ │ │ │ └── consistenthash.go │ │ │ │ ├── error.go │ │ │ │ ├── hashtag │ │ │ │ │ └── hashtag.go │ │ │ │ ├── internal.go │ │ │ │ ├── log.go │ │ │ │ ├── once.go │ │ │ │ ├── pool │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── pool.go │ │ │ │ │ ├── pool_single.go │ │ │ │ │ └── pool_sticky.go │ │ │ │ ├── proto │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── scan.go │ │ │ │ │ └── writer.go │ │ │ │ ├── util.go │ │ │ │ └── util │ │ │ │ │ ├── safe.go │ │ │ │ │ ├── strconv.go │ │ │ │ │ └── unsafe.go │ │ │ │ ├── iterator.go │ │ │ │ ├── options.go │ │ │ │ ├── pipeline.go │ │ │ │ ├── pubsub.go │ │ │ │ ├── redis.go │ │ │ │ ├── result.go │ │ │ │ ├── ring.go │ │ │ │ ├── script.go │ │ │ │ ├── sentinel.go │ │ │ │ ├── tx.go │ │ │ │ └── universal.go │ │ ├── golang │ │ │ ├── groupcache │ │ │ │ ├── LICENSE │ │ │ │ └── lru │ │ │ │ │ └── lru.go │ │ │ └── protobuf │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── jsonpb │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ └── json.go │ │ │ │ ├── proto │ │ │ │ ├── buffer.go │ │ │ │ ├── defaults.go │ │ │ │ ├── deprecated.go │ │ │ │ ├── discard.go │ │ │ │ ├── extensions.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto.go │ │ │ │ ├── registry.go │ │ │ │ ├── text_decode.go │ │ │ │ ├── text_encode.go │ │ │ │ ├── wire.go │ │ │ │ └── wrappers.go │ │ │ │ └── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ └── any.pb.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ └── duration.pb.go │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp │ │ │ │ └── timestamp.pb.go │ │ ├── gomodule │ │ │ └── redigo │ │ │ │ ├── LICENSE │ │ │ │ └── redis │ │ │ │ ├── commandinfo.go │ │ │ │ ├── conn.go │ │ │ │ ├── doc.go │ │ │ │ ├── log.go │ │ │ │ ├── pool.go │ │ │ │ ├── pubsub.go │ │ │ │ ├── redis.go │ │ │ │ ├── reflect.go │ │ │ │ ├── reflect_go117.go │ │ │ │ ├── reflect_go118.go │ │ │ │ ├── reply.go │ │ │ │ ├── scan.go │ │ │ │ └── script.go │ │ ├── google │ │ │ ├── btree │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── btree.go │ │ │ ├── s2a-go │ │ │ │ ├── .gitignore │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── fallback │ │ │ │ │ └── s2a_fallback.go │ │ │ │ ├── internal │ │ │ │ │ ├── authinfo │ │ │ │ │ │ └── authinfo.go │ │ │ │ │ ├── handshaker │ │ │ │ │ │ ├── handshaker.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── service.go │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── common_go_proto │ │ │ │ │ │ │ └── common.pb.go │ │ │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ │ ├── s2a_go_proto │ │ │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── common_go_proto │ │ │ │ │ │ │ └── common.pb.go │ │ │ │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ │ │ └── s2a_go_proto │ │ │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ │ ├── record │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── aeadcrypter │ │ │ │ │ │ │ │ ├── aeadcrypter.go │ │ │ │ │ │ │ │ ├── aesgcm.go │ │ │ │ │ │ │ │ ├── chachapoly.go │ │ │ │ │ │ │ │ └── common.go │ │ │ │ │ │ │ └── halfconn │ │ │ │ │ │ │ │ ├── ciphersuite.go │ │ │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ │ │ ├── expander.go │ │ │ │ │ │ │ │ └── halfconn.go │ │ │ │ │ │ ├── record.go │ │ │ │ │ │ └── ticketsender.go │ │ │ │ │ ├── tokenmanager │ │ │ │ │ │ └── tokenmanager.go │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── certverifier │ │ │ │ │ │ ├── certverifier.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── client_intermediate_cert.der │ │ │ │ │ │ │ ├── client_leaf_cert.der │ │ │ │ │ │ │ ├── client_root_cert.der │ │ │ │ │ │ │ ├── server_intermediate_cert.der │ │ │ │ │ │ │ ├── server_leaf_cert.der │ │ │ │ │ │ │ └── server_root_cert.der │ │ │ │ │ │ ├── remotesigner │ │ │ │ │ │ ├── remotesigner.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── client_cert.der │ │ │ │ │ │ │ ├── client_cert.pem │ │ │ │ │ │ │ ├── client_key.pem │ │ │ │ │ │ │ ├── server_cert.der │ │ │ │ │ │ │ ├── server_cert.pem │ │ │ │ │ │ │ └── server_key.pem │ │ │ │ │ │ ├── s2av2.go │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── client_cert.pem │ │ │ │ │ │ ├── client_key.pem │ │ │ │ │ │ ├── server_cert.pem │ │ │ │ │ │ └── server_key.pem │ │ │ │ │ │ └── tlsconfigstore │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── client_cert.pem │ │ │ │ │ │ ├── client_key.pem │ │ │ │ │ │ ├── server_cert.pem │ │ │ │ │ │ └── server_key.pem │ │ │ │ │ │ └── tlsconfigstore.go │ │ │ │ ├── retry │ │ │ │ │ └── retry.go │ │ │ │ ├── s2a.go │ │ │ │ ├── s2a_options.go │ │ │ │ ├── s2a_utils.go │ │ │ │ ├── stream │ │ │ │ │ └── s2a_stream.go │ │ │ │ └── testdata │ │ │ │ │ ├── client_cert.pem │ │ │ │ │ ├── client_key.pem │ │ │ │ │ ├── mds_client_cert.pem │ │ │ │ │ ├── mds_client_key.pem │ │ │ │ │ ├── mds_root_cert.pem │ │ │ │ │ ├── mds_server_cert.pem │ │ │ │ │ ├── mds_server_key.pem │ │ │ │ │ ├── self_signed_cert.pem │ │ │ │ │ ├── self_signed_key.pem │ │ │ │ │ ├── server_cert.pem │ │ │ │ │ └── server_key.pem │ │ │ └── uuid │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dce.go │ │ │ │ ├── doc.go │ │ │ │ ├── hash.go │ │ │ │ ├── marshal.go │ │ │ │ ├── node.go │ │ │ │ ├── node_js.go │ │ │ │ ├── node_net.go │ │ │ │ ├── null.go │ │ │ │ ├── sql.go │ │ │ │ ├── time.go │ │ │ │ ├── util.go │ │ │ │ ├── uuid.go │ │ │ │ ├── version1.go │ │ │ │ └── version4.go │ │ ├── googleapis │ │ │ ├── enterprise-certificate-proxy │ │ │ │ ├── LICENSE │ │ │ │ └── client │ │ │ │ │ ├── client.go │ │ │ │ │ └── util │ │ │ │ │ └── util.go │ │ │ └── gax-go │ │ │ │ └── v2 │ │ │ │ ├── .release-please-manifest.json │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE │ │ │ │ ├── apierror │ │ │ │ ├── apierror.go │ │ │ │ └── internal │ │ │ │ │ └── proto │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom_error.pb.go │ │ │ │ │ ├── custom_error.proto │ │ │ │ │ ├── error.pb.go │ │ │ │ │ └── error.proto │ │ │ │ ├── call_option.go │ │ │ │ ├── callctx │ │ │ │ └── callctx.go │ │ │ │ ├── content_type.go │ │ │ │ ├── gax.go │ │ │ │ ├── header.go │ │ │ │ ├── internal │ │ │ │ └── version.go │ │ │ │ ├── invoke.go │ │ │ │ ├── proto_json_stream.go │ │ │ │ └── release-please-config.json │ │ ├── gorilla │ │ │ ├── context │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── context.go │ │ │ │ └── doc.go │ │ │ ├── handlers │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── canonical.go │ │ │ │ ├── compress.go │ │ │ │ ├── doc.go │ │ │ │ ├── handlers.go │ │ │ │ └── proxy_headers.go │ │ │ └── mux │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── context_gorilla.go │ │ │ │ ├── context_native.go │ │ │ │ ├── doc.go │ │ │ │ ├── mux.go │ │ │ │ ├── regexp.go │ │ │ │ └── route.go │ │ ├── inconshreveable │ │ │ └── mousetrap │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── trap_others.go │ │ │ │ ├── trap_windows.go │ │ │ │ └── trap_windows_1.4.go │ │ ├── jmespath │ │ │ └── go-jmespath │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── api.go │ │ │ │ ├── astnodetype_string.go │ │ │ │ ├── functions.go │ │ │ │ ├── interpreter.go │ │ │ │ ├── lexer.go │ │ │ │ ├── parser.go │ │ │ │ ├── toktype_string.go │ │ │ │ └── util.go │ │ ├── klauspost │ │ │ ├── compress │ │ │ │ ├── LICENSE │ │ │ │ └── flate │ │ │ │ │ ├── deflate.go │ │ │ │ │ ├── dict_decoder.go │ │ │ │ │ ├── fast_encoder.go │ │ │ │ │ ├── huffman_bit_writer.go │ │ │ │ │ ├── huffman_code.go │ │ │ │ │ ├── huffman_sortByFreq.go │ │ │ │ │ ├── huffman_sortByLiteral.go │ │ │ │ │ ├── inflate.go │ │ │ │ │ ├── inflate_gen.go │ │ │ │ │ ├── level1.go │ │ │ │ │ ├── level2.go │ │ │ │ │ ├── level3.go │ │ │ │ │ ├── level4.go │ │ │ │ │ ├── level5.go │ │ │ │ │ ├── level6.go │ │ │ │ │ ├── matchlen_amd64.go │ │ │ │ │ ├── matchlen_amd64.s │ │ │ │ │ ├── matchlen_generic.go │ │ │ │ │ ├── regmask_amd64.go │ │ │ │ │ ├── regmask_other.go │ │ │ │ │ ├── stateless.go │ │ │ │ │ └── token.go │ │ │ └── pgzip │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── GO_LICENSE │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── gunzip.go │ │ │ │ └── gzip.go │ │ ├── kr │ │ │ ├── pretty │ │ │ │ ├── .gitignore │ │ │ │ ├── License │ │ │ │ ├── Readme │ │ │ │ ├── diff.go │ │ │ │ ├── formatter.go │ │ │ │ ├── pretty.go │ │ │ │ └── zero.go │ │ │ └── text │ │ │ │ ├── License │ │ │ │ ├── Readme │ │ │ │ ├── doc.go │ │ │ │ ├── indent.go │ │ │ │ └── wrap.go │ │ ├── mitchellh │ │ │ └── mapstructure │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── decode_hooks.go │ │ │ │ ├── error.go │ │ │ │ └── mapstructure.go │ │ ├── ncw │ │ │ └── swift │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ ├── auth.go │ │ │ │ ├── auth_v3.go │ │ │ │ ├── compatibility_1_0.go │ │ │ │ ├── compatibility_1_1.go │ │ │ │ ├── doc.go │ │ │ │ ├── meta.go │ │ │ │ ├── notes.txt │ │ │ │ ├── swift.go │ │ │ │ ├── swifttest │ │ │ │ └── server.go │ │ │ │ ├── timeout_reader.go │ │ │ │ └── watchdog_reader.go │ │ ├── nnzhaocs │ │ │ └── consistenthash_sha256 │ │ │ │ ├── consistent_sha256.py │ │ │ │ ├── consistenthash_sha256.go │ │ │ │ └── test.go │ │ ├── opencontainers │ │ │ └── go-digest │ │ │ │ ├── .mailmap │ │ │ │ ├── .pullapprove.yml │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE.docs │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── README.md │ │ │ │ ├── algorithm.go │ │ │ │ ├── digest.go │ │ │ │ ├── digester.go │ │ │ │ ├── doc.go │ │ │ │ └── verifiers.go │ │ ├── panjf2000 │ │ │ └── ants │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── README_ZH.md │ │ │ │ ├── ants.go │ │ │ │ ├── pool.go │ │ │ │ ├── pool_func.go │ │ │ │ ├── worker.go │ │ │ │ └── worker_func.go │ │ ├── peterbourgon │ │ │ └── diskv │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── compression.go │ │ │ │ ├── diskv.go │ │ │ │ └── index.go │ │ ├── pierrec │ │ │ └── lz4 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── block.go │ │ │ │ ├── debug.go │ │ │ │ ├── debug_stub.go │ │ │ │ ├── decode_amd64.go │ │ │ │ ├── decode_amd64.s │ │ │ │ ├── decode_other.go │ │ │ │ ├── errors.go │ │ │ │ ├── internal │ │ │ │ └── xxh32 │ │ │ │ │ └── xxh32zero.go │ │ │ │ ├── lz4.go │ │ │ │ ├── lz4_go1.10.go │ │ │ │ ├── lz4_notgo1.10.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_legacy.go │ │ │ │ ├── writer.go │ │ │ │ └── writer_legacy.go │ │ ├── rogpeppe │ │ │ └── go-internal │ │ │ │ ├── LICENSE │ │ │ │ └── fmtsort │ │ │ │ ├── mapelem.go │ │ │ │ ├── mapelem_1.11.go │ │ │ │ └── sort.go │ │ ├── spf13 │ │ │ ├── cobra │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── .mailmap │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── args.go │ │ │ │ ├── bash_completions.go │ │ │ │ ├── bash_completions.md │ │ │ │ ├── bash_completionsV2.go │ │ │ │ ├── cobra.go │ │ │ │ ├── command.go │ │ │ │ ├── command_notwin.go │ │ │ │ ├── command_win.go │ │ │ │ ├── completions.go │ │ │ │ ├── fish_completions.go │ │ │ │ ├── fish_completions.md │ │ │ │ ├── powershell_completions.go │ │ │ │ ├── powershell_completions.md │ │ │ │ ├── projects_using_cobra.md │ │ │ │ ├── shell_completions.go │ │ │ │ ├── shell_completions.md │ │ │ │ ├── user_guide.md │ │ │ │ ├── zsh_completions.go │ │ │ │ └── zsh_completions.md │ │ │ └── pflag │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bool.go │ │ │ │ ├── bool_slice.go │ │ │ │ ├── bytes.go │ │ │ │ ├── count.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration_slice.go │ │ │ │ ├── flag.go │ │ │ │ ├── float32.go │ │ │ │ ├── float32_slice.go │ │ │ │ ├── float64.go │ │ │ │ ├── float64_slice.go │ │ │ │ ├── golangflag.go │ │ │ │ ├── int.go │ │ │ │ ├── int16.go │ │ │ │ ├── int32.go │ │ │ │ ├── int32_slice.go │ │ │ │ ├── int64.go │ │ │ │ ├── int64_slice.go │ │ │ │ ├── int8.go │ │ │ │ ├── int_slice.go │ │ │ │ ├── ip.go │ │ │ │ ├── ip_slice.go │ │ │ │ ├── ipmask.go │ │ │ │ ├── ipnet.go │ │ │ │ ├── string.go │ │ │ │ ├── string_array.go │ │ │ │ ├── string_slice.go │ │ │ │ ├── string_to_int.go │ │ │ │ ├── string_to_int64.go │ │ │ │ ├── string_to_string.go │ │ │ │ ├── uint.go │ │ │ │ ├── uint16.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uint64.go │ │ │ │ ├── uint8.go │ │ │ │ └── uint_slice.go │ │ ├── stevvooe │ │ │ └── resumable │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── resumable.go │ │ │ │ ├── sha256 │ │ │ │ ├── resume.go │ │ │ │ ├── sha256.go │ │ │ │ ├── sha256block.go │ │ │ │ ├── sha256block_386.s │ │ │ │ ├── sha256block_amd64.s │ │ │ │ └── sha256block_decl.go │ │ │ │ └── sha512 │ │ │ │ ├── resume.go │ │ │ │ ├── sha512.go │ │ │ │ ├── sha512block.go │ │ │ │ ├── sha512block_amd64.s │ │ │ │ └── sha512block_decl.go │ │ ├── xenolf │ │ │ └── lego │ │ │ │ ├── LICENSE │ │ │ │ └── acme │ │ │ │ ├── commons.go │ │ │ │ └── errors.go │ │ └── yvasiyarov │ │ │ ├── go-metrics │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── counter.go │ │ │ ├── debug.go │ │ │ ├── ewma.go │ │ │ ├── gauge.go │ │ │ ├── gauge_float64.go │ │ │ ├── graphite.go │ │ │ ├── healthcheck.go │ │ │ ├── histogram.go │ │ │ ├── json.go │ │ │ ├── log.go │ │ │ ├── memory.md │ │ │ ├── meter.go │ │ │ ├── metrics.go │ │ │ ├── opentsdb.go │ │ │ ├── registry.go │ │ │ ├── runtime.go │ │ │ ├── runtime_cgo.go │ │ │ ├── runtime_no_cgo.go │ │ │ ├── sample.go │ │ │ ├── syslog.go │ │ │ ├── timer.go │ │ │ └── writer.go │ │ │ ├── gorelic │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── agent.go │ │ │ ├── doc.go │ │ │ ├── gc_metrics.go │ │ │ ├── gometrica.go │ │ │ ├── http_metrics.go │ │ │ ├── memory_metrics.go │ │ │ ├── nut.json │ │ │ └── runtime_metrics.go │ │ │ └── newrelic_platform_go │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── agent.go │ │ │ ├── component.go │ │ │ ├── doc.go │ │ │ ├── metrica.go │ │ │ ├── nut.json │ │ │ └── plugin.go │ ├── go.opencensus.io │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── internal │ │ │ ├── internal.go │ │ │ ├── sanitize.go │ │ │ ├── tagencoding │ │ │ │ └── tagencoding.go │ │ │ └── traceinternals.go │ │ ├── metric │ │ │ ├── metricdata │ │ │ │ ├── doc.go │ │ │ │ ├── exemplar.go │ │ │ │ ├── label.go │ │ │ │ ├── metric.go │ │ │ │ ├── point.go │ │ │ │ ├── type_string.go │ │ │ │ └── unit.go │ │ │ └── metricproducer │ │ │ │ ├── manager.go │ │ │ │ └── producer.go │ │ ├── opencensus.go │ │ ├── plugin │ │ │ ├── ocgrpc │ │ │ │ ├── client.go │ │ │ │ ├── client_metrics.go │ │ │ │ ├── client_stats_handler.go │ │ │ │ ├── doc.go │ │ │ │ ├── server.go │ │ │ │ ├── server_metrics.go │ │ │ │ ├── server_stats_handler.go │ │ │ │ ├── stats_common.go │ │ │ │ └── trace_common.go │ │ │ └── ochttp │ │ │ │ ├── client.go │ │ │ │ ├── client_stats.go │ │ │ │ ├── doc.go │ │ │ │ ├── propagation │ │ │ │ └── b3 │ │ │ │ │ └── b3.go │ │ │ │ ├── route.go │ │ │ │ ├── server.go │ │ │ │ ├── span_annotating_client_trace.go │ │ │ │ ├── stats.go │ │ │ │ ├── trace.go │ │ │ │ └── wrapped_body.go │ │ ├── resource │ │ │ └── resource.go │ │ ├── stats │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ │ └── record.go │ │ │ ├── measure.go │ │ │ ├── measure_float64.go │ │ │ ├── measure_int64.go │ │ │ ├── record.go │ │ │ ├── units.go │ │ │ └── view │ │ │ │ ├── aggregation.go │ │ │ │ ├── aggregation_data.go │ │ │ │ ├── collector.go │ │ │ │ ├── doc.go │ │ │ │ ├── export.go │ │ │ │ ├── view.go │ │ │ │ ├── view_to_metric.go │ │ │ │ ├── worker.go │ │ │ │ └── worker_commands.go │ │ ├── tag │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ ├── map.go │ │ │ ├── map_codec.go │ │ │ ├── metadata.go │ │ │ ├── profile_19.go │ │ │ ├── profile_not19.go │ │ │ └── validate.go │ │ └── trace │ │ │ ├── basetypes.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── evictedqueue.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ └── internal.go │ │ │ ├── lrumap.go │ │ │ ├── propagation │ │ │ └── propagation.go │ │ │ ├── sampling.go │ │ │ ├── spanbucket.go │ │ │ ├── spanstore.go │ │ │ ├── status_codes.go │ │ │ ├── trace.go │ │ │ ├── trace_api.go │ │ │ ├── trace_go11.go │ │ │ ├── trace_nongo11.go │ │ │ └── tracestate │ │ │ └── tracestate.go │ ├── golang.org │ │ └── x │ │ │ ├── crypto │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── bcrypt │ │ │ │ ├── base64.go │ │ │ │ └── bcrypt.go │ │ │ ├── blowfish │ │ │ │ ├── block.go │ │ │ │ ├── cipher.go │ │ │ │ └── const.go │ │ │ ├── chacha20 │ │ │ │ ├── chacha_arm64.go │ │ │ │ ├── chacha_arm64.s │ │ │ │ ├── chacha_generic.go │ │ │ │ ├── chacha_noasm.go │ │ │ │ ├── chacha_ppc64le.go │ │ │ │ ├── chacha_ppc64le.s │ │ │ │ ├── chacha_s390x.go │ │ │ │ ├── chacha_s390x.s │ │ │ │ └── xor.go │ │ │ ├── chacha20poly1305 │ │ │ │ ├── chacha20poly1305.go │ │ │ │ ├── chacha20poly1305_amd64.go │ │ │ │ ├── chacha20poly1305_amd64.s │ │ │ │ ├── chacha20poly1305_generic.go │ │ │ │ ├── chacha20poly1305_noasm.go │ │ │ │ └── xchacha20poly1305.go │ │ │ ├── cryptobyte │ │ │ │ ├── asn1.go │ │ │ │ ├── asn1 │ │ │ │ │ └── asn1.go │ │ │ │ ├── builder.go │ │ │ │ └── string.go │ │ │ ├── hkdf │ │ │ │ └── hkdf.go │ │ │ └── internal │ │ │ │ ├── alias │ │ │ │ ├── alias.go │ │ │ │ └── alias_purego.go │ │ │ │ └── poly1305 │ │ │ │ ├── bits_compat.go │ │ │ │ ├── bits_go1.13.go │ │ │ │ ├── mac_noasm.go │ │ │ │ ├── poly1305.go │ │ │ │ ├── sum_amd64.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_generic.go │ │ │ │ ├── sum_ppc64le.go │ │ │ │ ├── sum_ppc64le.s │ │ │ │ ├── sum_s390x.go │ │ │ │ └── sum_s390x.s │ │ │ ├── net │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ ├── go17.go │ │ │ │ ├── go19.go │ │ │ │ ├── pre_go17.go │ │ │ │ └── pre_go19.go │ │ │ ├── http │ │ │ │ └── httpguts │ │ │ │ │ ├── guts.go │ │ │ │ │ └── httplex.go │ │ │ ├── http2 │ │ │ │ ├── .gitignore │ │ │ │ ├── ascii.go │ │ │ │ ├── ciphers.go │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── databuffer.go │ │ │ │ ├── errors.go │ │ │ │ ├── flow.go │ │ │ │ ├── frame.go │ │ │ │ ├── gotrack.go │ │ │ │ ├── headermap.go │ │ │ │ ├── hpack │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── hpack.go │ │ │ │ │ ├── huffman.go │ │ │ │ │ ├── static_table.go │ │ │ │ │ └── tables.go │ │ │ │ ├── http2.go │ │ │ │ ├── pipe.go │ │ │ │ ├── server.go │ │ │ │ ├── transport.go │ │ │ │ ├── write.go │ │ │ │ ├── writesched.go │ │ │ │ ├── writesched_priority.go │ │ │ │ ├── writesched_random.go │ │ │ │ └── writesched_roundrobin.go │ │ │ ├── idna │ │ │ │ ├── go118.go │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── pre_go118.go │ │ │ │ ├── punycode.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ ├── trie12.0.0.go │ │ │ │ ├── trie13.0.0.go │ │ │ │ └── trieval.go │ │ │ ├── internal │ │ │ │ └── timeseries │ │ │ │ │ └── timeseries.go │ │ │ └── trace │ │ │ │ ├── events.go │ │ │ │ ├── histogram.go │ │ │ │ └── trace.go │ │ │ ├── oauth2 │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── authhandler │ │ │ │ └── authhandler.go │ │ │ ├── deviceauth.go │ │ │ ├── google │ │ │ │ ├── appengine.go │ │ │ │ ├── appengine_gen1.go │ │ │ │ ├── appengine_gen2_flex.go │ │ │ │ ├── default.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── google.go │ │ │ │ ├── internal │ │ │ │ │ ├── externalaccount │ │ │ │ │ │ ├── aws.go │ │ │ │ │ │ ├── basecredentials.go │ │ │ │ │ │ ├── err.go │ │ │ │ │ │ ├── executablecredsource.go │ │ │ │ │ │ ├── filecredsource.go │ │ │ │ │ │ ├── header.go │ │ │ │ │ │ ├── impersonate.go │ │ │ │ │ │ └── urlcredsource.go │ │ │ │ │ ├── externalaccountauthorizeduser │ │ │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ │ │ └── stsexchange │ │ │ │ │ │ ├── clientauth.go │ │ │ │ │ │ └── sts_exchange.go │ │ │ │ ├── jwt.go │ │ │ │ └── sdk.go │ │ │ ├── internal │ │ │ │ ├── client_appengine.go │ │ │ │ ├── doc.go │ │ │ │ ├── oauth2.go │ │ │ │ ├── token.go │ │ │ │ └── transport.go │ │ │ ├── jws │ │ │ │ └── jws.go │ │ │ ├── jwt │ │ │ │ └── jwt.go │ │ │ ├── oauth2.go │ │ │ ├── pkce.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ │ ├── sync │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── semaphore │ │ │ │ └── semaphore.go │ │ │ ├── sys │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── cpu │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ ├── byteorder.go │ │ │ │ ├── cpu.go │ │ │ │ ├── cpu_aix.go │ │ │ │ ├── cpu_arm.go │ │ │ │ ├── cpu_arm64.go │ │ │ │ ├── cpu_arm64.s │ │ │ │ ├── cpu_gc_arm64.go │ │ │ │ ├── cpu_gc_s390x.go │ │ │ │ ├── cpu_gc_x86.go │ │ │ │ ├── cpu_gccgo_arm64.go │ │ │ │ ├── cpu_gccgo_s390x.go │ │ │ │ ├── cpu_gccgo_x86.c │ │ │ │ ├── cpu_gccgo_x86.go │ │ │ │ ├── cpu_linux.go │ │ │ │ ├── cpu_linux_arm.go │ │ │ │ ├── cpu_linux_arm64.go │ │ │ │ ├── cpu_linux_mips64x.go │ │ │ │ ├── cpu_linux_noinit.go │ │ │ │ ├── cpu_linux_ppc64x.go │ │ │ │ ├── cpu_linux_s390x.go │ │ │ │ ├── cpu_loong64.go │ │ │ │ ├── cpu_mips64x.go │ │ │ │ ├── cpu_mipsx.go │ │ │ │ ├── cpu_netbsd_arm64.go │ │ │ │ ├── cpu_openbsd_arm64.go │ │ │ │ ├── cpu_openbsd_arm64.s │ │ │ │ ├── cpu_other_arm.go │ │ │ │ ├── cpu_other_arm64.go │ │ │ │ ├── cpu_other_mips64x.go │ │ │ │ ├── cpu_other_ppc64x.go │ │ │ │ ├── cpu_other_riscv64.go │ │ │ │ ├── cpu_ppc64x.go │ │ │ │ ├── cpu_riscv64.go │ │ │ │ ├── cpu_s390x.go │ │ │ │ ├── cpu_s390x.s │ │ │ │ ├── cpu_wasm.go │ │ │ │ ├── cpu_x86.go │ │ │ │ ├── cpu_x86.s │ │ │ │ ├── cpu_zos.go │ │ │ │ ├── cpu_zos_s390x.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── hwcap_linux.go │ │ │ │ ├── parse.go │ │ │ │ ├── proc_cpuinfo_linux.go │ │ │ │ ├── runtime_auxv.go │ │ │ │ ├── runtime_auxv_go121.go │ │ │ │ ├── syscall_aix_gccgo.go │ │ │ │ └── syscall_aix_ppc64_gc.go │ │ │ ├── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── affinity_linux.go │ │ │ │ ├── aliases.go │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ ├── asm_bsd_386.s │ │ │ │ ├── asm_bsd_amd64.s │ │ │ │ ├── asm_bsd_arm.s │ │ │ │ ├── asm_bsd_arm64.s │ │ │ │ ├── asm_bsd_ppc64.s │ │ │ │ ├── asm_bsd_riscv64.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_loong64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_riscv64.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_openbsd_mips64.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── asm_zos_s390x.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_openbsd.go │ │ │ │ ├── dev_zos.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── epoll_zos.go │ │ │ │ ├── fcntl.go │ │ │ │ ├── fcntl_darwin.go │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ ├── fdset.go │ │ │ │ ├── fstatfs_zos.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── ifreq_linux.go │ │ │ │ ├── ioctl_linux.go │ │ │ │ ├── ioctl_signed.go │ │ │ │ ├── ioctl_unsigned.go │ │ │ │ ├── ioctl_zos.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mmap_nomremap.go │ │ │ │ ├── mremap.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── pledge_openbsd.go │ │ │ │ ├── ptrace_darwin.go │ │ │ │ ├── ptrace_ios.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── readdirent_getdents.go │ │ │ │ ├── readdirent_getdirentries.go │ │ │ │ ├── sockcmsg_dragonfly.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── sockcmsg_unix_other.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_aix.go │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_darwin_libSystem.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_arm64.go │ │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ │ ├── syscall_hurd.go │ │ │ │ ├── syscall_hurd_386.go │ │ │ │ ├── syscall_illumos.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_alarm.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ ├── syscall_linux_gc_arm.go │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ ├── syscall_linux_loong64.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_netbsd_arm64.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_openbsd_arm64.go │ │ │ │ ├── syscall_openbsd_libc.go │ │ │ │ ├── syscall_openbsd_mips64.go │ │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ ├── syscall_zos_s390x.go │ │ │ │ ├── sysvshm_linux.go │ │ │ │ ├── sysvshm_unix.go │ │ │ │ ├── sysvshm_unix_other.go │ │ │ │ ├── timestruct.go │ │ │ │ ├── unveil_openbsd.go │ │ │ │ ├── xattr_bsd.go │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ │ ├── zerrors_linux.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_loong64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zerrors_zos_s390x.go │ │ │ │ ├── zptrace_armnn_linux.go │ │ │ │ ├── zptrace_linux_arm64.go │ │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ │ ├── zptrace_x86_linux.go │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ │ ├── zsyscall_linux.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_loong64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_386.s │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsyscall_zos_s390x.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_loong64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ │ ├── zsysnum_zos_s390x.go │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ │ ├── ztypes_linux.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_loong64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ │ ├── ztypes_solaris_amd64.go │ │ │ │ └── ztypes_zos_s390x.go │ │ │ └── windows │ │ │ │ ├── aliases.go │ │ │ │ ├── dll_windows.go │ │ │ │ ├── empty.s │ │ │ │ ├── env_windows.go │ │ │ │ ├── eventlog.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── memory_windows.go │ │ │ │ ├── mkerrors.bash │ │ │ │ ├── mkknownfolderids.bash │ │ │ │ ├── mksyscall.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── security_windows.go │ │ │ │ ├── service.go │ │ │ │ ├── setupapi_windows.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── types_windows_386.go │ │ │ │ ├── types_windows_amd64.go │ │ │ │ ├── types_windows_arm.go │ │ │ │ ├── types_windows_arm64.go │ │ │ │ ├── zerrors_windows.go │ │ │ │ ├── zknownfolderids_windows.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── text │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── secure │ │ │ │ └── bidirule │ │ │ │ │ ├── bidirule.go │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ └── bidirule9.0.0.go │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ └── unicode │ │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ │ ├── time │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── rate │ │ │ │ ├── rate.go │ │ │ │ └── sometimes.go │ │ │ └── xerrors │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── adaptor.go │ │ │ ├── codereview.cfg │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── fmt.go │ │ │ ├── format.go │ │ │ ├── frame.go │ │ │ ├── internal │ │ │ └── internal.go │ │ │ └── wrap.go │ ├── google.golang.org │ │ ├── api │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── googleapi │ │ │ │ ├── googleapi.go │ │ │ │ ├── transport │ │ │ │ │ └── apikey.go │ │ │ │ └── types.go │ │ │ ├── iamcredentials │ │ │ │ └── v1 │ │ │ │ │ ├── iamcredentials-api.json │ │ │ │ │ └── iamcredentials-gen.go │ │ │ ├── internal │ │ │ │ ├── cba.go │ │ │ │ ├── cert │ │ │ │ │ ├── default_cert.go │ │ │ │ │ ├── enterprise_cert.go │ │ │ │ │ └── secureconnect_cert.go │ │ │ │ ├── conn_pool.go │ │ │ │ ├── creds.go │ │ │ │ ├── gensupport │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── json.go │ │ │ │ │ ├── jsonfloat.go │ │ │ │ │ ├── media.go │ │ │ │ │ ├── params.go │ │ │ │ │ ├── resumable.go │ │ │ │ │ ├── retry.go │ │ │ │ │ ├── retryable_linux.go │ │ │ │ │ ├── send.go │ │ │ │ │ └── version.go │ │ │ │ ├── impersonate │ │ │ │ │ └── impersonate.go │ │ │ │ ├── s2a.go │ │ │ │ ├── settings.go │ │ │ │ ├── third_party │ │ │ │ │ └── uritemplates │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── uritemplates.go │ │ │ │ │ │ └── utils.go │ │ │ │ └── version.go │ │ │ ├── iterator │ │ │ │ └── iterator.go │ │ │ ├── option │ │ │ │ ├── internaloption │ │ │ │ │ └── internaloption.go │ │ │ │ └── option.go │ │ │ ├── storage │ │ │ │ └── v1 │ │ │ │ │ ├── storage-api.json │ │ │ │ │ └── storage-gen.go │ │ │ └── transport │ │ │ │ ├── dial.go │ │ │ │ ├── doc.go │ │ │ │ ├── grpc │ │ │ │ ├── dial.go │ │ │ │ ├── dial_socketopt.go │ │ │ │ └── pool.go │ │ │ │ └── http │ │ │ │ ├── dial.go │ │ │ │ └── internal │ │ │ │ └── propagation │ │ │ │ └── http.go │ │ ├── appengine │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── appengine_vm.go │ │ │ ├── errors.go │ │ │ ├── identity.go │ │ │ ├── internal │ │ │ │ ├── api.go │ │ │ │ ├── api_classic.go │ │ │ │ ├── api_common.go │ │ │ │ ├── app_id.go │ │ │ │ ├── app_identity │ │ │ │ │ ├── app_identity_service.pb.go │ │ │ │ │ └── app_identity_service.proto │ │ │ │ ├── base │ │ │ │ │ ├── api_base.pb.go │ │ │ │ │ └── api_base.proto │ │ │ │ ├── datastore │ │ │ │ │ ├── datastore_v3.pb.go │ │ │ │ │ └── datastore_v3.proto │ │ │ │ ├── identity.go │ │ │ │ ├── identity_classic.go │ │ │ │ ├── identity_flex.go │ │ │ │ ├── identity_vm.go │ │ │ │ ├── internal.go │ │ │ │ ├── log │ │ │ │ │ ├── log_service.pb.go │ │ │ │ │ └── log_service.proto │ │ │ │ ├── main.go │ │ │ │ ├── main_common.go │ │ │ │ ├── main_vm.go │ │ │ │ ├── metadata.go │ │ │ │ ├── modules │ │ │ │ │ ├── modules_service.pb.go │ │ │ │ │ └── modules_service.proto │ │ │ │ ├── net.go │ │ │ │ ├── regen.sh │ │ │ │ ├── remote_api │ │ │ │ │ ├── remote_api.pb.go │ │ │ │ │ └── remote_api.proto │ │ │ │ ├── transaction.go │ │ │ │ └── urlfetch │ │ │ │ │ ├── urlfetch_service.pb.go │ │ │ │ │ └── urlfetch_service.proto │ │ │ ├── namespace.go │ │ │ ├── timeout.go │ │ │ ├── travis_install.sh │ │ │ ├── travis_test.sh │ │ │ └── urlfetch │ │ │ │ └── urlfetch.go │ │ ├── cloud │ │ │ ├── .gitignore │ │ │ ├── .release-please-manifest-individual.json │ │ │ ├── .release-please-manifest-submodules.json │ │ │ ├── .release-please-manifest.json │ │ │ ├── CHANGES.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── SECURITY.md │ │ │ ├── debug.md │ │ │ ├── doc.go │ │ │ ├── go.work │ │ │ ├── go.work.sum │ │ │ ├── migration.md │ │ │ ├── release-please-config-individual.json │ │ │ ├── release-please-config-yoshi-submodules.json │ │ │ ├── release-please-config.json │ │ │ ├── storage │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── acl.go │ │ │ │ ├── bucket.go │ │ │ │ ├── client.go │ │ │ │ ├── copy.go │ │ │ │ ├── doc.go │ │ │ │ ├── emulator_test.sh │ │ │ │ ├── grpc_client.go │ │ │ │ ├── hmac.go │ │ │ │ ├── http_client.go │ │ │ │ ├── iam.go │ │ │ │ ├── invoke.go │ │ │ │ ├── notifications.go │ │ │ │ ├── option.go │ │ │ │ ├── post_policy_v4.go │ │ │ │ ├── reader.go │ │ │ │ ├── storage.go │ │ │ │ ├── storage.replay │ │ │ │ └── writer.go │ │ │ └── testing.md │ │ ├── genproto │ │ │ ├── LICENSE │ │ │ ├── googleapis │ │ │ │ ├── api │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── annotations │ │ │ │ │ │ ├── annotations.pb.go │ │ │ │ │ │ ├── client.pb.go │ │ │ │ │ │ ├── field_behavior.pb.go │ │ │ │ │ │ ├── field_info.pb.go │ │ │ │ │ │ ├── http.pb.go │ │ │ │ │ │ ├── resource.pb.go │ │ │ │ │ │ └── routing.pb.go │ │ │ │ │ ├── launch_stage.pb.go │ │ │ │ │ └── tidyfix.go │ │ │ │ ├── rpc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── code │ │ │ │ │ │ └── code.pb.go │ │ │ │ │ ├── errdetails │ │ │ │ │ │ └── error_details.pb.go │ │ │ │ │ └── status │ │ │ │ │ │ └── status.pb.go │ │ │ │ └── type │ │ │ │ │ ├── date │ │ │ │ │ └── date.pb.go │ │ │ │ │ └── expr │ │ │ │ │ └── expr.pb.go │ │ │ └── internal │ │ │ │ └── doc.go │ │ ├── grpc │ │ │ ├── AUTHORS │ │ │ ├── CODE-OF-CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── NOTICE.txt │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── attributes │ │ │ │ └── attributes.go │ │ │ ├── backoff.go │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── balancer │ │ │ │ ├── balancer.go │ │ │ │ ├── base │ │ │ │ │ ├── balancer.go │ │ │ │ │ └── base.go │ │ │ │ ├── conn_state_evaluator.go │ │ │ │ ├── grpclb │ │ │ │ │ ├── grpc_lb_v1 │ │ │ │ │ │ ├── load_balancer.pb.go │ │ │ │ │ │ └── load_balancer_grpc.pb.go │ │ │ │ │ ├── grpclb.go │ │ │ │ │ ├── grpclb_config.go │ │ │ │ │ ├── grpclb_picker.go │ │ │ │ │ ├── grpclb_remote_balancer.go │ │ │ │ │ ├── grpclb_util.go │ │ │ │ │ └── state │ │ │ │ │ │ └── state.go │ │ │ │ └── roundrobin │ │ │ │ │ └── roundrobin.go │ │ │ ├── balancer_conn_wrappers.go │ │ │ ├── binarylog │ │ │ │ └── grpc_binarylog_v1 │ │ │ │ │ └── binarylog.pb.go │ │ │ ├── call.go │ │ │ ├── channelz │ │ │ │ └── channelz.go │ │ │ ├── clientconn.go │ │ │ ├── codec.go │ │ │ ├── codegen.sh │ │ │ ├── codes │ │ │ │ ├── code_string.go │ │ │ │ └── codes.go │ │ │ ├── connectivity │ │ │ │ └── connectivity.go │ │ │ ├── credentials │ │ │ │ ├── alts │ │ │ │ │ ├── alts.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── authinfo │ │ │ │ │ │ │ └── authinfo.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── conn │ │ │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ │ ├── record.go │ │ │ │ │ │ │ └── utils.go │ │ │ │ │ │ ├── handshaker │ │ │ │ │ │ │ ├── handshaker.go │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ └── proto │ │ │ │ │ │ │ └── grpc_gcp │ │ │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ │ │ ├── handshaker_grpc.pb.go │ │ │ │ │ │ │ └── transport_security_common.pb.go │ │ │ │ │ └── utils.go │ │ │ │ ├── credentials.go │ │ │ │ ├── google │ │ │ │ │ ├── google.go │ │ │ │ │ └── xds.go │ │ │ │ ├── insecure │ │ │ │ │ └── insecure.go │ │ │ │ ├── oauth │ │ │ │ │ └── oauth.go │ │ │ │ └── tls.go │ │ │ ├── dialoptions.go │ │ │ ├── doc.go │ │ │ ├── encoding │ │ │ │ ├── encoding.go │ │ │ │ └── proto │ │ │ │ │ └── proto.go │ │ │ ├── grpclog │ │ │ │ ├── component.go │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ ├── interceptor.go │ │ │ ├── internal │ │ │ │ ├── backoff │ │ │ │ │ └── backoff.go │ │ │ │ ├── balancer │ │ │ │ │ └── gracefulswitch │ │ │ │ │ │ └── gracefulswitch.go │ │ │ │ ├── balancerload │ │ │ │ │ └── load.go │ │ │ │ ├── binarylog │ │ │ │ │ ├── binarylog.go │ │ │ │ │ ├── binarylog_testutil.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── method_logger.go │ │ │ │ │ └── sink.go │ │ │ │ ├── buffer │ │ │ │ │ └── unbounded.go │ │ │ │ ├── channelz │ │ │ │ │ ├── funcs.go │ │ │ │ │ ├── id.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_linux.go │ │ │ │ │ ├── types_nonlinux.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ └── util_nonlinux.go │ │ │ │ ├── credentials │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── spiffe.go │ │ │ │ │ ├── syscallconn.go │ │ │ │ │ └── util.go │ │ │ │ ├── envconfig │ │ │ │ │ ├── envconfig.go │ │ │ │ │ ├── observability.go │ │ │ │ │ └── xds.go │ │ │ │ ├── googlecloud │ │ │ │ │ ├── googlecloud.go │ │ │ │ │ ├── manufacturer.go │ │ │ │ │ ├── manufacturer_linux.go │ │ │ │ │ └── manufacturer_windows.go │ │ │ │ ├── grpclog │ │ │ │ │ ├── grpclog.go │ │ │ │ │ └── prefixLogger.go │ │ │ │ ├── grpcrand │ │ │ │ │ └── grpcrand.go │ │ │ │ ├── grpcsync │ │ │ │ │ ├── callback_serializer.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── oncefunc.go │ │ │ │ │ └── pubsub.go │ │ │ │ ├── grpcutil │ │ │ │ │ ├── compressor.go │ │ │ │ │ ├── encode_duration.go │ │ │ │ │ ├── grpcutil.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── method.go │ │ │ │ │ └── regex.go │ │ │ │ ├── idle │ │ │ │ │ └── idle.go │ │ │ │ ├── internal.go │ │ │ │ ├── metadata │ │ │ │ │ └── metadata.go │ │ │ │ ├── pretty │ │ │ │ │ └── pretty.go │ │ │ │ ├── resolver │ │ │ │ │ ├── config_selector.go │ │ │ │ │ ├── dns │ │ │ │ │ │ └── dns_resolver.go │ │ │ │ │ ├── passthrough │ │ │ │ │ │ └── passthrough.go │ │ │ │ │ └── unix │ │ │ │ │ │ └── unix.go │ │ │ │ ├── serviceconfig │ │ │ │ │ ├── duration.go │ │ │ │ │ └── serviceconfig.go │ │ │ │ ├── status │ │ │ │ │ └── status.go │ │ │ │ ├── syscall │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ └── syscall_nonlinux.go │ │ │ │ ├── transport │ │ │ │ │ ├── bdp_estimator.go │ │ │ │ │ ├── controlbuf.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── flowcontrol.go │ │ │ │ │ ├── handler_server.go │ │ │ │ │ ├── http2_client.go │ │ │ │ │ ├── http2_server.go │ │ │ │ │ ├── http_util.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── networktype │ │ │ │ │ │ └── networktype.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ └── transport.go │ │ │ │ └── xds_handshake_cluster.go │ │ │ ├── keepalive │ │ │ │ └── keepalive.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── peer │ │ │ │ └── peer.go │ │ │ ├── picker_wrapper.go │ │ │ ├── pickfirst.go │ │ │ ├── preloader.go │ │ │ ├── regenerate.sh │ │ │ ├── resolver │ │ │ │ ├── manual │ │ │ │ │ └── manual.go │ │ │ │ ├── map.go │ │ │ │ └── resolver.go │ │ │ ├── resolver_conn_wrapper.go │ │ │ ├── rpc_util.go │ │ │ ├── server.go │ │ │ ├── service_config.go │ │ │ ├── serviceconfig │ │ │ │ └── serviceconfig.go │ │ │ ├── shared_buffer_pool.go │ │ │ ├── stats │ │ │ │ ├── handlers.go │ │ │ │ └── stats.go │ │ │ ├── status │ │ │ │ └── status.go │ │ │ ├── stream.go │ │ │ ├── tap │ │ │ │ └── tap.go │ │ │ ├── trace.go │ │ │ ├── version.go │ │ │ └── vet.sh │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── encoding │ │ │ ├── protojson │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ └── well_known_types.go │ │ │ ├── prototext │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ │ └── protowire │ │ │ │ └── wire.go │ │ │ ├── internal │ │ │ ├── descfmt │ │ │ │ └── stringer.go │ │ │ ├── descopts │ │ │ │ └── options.go │ │ │ ├── detrand │ │ │ │ └── rand.go │ │ │ ├── encoding │ │ │ │ ├── defval │ │ │ │ │ └── default.go │ │ │ │ ├── json │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_number.go │ │ │ │ │ ├── decode_string.go │ │ │ │ │ ├── decode_token.go │ │ │ │ │ └── encode.go │ │ │ │ ├── messageset │ │ │ │ │ └── messageset.go │ │ │ │ ├── tag │ │ │ │ │ └── tag.go │ │ │ │ └── text │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_number.go │ │ │ │ │ ├── decode_string.go │ │ │ │ │ ├── decode_token.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── encode.go │ │ │ ├── errors │ │ │ │ ├── errors.go │ │ │ │ ├── is_go112.go │ │ │ │ └── is_go113.go │ │ │ ├── filedesc │ │ │ │ ├── build.go │ │ │ │ ├── desc.go │ │ │ │ ├── desc_init.go │ │ │ │ ├── desc_lazy.go │ │ │ │ ├── desc_list.go │ │ │ │ ├── desc_list_gen.go │ │ │ │ └── placeholder.go │ │ │ ├── filetype │ │ │ │ └── build.go │ │ │ ├── flags │ │ │ │ ├── flags.go │ │ │ │ ├── proto_legacy_disable.go │ │ │ │ └── proto_legacy_enable.go │ │ │ ├── genid │ │ │ │ ├── any_gen.go │ │ │ │ ├── api_gen.go │ │ │ │ ├── descriptor_gen.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration_gen.go │ │ │ │ ├── empty_gen.go │ │ │ │ ├── field_mask_gen.go │ │ │ │ ├── goname.go │ │ │ │ ├── map_entry.go │ │ │ │ ├── source_context_gen.go │ │ │ │ ├── struct_gen.go │ │ │ │ ├── timestamp_gen.go │ │ │ │ ├── type_gen.go │ │ │ │ ├── wrappers.go │ │ │ │ └── wrappers_gen.go │ │ │ ├── impl │ │ │ │ ├── api_export.go │ │ │ │ ├── checkinit.go │ │ │ │ ├── codec_extension.go │ │ │ │ ├── codec_field.go │ │ │ │ ├── codec_gen.go │ │ │ │ ├── codec_map.go │ │ │ │ ├── codec_map_go111.go │ │ │ │ ├── codec_map_go112.go │ │ │ │ ├── codec_message.go │ │ │ │ ├── codec_messageset.go │ │ │ │ ├── codec_reflect.go │ │ │ │ ├── codec_tables.go │ │ │ │ ├── codec_unsafe.go │ │ │ │ ├── convert.go │ │ │ │ ├── convert_list.go │ │ │ │ ├── convert_map.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── enum.go │ │ │ │ ├── extension.go │ │ │ │ ├── legacy_enum.go │ │ │ │ ├── legacy_export.go │ │ │ │ ├── legacy_extension.go │ │ │ │ ├── legacy_file.go │ │ │ │ ├── legacy_message.go │ │ │ │ ├── merge.go │ │ │ │ ├── merge_gen.go │ │ │ │ ├── message.go │ │ │ │ ├── message_reflect.go │ │ │ │ ├── message_reflect_field.go │ │ │ │ ├── message_reflect_gen.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── validate.go │ │ │ │ └── weak.go │ │ │ ├── order │ │ │ │ ├── order.go │ │ │ │ └── range.go │ │ │ ├── pragma │ │ │ │ └── pragma.go │ │ │ ├── set │ │ │ │ └── ints.go │ │ │ ├── strs │ │ │ │ ├── strings.go │ │ │ │ ├── strings_pure.go │ │ │ │ └── strings_unsafe.go │ │ │ └── version │ │ │ │ └── version.go │ │ │ ├── proto │ │ │ ├── checkinit.go │ │ │ ├── decode.go │ │ │ ├── decode_gen.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_gen.go │ │ │ ├── equal.go │ │ │ ├── extension.go │ │ │ ├── merge.go │ │ │ ├── messageset.go │ │ │ ├── proto.go │ │ │ ├── proto_methods.go │ │ │ ├── proto_reflect.go │ │ │ ├── reset.go │ │ │ ├── size.go │ │ │ ├── size_gen.go │ │ │ └── wrappers.go │ │ │ ├── reflect │ │ │ ├── protodesc │ │ │ │ ├── desc.go │ │ │ │ ├── desc_init.go │ │ │ │ ├── desc_resolve.go │ │ │ │ ├── desc_validate.go │ │ │ │ └── proto.go │ │ │ ├── protoreflect │ │ │ │ ├── methods.go │ │ │ │ ├── proto.go │ │ │ │ ├── source.go │ │ │ │ ├── source_gen.go │ │ │ │ ├── type.go │ │ │ │ ├── value.go │ │ │ │ ├── value_equal.go │ │ │ │ ├── value_pure.go │ │ │ │ ├── value_union.go │ │ │ │ └── value_unsafe.go │ │ │ └── protoregistry │ │ │ │ └── registry.go │ │ │ ├── runtime │ │ │ ├── protoiface │ │ │ │ ├── legacy.go │ │ │ │ └── methods.go │ │ │ └── protoimpl │ │ │ │ ├── impl.go │ │ │ │ └── version.go │ │ │ └── types │ │ │ ├── descriptorpb │ │ │ └── descriptor.pb.go │ │ │ └── known │ │ │ ├── anypb │ │ │ └── any.pb.go │ │ │ ├── durationpb │ │ │ └── duration.pb.go │ │ │ ├── emptypb │ │ │ └── empty.pb.go │ │ │ ├── fieldmaskpb │ │ │ └── field_mask.pb.go │ │ │ └── timestamppb │ │ │ └── timestamp.pb.go │ ├── gopkg.in │ │ ├── check.v1 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── benchmark.go │ │ │ ├── check.go │ │ │ ├── checkers.go │ │ │ ├── helpers.go │ │ │ ├── printer.go │ │ │ ├── reporter.go │ │ │ └── run.go │ │ └── yaml.v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── launchpad.net │ │ └── gozk │ │ │ └── zookeeper │ │ │ ├── .lbox │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── helpers.c │ │ │ ├── helpers.h │ │ │ ├── runserver.go │ │ │ ├── server.go │ │ │ └── zk.go │ └── modules.txt └── version │ ├── print.go │ ├── version.go │ └── version.sh ├── training ├── NGT │ ├── ArrayFile.cpp │ ├── ArrayFile.h │ ├── CMakeLists.txt │ ├── Capi.cpp │ ├── Capi.h │ ├── Clustering.h │ ├── Command.cpp │ ├── Command.h │ ├── Common.h │ ├── Graph.cpp │ ├── Graph.h │ ├── GraphOptimizer.h │ ├── GraphReconstructor.h │ ├── HashBasedBooleanSet.h │ ├── Index.cpp │ ├── Index.h │ ├── MmapManager.cpp │ ├── MmapManager.h │ ├── MmapManagerDefs.h │ ├── MmapManagerException.h │ ├── MmapManagerImpl.hpp │ ├── NGTQ │ │ ├── Command.h │ │ └── Quantizer.h │ ├── Node.cpp │ ├── Node.h │ ├── ObjectRepository.h │ ├── ObjectSpace.h │ ├── ObjectSpaceRepository.h │ ├── Optimizer.h │ ├── PrimitiveComparator.h │ ├── SharedMemoryAllocator.cpp │ ├── SharedMemoryAllocator.h │ ├── Thread.cpp │ ├── Thread.h │ ├── Tree.cpp │ ├── Tree.h │ ├── Version.cpp │ ├── Version.h │ ├── defines.h │ └── defines.h.in ├── bruteforce │ └── bf_xdelta3_all.cpp ├── clustering │ ├── coarse │ ├── coarse_xdelta3.cpp │ ├── fine │ ├── fine_xdelta3.cpp │ ├── merge │ ├── merge_files.c │ └── process_data.py ├── compress.h ├── decompress.ipynb ├── deepsketch │ ├── deepsketch.h │ └── deepsketch_comp.cpp ├── finesse │ ├── finesse.h │ ├── finesse_comp.cpp │ └── my_finesse │ │ ├── finesse │ │ ├── finesse.h │ │ ├── finesse_comp.cpp │ │ ├── merge │ │ ├── my_finesse │ │ └── my_finesse.cpp ├── lz4.c ├── lz4.h ├── multi_cand │ ├── deepsketch.h │ ├── deepsketch_multi_comp.cpp │ ├── finesse+ann_multi_comp.cpp │ ├── finesse.h │ └── finesse_multi_comp.cpp ├── training │ ├── cdc.py │ ├── fastcdc_py.py │ ├── model_converter_gh.py │ ├── train_baseline.py │ └── train_hashlayer_gh.py ├── xdelta3 │ ├── .deps │ │ ├── xdelta3-xdelta3.Po │ │ └── xdelta3decode-xdelta3.Po │ ├── Android.mk │ ├── CleanSpec.mk │ ├── LICENSE │ ├── MODULE_LICENSE_GPL │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.mingw │ ├── Makefile.orig │ ├── NOTICE │ ├── README │ ├── README.md │ ├── aclocal.m4 │ ├── autom4te.cache │ │ ├── output.0 │ │ ├── output.1 │ │ ├── output.2 │ │ ├── output.3 │ │ ├── output.4 │ │ ├── requests │ │ ├── traces.0 │ │ ├── traces.1 │ │ ├── traces.2 │ │ ├── traces.3 │ │ └── traces.4 │ ├── autoscan.log │ ├── badcopy.c │ ├── compile │ ├── config.h │ ├── config.h.in │ ├── config.h.in~ │ ├── config.log │ ├── config.status │ ├── configure │ ├── configure.ac │ ├── configure.scan │ ├── cpp-btree │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── README │ │ ├── btree.h │ │ ├── btree_bench.cc │ │ ├── btree_container.h │ │ ├── btree_map.h │ │ ├── btree_set.h │ │ ├── btree_test.cc │ │ ├── btree_test.h │ │ ├── btree_test_flags.cc │ │ ├── safe_btree.h │ │ ├── safe_btree_map.h │ │ ├── safe_btree_set.h │ │ └── safe_btree_test.cc │ ├── draft-korn-vcdiff.txt │ ├── examples │ │ ├── Makefile │ │ ├── README │ │ ├── README.md │ │ ├── a │ │ ├── b │ │ ├── c │ │ ├── cal │ │ ├── cal_xdelta3.cpp │ │ ├── checksum_test.cc │ │ ├── compare_test.c │ │ ├── decoded.testdata │ │ ├── encode_decode_test │ │ ├── encode_decode_test.c │ │ ├── encoded.testdata │ │ ├── iOS │ │ │ └── xdelta3-ios-test │ │ │ │ ├── xdelta3-ios-test.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── xdelta3-ios-test │ │ │ │ ├── Xd3iOSAppDelegate.h │ │ │ │ ├── Xd3iOSAppDelegate.m │ │ │ │ ├── Xd3iOSViewController.h │ │ │ │ ├── Xd3iOSViewController.m │ │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainStoryboard_iPad.storyboard │ │ │ │ └── MainStoryboard_iPhone.storyboard │ │ │ │ ├── file_v1.bin │ │ │ │ ├── file_v1_to_v2.bin │ │ │ │ ├── file_v2.bin │ │ │ │ ├── main.m │ │ │ │ ├── xdelta3-ios-test-Info.plist │ │ │ │ └── xdelta3-ios-test-Prefix.pch │ │ ├── input1 │ │ ├── input2 │ │ ├── out │ │ ├── sf.cpp │ │ ├── small_page_test │ │ ├── small_page_test.c │ │ ├── speed_test.c │ │ ├── test.cpp │ │ ├── test.h │ │ └── test2.cpp │ ├── generate_build_files.sh │ ├── go │ │ └── src │ │ │ ├── regtest.go │ │ │ └── xdelta │ │ │ ├── rstream.go │ │ │ ├── run.go │ │ │ ├── test.go │ │ │ └── tgroup.go │ ├── install-sh │ ├── libtool │ ├── linkxd3lib.c │ ├── m4 │ │ ├── ax_check_aligned_access_required.m4 │ │ ├── ax_pkg_swig.m4 │ │ ├── ax_python_devel.m4 │ │ └── ax_swig_python.m4 │ ├── missing │ ├── my_func.c │ ├── plot.sh │ ├── rcs_junk.cc │ ├── run_release.sh │ ├── stamp-h1 │ ├── testing │ │ ├── .deps │ │ │ ├── xdelta3checksum-checksum_test.Po │ │ │ ├── xdelta3checksum-checksum_test_c.Po │ │ │ ├── xdelta3regtest-regtest.Po │ │ │ └── xdelta3regtest-regtest_c.Po │ │ ├── Makefile │ │ ├── checksum_test.cc │ │ ├── checksum_test_c.c │ │ ├── cmp.h │ │ ├── delta.h │ │ ├── file.h │ │ ├── modify.h │ │ ├── random.h │ │ ├── regtest.cc │ │ ├── regtest_c.c │ │ ├── run_release.sh │ │ ├── segment.h │ │ ├── sizes.h │ │ ├── test.h │ │ ├── xdelta3-regtest.py │ │ └── xdelta3-test.py │ ├── xdelta3-blkcache.h │ ├── xdelta3-cfgs.h │ ├── xdelta3-decode.h │ ├── xdelta3-djw.h │ ├── xdelta3-fgk.h │ ├── xdelta3-hash.h │ ├── xdelta3-internal.h │ ├── xdelta3-list.h │ ├── xdelta3-lzma.h │ ├── xdelta3-main.h │ ├── xdelta3-merge.h │ ├── xdelta3-second.h │ ├── xdelta3-test.h │ ├── xdelta3.1 │ ├── xdelta3.c │ ├── xdelta3.h │ ├── xdelta3.i │ ├── xdelta3.vcxproj │ ├── xdelta3.wxi │ └── xdelta3.wxs ├── xxhash.c └── xxhash.h ├── warmup_and_run ├── client.py ├── config-example.yml └── warmup_run.py └── workload ├── download_docker.py └── process_json.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/README.md -------------------------------------------------------------------------------- /inference/MLE_LSHMLE_partial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/inference/MLE_LSHMLE_partial.ipynb -------------------------------------------------------------------------------- /inference/SimEnc_partial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/inference/SimEnc_partial.ipynb -------------------------------------------------------------------------------- /inference/couchbase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/inference/couchbase.txt -------------------------------------------------------------------------------- /inference/decompress.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/inference/decompress.ipynb -------------------------------------------------------------------------------- /inference/finesse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/inference/finesse -------------------------------------------------------------------------------- /inference/ubuntu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/inference/ubuntu.txt -------------------------------------------------------------------------------- /partial/decode_docker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/decode_docker.cpp -------------------------------------------------------------------------------- /partial/encode_docker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/encode_docker.cpp -------------------------------------------------------------------------------- /partial/libz_j/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/Makefile -------------------------------------------------------------------------------- /partial/libz_j/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/adler32.c -------------------------------------------------------------------------------- /partial/libz_j/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/crc32.c -------------------------------------------------------------------------------- /partial/libz_j/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/crc32.h -------------------------------------------------------------------------------- /partial/libz_j/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/deflate.c -------------------------------------------------------------------------------- /partial/libz_j/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/deflate.h -------------------------------------------------------------------------------- /partial/libz_j/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/inffast.c -------------------------------------------------------------------------------- /partial/libz_j/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/inffast.h -------------------------------------------------------------------------------- /partial/libz_j/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/inffixed.h -------------------------------------------------------------------------------- /partial/libz_j/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/inflate.c -------------------------------------------------------------------------------- /partial/libz_j/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/inflate.h -------------------------------------------------------------------------------- /partial/libz_j/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/inftrees.c -------------------------------------------------------------------------------- /partial/libz_j/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/inftrees.h -------------------------------------------------------------------------------- /partial/libz_j/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/trees.c -------------------------------------------------------------------------------- /partial/libz_j/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/trees.h -------------------------------------------------------------------------------- /partial/libz_j/zfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/zfunc.h -------------------------------------------------------------------------------- /partial/libz_j/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/zutil.c -------------------------------------------------------------------------------- /partial/libz_j/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/partial/libz_j/zutil.h -------------------------------------------------------------------------------- /simenc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/CHANGELOG.md -------------------------------------------------------------------------------- /simenc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/Dockerfile -------------------------------------------------------------------------------- /simenc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/LICENSE -------------------------------------------------------------------------------- /simenc/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/MAINTAINERS -------------------------------------------------------------------------------- /simenc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/Makefile -------------------------------------------------------------------------------- /simenc/acme/challenges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/challenges.go -------------------------------------------------------------------------------- /simenc/acme/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/client.go -------------------------------------------------------------------------------- /simenc/acme/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/client_test.go -------------------------------------------------------------------------------- /simenc/acme/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/crypto.go -------------------------------------------------------------------------------- /simenc/acme/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/crypto_test.go -------------------------------------------------------------------------------- /simenc/acme/dns_challenge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/dns_challenge.go -------------------------------------------------------------------------------- /simenc/acme/dns_challenge_manual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/dns_challenge_manual.go -------------------------------------------------------------------------------- /simenc/acme/dns_challenge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/dns_challenge_test.go -------------------------------------------------------------------------------- /simenc/acme/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/error.go -------------------------------------------------------------------------------- /simenc/acme/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/http.go -------------------------------------------------------------------------------- /simenc/acme/http_challenge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/http_challenge.go -------------------------------------------------------------------------------- /simenc/acme/http_challenge_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/http_challenge_server.go -------------------------------------------------------------------------------- /simenc/acme/http_challenge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/http_challenge_test.go -------------------------------------------------------------------------------- /simenc/acme/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/http_test.go -------------------------------------------------------------------------------- /simenc/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/jws.go -------------------------------------------------------------------------------- /simenc/acme/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/messages.go -------------------------------------------------------------------------------- /simenc/acme/pop_challenge.go: -------------------------------------------------------------------------------- 1 | package acme 2 | -------------------------------------------------------------------------------- /simenc/acme/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/provider.go -------------------------------------------------------------------------------- /simenc/acme/testdata/resolv.conf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/testdata/resolv.conf.1 -------------------------------------------------------------------------------- /simenc/acme/tls_sni_challenge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/tls_sni_challenge.go -------------------------------------------------------------------------------- /simenc/acme/tls_sni_challenge_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/tls_sni_challenge_server.go -------------------------------------------------------------------------------- /simenc/acme/tls_sni_challenge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/tls_sni_challenge_test.go -------------------------------------------------------------------------------- /simenc/acme/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/utils.go -------------------------------------------------------------------------------- /simenc/acme/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/acme/utils_test.go -------------------------------------------------------------------------------- /simenc/bin/config-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/bin/config-example.yml -------------------------------------------------------------------------------- /simenc/blobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/blobs.go -------------------------------------------------------------------------------- /simenc/check_forwardserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/check_forwardserver.sh -------------------------------------------------------------------------------- /simenc/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/circle.yml -------------------------------------------------------------------------------- /simenc/cmd/digest/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/cmd/digest/main.go -------------------------------------------------------------------------------- /simenc/cmd/registry/config-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/cmd/registry/config-cache.yml -------------------------------------------------------------------------------- /simenc/cmd/registry/config-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/cmd/registry/config-dev.yml -------------------------------------------------------------------------------- /simenc/cmd/registry/config-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/cmd/registry/config-example.yml -------------------------------------------------------------------------------- /simenc/cmd/registry/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/cmd/registry/main.go -------------------------------------------------------------------------------- /simenc/config-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/config-example.yml -------------------------------------------------------------------------------- /simenc/configuration/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/configuration/configuration.go -------------------------------------------------------------------------------- /simenc/configuration/configuration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/configuration/configuration_test.go -------------------------------------------------------------------------------- /simenc/configuration/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/configuration/parser.go -------------------------------------------------------------------------------- /simenc/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/context.go -------------------------------------------------------------------------------- /simenc/context/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/doc.go -------------------------------------------------------------------------------- /simenc/context/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/http.go -------------------------------------------------------------------------------- /simenc/context/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/http_test.go -------------------------------------------------------------------------------- /simenc/context/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/logger.go -------------------------------------------------------------------------------- /simenc/context/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/trace.go -------------------------------------------------------------------------------- /simenc/context/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/trace_test.go -------------------------------------------------------------------------------- /simenc/context/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/util.go -------------------------------------------------------------------------------- /simenc/context/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/version.go -------------------------------------------------------------------------------- /simenc/context/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/context/version_test.go -------------------------------------------------------------------------------- /simenc/contrib/apache/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/apache/README.MD -------------------------------------------------------------------------------- /simenc/contrib/apache/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/apache/apache.conf -------------------------------------------------------------------------------- /simenc/contrib/compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/compose/README.md -------------------------------------------------------------------------------- /simenc/contrib/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/compose/docker-compose.yml -------------------------------------------------------------------------------- /simenc/contrib/compose/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/compose/nginx/Dockerfile -------------------------------------------------------------------------------- /simenc/contrib/compose/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/compose/nginx/nginx.conf -------------------------------------------------------------------------------- /simenc/contrib/compose/nginx/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/compose/nginx/registry.conf -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/docker-integration/Dockerfile -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/docker-integration/README.md -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/golem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/docker-integration/golem.conf -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/docker-integration/helpers.bash -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/nginx/test.passwd: -------------------------------------------------------------------------------- 1 | testuser:$apr1$YmLhHjm6$AjP4z8J1WgcUNxU8J4ue5. 2 | -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/plugins.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/docker-integration/plugins.bats -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/tls.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/docker-integration/tls.bats -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/token.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/docker-integration/token.bats -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/tokenserver-oauth/.htpasswd: -------------------------------------------------------------------------------- 1 | testuser:$2y$05$T2MlBvkN1R/yICNnLuf1leOlOfAY0DvybctbbWUFKlojfkShVgn4m 2 | -------------------------------------------------------------------------------- /simenc/contrib/docker-integration/tokenserver/.htpasswd: -------------------------------------------------------------------------------- 1 | testuser:$2y$05$T2MlBvkN1R/yICNnLuf1leOlOfAY0DvybctbbWUFKlojfkShVgn4m 2 | -------------------------------------------------------------------------------- /simenc/contrib/token-server/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/token-server/errors.go -------------------------------------------------------------------------------- /simenc/contrib/token-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/token-server/main.go -------------------------------------------------------------------------------- /simenc/contrib/token-server/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/contrib/token-server/token.go -------------------------------------------------------------------------------- /simenc/coverpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/coverpkg.sh -------------------------------------------------------------------------------- /simenc/digestset/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/digestset/set.go -------------------------------------------------------------------------------- /simenc/digestset/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/digestset/set_test.go -------------------------------------------------------------------------------- /simenc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/doc.go -------------------------------------------------------------------------------- /simenc/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/README.md -------------------------------------------------------------------------------- /simenc/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/configuration.md -------------------------------------------------------------------------------- /simenc/docs/spec/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/api.md -------------------------------------------------------------------------------- /simenc/docs/spec/api.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/api.md.tmpl -------------------------------------------------------------------------------- /simenc/docs/spec/auth/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/auth/index.md -------------------------------------------------------------------------------- /simenc/docs/spec/auth/jwt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/auth/jwt.md -------------------------------------------------------------------------------- /simenc/docs/spec/auth/oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/auth/oauth.md -------------------------------------------------------------------------------- /simenc/docs/spec/auth/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/auth/scope.md -------------------------------------------------------------------------------- /simenc/docs/spec/auth/token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/auth/token.md -------------------------------------------------------------------------------- /simenc/docs/spec/implementations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/implementations.md -------------------------------------------------------------------------------- /simenc/docs/spec/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/index.md -------------------------------------------------------------------------------- /simenc/docs/spec/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/json.md -------------------------------------------------------------------------------- /simenc/docs/spec/manifest-v2-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/manifest-v2-1.md -------------------------------------------------------------------------------- /simenc/docs/spec/manifest-v2-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/manifest-v2-2.md -------------------------------------------------------------------------------- /simenc/docs/spec/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/docs/spec/menu.md -------------------------------------------------------------------------------- /simenc/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/errors.go -------------------------------------------------------------------------------- /simenc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/go.mod -------------------------------------------------------------------------------- /simenc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/go.sum -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/README -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /simenc/golang.org/x/crypto/ocsp/ocsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/crypto/ocsp/ocsp_test.go -------------------------------------------------------------------------------- /simenc/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /simenc/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /simenc/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /simenc/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /simenc/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /simenc/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /simenc/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /simenc/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/README -------------------------------------------------------------------------------- /simenc/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /simenc/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /simenc/golang.org/x/net/context/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/context/context_test.go -------------------------------------------------------------------------------- /simenc/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /simenc/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /simenc/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /simenc/golang.org/x/net/publicsuffix/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/publicsuffix/list.go -------------------------------------------------------------------------------- /simenc/golang.org/x/net/publicsuffix/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/net/publicsuffix/table.go -------------------------------------------------------------------------------- /simenc/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /simenc/golang.org/x/time/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/time/CONTRIBUTING.md -------------------------------------------------------------------------------- /simenc/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /simenc/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /simenc/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /simenc/golang.org/x/time/README: -------------------------------------------------------------------------------- 1 | This repository provides supplementary Go time packages. 2 | -------------------------------------------------------------------------------- /simenc/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /simenc/golang.org/x/time/rate/rate_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/time/rate/rate_go16.go -------------------------------------------------------------------------------- /simenc/golang.org/x/time/rate/rate_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/time/rate/rate_go17.go -------------------------------------------------------------------------------- /simenc/golang.org/x/time/rate/rate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/golang.org/x/time/rate/rate_test.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/.gitignore -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/.travis.yml -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/BUG-BOUNTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/BUG-BOUNTY.md -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/LICENSE -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/README.md -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/asymmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/asymmetric.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/crypter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/crypter.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/doc.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/doc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/doc_test.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/encoding.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/json/LICENSE -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/jwe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/jwe.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/jwe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/jwe_test.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/jwk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/jwk.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/jwk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/jwk_test.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/jws.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/jws_test.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/shared.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/signing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/signing.go -------------------------------------------------------------------------------- /simenc/gopkg.in/square/go-jose.v1/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/gopkg.in/square/go-jose.v1/utils.go -------------------------------------------------------------------------------- /simenc/health/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/health/api/api.go -------------------------------------------------------------------------------- /simenc/health/api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/health/api/api_test.go -------------------------------------------------------------------------------- /simenc/health/checks/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/health/checks/checks.go -------------------------------------------------------------------------------- /simenc/health/checks/checks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/health/checks/checks_test.go -------------------------------------------------------------------------------- /simenc/health/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/health/doc.go -------------------------------------------------------------------------------- /simenc/health/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/health/health.go -------------------------------------------------------------------------------- /simenc/health/health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/health/health_test.go -------------------------------------------------------------------------------- /simenc/letsencrypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/letsencrypt/LICENSE -------------------------------------------------------------------------------- /simenc/letsencrypt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/letsencrypt/README -------------------------------------------------------------------------------- /simenc/letsencrypt/lets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/letsencrypt/lets.go -------------------------------------------------------------------------------- /simenc/manifest/doc.go: -------------------------------------------------------------------------------- 1 | package manifest 2 | -------------------------------------------------------------------------------- /simenc/manifest/manifestlist/manifestlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/manifestlist/manifestlist.go -------------------------------------------------------------------------------- /simenc/manifest/schema1/config_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema1/config_builder.go -------------------------------------------------------------------------------- /simenc/manifest/schema1/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema1/manifest.go -------------------------------------------------------------------------------- /simenc/manifest/schema1/manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema1/manifest_test.go -------------------------------------------------------------------------------- /simenc/manifest/schema1/reference_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema1/reference_builder.go -------------------------------------------------------------------------------- /simenc/manifest/schema1/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema1/sign.go -------------------------------------------------------------------------------- /simenc/manifest/schema1/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema1/verify.go -------------------------------------------------------------------------------- /simenc/manifest/schema2/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema2/builder.go -------------------------------------------------------------------------------- /simenc/manifest/schema2/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema2/builder_test.go -------------------------------------------------------------------------------- /simenc/manifest/schema2/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema2/manifest.go -------------------------------------------------------------------------------- /simenc/manifest/schema2/manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/schema2/manifest_test.go -------------------------------------------------------------------------------- /simenc/manifest/versioned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifest/versioned.go -------------------------------------------------------------------------------- /simenc/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/manifests.go -------------------------------------------------------------------------------- /simenc/miekg/dns/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/.gitignore -------------------------------------------------------------------------------- /simenc/miekg/dns/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/.travis.yml -------------------------------------------------------------------------------- /simenc/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/AUTHORS -------------------------------------------------------------------------------- /simenc/miekg/dns/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/CONTRIBUTORS -------------------------------------------------------------------------------- /simenc/miekg/dns/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/COPYRIGHT -------------------------------------------------------------------------------- /simenc/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/LICENSE -------------------------------------------------------------------------------- /simenc/miekg/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/README.md -------------------------------------------------------------------------------- /simenc/miekg/dns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/client.go -------------------------------------------------------------------------------- /simenc/miekg/dns/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/client_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/clientconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/clientconfig.go -------------------------------------------------------------------------------- /simenc/miekg/dns/clientconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/clientconfig_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/compress_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/compress_generate.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/dane.go -------------------------------------------------------------------------------- /simenc/miekg/dns/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/defaults.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/dns.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dns_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/dns_bench_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/dns_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/dnssec.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dnssec_keygen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/dnssec_keygen.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dnssec_keyscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/dnssec_keyscan.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dnssec_privkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/dnssec_privkey.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dnssec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/dnssec_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/doc.go -------------------------------------------------------------------------------- /simenc/miekg/dns/dyn_test.go: -------------------------------------------------------------------------------- 1 | package dns 2 | 3 | // Find better solution 4 | -------------------------------------------------------------------------------- /simenc/miekg/dns/edns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/edns.go -------------------------------------------------------------------------------- /simenc/miekg/dns/edns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/edns_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/example_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/format.go -------------------------------------------------------------------------------- /simenc/miekg/dns/fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/fuzz_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/generate.go -------------------------------------------------------------------------------- /simenc/miekg/dns/issue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/issue_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/labels.go -------------------------------------------------------------------------------- /simenc/miekg/dns/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/labels_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/msg.go -------------------------------------------------------------------------------- /simenc/miekg/dns/msg_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/msg_generate.go -------------------------------------------------------------------------------- /simenc/miekg/dns/msg_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/msg_helpers.go -------------------------------------------------------------------------------- /simenc/miekg/dns/msg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/msg_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/nsecx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/nsecx.go -------------------------------------------------------------------------------- /simenc/miekg/dns/nsecx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/nsecx_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/parse_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/privaterr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/privaterr.go -------------------------------------------------------------------------------- /simenc/miekg/dns/privaterr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/privaterr_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/rawmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/rawmsg.go -------------------------------------------------------------------------------- /simenc/miekg/dns/remote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/remote_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/reverse.go -------------------------------------------------------------------------------- /simenc/miekg/dns/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/sanitize.go -------------------------------------------------------------------------------- /simenc/miekg/dns/sanitize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/sanitize_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/scan.go -------------------------------------------------------------------------------- /simenc/miekg/dns/scan_rr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/scan_rr.go -------------------------------------------------------------------------------- /simenc/miekg/dns/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/scanner.go -------------------------------------------------------------------------------- /simenc/miekg/dns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/server.go -------------------------------------------------------------------------------- /simenc/miekg/dns/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/server_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/sig0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/sig0.go -------------------------------------------------------------------------------- /simenc/miekg/dns/sig0_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/sig0_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/singleinflight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/singleinflight.go -------------------------------------------------------------------------------- /simenc/miekg/dns/smimea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/smimea.go -------------------------------------------------------------------------------- /simenc/miekg/dns/tlsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/tlsa.go -------------------------------------------------------------------------------- /simenc/miekg/dns/tsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/tsig.go -------------------------------------------------------------------------------- /simenc/miekg/dns/tsig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/tsig_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/types.go -------------------------------------------------------------------------------- /simenc/miekg/dns/types_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/types_generate.go -------------------------------------------------------------------------------- /simenc/miekg/dns/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/types_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/udp.go -------------------------------------------------------------------------------- /simenc/miekg/dns/udp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/udp_linux.go -------------------------------------------------------------------------------- /simenc/miekg/dns/udp_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/udp_other.go -------------------------------------------------------------------------------- /simenc/miekg/dns/udp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/udp_windows.go -------------------------------------------------------------------------------- /simenc/miekg/dns/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/update.go -------------------------------------------------------------------------------- /simenc/miekg/dns/update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/update_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/xfr.go -------------------------------------------------------------------------------- /simenc/miekg/dns/xfr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/xfr_test.go -------------------------------------------------------------------------------- /simenc/miekg/dns/zcompress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/zcompress.go -------------------------------------------------------------------------------- /simenc/miekg/dns/zmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/zmsg.go -------------------------------------------------------------------------------- /simenc/miekg/dns/ztypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/miekg/dns/ztypes.go -------------------------------------------------------------------------------- /simenc/notifications/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/bridge.go -------------------------------------------------------------------------------- /simenc/notifications/bridge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/bridge_test.go -------------------------------------------------------------------------------- /simenc/notifications/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/endpoint.go -------------------------------------------------------------------------------- /simenc/notifications/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/event.go -------------------------------------------------------------------------------- /simenc/notifications/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/event_test.go -------------------------------------------------------------------------------- /simenc/notifications/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/http.go -------------------------------------------------------------------------------- /simenc/notifications/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/http_test.go -------------------------------------------------------------------------------- /simenc/notifications/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/listener.go -------------------------------------------------------------------------------- /simenc/notifications/listener_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/listener_test.go -------------------------------------------------------------------------------- /simenc/notifications/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/metrics.go -------------------------------------------------------------------------------- /simenc/notifications/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/metrics_test.go -------------------------------------------------------------------------------- /simenc/notifications/sinks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/sinks.go -------------------------------------------------------------------------------- /simenc/notifications/sinks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/notifications/sinks_test.go -------------------------------------------------------------------------------- /simenc/project/dev-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/project/dev-image/Dockerfile -------------------------------------------------------------------------------- /simenc/project/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/project/hooks/README.md -------------------------------------------------------------------------------- /simenc/project/hooks/configure-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/project/hooks/configure-hooks.sh -------------------------------------------------------------------------------- /simenc/project/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/project/hooks/pre-commit -------------------------------------------------------------------------------- /simenc/redistest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/redistest -------------------------------------------------------------------------------- /simenc/reference/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/reference/helpers.go -------------------------------------------------------------------------------- /simenc/reference/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/reference/normalize.go -------------------------------------------------------------------------------- /simenc/reference/normalize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/reference/normalize_test.go -------------------------------------------------------------------------------- /simenc/reference/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/reference/reference.go -------------------------------------------------------------------------------- /simenc/reference/reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/reference/reference_test.go -------------------------------------------------------------------------------- /simenc/reference/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/reference/regexp.go -------------------------------------------------------------------------------- /simenc/reference/regexp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/reference/regexp_test.go -------------------------------------------------------------------------------- /simenc/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry.go -------------------------------------------------------------------------------- /simenc/registry/api/errcode/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/errcode/errors.go -------------------------------------------------------------------------------- /simenc/registry/api/errcode/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/errcode/errors_test.go -------------------------------------------------------------------------------- /simenc/registry/api/errcode/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/errcode/handler.go -------------------------------------------------------------------------------- /simenc/registry/api/errcode/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/errcode/register.go -------------------------------------------------------------------------------- /simenc/registry/api/v2/descriptors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/v2/descriptors.go -------------------------------------------------------------------------------- /simenc/registry/api/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/v2/doc.go -------------------------------------------------------------------------------- /simenc/registry/api/v2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/v2/errors.go -------------------------------------------------------------------------------- /simenc/registry/api/v2/headerparser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/v2/headerparser.go -------------------------------------------------------------------------------- /simenc/registry/api/v2/headerparser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/v2/headerparser_test.go -------------------------------------------------------------------------------- /simenc/registry/api/v2/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/v2/routes.go -------------------------------------------------------------------------------- /simenc/registry/api/v2/routes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/v2/routes_test.go -------------------------------------------------------------------------------- /simenc/registry/api/v2/urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/v2/urls.go -------------------------------------------------------------------------------- /simenc/registry/api/v2/urls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/api/v2/urls_test.go -------------------------------------------------------------------------------- /simenc/registry/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/auth.go -------------------------------------------------------------------------------- /simenc/registry/auth/htpasswd/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/htpasswd/access.go -------------------------------------------------------------------------------- /simenc/registry/auth/htpasswd/access_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/htpasswd/access_test.go -------------------------------------------------------------------------------- /simenc/registry/auth/htpasswd/htpasswd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/htpasswd/htpasswd.go -------------------------------------------------------------------------------- /simenc/registry/auth/silly/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/silly/access.go -------------------------------------------------------------------------------- /simenc/registry/auth/silly/access_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/silly/access_test.go -------------------------------------------------------------------------------- /simenc/registry/auth/token/stringset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/token/stringset.go -------------------------------------------------------------------------------- /simenc/registry/auth/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/token/token.go -------------------------------------------------------------------------------- /simenc/registry/auth/token/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/token/token_test.go -------------------------------------------------------------------------------- /simenc/registry/auth/token/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/auth/token/util.go -------------------------------------------------------------------------------- /simenc/registry/client/auth/api_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/auth/api_version.go -------------------------------------------------------------------------------- /simenc/registry/client/auth/challenge/addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/auth/challenge/addr.go -------------------------------------------------------------------------------- /simenc/registry/client/auth/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/auth/session.go -------------------------------------------------------------------------------- /simenc/registry/client/auth/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/auth/session_test.go -------------------------------------------------------------------------------- /simenc/registry/client/blob_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/blob_writer.go -------------------------------------------------------------------------------- /simenc/registry/client/blob_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/blob_writer_test.go -------------------------------------------------------------------------------- /simenc/registry/client/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/errors.go -------------------------------------------------------------------------------- /simenc/registry/client/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/errors_test.go -------------------------------------------------------------------------------- /simenc/registry/client/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/repository.go -------------------------------------------------------------------------------- /simenc/registry/client/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/repository_test.go -------------------------------------------------------------------------------- /simenc/registry/client/transport/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/client/transport/transport.go -------------------------------------------------------------------------------- /simenc/registry/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/doc.go -------------------------------------------------------------------------------- /simenc/registry/handlers/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/api_test.go -------------------------------------------------------------------------------- /simenc/registry/handlers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/app.go -------------------------------------------------------------------------------- /simenc/registry/handlers/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/app_test.go -------------------------------------------------------------------------------- /simenc/registry/handlers/basicauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/basicauth.go -------------------------------------------------------------------------------- /simenc/registry/handlers/basicauth_prego14.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/basicauth_prego14.go -------------------------------------------------------------------------------- /simenc/registry/handlers/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/blob.go -------------------------------------------------------------------------------- /simenc/registry/handlers/blobupload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/blobupload.go -------------------------------------------------------------------------------- /simenc/registry/handlers/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/catalog.go -------------------------------------------------------------------------------- /simenc/registry/handlers/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/context.go -------------------------------------------------------------------------------- /simenc/registry/handlers/health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/health_test.go -------------------------------------------------------------------------------- /simenc/registry/handlers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/helpers.go -------------------------------------------------------------------------------- /simenc/registry/handlers/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/hmac.go -------------------------------------------------------------------------------- /simenc/registry/handlers/hmac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/hmac_test.go -------------------------------------------------------------------------------- /simenc/registry/handlers/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/hooks.go -------------------------------------------------------------------------------- /simenc/registry/handlers/mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/mail.go -------------------------------------------------------------------------------- /simenc/registry/handlers/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/manifests.go -------------------------------------------------------------------------------- /simenc/registry/handlers/registries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/registries.go -------------------------------------------------------------------------------- /simenc/registry/handlers/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/handlers/tags.go -------------------------------------------------------------------------------- /simenc/registry/listener/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/listener/listener.go -------------------------------------------------------------------------------- /simenc/registry/proxy/proxyauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/proxy/proxyauth.go -------------------------------------------------------------------------------- /simenc/registry/proxy/proxyblobstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/proxy/proxyblobstore.go -------------------------------------------------------------------------------- /simenc/registry/proxy/proxyblobstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/proxy/proxyblobstore_test.go -------------------------------------------------------------------------------- /simenc/registry/proxy/proxymanifeststore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/proxy/proxymanifeststore.go -------------------------------------------------------------------------------- /simenc/registry/proxy/proxymetrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/proxy/proxymetrics.go -------------------------------------------------------------------------------- /simenc/registry/proxy/proxyregistry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/proxy/proxyregistry.go -------------------------------------------------------------------------------- /simenc/registry/proxy/proxytagservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/proxy/proxytagservice.go -------------------------------------------------------------------------------- /simenc/registry/proxy/proxytagservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/proxy/proxytagservice_test.go -------------------------------------------------------------------------------- /simenc/registry/proxy/scheduler/scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/proxy/scheduler/scheduler.go -------------------------------------------------------------------------------- /simenc/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/registry.go -------------------------------------------------------------------------------- /simenc/registry/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/registry_test.go -------------------------------------------------------------------------------- /simenc/registry/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/root.go -------------------------------------------------------------------------------- /simenc/registry/storage/blob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/blob_test.go -------------------------------------------------------------------------------- /simenc/registry/storage/blobcachemetrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/blobcachemetrics.go -------------------------------------------------------------------------------- /simenc/registry/storage/blobserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/blobserver.go -------------------------------------------------------------------------------- /simenc/registry/storage/blobstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/blobstore.go -------------------------------------------------------------------------------- /simenc/registry/storage/blobwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/blobwriter.go -------------------------------------------------------------------------------- /simenc/registry/storage/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/cache/cache.go -------------------------------------------------------------------------------- /simenc/registry/storage/cache/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/cache/redis/redis.go -------------------------------------------------------------------------------- /simenc/registry/storage/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/catalog.go -------------------------------------------------------------------------------- /simenc/registry/storage/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/catalog_test.go -------------------------------------------------------------------------------- /simenc/registry/storage/dedup.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/dedup.MD -------------------------------------------------------------------------------- /simenc/registry/storage/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/doc.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/azure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/azure/azure.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/base/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/base/base.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/fileinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/fileinfo.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/gcache/arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/gcache/arc.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/gcache/lfu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/gcache/lfu.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/gcache/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/gcache/lru.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/gcs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/gcs/doc.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/gcs/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/gcs/gcs.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/oss/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/oss/doc.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/oss/oss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/oss/oss.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/s3-aws/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/s3-aws/s3.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/s3-goamz/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/s3-goamz/s3.go -------------------------------------------------------------------------------- /simenc/registry/storage/driver/swift/swift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/driver/swift/swift.go -------------------------------------------------------------------------------- /simenc/registry/storage/filereader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/filereader.go -------------------------------------------------------------------------------- /simenc/registry/storage/filereader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/filereader_test.go -------------------------------------------------------------------------------- /simenc/registry/storage/garbagecollect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/garbagecollect.go -------------------------------------------------------------------------------- /simenc/registry/storage/j_dedup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/j_dedup.go -------------------------------------------------------------------------------- /simenc/registry/storage/linkedblobstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/linkedblobstore.go -------------------------------------------------------------------------------- /simenc/registry/storage/manifeststore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/manifeststore.go -------------------------------------------------------------------------------- /simenc/registry/storage/manifeststore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/manifeststore_test.go -------------------------------------------------------------------------------- /simenc/registry/storage/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/paths.go -------------------------------------------------------------------------------- /simenc/registry/storage/paths_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/paths_test.go -------------------------------------------------------------------------------- /simenc/registry/storage/purgeuploads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/purgeuploads.go -------------------------------------------------------------------------------- /simenc/registry/storage/purgeuploads_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/purgeuploads_test.go -------------------------------------------------------------------------------- /simenc/registry/storage/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/registry.go -------------------------------------------------------------------------------- /simenc/registry/storage/tagstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/tagstore.go -------------------------------------------------------------------------------- /simenc/registry/storage/tagstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/tagstore_test.go -------------------------------------------------------------------------------- /simenc/registry/storage/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/util.go -------------------------------------------------------------------------------- /simenc/registry/storage/vacuum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/vacuum.go -------------------------------------------------------------------------------- /simenc/registry/storage/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/walk.go -------------------------------------------------------------------------------- /simenc/registry/storage/walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/registry/storage/walk_test.go -------------------------------------------------------------------------------- /simenc/run/7000/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/7000/redis.conf -------------------------------------------------------------------------------- /simenc/run/7001/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/7001/redis.conf -------------------------------------------------------------------------------- /simenc/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/Dockerfile -------------------------------------------------------------------------------- /simenc/run/config-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/config-dev.yml -------------------------------------------------------------------------------- /simenc/run/flushall-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/flushall-cluster.sh -------------------------------------------------------------------------------- /simenc/run/redis-cluster-7002.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/redis-cluster-7002.conf -------------------------------------------------------------------------------- /simenc/run/redis-cluster-7003.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/redis-cluster-7003.conf -------------------------------------------------------------------------------- /simenc/run/redis-cluster-7004.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/redis-cluster-7004.conf -------------------------------------------------------------------------------- /simenc/run/redis-cluster-7005.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/redis-cluster-7005.conf -------------------------------------------------------------------------------- /simenc/run/redis-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/redis-compose.yml -------------------------------------------------------------------------------- /simenc/run/redis-forget-nodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/redis-forget-nodes.sh -------------------------------------------------------------------------------- /simenc/run/remotehostsamaranth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/remotehostsamaranth.txt -------------------------------------------------------------------------------- /simenc/run/remotehostshulk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/remotehostshulk.txt -------------------------------------------------------------------------------- /simenc/run/remotehostthors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/remotehostthors.txt -------------------------------------------------------------------------------- /simenc/run/run_redis_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/run_redis_cluster.sh -------------------------------------------------------------------------------- /simenc/run/run_registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/run_registry.sh -------------------------------------------------------------------------------- /simenc/run/stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/stack.yml -------------------------------------------------------------------------------- /simenc/run/start-redis-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/run/start-redis-cluster.sh -------------------------------------------------------------------------------- /simenc/stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/stack.yml -------------------------------------------------------------------------------- /simenc/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/tags.go -------------------------------------------------------------------------------- /simenc/testutil/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/testutil/handler.go -------------------------------------------------------------------------------- /simenc/testutil/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/testutil/manifests.go -------------------------------------------------------------------------------- /simenc/testutil/tarfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/testutil/tarfile.go -------------------------------------------------------------------------------- /simenc/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/uuid/uuid.go -------------------------------------------------------------------------------- /simenc/uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/uuid/uuid_test.go -------------------------------------------------------------------------------- /simenc/vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor.conf -------------------------------------------------------------------------------- /simenc/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/cloud.google.com/go/iam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/cloud.google.com/go/iam/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/cloud.google.com/go/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/cloud.google.com/go/iam/iam.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /simenc/vendor/github.com/denverdino/aliyungo/common/version.go: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | const Version = "0.1" 4 | -------------------------------------------------------------------------------- /simenc/vendor/github.com/docker/goamz/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/docker/goamz/AUTHORS -------------------------------------------------------------------------------- /simenc/vendor/github.com/docker/goamz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/docker/goamz/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-ini/ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/go-ini/ini/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-ini/ini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/go-ini/ini/Makefile -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-ini/ini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/go-ini/ini/README.md -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-ini/ini/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/go-ini/ini/error.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-ini/ini/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/go-ini/ini/ini.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-ini/ini/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/go-ini/ini/key.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-ini/ini/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/go-ini/ini/parser.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-ini/ini/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/go-ini/ini/struct.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-redis/redis/.gitignore: -------------------------------------------------------------------------------- 1 | *.rdb 2 | testdata/*/ 3 | -------------------------------------------------------------------------------- /simenc/vendor/github.com/go-redis/redis/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/go-redis/redis/tx.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/s2a-go/s2a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/s2a-go/s2a.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.12.0" 3 | } 4 | -------------------------------------------------------------------------------- /simenc/vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | /.idea 6 | -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/pretty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/pretty/License -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/pretty/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/pretty/Readme -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/pretty/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/pretty/diff.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/pretty/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/pretty/pretty.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/pretty/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/pretty/zero.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/text/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/text/License -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/text/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/text/Readme -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/text/doc.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/text/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/text/indent.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/kr/text/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/kr/text/wrap.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/ncw/swift/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | test-env* 4 | junk/ -------------------------------------------------------------------------------- /simenc/vendor/github.com/ncw/swift/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/ncw/swift/COPYING -------------------------------------------------------------------------------- /simenc/vendor/github.com/ncw/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/ncw/swift/README.md -------------------------------------------------------------------------------- /simenc/vendor/github.com/ncw/swift/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/ncw/swift/auth.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/ncw/swift/auth_v3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/ncw/swift/auth_v3.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/ncw/swift/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/ncw/swift/doc.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/ncw/swift/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/ncw/swift/meta.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/ncw/swift/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/ncw/swift/notes.txt -------------------------------------------------------------------------------- /simenc/vendor/github.com/ncw/swift/swift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/ncw/swift/swift.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/pierrec/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/pierrec/lz4/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/github.com/pierrec/lz4/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/pierrec/lz4/block.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/pierrec/lz4/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/pierrec/lz4/debug.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/pierrec/lz4/lz4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/pierrec/lz4/lz4.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /simenc/vendor/github.com/xenolf/lego/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/github.com/xenolf/lego/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/github.com/yvasiyarov/gorelic/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /simenc/vendor/github.com/yvasiyarov/newrelic_platform_go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /simenc/vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/PATENTS -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/README -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/adaptor.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/doc.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/errors.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/fmt.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/format.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/frame.go -------------------------------------------------------------------------------- /simenc/vendor/golang.org/x/xerrors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/golang.org/x/xerrors/wrap.go -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/cloud/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.111.0" 3 | } 4 | -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/cloud/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/cloud/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/cloud/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/cloud/doc.go -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/cloud/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/cloud/go.work -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /simenc/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/.gitignore -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go_import_path: gopkg.in/check.v1 4 | -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/README.md -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/benchmark.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/check.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/checkers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/checkers.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/helpers.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/printer.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/reporter.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/check.v1/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/check.v1/run.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /simenc/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /simenc/vendor/launchpad.net/gozk/zookeeper/.lbox: -------------------------------------------------------------------------------- 1 | propose -cr -for lp:gozk/zookeeper 2 | -------------------------------------------------------------------------------- /simenc/vendor/launchpad.net/gozk/zookeeper/README: -------------------------------------------------------------------------------- 1 | Check out https://wiki.ubuntu.com/gozk 2 | -------------------------------------------------------------------------------- /simenc/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/vendor/modules.txt -------------------------------------------------------------------------------- /simenc/version/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/version/print.go -------------------------------------------------------------------------------- /simenc/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/version/version.go -------------------------------------------------------------------------------- /simenc/version/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/simenc/version/version.sh -------------------------------------------------------------------------------- /training/NGT/ArrayFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/ArrayFile.cpp -------------------------------------------------------------------------------- /training/NGT/ArrayFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/ArrayFile.h -------------------------------------------------------------------------------- /training/NGT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/CMakeLists.txt -------------------------------------------------------------------------------- /training/NGT/Capi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Capi.cpp -------------------------------------------------------------------------------- /training/NGT/Capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Capi.h -------------------------------------------------------------------------------- /training/NGT/Clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Clustering.h -------------------------------------------------------------------------------- /training/NGT/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Command.cpp -------------------------------------------------------------------------------- /training/NGT/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Command.h -------------------------------------------------------------------------------- /training/NGT/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Common.h -------------------------------------------------------------------------------- /training/NGT/Graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Graph.cpp -------------------------------------------------------------------------------- /training/NGT/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Graph.h -------------------------------------------------------------------------------- /training/NGT/GraphOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/GraphOptimizer.h -------------------------------------------------------------------------------- /training/NGT/GraphReconstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/GraphReconstructor.h -------------------------------------------------------------------------------- /training/NGT/HashBasedBooleanSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/HashBasedBooleanSet.h -------------------------------------------------------------------------------- /training/NGT/Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Index.cpp -------------------------------------------------------------------------------- /training/NGT/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Index.h -------------------------------------------------------------------------------- /training/NGT/MmapManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/MmapManager.cpp -------------------------------------------------------------------------------- /training/NGT/MmapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/MmapManager.h -------------------------------------------------------------------------------- /training/NGT/MmapManagerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/MmapManagerDefs.h -------------------------------------------------------------------------------- /training/NGT/MmapManagerException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/MmapManagerException.h -------------------------------------------------------------------------------- /training/NGT/MmapManagerImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/MmapManagerImpl.hpp -------------------------------------------------------------------------------- /training/NGT/NGTQ/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/NGTQ/Command.h -------------------------------------------------------------------------------- /training/NGT/NGTQ/Quantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/NGTQ/Quantizer.h -------------------------------------------------------------------------------- /training/NGT/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Node.cpp -------------------------------------------------------------------------------- /training/NGT/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Node.h -------------------------------------------------------------------------------- /training/NGT/ObjectRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/ObjectRepository.h -------------------------------------------------------------------------------- /training/NGT/ObjectSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/ObjectSpace.h -------------------------------------------------------------------------------- /training/NGT/ObjectSpaceRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/ObjectSpaceRepository.h -------------------------------------------------------------------------------- /training/NGT/Optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Optimizer.h -------------------------------------------------------------------------------- /training/NGT/PrimitiveComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/PrimitiveComparator.h -------------------------------------------------------------------------------- /training/NGT/SharedMemoryAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/SharedMemoryAllocator.cpp -------------------------------------------------------------------------------- /training/NGT/SharedMemoryAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/SharedMemoryAllocator.h -------------------------------------------------------------------------------- /training/NGT/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Thread.cpp -------------------------------------------------------------------------------- /training/NGT/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Thread.h -------------------------------------------------------------------------------- /training/NGT/Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Tree.cpp -------------------------------------------------------------------------------- /training/NGT/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Tree.h -------------------------------------------------------------------------------- /training/NGT/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Version.cpp -------------------------------------------------------------------------------- /training/NGT/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/Version.h -------------------------------------------------------------------------------- /training/NGT/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/defines.h -------------------------------------------------------------------------------- /training/NGT/defines.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/NGT/defines.h.in -------------------------------------------------------------------------------- /training/bruteforce/bf_xdelta3_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/bruteforce/bf_xdelta3_all.cpp -------------------------------------------------------------------------------- /training/clustering/coarse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/clustering/coarse -------------------------------------------------------------------------------- /training/clustering/coarse_xdelta3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/clustering/coarse_xdelta3.cpp -------------------------------------------------------------------------------- /training/clustering/fine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/clustering/fine -------------------------------------------------------------------------------- /training/clustering/fine_xdelta3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/clustering/fine_xdelta3.cpp -------------------------------------------------------------------------------- /training/clustering/merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/clustering/merge -------------------------------------------------------------------------------- /training/clustering/merge_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/clustering/merge_files.c -------------------------------------------------------------------------------- /training/clustering/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/clustering/process_data.py -------------------------------------------------------------------------------- /training/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/compress.h -------------------------------------------------------------------------------- /training/decompress.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/decompress.ipynb -------------------------------------------------------------------------------- /training/deepsketch/deepsketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/deepsketch/deepsketch.h -------------------------------------------------------------------------------- /training/deepsketch/deepsketch_comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/deepsketch/deepsketch_comp.cpp -------------------------------------------------------------------------------- /training/finesse/finesse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/finesse/finesse.h -------------------------------------------------------------------------------- /training/finesse/finesse_comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/finesse/finesse_comp.cpp -------------------------------------------------------------------------------- /training/finesse/my_finesse/finesse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/finesse/my_finesse/finesse -------------------------------------------------------------------------------- /training/finesse/my_finesse/finesse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/finesse/my_finesse/finesse.h -------------------------------------------------------------------------------- /training/finesse/my_finesse/finesse_comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/finesse/my_finesse/finesse_comp.cpp -------------------------------------------------------------------------------- /training/finesse/my_finesse/merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/finesse/my_finesse/merge -------------------------------------------------------------------------------- /training/finesse/my_finesse/my_finesse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/finesse/my_finesse/my_finesse -------------------------------------------------------------------------------- /training/finesse/my_finesse/my_finesse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/finesse/my_finesse/my_finesse.cpp -------------------------------------------------------------------------------- /training/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/lz4.c -------------------------------------------------------------------------------- /training/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/lz4.h -------------------------------------------------------------------------------- /training/multi_cand/deepsketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/multi_cand/deepsketch.h -------------------------------------------------------------------------------- /training/multi_cand/deepsketch_multi_comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/multi_cand/deepsketch_multi_comp.cpp -------------------------------------------------------------------------------- /training/multi_cand/finesse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/multi_cand/finesse.h -------------------------------------------------------------------------------- /training/multi_cand/finesse_multi_comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/multi_cand/finesse_multi_comp.cpp -------------------------------------------------------------------------------- /training/training/cdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/training/cdc.py -------------------------------------------------------------------------------- /training/training/fastcdc_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/training/fastcdc_py.py -------------------------------------------------------------------------------- /training/training/model_converter_gh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/training/model_converter_gh.py -------------------------------------------------------------------------------- /training/training/train_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/training/train_baseline.py -------------------------------------------------------------------------------- /training/training/train_hashlayer_gh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/training/train_hashlayer_gh.py -------------------------------------------------------------------------------- /training/xdelta3/.deps/xdelta3-xdelta3.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /training/xdelta3/.deps/xdelta3decode-xdelta3.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /training/xdelta3/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/Android.mk -------------------------------------------------------------------------------- /training/xdelta3/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/CleanSpec.mk -------------------------------------------------------------------------------- /training/xdelta3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/LICENSE -------------------------------------------------------------------------------- /training/xdelta3/MODULE_LICENSE_GPL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /training/xdelta3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/Makefile -------------------------------------------------------------------------------- /training/xdelta3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/Makefile.am -------------------------------------------------------------------------------- /training/xdelta3/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/Makefile.in -------------------------------------------------------------------------------- /training/xdelta3/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/Makefile.mingw -------------------------------------------------------------------------------- /training/xdelta3/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/Makefile.orig -------------------------------------------------------------------------------- /training/xdelta3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/NOTICE -------------------------------------------------------------------------------- /training/xdelta3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/README -------------------------------------------------------------------------------- /training/xdelta3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/README.md -------------------------------------------------------------------------------- /training/xdelta3/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/aclocal.m4 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/output.0 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/output.1 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/output.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/output.2 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/output.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/output.3 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/output.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/output.4 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/requests -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/traces.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/traces.2 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/traces.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/traces.3 -------------------------------------------------------------------------------- /training/xdelta3/autom4te.cache/traces.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autom4te.cache/traces.4 -------------------------------------------------------------------------------- /training/xdelta3/autoscan.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/autoscan.log -------------------------------------------------------------------------------- /training/xdelta3/badcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/badcopy.c -------------------------------------------------------------------------------- /training/xdelta3/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/compile -------------------------------------------------------------------------------- /training/xdelta3/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/config.h -------------------------------------------------------------------------------- /training/xdelta3/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/config.h.in -------------------------------------------------------------------------------- /training/xdelta3/config.h.in~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/config.h.in~ -------------------------------------------------------------------------------- /training/xdelta3/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/config.log -------------------------------------------------------------------------------- /training/xdelta3/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/config.status -------------------------------------------------------------------------------- /training/xdelta3/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/configure -------------------------------------------------------------------------------- /training/xdelta3/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/configure.ac -------------------------------------------------------------------------------- /training/xdelta3/configure.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/configure.scan -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/CMakeLists.txt -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/COPYING -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/README -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/btree.h -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/btree_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/btree_bench.cc -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/btree_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/btree_container.h -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/btree_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/btree_map.h -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/btree_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/btree_set.h -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/btree_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/btree_test.cc -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/btree_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/btree_test.h -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/safe_btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/safe_btree.h -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/safe_btree_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/safe_btree_map.h -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/safe_btree_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/safe_btree_set.h -------------------------------------------------------------------------------- /training/xdelta3/cpp-btree/safe_btree_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/cpp-btree/safe_btree_test.cc -------------------------------------------------------------------------------- /training/xdelta3/draft-korn-vcdiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/draft-korn-vcdiff.txt -------------------------------------------------------------------------------- /training/xdelta3/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/Makefile -------------------------------------------------------------------------------- /training/xdelta3/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/README -------------------------------------------------------------------------------- /training/xdelta3/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/README.md -------------------------------------------------------------------------------- /training/xdelta3/examples/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/a -------------------------------------------------------------------------------- /training/xdelta3/examples/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/b -------------------------------------------------------------------------------- /training/xdelta3/examples/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/c -------------------------------------------------------------------------------- /training/xdelta3/examples/cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/cal -------------------------------------------------------------------------------- /training/xdelta3/examples/cal_xdelta3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/cal_xdelta3.cpp -------------------------------------------------------------------------------- /training/xdelta3/examples/checksum_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/checksum_test.cc -------------------------------------------------------------------------------- /training/xdelta3/examples/compare_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/compare_test.c -------------------------------------------------------------------------------- /training/xdelta3/examples/decoded.testdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/decoded.testdata -------------------------------------------------------------------------------- /training/xdelta3/examples/encode_decode_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/encode_decode_test -------------------------------------------------------------------------------- /training/xdelta3/examples/encoded.testdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/encoded.testdata -------------------------------------------------------------------------------- /training/xdelta3/examples/iOS/xdelta3-ios-test/xdelta3-ios-test/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /training/xdelta3/examples/input1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/input1 -------------------------------------------------------------------------------- /training/xdelta3/examples/input2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/input2 -------------------------------------------------------------------------------- /training/xdelta3/examples/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/out -------------------------------------------------------------------------------- /training/xdelta3/examples/sf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/sf.cpp -------------------------------------------------------------------------------- /training/xdelta3/examples/small_page_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/small_page_test -------------------------------------------------------------------------------- /training/xdelta3/examples/small_page_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/small_page_test.c -------------------------------------------------------------------------------- /training/xdelta3/examples/speed_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/speed_test.c -------------------------------------------------------------------------------- /training/xdelta3/examples/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/test.cpp -------------------------------------------------------------------------------- /training/xdelta3/examples/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/test.h -------------------------------------------------------------------------------- /training/xdelta3/examples/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/examples/test2.cpp -------------------------------------------------------------------------------- /training/xdelta3/generate_build_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/generate_build_files.sh -------------------------------------------------------------------------------- /training/xdelta3/go/src/regtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/go/src/regtest.go -------------------------------------------------------------------------------- /training/xdelta3/go/src/xdelta/rstream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/go/src/xdelta/rstream.go -------------------------------------------------------------------------------- /training/xdelta3/go/src/xdelta/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/go/src/xdelta/run.go -------------------------------------------------------------------------------- /training/xdelta3/go/src/xdelta/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/go/src/xdelta/test.go -------------------------------------------------------------------------------- /training/xdelta3/go/src/xdelta/tgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/go/src/xdelta/tgroup.go -------------------------------------------------------------------------------- /training/xdelta3/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/install-sh -------------------------------------------------------------------------------- /training/xdelta3/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/libtool -------------------------------------------------------------------------------- /training/xdelta3/linkxd3lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/linkxd3lib.c -------------------------------------------------------------------------------- /training/xdelta3/m4/ax_pkg_swig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/m4/ax_pkg_swig.m4 -------------------------------------------------------------------------------- /training/xdelta3/m4/ax_python_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/m4/ax_python_devel.m4 -------------------------------------------------------------------------------- /training/xdelta3/m4/ax_swig_python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/m4/ax_swig_python.m4 -------------------------------------------------------------------------------- /training/xdelta3/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/missing -------------------------------------------------------------------------------- /training/xdelta3/my_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/my_func.c -------------------------------------------------------------------------------- /training/xdelta3/plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/plot.sh -------------------------------------------------------------------------------- /training/xdelta3/rcs_junk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/rcs_junk.cc -------------------------------------------------------------------------------- /training/xdelta3/run_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/run_release.sh -------------------------------------------------------------------------------- /training/xdelta3/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /training/xdelta3/testing/.deps/xdelta3checksum-checksum_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /training/xdelta3/testing/.deps/xdelta3checksum-checksum_test_c.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /training/xdelta3/testing/.deps/xdelta3regtest-regtest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /training/xdelta3/testing/.deps/xdelta3regtest-regtest_c.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /training/xdelta3/testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/Makefile -------------------------------------------------------------------------------- /training/xdelta3/testing/checksum_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/checksum_test.cc -------------------------------------------------------------------------------- /training/xdelta3/testing/checksum_test_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/checksum_test_c.c -------------------------------------------------------------------------------- /training/xdelta3/testing/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/cmp.h -------------------------------------------------------------------------------- /training/xdelta3/testing/delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/delta.h -------------------------------------------------------------------------------- /training/xdelta3/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/file.h -------------------------------------------------------------------------------- /training/xdelta3/testing/modify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/modify.h -------------------------------------------------------------------------------- /training/xdelta3/testing/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/random.h -------------------------------------------------------------------------------- /training/xdelta3/testing/regtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/regtest.cc -------------------------------------------------------------------------------- /training/xdelta3/testing/regtest_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/regtest_c.c -------------------------------------------------------------------------------- /training/xdelta3/testing/run_release.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | (cd .. && ./run_release.sh) 3 | -------------------------------------------------------------------------------- /training/xdelta3/testing/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/segment.h -------------------------------------------------------------------------------- /training/xdelta3/testing/sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/sizes.h -------------------------------------------------------------------------------- /training/xdelta3/testing/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/test.h -------------------------------------------------------------------------------- /training/xdelta3/testing/xdelta3-regtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/xdelta3-regtest.py -------------------------------------------------------------------------------- /training/xdelta3/testing/xdelta3-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/testing/xdelta3-test.py -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-blkcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-blkcache.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-cfgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-cfgs.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-decode.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-djw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-djw.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-fgk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-fgk.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-hash.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-internal.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-list.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-lzma.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-main.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-merge.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-second.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-second.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3-test.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3.1 -------------------------------------------------------------------------------- /training/xdelta3/xdelta3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3.c -------------------------------------------------------------------------------- /training/xdelta3/xdelta3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3.h -------------------------------------------------------------------------------- /training/xdelta3/xdelta3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3.i -------------------------------------------------------------------------------- /training/xdelta3/xdelta3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3.vcxproj -------------------------------------------------------------------------------- /training/xdelta3/xdelta3.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3.wxi -------------------------------------------------------------------------------- /training/xdelta3/xdelta3.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xdelta3/xdelta3.wxs -------------------------------------------------------------------------------- /training/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xxhash.c -------------------------------------------------------------------------------- /training/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/training/xxhash.h -------------------------------------------------------------------------------- /warmup_and_run/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/warmup_and_run/client.py -------------------------------------------------------------------------------- /warmup_and_run/config-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/warmup_and_run/config-example.yml -------------------------------------------------------------------------------- /warmup_and_run/warmup_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/warmup_and_run/warmup_run.py -------------------------------------------------------------------------------- /workload/download_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/workload/download_docker.py -------------------------------------------------------------------------------- /workload/process_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suntong30/SimEnc/HEAD/workload/process_json.py --------------------------------------------------------------------------------