├── .github └── workflows │ └── ci.yml ├── 3rdparty └── github.com │ └── Knetic │ └── govaluate │ ├── CONTRIBUTORS │ ├── EvaluableExpression.go │ ├── EvaluableExpression_sql.go │ ├── ExpressionToken.go │ ├── LICENSE │ ├── MANUAL.md │ ├── OperatorSymbol.go │ ├── README.md │ ├── TokenKind.go │ ├── evaluationStage.go │ ├── expressionFunctions.go │ ├── expressionOutputStream.go │ ├── lexerState.go │ ├── lexerStream.go │ ├── note.txt │ ├── parameters.go │ ├── parsing.go │ ├── sanitizedParameters.go │ ├── stagePlanner.go │ ├── test.sh │ └── tokenStream.go ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── README.zh-cn.md ├── THIRD_PARTY_LICENSES.txt ├── api ├── ads │ ├── evaluation_result.go │ ├── interface.go │ └── types.go ├── ext │ └── types.go ├── pms │ ├── interface.go │ └── types.go └── swagger │ ├── asserter.yaml │ ├── policy-check.yaml │ └── policy-manage.yaml ├── benchmarks ├── README.md ├── README.zh-cn.md └── eval_b_test.go ├── ci ├── mkdoc │ └── Dockerfile └── setBuildEnv.sh ├── cmd ├── spctl │ ├── client │ │ └── client.go │ ├── command │ │ ├── command_pdl_test.go │ │ ├── command_test.go │ │ ├── config.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── discover.go │ │ ├── get.go │ │ ├── global.go │ │ ├── root.go │ │ ├── run_etcd_test.sh │ │ ├── run_file_test.sh │ │ ├── run_mongodb_test.sh │ │ └── version.go │ └── main.go ├── speedle-ads │ ├── main.go │ └── stores.go └── speedle-pms │ ├── main.go │ └── stores.go ├── deployment ├── docker │ ├── speedle-ads │ │ ├── Dockerfile │ │ └── entrypoint.sh │ └── speedle-pms │ │ ├── Dockerfile │ │ └── entrypoint.sh ├── helm │ ├── speedle-dev │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ └── speedle-prod │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ │ └── values.yaml └── k8s │ ├── speedle-dev.yaml │ └── speedle-prod.yaml ├── docs ├── .DS_Store ├── .gitkeep ├── CNAME ├── _config.yml ├── about │ └── index.html ├── blog │ ├── discovery │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── page │ │ └── 1 │ │ │ └── index.html │ └── what-is-speedle │ │ └── index.html ├── categories │ ├── blog │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── cloudnative │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── docs │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ ├── 2 │ │ │ └── index.html │ │ │ ├── 3 │ │ │ └── index.html │ │ │ ├── 4 │ │ │ └── index.html │ │ │ ├── 5 │ │ │ └── index.html │ │ │ └── 6 │ │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── integration │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── page │ │ ├── 1 │ │ │ └── index.html │ │ └── 2 │ │ │ └── index.html │ └── tour │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ └── 1 │ │ └── index.html ├── contribute │ └── index.html ├── css │ ├── custom.css │ ├── font.css │ ├── highlight.css │ ├── kube.css │ ├── kube.demo.css │ ├── kube.legenda.css │ ├── kube.min.css │ ├── master.css │ ├── swagger-custom.css │ ├── swagger-ui.css │ └── theme.min.css ├── developer │ └── index.html ├── devops │ └── index.html ├── docs │ ├── api │ │ ├── asserter_api │ │ │ └── index.html │ │ ├── decision_api │ │ │ └── index.html │ │ ├── index.html │ │ ├── index.xml │ │ └── management_api │ │ │ └── index.html │ ├── architecture │ │ └── index.html │ ├── assertor │ │ └── index.html │ ├── custom-function │ │ └── index.html │ ├── decisions │ │ └── index.html │ ├── deployment │ │ └── index.html │ ├── idd │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── logging │ │ └── index.html │ ├── pms │ │ ├── diagnosis │ │ │ └── index.html │ │ ├── discover │ │ │ └── index.html │ │ ├── global-policy │ │ │ └── index.html │ │ ├── index.html │ │ ├── index.xml │ │ └── policy-mgmt │ │ │ └── index.html │ ├── security │ │ └── index.html │ ├── spdl │ │ └── index.html │ ├── store │ │ └── index.html │ ├── usecases │ │ └── index.html │ └── versions │ │ └── index.html ├── en │ ├── index.html │ └── sitemap.xml ├── hugo │ ├── .gitignore │ ├── Makefile │ ├── archetypes │ │ ├── blog.md │ │ ├── default.md │ │ ├── docs.md │ │ └── integrations.md │ ├── config.toml │ ├── content │ │ ├── _index.md │ │ ├── _index.zh.md │ │ ├── about.md │ │ ├── about.zh.md │ │ ├── blog │ │ │ ├── discovery.md │ │ │ └── what-is-speedle.md │ │ ├── contribute.md │ │ ├── contribute.zh.md │ │ ├── developer.md │ │ ├── devops.md │ │ ├── docs │ │ │ ├── _index.md │ │ │ ├── _index.zh.md │ │ │ ├── api │ │ │ │ ├── _index.md │ │ │ │ ├── _index.zh.md │ │ │ │ ├── asserter_api.md │ │ │ │ ├── asserter_api.zh.md │ │ │ │ ├── decision_api.md │ │ │ │ ├── decision_api.zh.md │ │ │ │ ├── management_api.md │ │ │ │ └── management_api.zh.md │ │ │ ├── architecture.md │ │ │ ├── architecture.zh.md │ │ │ ├── assertor.md │ │ │ ├── assertor.zh.md │ │ │ ├── custom-function.md │ │ │ ├── custom-function.zh.md │ │ │ ├── decisions.md │ │ │ ├── decisions.zh.md │ │ │ ├── deployment-embeded.zh.md │ │ │ ├── deployment.md │ │ │ ├── deployment.zh.md │ │ │ ├── idd.md │ │ │ ├── idd.zh.md │ │ │ ├── logging.md │ │ │ ├── logging.zh.md │ │ │ ├── pms │ │ │ │ ├── _index.md │ │ │ │ ├── _index.zh.md │ │ │ │ ├── diagnosis.md │ │ │ │ ├── diagnosis.zh.md │ │ │ │ ├── discover.md │ │ │ │ ├── discover.zh.md │ │ │ │ ├── global-policy.md │ │ │ │ ├── global-policy.zh.md │ │ │ │ ├── policy-mgmt.md │ │ │ │ └── policy-mgmt.zh.md │ │ │ ├── security.md │ │ │ ├── security.zh.md │ │ │ ├── spdl.md │ │ │ ├── spdl.zh.md │ │ │ ├── store.md │ │ │ ├── store.zh.md │ │ │ ├── usecases.md │ │ │ ├── usecases.zh.md │ │ │ ├── versions.md │ │ │ └── versions.zh.md │ │ ├── integrations │ │ │ ├── _index.md │ │ │ ├── _index.zh.md │ │ │ ├── docker.md │ │ │ ├── docker.zh.md │ │ │ ├── istio.md │ │ │ ├── istio.zh.md │ │ │ ├── kubernetes.md │ │ │ └── kubernetes.zh.md │ │ ├── quick-start.md │ │ ├── quick-start.zh.md │ │ ├── support.md │ │ ├── support.zh.md │ │ └── tour.md │ ├── i18n │ │ ├── en.toml │ │ └── zh.toml │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── blog │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── docs │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── index.html │ │ ├── integrations │ │ │ └── list.html │ │ ├── partials │ │ │ ├── favicon.html │ │ │ ├── footer.html │ │ │ ├── head.html │ │ │ ├── header.html │ │ │ ├── i18nlist.html │ │ │ ├── icon.html │ │ │ ├── main-menu.html │ │ │ ├── menu.html │ │ │ ├── meta │ │ │ │ ├── name-author.html │ │ │ │ └── ogimage.html │ │ │ ├── page-summary.html │ │ │ ├── pagination.html │ │ │ ├── post │ │ │ │ ├── byauthor.html │ │ │ │ ├── category-link.html │ │ │ │ ├── meta.html │ │ │ │ ├── related-content.html │ │ │ │ └── tag-link.html │ │ │ ├── scripts │ │ │ │ └── animation.html │ │ │ ├── sidebar-footer.html │ │ │ ├── sidebar.html │ │ │ ├── site-verification.html │ │ │ ├── toc.html │ │ │ └── tocdef.html │ │ ├── playground.html │ │ └── shortcodes │ │ │ └── swagger-spec.html │ ├── static │ │ ├── .gitkeep │ │ ├── css │ │ │ ├── custom.css │ │ │ ├── font.css │ │ │ ├── highlight.css │ │ │ ├── kube.css │ │ │ ├── kube.demo.css │ │ │ ├── kube.legenda.css │ │ │ ├── kube.min.css │ │ │ ├── master.css │ │ │ ├── swagger-custom.css │ │ │ ├── swagger-ui.css │ │ │ └── theme.min.css │ │ ├── img │ │ │ └── speedle │ │ │ │ ├── .directory │ │ │ │ ├── 1. Simple Policy Definition Language.svg │ │ │ │ ├── 10.Integrations.svg │ │ │ │ ├── 11. Contribute.svg │ │ │ │ ├── 12. Hero .svg │ │ │ │ ├── 13. Enterprise .svg │ │ │ │ ├── 14. Support.svg │ │ │ │ ├── 15. Tour.svg │ │ │ │ ├── 16. Enterprise.svg │ │ │ │ ├── 18. Github.svg │ │ │ │ ├── 2. Cloud Native.svg │ │ │ │ ├── 20. Background 1.svg │ │ │ │ ├── 21. Background 2.svg │ │ │ │ ├── 22. Kubernetes.svg │ │ │ │ ├── 23. Istio.svg │ │ │ │ ├── 24. Docker.svg │ │ │ │ ├── 25. Speedle logo.svg │ │ │ │ ├── 26. Speedle logo white.svg │ │ │ │ ├── 28. Mail.svg │ │ │ │ ├── 29. Slack.svg │ │ │ │ ├── 3. Policy Discovery.svg │ │ │ │ ├── 4. RBAC-ABAC.svg │ │ │ │ ├── 5. Centralized Policy Management.svg │ │ │ │ ├── 6. Pluggable Identity.svg │ │ │ │ ├── 7. Persistence.svg │ │ │ │ ├── 8. Community.svg │ │ │ │ ├── 9. Getting Started.svg │ │ │ │ ├── Green Tick.png │ │ │ │ ├── Oracle_logo.png │ │ │ │ ├── Oracle_logo.svg.png │ │ │ │ ├── Slack_RGB.svg │ │ │ │ ├── Speedle_logo.svg │ │ │ │ ├── Speedle_logo_about.svg │ │ │ │ ├── Speedle_logo_b.svg │ │ │ │ ├── Speedle_logo_w.svg │ │ │ │ ├── Tick.svg │ │ │ │ ├── andprincipal.png │ │ │ │ ├── arrow.svg │ │ │ │ ├── authzpolicy.png │ │ │ │ ├── istio-blue-logo.svg │ │ │ │ ├── k8s-logo.svg │ │ │ │ ├── logger.jpg │ │ │ │ ├── oci_compute.png │ │ │ │ ├── policystore.png │ │ │ │ ├── principal.png │ │ │ │ ├── resource.png │ │ │ │ ├── rolepolicy.png │ │ │ │ ├── spdl-syntax-full.png │ │ │ │ ├── spdl-syntax.png │ │ │ │ ├── spdlarch.jpg │ │ │ │ ├── speedle_1.png │ │ │ │ ├── speedle_2.png │ │ │ │ ├── speedle_3.png │ │ │ │ └── wechat.JPG │ │ ├── js │ │ │ ├── functions.min.js │ │ │ ├── jquery-2.1.4.min.js │ │ │ ├── jquery.backtothetop │ │ │ │ ├── jquery.backtothetop.js │ │ │ │ └── jquery.backtothetop.min.js │ │ │ ├── kube.js │ │ │ ├── kube.legenda.js │ │ │ ├── kube.min.js │ │ │ ├── master.js │ │ │ ├── swagger-js │ │ │ │ ├── swagger-ui-bundle.js │ │ │ │ └── test.js │ │ │ └── tocbot.min.js │ │ ├── protobuf │ │ │ ├── ads.proto │ │ │ └── pms.proto │ │ └── swagger │ │ │ ├── asserter.yaml │ │ │ ├── policy-check.yaml │ │ │ └── policy-manage.yaml │ └── themes │ │ ├── kube │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── theme.toml │ │ └── netlify.toml ├── images │ ├── .gitkeep │ ├── Speedle+ Horizontal-01.png │ ├── Speedle_log_black.svg │ ├── Speedle_log_blue.svg │ ├── Speedle_log_cyan.svg │ ├── Speedle_log_purple.svg │ ├── Speedle_log_rotate.svg │ ├── Speedle_log_yellow.svg │ ├── Speedle_logo_b.svg │ ├── authzpolicy.png │ ├── rolepolicy.png │ ├── sp_logo.png │ ├── sp_small.png │ ├── spdl.png │ ├── spdl_trans.png │ ├── speedle.png │ ├── speedle.vsdx │ ├── speedle_black.png │ ├── speedle_blue.png │ ├── speedle_cyan.png │ ├── speedle_green.png │ ├── speedle_oracle_red.png │ ├── speedle_orange.png │ ├── speedle_purple.png │ ├── speedle_red.png │ ├── speedle_white.png │ └── speedle_yellow.png ├── img │ ├── .DS_Store │ └── speedle │ │ ├── .DS_Store │ │ ├── .directory │ │ ├── 1. Simple Policy Definition Language.svg │ │ ├── 10.Integrations.svg │ │ ├── 11. Contribute.svg │ │ ├── 12. Hero .svg │ │ ├── 13. Enterprise .svg │ │ ├── 14. Support.svg │ │ ├── 15. Tour.svg │ │ ├── 16. Enterprise.svg │ │ ├── 18. Github.svg │ │ ├── 2. Cloud Native.svg │ │ ├── 20. Background 1.svg │ │ ├── 21. Background 2.svg │ │ ├── 22. Kubernetes.svg │ │ ├── 23. Istio.svg │ │ ├── 24. Docker.svg │ │ ├── 25. Speedle logo.svg │ │ ├── 26. Speedle logo white.svg │ │ ├── 28. Mail.svg │ │ ├── 29. Slack.svg │ │ ├── 3. Policy Discovery.svg │ │ ├── 4. RBAC-ABAC.svg │ │ ├── 5. Centralized Policy Management.svg │ │ ├── 6. Pluggable Identity.svg │ │ ├── 7. Persistence.svg │ │ ├── 8. Community.svg │ │ ├── 9. Getting Started.svg │ │ ├── Green Tick.png │ │ ├── Oracle_logo.png │ │ ├── Oracle_logo.svg.png │ │ ├── Slack_RGB.svg │ │ ├── Speedle_logo.svg │ │ ├── Speedle_logo_about.svg │ │ ├── Speedle_logo_b.svg │ │ ├── Speedle_logo_w.svg │ │ ├── Tick.svg │ │ ├── andprincipal.png │ │ ├── arrow.svg │ │ ├── authzpolicy.png │ │ ├── istio-blue-logo.svg │ │ ├── k8s-logo.svg │ │ ├── logger.jpg │ │ ├── oci_compute.png │ │ ├── policystore.png │ │ ├── principal.png │ │ ├── resource.png │ │ ├── rolepolicy.png │ │ ├── spdl-syntax-full.png │ │ ├── spdl-syntax.png │ │ ├── spdlarch.jpg │ │ ├── speedle_1.png │ │ ├── speedle_2.png │ │ ├── speedle_3.png │ │ └── wechat.JPG ├── index.html ├── index.xml ├── integrations │ ├── docker │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── istio │ │ └── index.html │ └── kubernetes │ │ └── index.html ├── js │ ├── functions.min.js │ ├── jquery-2.1.4.min.js │ ├── jquery.backtothetop │ │ ├── jquery.backtothetop.js │ │ └── jquery.backtothetop.min.js │ ├── kube.js │ ├── kube.legenda.js │ ├── kube.min.js │ ├── master.js │ ├── swagger-js │ │ ├── swagger-ui-bundle.js │ │ └── test.js │ └── tocbot.min.js ├── protobuf │ ├── ads.proto │ └── pms.proto ├── public │ ├── .gitkeep │ ├── README.md │ └── speedle │ │ ├── .gitkeep │ │ ├── docs │ │ ├── .gitkeep │ │ ├── aabc.md │ │ ├── apis.md │ │ ├── architecture.md │ │ ├── customers.md │ │ ├── deployment.md │ │ ├── diagnosis.md │ │ ├── discover.md │ │ ├── faq.md │ │ ├── globalRolePolicy.md │ │ ├── identityDomain.md │ │ ├── img │ │ │ ├── .gitkeep │ │ │ ├── Oracle_logo.png │ │ │ ├── Oracle_logo.svg.png │ │ │ ├── favicon.ico │ │ │ ├── logger.jpg │ │ │ ├── spdl-syntax.png │ │ │ ├── spdlarch.jpg │ │ │ ├── speedle.png │ │ │ └── wechat.JPG │ │ ├── index.md │ │ ├── integration.md │ │ ├── logging.md │ │ ├── mongodb_support.md │ │ ├── quickstart.md │ │ ├── spdl.md │ │ ├── store.md │ │ ├── tutorial.md │ │ ├── usecases.md │ │ ├── versions.md │ │ └── why.md │ │ └── mkdocs.yml ├── quick-start │ └── index.html ├── sitemap.xml ├── support │ └── index.html ├── swagger │ ├── asserter.yaml │ ├── policy-check.yaml │ └── policy-manage.yaml ├── tags │ ├── 2018 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── ads │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── api │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ └── 2 │ │ │ └── index.html │ ├── asserter │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── community │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── contribution │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── core │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ ├── 2 │ │ │ └── index.html │ │ │ └── 3 │ │ │ └── index.html │ ├── developer │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── discovery │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── docker │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── guide │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ ├── 2 │ │ │ └── index.html │ │ │ └── 3 │ │ │ └── index.html │ ├── https │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── identity-domain │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── identity │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── istio │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── k8s │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── kubernetes │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── logging │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── operator │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── page │ │ ├── 1 │ │ │ └── index.html │ │ ├── 2 │ │ │ └── index.html │ │ ├── 3 │ │ │ └── index.html │ │ ├── 4 │ │ │ └── index.html │ │ ├── 5 │ │ │ └── index.html │ │ ├── 6 │ │ │ └── index.html │ │ ├── 7 │ │ │ └── index.html │ │ ├── 8 │ │ │ └── index.html │ │ └── 9 │ │ │ └── index.html │ ├── pdp │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── pluggable │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── pms │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── policy │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── releases │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── security │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── spdl │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── speedle │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── storage │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── tls │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── token-asserter │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── usecase │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── v0.1.0 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ └── 2 │ │ │ └── index.html │ ├── versions │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── webhook │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ └── why │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ └── 1 │ │ └── index.html ├── tour │ └── index.html ├── versions │ ├── index.html │ ├── index.xml │ └── page │ │ └── 1 │ │ └── index.html └── zh │ ├── about │ └── index.html │ ├── categories │ ├── cloudnative │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── docs │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ ├── 2 │ │ │ └── index.html │ │ │ ├── 3 │ │ │ └── index.html │ │ │ ├── 4 │ │ │ └── index.html │ │ │ ├── 5 │ │ │ └── index.html │ │ │ └── 6 │ │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── integration │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ └── page │ │ └── 1 │ │ └── index.html │ ├── contribute │ └── index.html │ ├── docs │ ├── api │ │ ├── asserter_api │ │ │ └── index.html │ │ ├── decision_api │ │ │ └── index.html │ │ ├── index.html │ │ ├── index.xml │ │ └── management_api │ │ │ └── index.html │ ├── architecture │ │ └── index.html │ ├── assertor │ │ └── index.html │ ├── custom-function │ │ └── index.html │ ├── decisions │ │ └── index.html │ ├── deployment-embeded │ │ └── index.html │ ├── deployment │ │ └── index.html │ ├── idd │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── logging │ │ └── index.html │ ├── pms │ │ ├── diagnosis │ │ │ └── index.html │ │ ├── discover │ │ │ └── index.html │ │ ├── global-policy │ │ │ └── index.html │ │ ├── index.html │ │ ├── index.xml │ │ └── policy-mgmt │ │ │ └── index.html │ ├── security │ │ └── index.html │ ├── spdl │ │ └── index.html │ ├── store │ │ └── index.html │ ├── usecases │ │ └── index.html │ └── versions │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── integrations │ ├── docker │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── istio │ │ └── index.html │ └── kubernetes │ │ └── index.html │ ├── quick-start │ └── index.html │ ├── sitemap.xml │ ├── support │ └── index.html │ ├── tags │ ├── ads │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── api │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ └── 2 │ │ │ └── index.html │ ├── asserter │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── community │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── contribution │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── core │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ ├── 2 │ │ │ └── index.html │ │ │ └── 3 │ │ │ └── index.html │ ├── discovery │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── docker │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── guide │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ └── 2 │ │ │ └── index.html │ ├── https │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── identity-domain │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── identity │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── istio │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── k8s │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── kubernetes │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── logging │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── page │ │ ├── 1 │ │ │ └── index.html │ │ ├── 2 │ │ │ └── index.html │ │ ├── 3 │ │ │ └── index.html │ │ ├── 4 │ │ │ └── index.html │ │ ├── 5 │ │ │ └── index.html │ │ ├── 6 │ │ │ └── index.html │ │ ├── 7 │ │ │ └── index.html │ │ └── 8 │ │ │ └── index.html │ ├── pdp │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── pluggable │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── pms │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── policy │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── releases │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── security │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── spdl │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── storage │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── tls │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── token-asserter │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── usecase │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── v0.1.0 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ └── 2 │ │ │ └── index.html │ ├── versions │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ └── webhook │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ └── 1 │ │ └── index.html │ └── versions │ ├── index.html │ ├── index.xml │ └── page │ └── 1 │ └── index.html ├── go.mod ├── go.sum ├── pkg ├── assertion │ ├── asserter.go │ ├── asserter_test.go │ └── testserver.go ├── cfg │ ├── config.go │ ├── config_etcd.json │ ├── config_file.json │ ├── config_test.go │ └── myconfig.json ├── cmd │ └── flags │ │ └── params.go ├── errors │ ├── code.go │ └── errors.go ├── eval │ ├── basepolicycache.go │ ├── common_utils_test.go │ ├── discover.go │ ├── evaluator.go │ ├── evaluator_allowed_test.go │ ├── evaluator_condition_test.go │ ├── evaluator_custom_function.go │ ├── evaluator_deny_role_test.go │ ├── evaluator_diagnose_test.go │ ├── evaluator_factory.go │ ├── evaluator_function_test.go │ ├── evaluator_global_role_test.go │ ├── evaluator_res_test.go │ ├── evaluator_role_test.go │ ├── evaluator_rolepolicy_test.go │ ├── evaluator_test.go │ ├── evaluator_utils.go │ ├── funcServer.crt │ ├── funcServer.key │ ├── function │ │ └── builtin_functions.go │ ├── policycache.go │ ├── policycache_test.go │ ├── rolepolicycache.go │ ├── rolepolicycache_test.go │ └── runtimeservice.go ├── httputils │ └── utils.go ├── logging │ ├── auditLog.go │ ├── demo │ │ ├── config.json │ │ └── demo.go │ └── initlog.go ├── pdl │ ├── pdl.go │ └── pdl_test.go ├── store │ ├── discover.go │ ├── etcd │ │ ├── discover.go │ │ ├── discover_test.go │ │ ├── embedEtcdUtil.go │ │ ├── etcdStore.go │ │ ├── etcdStoreConfig.json │ │ ├── etcdStore_test.go │ │ └── storeBuilder.go │ ├── file │ │ ├── discover.go │ │ ├── discover_test.go │ │ ├── fileStore.go │ │ ├── fileStore_test.go │ │ ├── spdl.go │ │ ├── spdl_test.go │ │ ├── spdl_test.spdl │ │ └── storeBuider.go │ ├── mongodb │ │ ├── mongoStoreConfig.json │ │ ├── mongodbStore.go │ │ ├── mongodbStore_test.go │ │ └── storeBuiler.go │ ├── store.go │ └── utils │ │ └── utils.go ├── subjectutils │ └── utils.go ├── suid │ ├── suid.go │ └── suid_test.go └── svcs │ ├── adsgrpc │ ├── adsgrpc_test.go │ ├── impl.go │ ├── pb │ │ ├── service.pb.go │ │ └── service.proto │ ├── run_etcd_test.sh │ ├── run_file_test.sh │ └── run_mongodb_test.sh │ ├── adsrest │ ├── ads_server_test.go │ ├── check.go │ ├── check_prepare_test.go │ ├── check_test.go │ ├── discover.go │ ├── fakestore.json │ ├── granted_perms_test.go │ ├── granted_roles_test.go │ ├── is_allowed_cache_test.go │ ├── is_allowed_cond_attribute_test.go │ ├── is_allowed_test.go │ ├── routers.go │ ├── run_etcd_test.sh │ ├── run_file_test.sh │ ├── run_mongodb_test.sh │ └── run_test_test.sh │ ├── constants.go │ ├── pmsgrpc │ ├── grpc_test.go │ ├── impl.go │ ├── pb │ │ ├── service.pb.go │ │ └── service.proto │ ├── run_etcd_test.sh │ ├── run_file_test.sh │ └── run_mongodb_test.sh │ ├── pmsimpl │ └── systemLimitation.go │ └── pmsrest │ ├── config_etcd.json │ ├── config_file.json │ ├── config_mongodb.json │ ├── discover.go │ ├── manager.go │ ├── manager_test.go │ ├── manager_unit_test.go │ ├── routers.go │ ├── run_etcd_test.sh │ ├── run_file_test.sh │ ├── run_mongodb_test.sh │ ├── start_etcd.sh │ ├── stop_etcd.sh │ ├── tls │ ├── client-ca.crt │ ├── client.crt │ ├── client.key │ ├── server-ca.crt │ ├── server.crt │ └── server.key │ ├── tls_test-force-client-cert.sh │ └── tls_test.sh ├── samples ├── adsclient │ ├── go │ │ ├── README.md │ │ └── src │ │ │ └── speedle │ │ │ ├── api │ │ │ └── authz │ │ │ │ └── type.go │ │ │ └── rest │ │ │ └── authz │ │ │ └── client │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── example │ │ │ └── main.go │ │ │ ├── interface.go │ │ │ └── types.go │ └── java │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── example │ │ └── Example.java │ │ └── oracle │ │ └── speedle │ │ └── ads │ │ └── client │ │ ├── ADSException.java │ │ ├── Client.java │ │ ├── Factory.java │ │ ├── Principal.java │ │ ├── RequestContext.java │ │ ├── Subject.java │ │ └── rest │ │ ├── IsAllowedResponse.java │ │ └── RestClient.java ├── embedded │ └── expenses │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ ├── cmd │ │ └── main.go │ │ ├── expenses.spdl │ │ ├── expenses_handler.go │ │ └── speedle_handler.go └── integration │ ├── docker-integration │ ├── Makefile │ ├── README.md │ ├── main.go │ ├── plugin.go │ └── systemd │ │ ├── speedle-docker-plugin.service │ │ └── speedle-docker-plugin.socket │ ├── istio-integration │ ├── Makefile │ ├── README.md │ ├── adapter │ │ ├── speedle │ │ │ ├── config │ │ │ │ └── config.proto │ │ │ └── speedle.go │ │ └── speedlegrpcadapter │ │ │ ├── cmd │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ └── main.go │ │ │ ├── deployment.yaml.template │ │ │ ├── operator_cfg.yaml.template │ │ │ ├── speedlegrpcadapter.go │ │ │ └── speedlegrpcadapter.yaml │ └── set-env.sh.template │ └── kubernetes-integration │ ├── README.md │ ├── user.csv │ ├── webhook.go │ └── webhook.yaml ├── setTestEnv.sh ├── testutil ├── cmdTestUtil.go ├── gcmd.go ├── grpcTestUtil.go ├── msg │ └── output.go ├── param │ └── param.go ├── restTestUtil.go ├── testBase.go └── testUtil.go ├── vendor ├── github.com │ ├── armon │ │ └── go-radix │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── radix.go │ ├── beorn7 │ │ └── perks │ │ │ ├── LICENSE │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── coreos │ │ ├── bbolt │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bolt_386.go │ │ │ ├── bolt_amd64.go │ │ │ ├── bolt_arm.go │ │ │ ├── bolt_arm64.go │ │ │ ├── bolt_linux.go │ │ │ ├── bolt_mips64x.go │ │ │ ├── bolt_mipsx.go │ │ │ ├── bolt_openbsd.go │ │ │ ├── bolt_ppc.go │ │ │ ├── bolt_ppc64.go │ │ │ ├── bolt_ppc64le.go │ │ │ ├── bolt_s390x.go │ │ │ ├── bolt_unix.go │ │ │ ├── bolt_unix_solaris.go │ │ │ ├── bolt_windows.go │ │ │ ├── boltsync_unix.go │ │ │ ├── bucket.go │ │ │ ├── cursor.go │ │ │ ├── db.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── freelist.go │ │ │ ├── node.go │ │ │ ├── page.go │ │ │ └── tx.go │ │ ├── etcd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── alarm │ │ │ │ └── alarms.go │ │ │ ├── auth │ │ │ │ ├── authpb │ │ │ │ │ ├── auth.pb.go │ │ │ │ │ └── auth.proto │ │ │ │ ├── doc.go │ │ │ │ ├── jwt.go │ │ │ │ ├── nop.go │ │ │ │ ├── range_perm_cache.go │ │ │ │ ├── simple_token.go │ │ │ │ └── store.go │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── auth_role.go │ │ │ │ ├── auth_user.go │ │ │ │ ├── cancelreq.go │ │ │ │ ├── client.go │ │ │ │ ├── cluster_error.go │ │ │ │ ├── curl.go │ │ │ │ ├── discover.go │ │ │ │ ├── doc.go │ │ │ │ ├── keys.generated.go │ │ │ │ ├── keys.go │ │ │ │ ├── members.go │ │ │ │ └── util.go │ │ │ ├── clientv3 │ │ │ │ ├── README.md │ │ │ │ ├── auth.go │ │ │ │ ├── client.go │ │ │ │ ├── cluster.go │ │ │ │ ├── compact_op.go │ │ │ │ ├── compare.go │ │ │ │ ├── concurrency │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── election.go │ │ │ │ │ ├── key.go │ │ │ │ │ ├── mutex.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── stm.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── health_balancer.go │ │ │ │ ├── kv.go │ │ │ │ ├── lease.go │ │ │ │ ├── logger.go │ │ │ │ ├── maintenance.go │ │ │ │ ├── op.go │ │ │ │ ├── options.go │ │ │ │ ├── ready_wait.go │ │ │ │ ├── retry.go │ │ │ │ ├── sort.go │ │ │ │ ├── txn.go │ │ │ │ └── watch.go │ │ │ ├── compactor │ │ │ │ ├── compactor.go │ │ │ │ ├── doc.go │ │ │ │ ├── periodic.go │ │ │ │ └── revision.go │ │ │ ├── discovery │ │ │ │ └── discovery.go │ │ │ ├── embed │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── etcd.go │ │ │ │ ├── serve.go │ │ │ │ └── util.go │ │ │ ├── error │ │ │ │ └── error.go │ │ │ ├── etcdserver │ │ │ │ ├── api │ │ │ │ │ ├── capability.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── etcdhttp │ │ │ │ │ │ ├── base.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── metrics.go │ │ │ │ │ │ └── peer.go │ │ │ │ │ ├── v2http │ │ │ │ │ │ ├── capability.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── client_auth.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── httptypes │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ └── member.go │ │ │ │ │ │ └── metrics.go │ │ │ │ │ ├── v2v3 │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── store.go │ │ │ │ │ │ └── watcher.go │ │ │ │ │ ├── v3client │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── v3client.go │ │ │ │ │ ├── v3election │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── election.go │ │ │ │ │ │ └── v3electionpb │ │ │ │ │ │ │ ├── gw │ │ │ │ │ │ │ └── v3election.pb.gw.go │ │ │ │ │ │ │ ├── v3election.pb.go │ │ │ │ │ │ │ └── v3election.proto │ │ │ │ │ ├── v3lock │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── lock.go │ │ │ │ │ │ └── v3lockpb │ │ │ │ │ │ │ ├── gw │ │ │ │ │ │ │ └── v3lock.pb.gw.go │ │ │ │ │ │ │ ├── v3lock.pb.go │ │ │ │ │ │ │ └── v3lock.proto │ │ │ │ │ └── v3rpc │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── codec.go │ │ │ │ │ │ ├── grpc.go │ │ │ │ │ │ ├── header.go │ │ │ │ │ │ ├── interceptor.go │ │ │ │ │ │ ├── key.go │ │ │ │ │ │ ├── lease.go │ │ │ │ │ │ ├── maintenance.go │ │ │ │ │ │ ├── member.go │ │ │ │ │ │ ├── metrics.go │ │ │ │ │ │ ├── quota.go │ │ │ │ │ │ ├── rpctypes │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ └── md.go │ │ │ │ │ │ ├── util.go │ │ │ │ │ │ └── watch.go │ │ │ │ ├── apply.go │ │ │ │ ├── apply_auth.go │ │ │ │ ├── apply_v2.go │ │ │ │ ├── auth │ │ │ │ │ ├── auth.go │ │ │ │ │ └── auth_requests.go │ │ │ │ ├── backend.go │ │ │ │ ├── cluster_util.go │ │ │ │ ├── config.go │ │ │ │ ├── consistent_index.go │ │ │ │ ├── corrupt.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── etcdserverpb │ │ │ │ │ ├── etcdserver.pb.go │ │ │ │ │ ├── etcdserver.proto │ │ │ │ │ ├── gw │ │ │ │ │ │ └── rpc.pb.gw.go │ │ │ │ │ ├── raft_internal.pb.go │ │ │ │ │ ├── raft_internal.proto │ │ │ │ │ ├── raft_internal_stringer.go │ │ │ │ │ ├── rpc.pb.go │ │ │ │ │ └── rpc.proto │ │ │ │ ├── membership │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── member.go │ │ │ │ │ └── store.go │ │ │ │ ├── metrics.go │ │ │ │ ├── quota.go │ │ │ │ ├── raft.go │ │ │ │ ├── server.go │ │ │ │ ├── snapshot_merge.go │ │ │ │ ├── stats │ │ │ │ │ ├── leader.go │ │ │ │ │ ├── queue.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── stats.go │ │ │ │ ├── storage.go │ │ │ │ ├── util.go │ │ │ │ ├── v2_server.go │ │ │ │ └── v3_server.go │ │ │ ├── lease │ │ │ │ ├── doc.go │ │ │ │ ├── leasehttp │ │ │ │ │ ├── doc.go │ │ │ │ │ └── http.go │ │ │ │ ├── leasepb │ │ │ │ │ ├── lease.pb.go │ │ │ │ │ └── lease.proto │ │ │ │ └── lessor.go │ │ │ ├── mvcc │ │ │ │ ├── backend │ │ │ │ │ ├── backend.go │ │ │ │ │ ├── batch_tx.go │ │ │ │ │ ├── config_default.go │ │ │ │ │ ├── config_linux.go │ │ │ │ │ ├── config_windows.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── read_tx.go │ │ │ │ │ └── tx_buffer.go │ │ │ │ ├── doc.go │ │ │ │ ├── index.go │ │ │ │ ├── key_index.go │ │ │ │ ├── kv.go │ │ │ │ ├── kv_view.go │ │ │ │ ├── kvstore.go │ │ │ │ ├── kvstore_compaction.go │ │ │ │ ├── kvstore_txn.go │ │ │ │ ├── metrics.go │ │ │ │ ├── metrics_txn.go │ │ │ │ ├── mvccpb │ │ │ │ │ ├── kv.pb.go │ │ │ │ │ └── kv.proto │ │ │ │ ├── revision.go │ │ │ │ ├── util.go │ │ │ │ ├── watchable_store.go │ │ │ │ ├── watchable_store_txn.go │ │ │ │ ├── watcher.go │ │ │ │ └── watcher_group.go │ │ │ ├── pkg │ │ │ │ ├── adt │ │ │ │ │ ├── doc.go │ │ │ │ │ └── interval_tree.go │ │ │ │ ├── contention │ │ │ │ │ ├── contention.go │ │ │ │ │ └── doc.go │ │ │ │ ├── cors │ │ │ │ │ └── cors.go │ │ │ │ ├── cpuutil │ │ │ │ │ ├── doc.go │ │ │ │ │ └── endian.go │ │ │ │ ├── crc │ │ │ │ │ └── crc.go │ │ │ │ ├── debugutil │ │ │ │ │ ├── doc.go │ │ │ │ │ └── pprof.go │ │ │ │ ├── fileutil │ │ │ │ │ ├── dir_unix.go │ │ │ │ │ ├── dir_windows.go │ │ │ │ │ ├── fileutil.go │ │ │ │ │ ├── lock.go │ │ │ │ │ ├── lock_flock.go │ │ │ │ │ ├── lock_linux.go │ │ │ │ │ ├── lock_plan9.go │ │ │ │ │ ├── lock_solaris.go │ │ │ │ │ ├── lock_unix.go │ │ │ │ │ ├── lock_windows.go │ │ │ │ │ ├── preallocate.go │ │ │ │ │ ├── preallocate_darwin.go │ │ │ │ │ ├── preallocate_unix.go │ │ │ │ │ ├── preallocate_unsupported.go │ │ │ │ │ ├── purge.go │ │ │ │ │ ├── sync.go │ │ │ │ │ ├── sync_darwin.go │ │ │ │ │ └── sync_linux.go │ │ │ │ ├── httputil │ │ │ │ │ └── httputil.go │ │ │ │ ├── idutil │ │ │ │ │ └── id.go │ │ │ │ ├── ioutil │ │ │ │ │ ├── pagewriter.go │ │ │ │ │ ├── readcloser.go │ │ │ │ │ ├── reader.go │ │ │ │ │ └── util.go │ │ │ │ ├── logutil │ │ │ │ │ └── merge_logger.go │ │ │ │ ├── netutil │ │ │ │ │ ├── isolate_linux.go │ │ │ │ │ ├── isolate_stub.go │ │ │ │ │ ├── netutil.go │ │ │ │ │ ├── routes.go │ │ │ │ │ └── routes_linux.go │ │ │ │ ├── pathutil │ │ │ │ │ └── path.go │ │ │ │ ├── pbutil │ │ │ │ │ └── pbutil.go │ │ │ │ ├── runtime │ │ │ │ │ ├── fds_linux.go │ │ │ │ │ └── fds_other.go │ │ │ │ ├── schedule │ │ │ │ │ ├── doc.go │ │ │ │ │ └── schedule.go │ │ │ │ ├── srv │ │ │ │ │ └── srv.go │ │ │ │ ├── tlsutil │ │ │ │ │ ├── cipher_suites.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── tlsutil.go │ │ │ │ ├── transport │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── keepalive_listener.go │ │ │ │ │ ├── limit_listen.go │ │ │ │ │ ├── listener.go │ │ │ │ │ ├── listener_tls.go │ │ │ │ │ ├── timeout_conn.go │ │ │ │ │ ├── timeout_dialer.go │ │ │ │ │ ├── timeout_listener.go │ │ │ │ │ ├── timeout_transport.go │ │ │ │ │ ├── tls.go │ │ │ │ │ ├── transport.go │ │ │ │ │ └── unix_listener.go │ │ │ │ ├── types │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── id.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── slice.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urlsmap.go │ │ │ │ └── wait │ │ │ │ │ ├── wait.go │ │ │ │ │ └── wait_time.go │ │ │ ├── proxy │ │ │ │ └── grpcproxy │ │ │ │ │ └── adapter │ │ │ │ │ ├── auth_client_adapter.go │ │ │ │ │ ├── chan_stream.go │ │ │ │ │ ├── cluster_client_adapter.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── election_client_adapter.go │ │ │ │ │ ├── kv_client_adapter.go │ │ │ │ │ ├── lease_client_adapter.go │ │ │ │ │ ├── lock_client_adapter.go │ │ │ │ │ ├── maintenance_client_adapter.go │ │ │ │ │ └── watch_client_adapter.go │ │ │ ├── raft │ │ │ │ ├── README.md │ │ │ │ ├── design.md │ │ │ │ ├── doc.go │ │ │ │ ├── log.go │ │ │ │ ├── log_unstable.go │ │ │ │ ├── logger.go │ │ │ │ ├── node.go │ │ │ │ ├── progress.go │ │ │ │ ├── raft.go │ │ │ │ ├── raftpb │ │ │ │ │ ├── raft.pb.go │ │ │ │ │ └── raft.proto │ │ │ │ ├── rawnode.go │ │ │ │ ├── read_only.go │ │ │ │ ├── status.go │ │ │ │ ├── storage.go │ │ │ │ └── util.go │ │ │ ├── rafthttp │ │ │ │ ├── coder.go │ │ │ │ ├── doc.go │ │ │ │ ├── http.go │ │ │ │ ├── metrics.go │ │ │ │ ├── msg_codec.go │ │ │ │ ├── msgappv2_codec.go │ │ │ │ ├── peer.go │ │ │ │ ├── peer_status.go │ │ │ │ ├── pipeline.go │ │ │ │ ├── probing_status.go │ │ │ │ ├── remote.go │ │ │ │ ├── snapshot_sender.go │ │ │ │ ├── stream.go │ │ │ │ ├── transport.go │ │ │ │ ├── urlpick.go │ │ │ │ └── util.go │ │ │ ├── snap │ │ │ │ ├── db.go │ │ │ │ ├── message.go │ │ │ │ ├── metrics.go │ │ │ │ ├── snappb │ │ │ │ │ ├── snap.pb.go │ │ │ │ │ └── snap.proto │ │ │ │ └── snapshotter.go │ │ │ ├── store │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_history.go │ │ │ │ ├── event_queue.go │ │ │ │ ├── metrics.go │ │ │ │ ├── node.go │ │ │ │ ├── node_extern.go │ │ │ │ ├── stats.go │ │ │ │ ├── store.go │ │ │ │ ├── ttl_key_heap.go │ │ │ │ ├── watcher.go │ │ │ │ └── watcher_hub.go │ │ │ ├── version │ │ │ │ └── version.go │ │ │ └── wal │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── file_pipeline.go │ │ │ │ ├── metrics.go │ │ │ │ ├── repair.go │ │ │ │ ├── util.go │ │ │ │ ├── wal.go │ │ │ │ └── walpb │ │ │ │ ├── record.go │ │ │ │ ├── record.pb.go │ │ │ │ └── record.proto │ │ ├── go-semver │ │ │ ├── LICENSE │ │ │ └── semver │ │ │ │ ├── semver.go │ │ │ │ └── sort.go │ │ ├── go-systemd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── journal │ │ │ │ └── journal.go │ │ └── pkg │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── capnslog │ │ │ ├── README.md │ │ │ ├── formatters.go │ │ │ ├── glog_formatter.go │ │ │ ├── init.go │ │ │ ├── init_windows.go │ │ │ ├── journald_formatter.go │ │ │ ├── log_hijack.go │ │ │ ├── logmap.go │ │ │ ├── pkg_logger.go │ │ │ └── syslog_formatter.go │ ├── dgrijalva │ │ └── jwt-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ └── token.go │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ └── yaml.go │ ├── go-stack │ │ └── stack │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── stack.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── custom_gogo.go │ │ │ ├── decode.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── table_marshal.go │ │ │ ├── table_marshal_gogo.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── table_unmarshal_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ └── timestamp_gogo.go │ │ │ └── protoc-gen-gogo │ │ │ └── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.go │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ └── helper.go │ ├── golang │ │ ├── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── descriptor │ │ │ │ └── descriptor.go │ │ │ ├── jsonpb │ │ │ │ └── jsonpb.go │ │ │ ├── proto │ │ │ │ ├── clone.go │ │ │ │ ├── decode.go │ │ │ │ ├── deprecated.go │ │ │ │ ├── discard.go │ │ │ │ ├── encode.go │ │ │ │ ├── equal.go │ │ │ │ ├── extensions.go │ │ │ │ ├── lib.go │ │ │ │ ├── message_set.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── table_marshal.go │ │ │ │ ├── table_merge.go │ │ │ │ ├── table_unmarshal.go │ │ │ │ ├── text.go │ │ │ │ └── text_parser.go │ │ │ ├── protoc-gen-go │ │ │ │ └── descriptor │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ └── descriptor.proto │ │ │ └── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ ├── any.pb.go │ │ │ │ └── any.proto │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ ├── duration.pb.go │ │ │ │ └── duration.proto │ │ │ │ ├── struct │ │ │ │ ├── struct.pb.go │ │ │ │ └── struct.proto │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp │ │ │ │ ├── timestamp.pb.go │ │ │ │ └── timestamp.proto │ │ │ │ └── wrappers │ │ │ │ ├── wrappers.pb.go │ │ │ │ └── wrappers.proto │ │ └── snappy │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── decode.go │ │ │ ├── decode_amd64.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_other.go │ │ │ ├── go.mod │ │ │ └── snappy.go │ ├── google │ │ └── btree │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── btree.go │ ├── gorilla │ │ ├── context │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ └── doc.go │ │ ├── handlers │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── canonical.go │ │ │ ├── compress.go │ │ │ ├── cors.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── handlers.go │ │ │ ├── handlers_go18.go │ │ │ ├── handlers_pre18.go │ │ │ ├── logging.go │ │ │ ├── proxy_headers.go │ │ │ └── recovery.go │ │ ├── mux │ │ │ ├── .travis.yml │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context_gorilla.go │ │ │ ├── context_native.go │ │ │ ├── doc.go │ │ │ ├── middleware.go │ │ │ ├── mux.go │ │ │ ├── regexp.go │ │ │ ├── route.go │ │ │ └── test_helpers.go │ │ └── websocket │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_clone.go │ │ │ ├── client_clone_legacy.go │ │ │ ├── compression.go │ │ │ ├── conn.go │ │ │ ├── conn_write.go │ │ │ ├── conn_write_legacy.go │ │ │ ├── doc.go │ │ │ ├── json.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── prepared.go │ │ │ ├── proxy.go │ │ │ ├── server.go │ │ │ ├── trace.go │ │ │ ├── trace_17.go │ │ │ ├── util.go │ │ │ └── x_net_proxy.go │ ├── grpc-ecosystem │ │ ├── go-grpc-middleware │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── DOC.md │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── chain.go │ │ │ ├── doc.go │ │ │ ├── makefile │ │ │ ├── slack.png │ │ │ └── wrappers.go │ │ ├── go-grpc-prometheus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_metrics.go │ │ │ ├── client_reporter.go │ │ │ ├── makefile │ │ │ ├── metric_options.go │ │ │ ├── server.go │ │ │ ├── server_metrics.go │ │ │ ├── server_reporter.go │ │ │ └── util.go │ │ └── grpc-gateway │ │ │ ├── LICENSE.txt │ │ │ ├── internal │ │ │ ├── BUILD.bazel │ │ │ ├── errors.pb.go │ │ │ └── errors.proto │ │ │ ├── runtime │ │ │ ├── BUILD.bazel │ │ │ ├── context.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── fieldmask.go │ │ │ ├── handler.go │ │ │ ├── marshal_httpbodyproto.go │ │ │ ├── marshal_json.go │ │ │ ├── marshal_jsonpb.go │ │ │ ├── marshal_proto.go │ │ │ ├── marshaler.go │ │ │ ├── marshaler_registry.go │ │ │ ├── mux.go │ │ │ ├── pattern.go │ │ │ ├── proto2_convert.go │ │ │ ├── proto_errors.go │ │ │ └── query.go │ │ │ └── utilities │ │ │ ├── BUILD.bazel │ │ │ ├── doc.go │ │ │ ├── pattern.go │ │ │ ├── readerfactory.go │ │ │ └── trie.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ ├── trap_windows.go │ │ │ └── trap_windows_1.4.go │ ├── jonboulle │ │ └── clockwork │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── clockwork.go │ ├── klauspost │ │ └── compress │ │ │ ├── LICENSE │ │ │ ├── fse │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── bytereader.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ └── fse.go │ │ │ ├── huff0 │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── bytereader.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ └── huff0.go │ │ │ ├── snappy │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── decode.go │ │ │ ├── decode_amd64.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_other.go │ │ │ ├── runbench.cmd │ │ │ └── snappy.go │ │ │ └── zstd │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── blockdec.go │ │ │ ├── blockenc.go │ │ │ ├── blocktype_string.go │ │ │ ├── bytebuf.go │ │ │ ├── bytereader.go │ │ │ ├── decoder.go │ │ │ ├── decoder_options.go │ │ │ ├── enc_dfast.go │ │ │ ├── enc_fast.go │ │ │ ├── enc_params.go │ │ │ ├── encoder.go │ │ │ ├── encoder_options.go │ │ │ ├── framedec.go │ │ │ ├── frameenc.go │ │ │ ├── fse_decoder.go │ │ │ ├── fse_encoder.go │ │ │ ├── fse_predefined.go │ │ │ ├── hash.go │ │ │ ├── history.go │ │ │ ├── internal │ │ │ └── xxhash │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── xxhash.go │ │ │ │ ├── xxhash_amd64.go │ │ │ │ ├── xxhash_amd64.s │ │ │ │ ├── xxhash_other.go │ │ │ │ └── xxhash_safe.go │ │ │ ├── seqdec.go │ │ │ ├── seqenc.go │ │ │ ├── snappy.go │ │ │ └── zstd.go │ ├── konsorten │ │ └── go-windows-terminal-sequences │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── sequences.go │ │ │ └── sequences_dummy.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pbutil │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── natefinch │ │ └── lumberjack │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── chown.go │ │ │ ├── chown_linux.go │ │ │ └── lumberjack.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ └── stack.go │ ├── prometheus │ │ ├── client_golang │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── histogram.go │ │ │ │ ├── http.go │ │ │ │ ├── internal │ │ │ │ └── metric.go │ │ │ │ ├── labels.go │ │ │ │ ├── metric.go │ │ │ │ ├── observer.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── promhttp │ │ │ │ ├── delegator.go │ │ │ │ ├── delegator_1_8.go │ │ │ │ ├── delegator_pre_1_8.go │ │ │ │ ├── http.go │ │ │ │ ├── instrument_client.go │ │ │ │ ├── instrument_client_1_8.go │ │ │ │ └── instrument_server.go │ │ │ │ ├── registry.go │ │ │ │ ├── summary.go │ │ │ │ ├── timer.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.go │ │ │ │ └── wrap.go │ │ ├── client_model │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── go │ │ │ │ └── metrics.pb.go │ │ ├── common │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── expfmt │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ ├── internal │ │ │ │ └── bitbucket.org │ │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── README.txt │ │ │ │ │ └── autoneg.go │ │ │ └── model │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ └── value.go │ │ └── procfs │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── buddyinfo.go │ │ │ ├── doc.go │ │ │ ├── fixtures.ttar │ │ │ ├── fs.go │ │ │ ├── internal │ │ │ └── util │ │ │ │ ├── parse.go │ │ │ │ └── sysreadfile_linux.go │ │ │ ├── ipvs.go │ │ │ ├── mdstat.go │ │ │ ├── mountstats.go │ │ │ ├── net_dev.go │ │ │ ├── nfs │ │ │ ├── nfs.go │ │ │ ├── parse.go │ │ │ ├── parse_nfs.go │ │ │ └── parse_nfsd.go │ │ │ ├── proc.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_ns.go │ │ │ ├── proc_stat.go │ │ │ ├── stat.go │ │ │ ├── ttar │ │ │ ├── xfrm.go │ │ │ └── xfs │ │ │ ├── parse.go │ │ │ └── xfs.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── soheilhy │ │ └── cmux │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── buffer.go │ │ │ ├── cmux.go │ │ │ ├── doc.go │ │ │ ├── matchers.go │ │ │ └── patricia.go │ ├── spf13 │ │ ├── cobra │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completions.md │ │ │ ├── cobra.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_win.go │ │ │ └── zsh_completions.go │ │ └── 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 │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int64.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_string.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ ├── tmc │ │ └── grpc-websocket-proxy │ │ │ ├── LICENSE │ │ │ └── wsproxy │ │ │ ├── doc.go │ │ │ └── websocket_proxy.go │ ├── ugorji │ │ └── go │ │ │ ├── LICENSE │ │ │ └── codec │ │ │ ├── 0doc.go │ │ │ ├── README.md │ │ │ ├── binc.go │ │ │ ├── cbor.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fast-path.generated.go │ │ │ ├── fast-path.go.tmpl │ │ │ ├── fast-path.not.go │ │ │ ├── gen-dec-array.go.tmpl │ │ │ ├── gen-dec-map.go.tmpl │ │ │ ├── gen-enc-chan.go.tmpl │ │ │ ├── gen-helper.generated.go │ │ │ ├── gen-helper.go.tmpl │ │ │ ├── gen.generated.go │ │ │ ├── gen.go │ │ │ ├── goversion_arrayof_gte_go15.go │ │ │ ├── goversion_arrayof_lt_go15.go │ │ │ ├── goversion_makemap_gte_go19.go │ │ │ ├── goversion_makemap_lt_go19.go │ │ │ ├── goversion_unexportedembeddedptr_gte_go110.go │ │ │ ├── goversion_unexportedembeddedptr_lt_go110.go │ │ │ ├── goversion_unsupported_lt_go14.go │ │ │ ├── goversion_vendor_eq_go15.go │ │ │ ├── goversion_vendor_eq_go16.go │ │ │ ├── goversion_vendor_gte_go17.go │ │ │ ├── goversion_vendor_lt_go15.go │ │ │ ├── helper.go │ │ │ ├── helper_internal.go │ │ │ ├── helper_not_unsafe.go │ │ │ ├── helper_unsafe.go │ │ │ ├── json.go │ │ │ ├── mammoth-test.go.tmpl │ │ │ ├── mammoth2-test.go.tmpl │ │ │ ├── msgpack.go │ │ │ ├── rpc.go │ │ │ ├── simple.go │ │ │ ├── test-cbor-goldens.json │ │ │ └── test.py │ ├── xdg │ │ ├── scram │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_conv.go │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── parse.go │ │ │ ├── scram.go │ │ │ ├── server.go │ │ │ └── server_conv.go │ │ └── stringprep │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bidi.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── map.go │ │ │ ├── profile.go │ │ │ ├── saslprep.go │ │ │ ├── set.go │ │ │ └── tables.go │ └── xiang90 │ │ └── probing │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── prober.go │ │ ├── server.go │ │ └── status.go ├── go.mongodb.org │ └── mongo-driver │ │ ├── LICENSE │ │ ├── bson │ │ ├── bson.go │ │ ├── bson_1_8.go │ │ ├── bsoncodec │ │ │ ├── bsoncodec.go │ │ │ ├── byte_slice_codec.go │ │ │ ├── cond_addr_codec.go │ │ │ ├── default_value_decoders.go │ │ │ ├── default_value_encoders.go │ │ │ ├── doc.go │ │ │ ├── empty_interface_codec.go │ │ │ ├── map_codec.go │ │ │ ├── mode.go │ │ │ ├── pointer_codec.go │ │ │ ├── proxy.go │ │ │ ├── registry.go │ │ │ ├── slice_codec.go │ │ │ ├── string_codec.go │ │ │ ├── struct_codec.go │ │ │ ├── struct_tag_parser.go │ │ │ ├── time_codec.go │ │ │ ├── types.go │ │ │ └── uint_codec.go │ │ ├── bsonoptions │ │ │ ├── byte_slice_codec_options.go │ │ │ ├── empty_interface_codec_options.go │ │ │ ├── map_codec_options.go │ │ │ ├── slice_codec_options.go │ │ │ ├── string_codec_options.go │ │ │ ├── struct_codec_options.go │ │ │ ├── time_codec_options.go │ │ │ └── uint_codec_options.go │ │ ├── bsonrw │ │ │ ├── copier.go │ │ │ ├── doc.go │ │ │ ├── extjson_parser.go │ │ │ ├── extjson_reader.go │ │ │ ├── extjson_tables.go │ │ │ ├── extjson_wrappers.go │ │ │ ├── extjson_writer.go │ │ │ ├── json_scanner.go │ │ │ ├── mode.go │ │ │ ├── reader.go │ │ │ ├── value_reader.go │ │ │ ├── value_writer.go │ │ │ └── writer.go │ │ ├── bsontype │ │ │ └── bsontype.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── marshal.go │ │ ├── primitive │ │ │ ├── decimal.go │ │ │ ├── objectid.go │ │ │ └── primitive.go │ │ ├── primitive_codecs.go │ │ ├── raw.go │ │ ├── raw_element.go │ │ ├── raw_value.go │ │ ├── registry.go │ │ ├── types.go │ │ └── unmarshal.go │ │ ├── event │ │ └── monitoring.go │ │ ├── internal │ │ ├── const.go │ │ ├── error.go │ │ └── semaphore.go │ │ ├── mongo │ │ ├── batch_cursor.go │ │ ├── bulk_write.go │ │ ├── bulk_write_models.go │ │ ├── change_stream.go │ │ ├── change_stream_deployment.go │ │ ├── client.go │ │ ├── client_encryption.go │ │ ├── collection.go │ │ ├── crypt_retrievers.go │ │ ├── cursor.go │ │ ├── database.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── index_options_builder.go │ │ ├── index_view.go │ │ ├── mongo.go │ │ ├── mongocryptd.go │ │ ├── options │ │ │ ├── aggregateoptions.go │ │ │ ├── autoencryptionoptions.go │ │ │ ├── bulkwriteoptions.go │ │ │ ├── changestreamoptions.go │ │ │ ├── clientencryptionoptions.go │ │ │ ├── clientoptions.go │ │ │ ├── clientoptions_1_10.go │ │ │ ├── clientoptions_1_9.go │ │ │ ├── collectionoptions.go │ │ │ ├── countoptions.go │ │ │ ├── datakeyoptions.go │ │ │ ├── dboptions.go │ │ │ ├── deleteoptions.go │ │ │ ├── distinctoptions.go │ │ │ ├── encryptoptions.go │ │ │ ├── estimatedcountoptions.go │ │ │ ├── findoptions.go │ │ │ ├── gridfsoptions.go │ │ │ ├── indexoptions.go │ │ │ ├── insertoptions.go │ │ │ ├── listcollectionsoptions.go │ │ │ ├── listdatabasesoptions.go │ │ │ ├── mongooptions.go │ │ │ ├── replaceoptions.go │ │ │ ├── runcmdoptions.go │ │ │ ├── sessionoptions.go │ │ │ ├── transactionoptions.go │ │ │ └── updateoptions.go │ │ ├── readconcern │ │ │ └── readconcern.go │ │ ├── readpref │ │ │ ├── mode.go │ │ │ ├── options.go │ │ │ └── readpref.go │ │ ├── results.go │ │ ├── session.go │ │ ├── single_result.go │ │ ├── util.go │ │ └── writeconcern │ │ │ └── writeconcern.go │ │ ├── tag │ │ └── tag.go │ │ ├── version │ │ └── version.go │ │ └── x │ │ ├── bsonx │ │ ├── array.go │ │ ├── bsoncore │ │ │ ├── bsoncore.go │ │ │ ├── document.go │ │ │ ├── document_sequence.go │ │ │ ├── element.go │ │ │ ├── tables.go │ │ │ └── value.go │ │ ├── constructor.go │ │ ├── document.go │ │ ├── element.go │ │ ├── mdocument.go │ │ ├── primitive_codecs.go │ │ ├── registry.go │ │ └── value.go │ │ └── mongo │ │ └── driver │ │ ├── DESIGN.md │ │ ├── address │ │ └── addr.go │ │ ├── auth │ │ ├── auth.go │ │ ├── cred.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── gssapi.go │ │ ├── gssapi_not_enabled.go │ │ ├── gssapi_not_supported.go │ │ ├── internal │ │ │ └── gssapi │ │ │ │ ├── gss.go │ │ │ │ ├── gss_wrapper.c │ │ │ │ ├── gss_wrapper.h │ │ │ │ ├── sspi.go │ │ │ │ ├── sspi_wrapper.c │ │ │ │ └── sspi_wrapper.h │ │ ├── mongodbcr.go │ │ ├── plain.go │ │ ├── sasl.go │ │ ├── scram.go │ │ ├── util.go │ │ └── x509.go │ │ ├── batch_cursor.go │ │ ├── batches.go │ │ ├── compression.go │ │ ├── connstring │ │ └── connstring.go │ │ ├── crypt.go │ │ ├── description │ │ ├── description.go │ │ ├── feature.go │ │ ├── server.go │ │ ├── server_kind.go │ │ ├── server_selector.go │ │ ├── topology.go │ │ ├── topology_kind.go │ │ ├── version.go │ │ └── version_range.go │ │ ├── dns │ │ └── dns.go │ │ ├── driver.go │ │ ├── errors.go │ │ ├── legacy.go │ │ ├── list_collections_batch_cursor.go │ │ ├── mongocrypt │ │ ├── binary.go │ │ ├── errors.go │ │ ├── errors_not_enabled.go │ │ ├── mongocrypt.go │ │ ├── mongocrypt_context.go │ │ ├── mongocrypt_context_not_enabled.go │ │ ├── mongocrypt_kms_context.go │ │ ├── mongocrypt_kms_context_not_enabled.go │ │ ├── mongocrypt_not_enabled.go │ │ ├── options │ │ │ ├── mongocrypt_context_options.go │ │ │ ├── mongocrypt_options.go │ │ │ └── provider_options.go │ │ └── state.go │ │ ├── operation.go │ │ ├── operation │ │ ├── abort_transaction.go │ │ ├── abort_transaction.toml │ │ ├── aggregate.go │ │ ├── aggregate.toml │ │ ├── command.go │ │ ├── commit_transaction.go │ │ ├── commit_transaction.toml │ │ ├── count.go │ │ ├── count.toml │ │ ├── createIndexes.go │ │ ├── createIndexes.toml │ │ ├── delete.go │ │ ├── delete.toml │ │ ├── distinct.go │ │ ├── distinct.toml │ │ ├── drop_collection.go │ │ ├── drop_collection.toml │ │ ├── drop_database.go │ │ ├── drop_database.toml │ │ ├── drop_indexes.go │ │ ├── drop_indexes.toml │ │ ├── end_sessions.go │ │ ├── end_sessions.toml │ │ ├── find.go │ │ ├── find.toml │ │ ├── find_and_modify.go │ │ ├── find_and_modify.toml │ │ ├── insert.go │ │ ├── insert.toml │ │ ├── ismaster.go │ │ ├── listDatabases.go │ │ ├── listDatabases.toml │ │ ├── list_collections.go │ │ ├── list_collections.toml │ │ ├── list_indexes.go │ │ ├── list_indexes.toml │ │ ├── operation.go │ │ ├── update.go │ │ └── update.toml │ │ ├── operation_legacy.go │ │ ├── session │ │ ├── client_session.go │ │ ├── cluster_clock.go │ │ ├── options.go │ │ ├── server_session.go │ │ └── session_pool.go │ │ ├── topology │ │ ├── DESIGN.md │ │ ├── connection.go │ │ ├── connection_legacy.go │ │ ├── connection_legacy_command_metadata.go │ │ ├── connection_options.go │ │ ├── errors.go │ │ ├── fsm.go │ │ ├── pool.go │ │ ├── resource_pool.go │ │ ├── server.go │ │ ├── server_options.go │ │ ├── topology.go │ │ ├── topology_options.go │ │ ├── topology_options_1_10.go │ │ └── topology_options_1_9.go │ │ ├── uuid │ │ └── uuid.go │ │ └── wiremessage │ │ └── wiremessage.go ├── go.uber.org │ ├── atomic │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── atomic.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ └── string.go │ ├── multierr │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── error.go │ │ ├── glide.lock │ │ └── glide.yaml │ └── zap │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .readme.tmpl │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── array.go │ │ ├── buffer │ │ ├── buffer.go │ │ └── pool.go │ │ ├── check_license.sh │ │ ├── config.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── error.go │ │ ├── field.go │ │ ├── flag.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── global.go │ │ ├── http_handler.go │ │ ├── internal │ │ ├── bufferpool │ │ │ └── bufferpool.go │ │ ├── color │ │ │ └── color.go │ │ └── exit │ │ │ └── exit.go │ │ ├── level.go │ │ ├── logger.go │ │ ├── options.go │ │ ├── sink.go │ │ ├── stacktrace.go │ │ ├── sugar.go │ │ ├── time.go │ │ ├── writer.go │ │ └── zapcore │ │ ├── console_encoder.go │ │ ├── core.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── entry.go │ │ ├── error.go │ │ ├── field.go │ │ ├── hook.go │ │ ├── json_encoder.go │ │ ├── level.go │ │ ├── level_strings.go │ │ ├── marshaler.go │ │ ├── memory_encoder.go │ │ ├── sampler.go │ │ ├── tee.go │ │ └── write_syncer.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ └── bcrypt.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ └── pbkdf2 │ │ │ └── pbkdf2.go │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── context │ │ │ ├── context.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go111.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go111.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ ├── idna │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.00.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ └── timeseries │ │ │ │ └── timeseries.go │ │ └── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ └── trace.go │ │ ├── sync │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── semaphore │ │ │ └── semaphore.go │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_freebsd_arm64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_netbsd_arm64.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_openbsd_arm64.s │ │ │ ├── asm_solaris_amd64.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 │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── errors_freebsd_arm64.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ioctl.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.1_12.go │ │ │ ├── syscall_darwin.1_13.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.1_11.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.1_11.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.1_11.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.1_11.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_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.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_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_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_solaris_amd64.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_386.1_11.go │ │ │ ├── zsyscall_darwin_386.1_13.go │ │ │ ├── zsyscall_darwin_386.1_13.s │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_386.s │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ ├── zsyscall_darwin_arm.1_13.go │ │ │ ├── zsyscall_darwin_arm.1_13.s │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm.s │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ │ ├── zsyscall_darwin_arm64.1_13.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_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_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_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_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 │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_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_solaris_amd64.go │ │ ├── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ │ └── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate │ │ └── rate.go ├── google.golang.org │ ├── genproto │ │ ├── LICENSE │ │ ├── googleapis │ │ │ ├── api │ │ │ │ └── httpbody │ │ │ │ │ └── httpbody.pb.go │ │ │ └── rpc │ │ │ │ └── status │ │ │ │ └── status.pb.go │ │ └── protobuf │ │ │ └── field_mask │ │ │ └── field_mask.pb.go │ └── grpc │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── attributes │ │ └── attributes.go │ │ ├── backoff.go │ │ ├── backoff │ │ └── backoff.go │ │ ├── balancer.go │ │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ └── roundrobin │ │ │ └── roundrobin.go │ │ ├── balancer_conn_wrappers.go │ │ ├── balancer_v1_wrapper.go │ │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codegen.sh │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── connectivity │ │ └── connectivity.go │ │ ├── credentials │ │ ├── credentials.go │ │ ├── go12.go │ │ ├── internal │ │ │ ├── syscallconn.go │ │ │ └── syscallconn_appengine.go │ │ └── tls.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ ├── encoding.go │ │ └── proto │ │ │ └── proto.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── grpclog │ │ ├── grpclog.go │ │ ├── logger.go │ │ └── loggerv2.go │ │ ├── health │ │ ├── client.go │ │ ├── grpc_health_v1 │ │ │ └── health.pb.go │ │ ├── regenerate.sh │ │ └── server.go │ │ ├── install_gae.sh │ │ ├── interceptor.go │ │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ ├── regenerate.sh │ │ │ ├── sink.go │ │ │ └── util.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── types.go │ │ │ ├── types_linux.go │ │ │ ├── types_nonlinux.go │ │ │ ├── util_linux.go │ │ │ └── util_nonlinux.go │ │ ├── envconfig │ │ │ └── envconfig.go │ │ ├── grpclog │ │ │ ├── grpclog.go │ │ │ └── prefixLogger.go │ │ ├── grpcrand │ │ │ └── grpcrand.go │ │ ├── grpcsync │ │ │ └── event.go │ │ ├── grpcutil │ │ │ └── target.go │ │ ├── internal.go │ │ ├── resolver │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── go113.go │ │ │ └── passthrough │ │ │ │ └── passthrough.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 │ │ │ ├── log.go │ │ │ └── transport.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ └── metadata.go │ │ ├── naming │ │ ├── dns_resolver.go │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── pickfirst.go │ │ ├── preloader.go │ │ ├── proxy.go │ │ ├── reflection │ │ ├── README.md │ │ ├── grpc_reflection_v1alpha │ │ │ ├── reflection.pb.go │ │ │ └── reflection.proto │ │ └── serverreflection.go │ │ ├── resolver │ │ └── resolver.go │ │ ├── resolver_conn_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── serviceconfig │ │ └── serviceconfig.go │ │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ │ ├── status │ │ └── status.go │ │ ├── stream.go │ │ ├── tap │ │ └── tap.go │ │ ├── trace.go │ │ ├── version.go │ │ └── vet.sh ├── gopkg.in │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── modules.txt ├── website └── README.md └── wercker.yml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /api/ads/evaluation_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/api/ads/evaluation_result.go -------------------------------------------------------------------------------- /api/ads/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/api/ads/interface.go -------------------------------------------------------------------------------- /api/ads/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/api/ads/types.go -------------------------------------------------------------------------------- /api/ext/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/api/ext/types.go -------------------------------------------------------------------------------- /api/pms/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/api/pms/interface.go -------------------------------------------------------------------------------- /api/pms/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/api/pms/types.go -------------------------------------------------------------------------------- /api/swagger/asserter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/api/swagger/asserter.yaml -------------------------------------------------------------------------------- /api/swagger/policy-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/api/swagger/policy-check.yaml -------------------------------------------------------------------------------- /api/swagger/policy-manage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/api/swagger/policy-manage.yaml -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/benchmarks/README.zh-cn.md -------------------------------------------------------------------------------- /benchmarks/eval_b_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/benchmarks/eval_b_test.go -------------------------------------------------------------------------------- /ci/mkdoc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/ci/mkdoc/Dockerfile -------------------------------------------------------------------------------- /ci/setBuildEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/ci/setBuildEnv.sh -------------------------------------------------------------------------------- /cmd/spctl/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/client/client.go -------------------------------------------------------------------------------- /cmd/spctl/command/command_pdl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/command_pdl_test.go -------------------------------------------------------------------------------- /cmd/spctl/command/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/command_test.go -------------------------------------------------------------------------------- /cmd/spctl/command/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/config.go -------------------------------------------------------------------------------- /cmd/spctl/command/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/create.go -------------------------------------------------------------------------------- /cmd/spctl/command/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/delete.go -------------------------------------------------------------------------------- /cmd/spctl/command/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/discover.go -------------------------------------------------------------------------------- /cmd/spctl/command/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/get.go -------------------------------------------------------------------------------- /cmd/spctl/command/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/global.go -------------------------------------------------------------------------------- /cmd/spctl/command/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/root.go -------------------------------------------------------------------------------- /cmd/spctl/command/run_etcd_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/run_etcd_test.sh -------------------------------------------------------------------------------- /cmd/spctl/command/run_file_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/run_file_test.sh -------------------------------------------------------------------------------- /cmd/spctl/command/run_mongodb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/run_mongodb_test.sh -------------------------------------------------------------------------------- /cmd/spctl/command/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/command/version.go -------------------------------------------------------------------------------- /cmd/spctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/spctl/main.go -------------------------------------------------------------------------------- /cmd/speedle-ads/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/speedle-ads/main.go -------------------------------------------------------------------------------- /cmd/speedle-ads/stores.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/speedle-ads/stores.go -------------------------------------------------------------------------------- /cmd/speedle-pms/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/speedle-pms/main.go -------------------------------------------------------------------------------- /cmd/speedle-pms/stores.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/cmd/speedle-pms/stores.go -------------------------------------------------------------------------------- /deployment/helm/speedle-dev/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/deployment/helm/speedle-dev/Chart.yaml -------------------------------------------------------------------------------- /deployment/k8s/speedle-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/deployment/k8s/speedle-dev.yaml -------------------------------------------------------------------------------- /deployment/k8s/speedle-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/deployment/k8s/speedle-prod.yaml -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | speedle.io -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/about/index.html -------------------------------------------------------------------------------- /docs/blog/discovery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/blog/discovery/index.html -------------------------------------------------------------------------------- /docs/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/blog/index.html -------------------------------------------------------------------------------- /docs/blog/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/blog/index.xml -------------------------------------------------------------------------------- /docs/blog/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/blog/page/1/index.html -------------------------------------------------------------------------------- /docs/blog/what-is-speedle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/blog/what-is-speedle/index.html -------------------------------------------------------------------------------- /docs/categories/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/blog/index.html -------------------------------------------------------------------------------- /docs/categories/blog/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/blog/index.xml -------------------------------------------------------------------------------- /docs/categories/blog/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/blog/page/1/index.html -------------------------------------------------------------------------------- /docs/categories/cloudnative/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/cloudnative/index.html -------------------------------------------------------------------------------- /docs/categories/cloudnative/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/cloudnative/index.xml -------------------------------------------------------------------------------- /docs/categories/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/docs/index.html -------------------------------------------------------------------------------- /docs/categories/docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/docs/index.xml -------------------------------------------------------------------------------- /docs/categories/docs/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/docs/page/1/index.html -------------------------------------------------------------------------------- /docs/categories/docs/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/docs/page/2/index.html -------------------------------------------------------------------------------- /docs/categories/docs/page/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/docs/page/3/index.html -------------------------------------------------------------------------------- /docs/categories/docs/page/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/docs/page/4/index.html -------------------------------------------------------------------------------- /docs/categories/docs/page/5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/docs/page/5/index.html -------------------------------------------------------------------------------- /docs/categories/docs/page/6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/docs/page/6/index.html -------------------------------------------------------------------------------- /docs/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/index.html -------------------------------------------------------------------------------- /docs/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/index.xml -------------------------------------------------------------------------------- /docs/categories/integration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/integration/index.html -------------------------------------------------------------------------------- /docs/categories/integration/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/integration/index.xml -------------------------------------------------------------------------------- /docs/categories/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/page/1/index.html -------------------------------------------------------------------------------- /docs/categories/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/page/2/index.html -------------------------------------------------------------------------------- /docs/categories/tour/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/tour/index.html -------------------------------------------------------------------------------- /docs/categories/tour/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/tour/index.xml -------------------------------------------------------------------------------- /docs/categories/tour/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/categories/tour/page/1/index.html -------------------------------------------------------------------------------- /docs/contribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/contribute/index.html -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/font.css -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/kube.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/kube.css -------------------------------------------------------------------------------- /docs/css/kube.demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/kube.demo.css -------------------------------------------------------------------------------- /docs/css/kube.legenda.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/kube.legenda.css -------------------------------------------------------------------------------- /docs/css/kube.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/kube.min.css -------------------------------------------------------------------------------- /docs/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/master.css -------------------------------------------------------------------------------- /docs/css/swagger-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/swagger-custom.css -------------------------------------------------------------------------------- /docs/css/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/swagger-ui.css -------------------------------------------------------------------------------- /docs/css/theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/css/theme.min.css -------------------------------------------------------------------------------- /docs/developer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/developer/index.html -------------------------------------------------------------------------------- /docs/devops/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/devops/index.html -------------------------------------------------------------------------------- /docs/docs/api/asserter_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/api/asserter_api/index.html -------------------------------------------------------------------------------- /docs/docs/api/decision_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/api/decision_api/index.html -------------------------------------------------------------------------------- /docs/docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/api/index.html -------------------------------------------------------------------------------- /docs/docs/api/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/api/index.xml -------------------------------------------------------------------------------- /docs/docs/architecture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/architecture/index.html -------------------------------------------------------------------------------- /docs/docs/assertor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/assertor/index.html -------------------------------------------------------------------------------- /docs/docs/custom-function/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/custom-function/index.html -------------------------------------------------------------------------------- /docs/docs/decisions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/decisions/index.html -------------------------------------------------------------------------------- /docs/docs/deployment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/deployment/index.html -------------------------------------------------------------------------------- /docs/docs/idd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/idd/index.html -------------------------------------------------------------------------------- /docs/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/index.html -------------------------------------------------------------------------------- /docs/docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/index.xml -------------------------------------------------------------------------------- /docs/docs/logging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/logging/index.html -------------------------------------------------------------------------------- /docs/docs/pms/diagnosis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/pms/diagnosis/index.html -------------------------------------------------------------------------------- /docs/docs/pms/discover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/pms/discover/index.html -------------------------------------------------------------------------------- /docs/docs/pms/global-policy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/pms/global-policy/index.html -------------------------------------------------------------------------------- /docs/docs/pms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/pms/index.html -------------------------------------------------------------------------------- /docs/docs/pms/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/pms/index.xml -------------------------------------------------------------------------------- /docs/docs/pms/policy-mgmt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/pms/policy-mgmt/index.html -------------------------------------------------------------------------------- /docs/docs/security/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/security/index.html -------------------------------------------------------------------------------- /docs/docs/spdl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/spdl/index.html -------------------------------------------------------------------------------- /docs/docs/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/store/index.html -------------------------------------------------------------------------------- /docs/docs/usecases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/usecases/index.html -------------------------------------------------------------------------------- /docs/docs/versions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/docs/versions/index.html -------------------------------------------------------------------------------- /docs/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/en/index.html -------------------------------------------------------------------------------- /docs/en/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/en/sitemap.xml -------------------------------------------------------------------------------- /docs/hugo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /docs/hugo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/Makefile -------------------------------------------------------------------------------- /docs/hugo/archetypes/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/archetypes/blog.md -------------------------------------------------------------------------------- /docs/hugo/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/archetypes/default.md -------------------------------------------------------------------------------- /docs/hugo/archetypes/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/archetypes/docs.md -------------------------------------------------------------------------------- /docs/hugo/archetypes/integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/archetypes/integrations.md -------------------------------------------------------------------------------- /docs/hugo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/config.toml -------------------------------------------------------------------------------- /docs/hugo/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/_index.md -------------------------------------------------------------------------------- /docs/hugo/content/_index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/_index.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/about.md -------------------------------------------------------------------------------- /docs/hugo/content/about.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/about.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/blog/discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/blog/discovery.md -------------------------------------------------------------------------------- /docs/hugo/content/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/contribute.md -------------------------------------------------------------------------------- /docs/hugo/content/contribute.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/contribute.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/developer.md -------------------------------------------------------------------------------- /docs/hugo/content/devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/devops.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/_index.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/_index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/_index.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/api/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/api/_index.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/architecture.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/assertor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/assertor.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/assertor.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/assertor.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/decisions.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/decisions.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/decisions.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/deployment.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/idd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/idd.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/idd.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/idd.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/logging.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/logging.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/logging.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/pms/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/pms/_index.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/pms/discover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/pms/discover.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/security.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/security.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/security.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/spdl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/spdl.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/spdl.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/spdl.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/store.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/store.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/store.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/usecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/usecases.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/usecases.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/usecases.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/versions.md -------------------------------------------------------------------------------- /docs/hugo/content/docs/versions.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/docs/versions.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/quick-start.md -------------------------------------------------------------------------------- /docs/hugo/content/quick-start.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/quick-start.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/support.md -------------------------------------------------------------------------------- /docs/hugo/content/support.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/support.zh.md -------------------------------------------------------------------------------- /docs/hugo/content/tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/content/tour.md -------------------------------------------------------------------------------- /docs/hugo/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/i18n/en.toml -------------------------------------------------------------------------------- /docs/hugo/i18n/zh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/i18n/zh.toml -------------------------------------------------------------------------------- /docs/hugo/layouts/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/hugo/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/_default/baseof.html -------------------------------------------------------------------------------- /docs/hugo/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/_default/list.html -------------------------------------------------------------------------------- /docs/hugo/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/_default/single.html -------------------------------------------------------------------------------- /docs/hugo/layouts/blog/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/blog/list.html -------------------------------------------------------------------------------- /docs/hugo/layouts/blog/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/blog/single.html -------------------------------------------------------------------------------- /docs/hugo/layouts/docs/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/docs/baseof.html -------------------------------------------------------------------------------- /docs/hugo/layouts/docs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/docs/list.html -------------------------------------------------------------------------------- /docs/hugo/layouts/docs/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/docs/single.html -------------------------------------------------------------------------------- /docs/hugo/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/index.html -------------------------------------------------------------------------------- /docs/hugo/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/partials/footer.html -------------------------------------------------------------------------------- /docs/hugo/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/partials/head.html -------------------------------------------------------------------------------- /docs/hugo/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/partials/header.html -------------------------------------------------------------------------------- /docs/hugo/layouts/partials/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/partials/icon.html -------------------------------------------------------------------------------- /docs/hugo/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/partials/menu.html -------------------------------------------------------------------------------- /docs/hugo/layouts/partials/sidebar-footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/hugo/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/partials/toc.html -------------------------------------------------------------------------------- /docs/hugo/layouts/partials/tocdef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/partials/tocdef.html -------------------------------------------------------------------------------- /docs/hugo/layouts/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/layouts/playground.html -------------------------------------------------------------------------------- /docs/hugo/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/hugo/static/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/hugo/static/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/css/font.css -------------------------------------------------------------------------------- /docs/hugo/static/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/css/highlight.css -------------------------------------------------------------------------------- /docs/hugo/static/css/kube.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/css/kube.css -------------------------------------------------------------------------------- /docs/hugo/static/css/kube.demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/css/kube.demo.css -------------------------------------------------------------------------------- /docs/hugo/static/css/kube.legenda.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/css/kube.legenda.css -------------------------------------------------------------------------------- /docs/hugo/static/css/kube.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/css/kube.min.css -------------------------------------------------------------------------------- /docs/hugo/static/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/css/master.css -------------------------------------------------------------------------------- /docs/hugo/static/css/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/css/swagger-ui.css -------------------------------------------------------------------------------- /docs/hugo/static/css/theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/css/theme.min.css -------------------------------------------------------------------------------- /docs/hugo/static/img/speedle/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2018,11,12,16,40,42 4 | Version=4 5 | -------------------------------------------------------------------------------- /docs/hugo/static/img/speedle/Tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/img/speedle/Tick.svg -------------------------------------------------------------------------------- /docs/hugo/static/img/speedle/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/img/speedle/arrow.svg -------------------------------------------------------------------------------- /docs/hugo/static/js/functions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/js/functions.min.js -------------------------------------------------------------------------------- /docs/hugo/static/js/kube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/js/kube.js -------------------------------------------------------------------------------- /docs/hugo/static/js/kube.legenda.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/hugo/static/js/kube.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/js/kube.min.js -------------------------------------------------------------------------------- /docs/hugo/static/js/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/js/master.js -------------------------------------------------------------------------------- /docs/hugo/static/js/swagger-js/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/js/swagger-js/test.js -------------------------------------------------------------------------------- /docs/hugo/static/js/tocbot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/js/tocbot.min.js -------------------------------------------------------------------------------- /docs/hugo/static/protobuf/ads.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/protobuf/ads.proto -------------------------------------------------------------------------------- /docs/hugo/static/protobuf/pms.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/protobuf/pms.proto -------------------------------------------------------------------------------- /docs/hugo/static/swagger/asserter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/static/swagger/asserter.yaml -------------------------------------------------------------------------------- /docs/hugo/themes/kube/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /docs/hugo/themes/kube/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/themes/kube/LICENSE.md -------------------------------------------------------------------------------- /docs/hugo/themes/kube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/themes/kube/README.md -------------------------------------------------------------------------------- /docs/hugo/themes/kube/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/themes/kube/theme.toml -------------------------------------------------------------------------------- /docs/hugo/themes/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/hugo/themes/netlify.toml -------------------------------------------------------------------------------- /docs/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/images/Speedle+ Horizontal-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/Speedle+ Horizontal-01.png -------------------------------------------------------------------------------- /docs/images/Speedle_log_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/Speedle_log_black.svg -------------------------------------------------------------------------------- /docs/images/Speedle_log_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/Speedle_log_blue.svg -------------------------------------------------------------------------------- /docs/images/Speedle_log_cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/Speedle_log_cyan.svg -------------------------------------------------------------------------------- /docs/images/Speedle_log_purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/Speedle_log_purple.svg -------------------------------------------------------------------------------- /docs/images/Speedle_log_rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/Speedle_log_rotate.svg -------------------------------------------------------------------------------- /docs/images/Speedle_log_yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/Speedle_log_yellow.svg -------------------------------------------------------------------------------- /docs/images/Speedle_logo_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/Speedle_logo_b.svg -------------------------------------------------------------------------------- /docs/images/authzpolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/authzpolicy.png -------------------------------------------------------------------------------- /docs/images/rolepolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/rolepolicy.png -------------------------------------------------------------------------------- /docs/images/sp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/sp_logo.png -------------------------------------------------------------------------------- /docs/images/sp_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/sp_small.png -------------------------------------------------------------------------------- /docs/images/spdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/spdl.png -------------------------------------------------------------------------------- /docs/images/spdl_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/spdl_trans.png -------------------------------------------------------------------------------- /docs/images/speedle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle.png -------------------------------------------------------------------------------- /docs/images/speedle.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle.vsdx -------------------------------------------------------------------------------- /docs/images/speedle_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_black.png -------------------------------------------------------------------------------- /docs/images/speedle_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_blue.png -------------------------------------------------------------------------------- /docs/images/speedle_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_cyan.png -------------------------------------------------------------------------------- /docs/images/speedle_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_green.png -------------------------------------------------------------------------------- /docs/images/speedle_oracle_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_oracle_red.png -------------------------------------------------------------------------------- /docs/images/speedle_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_orange.png -------------------------------------------------------------------------------- /docs/images/speedle_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_purple.png -------------------------------------------------------------------------------- /docs/images/speedle_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_red.png -------------------------------------------------------------------------------- /docs/images/speedle_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_white.png -------------------------------------------------------------------------------- /docs/images/speedle_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/images/speedle_yellow.png -------------------------------------------------------------------------------- /docs/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/.DS_Store -------------------------------------------------------------------------------- /docs/img/speedle/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/.DS_Store -------------------------------------------------------------------------------- /docs/img/speedle/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2018,11,12,16,40,42 4 | Version=4 5 | -------------------------------------------------------------------------------- /docs/img/speedle/10.Integrations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/10.Integrations.svg -------------------------------------------------------------------------------- /docs/img/speedle/11. Contribute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/11. Contribute.svg -------------------------------------------------------------------------------- /docs/img/speedle/12. Hero .svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/12. Hero .svg -------------------------------------------------------------------------------- /docs/img/speedle/13. Enterprise .svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/13. Enterprise .svg -------------------------------------------------------------------------------- /docs/img/speedle/14. Support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/14. Support.svg -------------------------------------------------------------------------------- /docs/img/speedle/15. Tour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/15. Tour.svg -------------------------------------------------------------------------------- /docs/img/speedle/16. Enterprise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/16. Enterprise.svg -------------------------------------------------------------------------------- /docs/img/speedle/18. Github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/18. Github.svg -------------------------------------------------------------------------------- /docs/img/speedle/2. Cloud Native.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/2. Cloud Native.svg -------------------------------------------------------------------------------- /docs/img/speedle/20. Background 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/20. Background 1.svg -------------------------------------------------------------------------------- /docs/img/speedle/21. Background 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/21. Background 2.svg -------------------------------------------------------------------------------- /docs/img/speedle/22. Kubernetes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/22. Kubernetes.svg -------------------------------------------------------------------------------- /docs/img/speedle/23. Istio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/23. Istio.svg -------------------------------------------------------------------------------- /docs/img/speedle/24. Docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/24. Docker.svg -------------------------------------------------------------------------------- /docs/img/speedle/25. Speedle logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/25. Speedle logo.svg -------------------------------------------------------------------------------- /docs/img/speedle/28. Mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/28. Mail.svg -------------------------------------------------------------------------------- /docs/img/speedle/29. Slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/29. Slack.svg -------------------------------------------------------------------------------- /docs/img/speedle/4. RBAC-ABAC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/4. RBAC-ABAC.svg -------------------------------------------------------------------------------- /docs/img/speedle/7. Persistence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/7. Persistence.svg -------------------------------------------------------------------------------- /docs/img/speedle/8. Community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/8. Community.svg -------------------------------------------------------------------------------- /docs/img/speedle/Green Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/Green Tick.png -------------------------------------------------------------------------------- /docs/img/speedle/Oracle_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/Oracle_logo.png -------------------------------------------------------------------------------- /docs/img/speedle/Oracle_logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/Oracle_logo.svg.png -------------------------------------------------------------------------------- /docs/img/speedle/Slack_RGB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/Slack_RGB.svg -------------------------------------------------------------------------------- /docs/img/speedle/Speedle_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/Speedle_logo.svg -------------------------------------------------------------------------------- /docs/img/speedle/Speedle_logo_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/Speedle_logo_b.svg -------------------------------------------------------------------------------- /docs/img/speedle/Speedle_logo_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/Speedle_logo_w.svg -------------------------------------------------------------------------------- /docs/img/speedle/Tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/Tick.svg -------------------------------------------------------------------------------- /docs/img/speedle/andprincipal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/andprincipal.png -------------------------------------------------------------------------------- /docs/img/speedle/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/arrow.svg -------------------------------------------------------------------------------- /docs/img/speedle/authzpolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/authzpolicy.png -------------------------------------------------------------------------------- /docs/img/speedle/istio-blue-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/istio-blue-logo.svg -------------------------------------------------------------------------------- /docs/img/speedle/k8s-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/k8s-logo.svg -------------------------------------------------------------------------------- /docs/img/speedle/logger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/logger.jpg -------------------------------------------------------------------------------- /docs/img/speedle/oci_compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/oci_compute.png -------------------------------------------------------------------------------- /docs/img/speedle/policystore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/policystore.png -------------------------------------------------------------------------------- /docs/img/speedle/principal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/principal.png -------------------------------------------------------------------------------- /docs/img/speedle/resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/resource.png -------------------------------------------------------------------------------- /docs/img/speedle/rolepolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/rolepolicy.png -------------------------------------------------------------------------------- /docs/img/speedle/spdl-syntax-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/spdl-syntax-full.png -------------------------------------------------------------------------------- /docs/img/speedle/spdl-syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/spdl-syntax.png -------------------------------------------------------------------------------- /docs/img/speedle/spdlarch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/spdlarch.jpg -------------------------------------------------------------------------------- /docs/img/speedle/speedle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/speedle_1.png -------------------------------------------------------------------------------- /docs/img/speedle/speedle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/speedle_2.png -------------------------------------------------------------------------------- /docs/img/speedle/speedle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/speedle_3.png -------------------------------------------------------------------------------- /docs/img/speedle/wechat.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/img/speedle/wechat.JPG -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/index.xml -------------------------------------------------------------------------------- /docs/integrations/docker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/integrations/docker/index.html -------------------------------------------------------------------------------- /docs/integrations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/integrations/index.html -------------------------------------------------------------------------------- /docs/integrations/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/integrations/index.xml -------------------------------------------------------------------------------- /docs/integrations/istio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/integrations/istio/index.html -------------------------------------------------------------------------------- /docs/js/functions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/js/functions.min.js -------------------------------------------------------------------------------- /docs/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /docs/js/kube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/js/kube.js -------------------------------------------------------------------------------- /docs/js/kube.legenda.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/js/kube.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/js/kube.min.js -------------------------------------------------------------------------------- /docs/js/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/js/master.js -------------------------------------------------------------------------------- /docs/js/swagger-js/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/js/swagger-js/test.js -------------------------------------------------------------------------------- /docs/js/tocbot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/js/tocbot.min.js -------------------------------------------------------------------------------- /docs/protobuf/ads.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/protobuf/ads.proto -------------------------------------------------------------------------------- /docs/protobuf/pms.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/protobuf/pms.proto -------------------------------------------------------------------------------- /docs/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/README.md -------------------------------------------------------------------------------- /docs/public/speedle/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/public/speedle/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/public/speedle/docs/aabc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/aabc.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/apis.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/customers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/customers.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/deployment.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/diagnosis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/diagnosis.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/discover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/discover.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/faq.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/public/speedle/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/index.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/logging.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/quickstart.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/spdl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/spdl.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/store.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/tutorial.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/usecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/usecases.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/versions.md -------------------------------------------------------------------------------- /docs/public/speedle/docs/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/docs/why.md -------------------------------------------------------------------------------- /docs/public/speedle/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/public/speedle/mkdocs.yml -------------------------------------------------------------------------------- /docs/quick-start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/quick-start/index.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/support/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/support/index.html -------------------------------------------------------------------------------- /docs/swagger/asserter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/swagger/asserter.yaml -------------------------------------------------------------------------------- /docs/swagger/policy-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/swagger/policy-check.yaml -------------------------------------------------------------------------------- /docs/swagger/policy-manage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/swagger/policy-manage.yaml -------------------------------------------------------------------------------- /docs/tags/2018/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/2018/index.html -------------------------------------------------------------------------------- /docs/tags/2018/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/2018/index.xml -------------------------------------------------------------------------------- /docs/tags/2018/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/2018/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/ads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/ads/index.html -------------------------------------------------------------------------------- /docs/tags/ads/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/ads/index.xml -------------------------------------------------------------------------------- /docs/tags/ads/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/ads/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/api/index.html -------------------------------------------------------------------------------- /docs/tags/api/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/api/index.xml -------------------------------------------------------------------------------- /docs/tags/api/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/api/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/api/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/api/page/2/index.html -------------------------------------------------------------------------------- /docs/tags/asserter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/asserter/index.html -------------------------------------------------------------------------------- /docs/tags/asserter/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/asserter/index.xml -------------------------------------------------------------------------------- /docs/tags/asserter/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/asserter/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/community/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/community/index.html -------------------------------------------------------------------------------- /docs/tags/community/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/community/index.xml -------------------------------------------------------------------------------- /docs/tags/community/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/community/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/contribution/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/contribution/index.html -------------------------------------------------------------------------------- /docs/tags/contribution/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/contribution/index.xml -------------------------------------------------------------------------------- /docs/tags/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/core/index.html -------------------------------------------------------------------------------- /docs/tags/core/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/core/index.xml -------------------------------------------------------------------------------- /docs/tags/core/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/core/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/core/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/core/page/2/index.html -------------------------------------------------------------------------------- /docs/tags/core/page/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/core/page/3/index.html -------------------------------------------------------------------------------- /docs/tags/developer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/developer/index.html -------------------------------------------------------------------------------- /docs/tags/developer/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/developer/index.xml -------------------------------------------------------------------------------- /docs/tags/developer/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/developer/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/discovery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/discovery/index.html -------------------------------------------------------------------------------- /docs/tags/discovery/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/discovery/index.xml -------------------------------------------------------------------------------- /docs/tags/discovery/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/discovery/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/docker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/docker/index.html -------------------------------------------------------------------------------- /docs/tags/docker/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/docker/index.xml -------------------------------------------------------------------------------- /docs/tags/docker/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/docker/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/guide/index.html -------------------------------------------------------------------------------- /docs/tags/guide/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/guide/index.xml -------------------------------------------------------------------------------- /docs/tags/guide/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/guide/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/guide/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/guide/page/2/index.html -------------------------------------------------------------------------------- /docs/tags/guide/page/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/guide/page/3/index.html -------------------------------------------------------------------------------- /docs/tags/https/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/https/index.html -------------------------------------------------------------------------------- /docs/tags/https/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/https/index.xml -------------------------------------------------------------------------------- /docs/tags/https/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/https/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/identity-domain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/identity-domain/index.html -------------------------------------------------------------------------------- /docs/tags/identity-domain/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/identity-domain/index.xml -------------------------------------------------------------------------------- /docs/tags/identity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/identity/index.html -------------------------------------------------------------------------------- /docs/tags/identity/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/identity/index.xml -------------------------------------------------------------------------------- /docs/tags/identity/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/identity/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/index.html -------------------------------------------------------------------------------- /docs/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/index.xml -------------------------------------------------------------------------------- /docs/tags/istio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/istio/index.html -------------------------------------------------------------------------------- /docs/tags/istio/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/istio/index.xml -------------------------------------------------------------------------------- /docs/tags/istio/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/istio/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/k8s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/k8s/index.html -------------------------------------------------------------------------------- /docs/tags/k8s/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/k8s/index.xml -------------------------------------------------------------------------------- /docs/tags/k8s/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/k8s/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/kubernetes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/kubernetes/index.html -------------------------------------------------------------------------------- /docs/tags/kubernetes/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/kubernetes/index.xml -------------------------------------------------------------------------------- /docs/tags/kubernetes/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/kubernetes/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/logging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/logging/index.html -------------------------------------------------------------------------------- /docs/tags/logging/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/logging/index.xml -------------------------------------------------------------------------------- /docs/tags/logging/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/logging/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/operator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/operator/index.html -------------------------------------------------------------------------------- /docs/tags/operator/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/operator/index.xml -------------------------------------------------------------------------------- /docs/tags/operator/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/operator/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/page/2/index.html -------------------------------------------------------------------------------- /docs/tags/page/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/page/3/index.html -------------------------------------------------------------------------------- /docs/tags/page/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/page/4/index.html -------------------------------------------------------------------------------- /docs/tags/page/5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/page/5/index.html -------------------------------------------------------------------------------- /docs/tags/page/6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/page/6/index.html -------------------------------------------------------------------------------- /docs/tags/page/7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/page/7/index.html -------------------------------------------------------------------------------- /docs/tags/page/8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/page/8/index.html -------------------------------------------------------------------------------- /docs/tags/page/9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/page/9/index.html -------------------------------------------------------------------------------- /docs/tags/pdp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/pdp/index.html -------------------------------------------------------------------------------- /docs/tags/pdp/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/pdp/index.xml -------------------------------------------------------------------------------- /docs/tags/pdp/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/pdp/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/pluggable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/pluggable/index.html -------------------------------------------------------------------------------- /docs/tags/pluggable/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/pluggable/index.xml -------------------------------------------------------------------------------- /docs/tags/pluggable/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/pluggable/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/pms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/pms/index.html -------------------------------------------------------------------------------- /docs/tags/pms/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/pms/index.xml -------------------------------------------------------------------------------- /docs/tags/pms/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/pms/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/policy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/policy/index.html -------------------------------------------------------------------------------- /docs/tags/policy/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/policy/index.xml -------------------------------------------------------------------------------- /docs/tags/policy/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/policy/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/releases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/releases/index.html -------------------------------------------------------------------------------- /docs/tags/releases/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/releases/index.xml -------------------------------------------------------------------------------- /docs/tags/releases/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/releases/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/security/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/security/index.html -------------------------------------------------------------------------------- /docs/tags/security/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/security/index.xml -------------------------------------------------------------------------------- /docs/tags/security/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/security/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/spdl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/spdl/index.html -------------------------------------------------------------------------------- /docs/tags/spdl/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/spdl/index.xml -------------------------------------------------------------------------------- /docs/tags/spdl/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/spdl/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/speedle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/speedle/index.html -------------------------------------------------------------------------------- /docs/tags/speedle/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/speedle/index.xml -------------------------------------------------------------------------------- /docs/tags/speedle/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/speedle/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/storage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/storage/index.html -------------------------------------------------------------------------------- /docs/tags/storage/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/storage/index.xml -------------------------------------------------------------------------------- /docs/tags/storage/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/storage/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/tls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/tls/index.html -------------------------------------------------------------------------------- /docs/tags/tls/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/tls/index.xml -------------------------------------------------------------------------------- /docs/tags/tls/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/tls/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/token-asserter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/token-asserter/index.html -------------------------------------------------------------------------------- /docs/tags/token-asserter/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/token-asserter/index.xml -------------------------------------------------------------------------------- /docs/tags/usecase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/usecase/index.html -------------------------------------------------------------------------------- /docs/tags/usecase/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/usecase/index.xml -------------------------------------------------------------------------------- /docs/tags/usecase/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/usecase/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/v0.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/v0.1.0/index.html -------------------------------------------------------------------------------- /docs/tags/v0.1.0/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/v0.1.0/index.xml -------------------------------------------------------------------------------- /docs/tags/v0.1.0/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/v0.1.0/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/v0.1.0/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/v0.1.0/page/2/index.html -------------------------------------------------------------------------------- /docs/tags/versions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/versions/index.html -------------------------------------------------------------------------------- /docs/tags/versions/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/versions/index.xml -------------------------------------------------------------------------------- /docs/tags/versions/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/versions/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/webhook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/webhook/index.html -------------------------------------------------------------------------------- /docs/tags/webhook/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/webhook/index.xml -------------------------------------------------------------------------------- /docs/tags/webhook/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/webhook/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/why/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/why/index.html -------------------------------------------------------------------------------- /docs/tags/why/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/why/index.xml -------------------------------------------------------------------------------- /docs/tags/why/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tags/why/page/1/index.html -------------------------------------------------------------------------------- /docs/tour/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/tour/index.html -------------------------------------------------------------------------------- /docs/versions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/versions/index.html -------------------------------------------------------------------------------- /docs/versions/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/versions/index.xml -------------------------------------------------------------------------------- /docs/versions/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/versions/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/about/index.html -------------------------------------------------------------------------------- /docs/zh/categories/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/categories/docs/index.html -------------------------------------------------------------------------------- /docs/zh/categories/docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/categories/docs/index.xml -------------------------------------------------------------------------------- /docs/zh/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/categories/index.html -------------------------------------------------------------------------------- /docs/zh/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/categories/index.xml -------------------------------------------------------------------------------- /docs/zh/categories/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/categories/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/contribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/contribute/index.html -------------------------------------------------------------------------------- /docs/zh/docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/api/index.html -------------------------------------------------------------------------------- /docs/zh/docs/api/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/api/index.xml -------------------------------------------------------------------------------- /docs/zh/docs/architecture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/architecture/index.html -------------------------------------------------------------------------------- /docs/zh/docs/assertor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/assertor/index.html -------------------------------------------------------------------------------- /docs/zh/docs/decisions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/decisions/index.html -------------------------------------------------------------------------------- /docs/zh/docs/deployment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/deployment/index.html -------------------------------------------------------------------------------- /docs/zh/docs/idd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/idd/index.html -------------------------------------------------------------------------------- /docs/zh/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/index.html -------------------------------------------------------------------------------- /docs/zh/docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/index.xml -------------------------------------------------------------------------------- /docs/zh/docs/logging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/logging/index.html -------------------------------------------------------------------------------- /docs/zh/docs/pms/diagnosis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/pms/diagnosis/index.html -------------------------------------------------------------------------------- /docs/zh/docs/pms/discover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/pms/discover/index.html -------------------------------------------------------------------------------- /docs/zh/docs/pms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/pms/index.html -------------------------------------------------------------------------------- /docs/zh/docs/pms/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/pms/index.xml -------------------------------------------------------------------------------- /docs/zh/docs/security/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/security/index.html -------------------------------------------------------------------------------- /docs/zh/docs/spdl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/spdl/index.html -------------------------------------------------------------------------------- /docs/zh/docs/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/store/index.html -------------------------------------------------------------------------------- /docs/zh/docs/usecases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/usecases/index.html -------------------------------------------------------------------------------- /docs/zh/docs/versions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/docs/versions/index.html -------------------------------------------------------------------------------- /docs/zh/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/index.html -------------------------------------------------------------------------------- /docs/zh/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/index.xml -------------------------------------------------------------------------------- /docs/zh/integrations/docker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/integrations/docker/index.html -------------------------------------------------------------------------------- /docs/zh/integrations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/integrations/index.html -------------------------------------------------------------------------------- /docs/zh/integrations/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/integrations/index.xml -------------------------------------------------------------------------------- /docs/zh/integrations/istio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/integrations/istio/index.html -------------------------------------------------------------------------------- /docs/zh/quick-start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/quick-start/index.html -------------------------------------------------------------------------------- /docs/zh/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/sitemap.xml -------------------------------------------------------------------------------- /docs/zh/support/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/support/index.html -------------------------------------------------------------------------------- /docs/zh/tags/ads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/ads/index.html -------------------------------------------------------------------------------- /docs/zh/tags/ads/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/ads/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/ads/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/ads/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/api/index.html -------------------------------------------------------------------------------- /docs/zh/tags/api/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/api/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/api/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/api/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/api/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/api/page/2/index.html -------------------------------------------------------------------------------- /docs/zh/tags/asserter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/asserter/index.html -------------------------------------------------------------------------------- /docs/zh/tags/asserter/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/asserter/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/community/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/community/index.html -------------------------------------------------------------------------------- /docs/zh/tags/community/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/community/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/contribution/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/contribution/index.html -------------------------------------------------------------------------------- /docs/zh/tags/contribution/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/contribution/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/core/index.html -------------------------------------------------------------------------------- /docs/zh/tags/core/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/core/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/core/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/core/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/core/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/core/page/2/index.html -------------------------------------------------------------------------------- /docs/zh/tags/core/page/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/core/page/3/index.html -------------------------------------------------------------------------------- /docs/zh/tags/discovery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/discovery/index.html -------------------------------------------------------------------------------- /docs/zh/tags/discovery/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/discovery/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/docker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/docker/index.html -------------------------------------------------------------------------------- /docs/zh/tags/docker/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/docker/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/docker/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/docker/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/guide/index.html -------------------------------------------------------------------------------- /docs/zh/tags/guide/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/guide/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/guide/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/guide/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/guide/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/guide/page/2/index.html -------------------------------------------------------------------------------- /docs/zh/tags/https/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/https/index.html -------------------------------------------------------------------------------- /docs/zh/tags/https/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/https/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/https/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/https/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/identity-domain/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/identity-domain/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/identity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/identity/index.html -------------------------------------------------------------------------------- /docs/zh/tags/identity/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/identity/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/index.html -------------------------------------------------------------------------------- /docs/zh/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/istio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/istio/index.html -------------------------------------------------------------------------------- /docs/zh/tags/istio/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/istio/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/istio/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/istio/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/k8s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/k8s/index.html -------------------------------------------------------------------------------- /docs/zh/tags/k8s/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/k8s/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/k8s/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/k8s/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/kubernetes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/kubernetes/index.html -------------------------------------------------------------------------------- /docs/zh/tags/kubernetes/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/kubernetes/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/logging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/logging/index.html -------------------------------------------------------------------------------- /docs/zh/tags/logging/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/logging/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/logging/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/logging/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/page/2/index.html -------------------------------------------------------------------------------- /docs/zh/tags/page/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/page/3/index.html -------------------------------------------------------------------------------- /docs/zh/tags/page/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/page/4/index.html -------------------------------------------------------------------------------- /docs/zh/tags/page/5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/page/5/index.html -------------------------------------------------------------------------------- /docs/zh/tags/page/6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/page/6/index.html -------------------------------------------------------------------------------- /docs/zh/tags/page/7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/page/7/index.html -------------------------------------------------------------------------------- /docs/zh/tags/page/8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/page/8/index.html -------------------------------------------------------------------------------- /docs/zh/tags/pdp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/pdp/index.html -------------------------------------------------------------------------------- /docs/zh/tags/pdp/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/pdp/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/pdp/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/pdp/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/pluggable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/pluggable/index.html -------------------------------------------------------------------------------- /docs/zh/tags/pluggable/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/pluggable/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/pms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/pms/index.html -------------------------------------------------------------------------------- /docs/zh/tags/pms/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/pms/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/pms/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/pms/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/policy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/policy/index.html -------------------------------------------------------------------------------- /docs/zh/tags/policy/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/policy/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/policy/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/policy/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/releases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/releases/index.html -------------------------------------------------------------------------------- /docs/zh/tags/releases/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/releases/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/security/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/security/index.html -------------------------------------------------------------------------------- /docs/zh/tags/security/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/security/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/spdl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/spdl/index.html -------------------------------------------------------------------------------- /docs/zh/tags/spdl/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/spdl/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/spdl/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/spdl/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/storage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/storage/index.html -------------------------------------------------------------------------------- /docs/zh/tags/storage/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/storage/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/storage/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/storage/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/tls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/tls/index.html -------------------------------------------------------------------------------- /docs/zh/tags/tls/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/tls/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/tls/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/tls/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/token-asserter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/token-asserter/index.html -------------------------------------------------------------------------------- /docs/zh/tags/token-asserter/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/token-asserter/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/usecase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/usecase/index.html -------------------------------------------------------------------------------- /docs/zh/tags/usecase/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/usecase/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/usecase/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/usecase/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/v0.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/v0.1.0/index.html -------------------------------------------------------------------------------- /docs/zh/tags/v0.1.0/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/v0.1.0/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/v0.1.0/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/v0.1.0/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/tags/v0.1.0/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/v0.1.0/page/2/index.html -------------------------------------------------------------------------------- /docs/zh/tags/versions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/versions/index.html -------------------------------------------------------------------------------- /docs/zh/tags/versions/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/versions/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/webhook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/webhook/index.html -------------------------------------------------------------------------------- /docs/zh/tags/webhook/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/webhook/index.xml -------------------------------------------------------------------------------- /docs/zh/tags/webhook/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/tags/webhook/page/1/index.html -------------------------------------------------------------------------------- /docs/zh/versions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/versions/index.html -------------------------------------------------------------------------------- /docs/zh/versions/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/versions/index.xml -------------------------------------------------------------------------------- /docs/zh/versions/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/docs/zh/versions/page/1/index.html -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/assertion/asserter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/assertion/asserter.go -------------------------------------------------------------------------------- /pkg/assertion/asserter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/assertion/asserter_test.go -------------------------------------------------------------------------------- /pkg/assertion/testserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/assertion/testserver.go -------------------------------------------------------------------------------- /pkg/cfg/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/cfg/config.go -------------------------------------------------------------------------------- /pkg/cfg/config_etcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/cfg/config_etcd.json -------------------------------------------------------------------------------- /pkg/cfg/config_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/cfg/config_file.json -------------------------------------------------------------------------------- /pkg/cfg/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/cfg/config_test.go -------------------------------------------------------------------------------- /pkg/cfg/myconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/cfg/myconfig.json -------------------------------------------------------------------------------- /pkg/cmd/flags/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/cmd/flags/params.go -------------------------------------------------------------------------------- /pkg/errors/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/errors/code.go -------------------------------------------------------------------------------- /pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/errors/errors.go -------------------------------------------------------------------------------- /pkg/eval/basepolicycache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/basepolicycache.go -------------------------------------------------------------------------------- /pkg/eval/common_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/common_utils_test.go -------------------------------------------------------------------------------- /pkg/eval/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/discover.go -------------------------------------------------------------------------------- /pkg/eval/evaluator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_allowed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_allowed_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_condition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_condition_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_custom_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_custom_function.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_deny_role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_deny_role_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_diagnose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_diagnose_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_factory.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_function_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_global_role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_global_role_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_res_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_res_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_role_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_rolepolicy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_rolepolicy_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_test.go -------------------------------------------------------------------------------- /pkg/eval/evaluator_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/evaluator_utils.go -------------------------------------------------------------------------------- /pkg/eval/funcServer.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/funcServer.crt -------------------------------------------------------------------------------- /pkg/eval/funcServer.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/funcServer.key -------------------------------------------------------------------------------- /pkg/eval/function/builtin_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/function/builtin_functions.go -------------------------------------------------------------------------------- /pkg/eval/policycache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/policycache.go -------------------------------------------------------------------------------- /pkg/eval/policycache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/policycache_test.go -------------------------------------------------------------------------------- /pkg/eval/rolepolicycache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/rolepolicycache.go -------------------------------------------------------------------------------- /pkg/eval/rolepolicycache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/rolepolicycache_test.go -------------------------------------------------------------------------------- /pkg/eval/runtimeservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/eval/runtimeservice.go -------------------------------------------------------------------------------- /pkg/httputils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/httputils/utils.go -------------------------------------------------------------------------------- /pkg/logging/auditLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/logging/auditLog.go -------------------------------------------------------------------------------- /pkg/logging/demo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/logging/demo/config.json -------------------------------------------------------------------------------- /pkg/logging/demo/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/logging/demo/demo.go -------------------------------------------------------------------------------- /pkg/logging/initlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/logging/initlog.go -------------------------------------------------------------------------------- /pkg/pdl/pdl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/pdl/pdl.go -------------------------------------------------------------------------------- /pkg/pdl/pdl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/pdl/pdl_test.go -------------------------------------------------------------------------------- /pkg/store/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/discover.go -------------------------------------------------------------------------------- /pkg/store/etcd/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/etcd/discover.go -------------------------------------------------------------------------------- /pkg/store/etcd/discover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/etcd/discover_test.go -------------------------------------------------------------------------------- /pkg/store/etcd/embedEtcdUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/etcd/embedEtcdUtil.go -------------------------------------------------------------------------------- /pkg/store/etcd/etcdStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/etcd/etcdStore.go -------------------------------------------------------------------------------- /pkg/store/etcd/etcdStoreConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/etcd/etcdStoreConfig.json -------------------------------------------------------------------------------- /pkg/store/etcd/etcdStore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/etcd/etcdStore_test.go -------------------------------------------------------------------------------- /pkg/store/etcd/storeBuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/etcd/storeBuilder.go -------------------------------------------------------------------------------- /pkg/store/file/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/file/discover.go -------------------------------------------------------------------------------- /pkg/store/file/discover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/file/discover_test.go -------------------------------------------------------------------------------- /pkg/store/file/fileStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/file/fileStore.go -------------------------------------------------------------------------------- /pkg/store/file/fileStore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/file/fileStore_test.go -------------------------------------------------------------------------------- /pkg/store/file/spdl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/file/spdl.go -------------------------------------------------------------------------------- /pkg/store/file/spdl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/file/spdl_test.go -------------------------------------------------------------------------------- /pkg/store/file/spdl_test.spdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/file/spdl_test.spdl -------------------------------------------------------------------------------- /pkg/store/file/storeBuider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/file/storeBuider.go -------------------------------------------------------------------------------- /pkg/store/mongodb/mongodbStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/mongodb/mongodbStore.go -------------------------------------------------------------------------------- /pkg/store/mongodb/mongodbStore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/mongodb/mongodbStore_test.go -------------------------------------------------------------------------------- /pkg/store/mongodb/storeBuiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/mongodb/storeBuiler.go -------------------------------------------------------------------------------- /pkg/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/store.go -------------------------------------------------------------------------------- /pkg/store/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/store/utils/utils.go -------------------------------------------------------------------------------- /pkg/subjectutils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/subjectutils/utils.go -------------------------------------------------------------------------------- /pkg/suid/suid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/suid/suid.go -------------------------------------------------------------------------------- /pkg/suid/suid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/suid/suid_test.go -------------------------------------------------------------------------------- /pkg/svcs/adsgrpc/adsgrpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsgrpc/adsgrpc_test.go -------------------------------------------------------------------------------- /pkg/svcs/adsgrpc/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsgrpc/impl.go -------------------------------------------------------------------------------- /pkg/svcs/adsgrpc/pb/service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsgrpc/pb/service.pb.go -------------------------------------------------------------------------------- /pkg/svcs/adsgrpc/pb/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsgrpc/pb/service.proto -------------------------------------------------------------------------------- /pkg/svcs/adsgrpc/run_etcd_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsgrpc/run_etcd_test.sh -------------------------------------------------------------------------------- /pkg/svcs/adsgrpc/run_file_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsgrpc/run_file_test.sh -------------------------------------------------------------------------------- /pkg/svcs/adsgrpc/run_mongodb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsgrpc/run_mongodb_test.sh -------------------------------------------------------------------------------- /pkg/svcs/adsrest/ads_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/ads_server_test.go -------------------------------------------------------------------------------- /pkg/svcs/adsrest/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/check.go -------------------------------------------------------------------------------- /pkg/svcs/adsrest/check_prepare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/check_prepare_test.go -------------------------------------------------------------------------------- /pkg/svcs/adsrest/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/check_test.go -------------------------------------------------------------------------------- /pkg/svcs/adsrest/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/discover.go -------------------------------------------------------------------------------- /pkg/svcs/adsrest/fakestore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/fakestore.json -------------------------------------------------------------------------------- /pkg/svcs/adsrest/granted_perms_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/granted_perms_test.go -------------------------------------------------------------------------------- /pkg/svcs/adsrest/granted_roles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/granted_roles_test.go -------------------------------------------------------------------------------- /pkg/svcs/adsrest/is_allowed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/is_allowed_test.go -------------------------------------------------------------------------------- /pkg/svcs/adsrest/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/routers.go -------------------------------------------------------------------------------- /pkg/svcs/adsrest/run_etcd_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/run_etcd_test.sh -------------------------------------------------------------------------------- /pkg/svcs/adsrest/run_file_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/run_file_test.sh -------------------------------------------------------------------------------- /pkg/svcs/adsrest/run_mongodb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/run_mongodb_test.sh -------------------------------------------------------------------------------- /pkg/svcs/adsrest/run_test_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/adsrest/run_test_test.sh -------------------------------------------------------------------------------- /pkg/svcs/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/constants.go -------------------------------------------------------------------------------- /pkg/svcs/pmsgrpc/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsgrpc/grpc_test.go -------------------------------------------------------------------------------- /pkg/svcs/pmsgrpc/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsgrpc/impl.go -------------------------------------------------------------------------------- /pkg/svcs/pmsgrpc/pb/service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsgrpc/pb/service.pb.go -------------------------------------------------------------------------------- /pkg/svcs/pmsgrpc/pb/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsgrpc/pb/service.proto -------------------------------------------------------------------------------- /pkg/svcs/pmsgrpc/run_etcd_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsgrpc/run_etcd_test.sh -------------------------------------------------------------------------------- /pkg/svcs/pmsgrpc/run_file_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsgrpc/run_file_test.sh -------------------------------------------------------------------------------- /pkg/svcs/pmsgrpc/run_mongodb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsgrpc/run_mongodb_test.sh -------------------------------------------------------------------------------- /pkg/svcs/pmsimpl/systemLimitation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsimpl/systemLimitation.go -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/config_etcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/config_etcd.json -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/config_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/config_file.json -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/config_mongodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/config_mongodb.json -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/discover.go -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/manager.go -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/manager_test.go -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/manager_unit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/manager_unit_test.go -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/routers.go -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/run_etcd_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/run_etcd_test.sh -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/run_file_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/run_file_test.sh -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/run_mongodb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/run_mongodb_test.sh -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/start_etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/start_etcd.sh -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/stop_etcd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | docker rm -f speedle_etcd 3 | 4 | -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/tls/client-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/tls/client-ca.crt -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/tls/client.crt -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/tls/client.key -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/tls/server-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/tls/server-ca.crt -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/tls/server.crt -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/tls/server.key -------------------------------------------------------------------------------- /pkg/svcs/pmsrest/tls_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/pkg/svcs/pmsrest/tls_test.sh -------------------------------------------------------------------------------- /samples/adsclient/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/samples/adsclient/go/README.md -------------------------------------------------------------------------------- /samples/adsclient/java/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /samples/adsclient/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/samples/adsclient/java/README.md -------------------------------------------------------------------------------- /samples/adsclient/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/samples/adsclient/java/pom.xml -------------------------------------------------------------------------------- /samples/embedded/expenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/samples/embedded/expenses/README.md -------------------------------------------------------------------------------- /samples/embedded/expenses/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/samples/embedded/expenses/cmd/main.go -------------------------------------------------------------------------------- /setTestEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/setTestEnv.sh -------------------------------------------------------------------------------- /testutil/cmdTestUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/testutil/cmdTestUtil.go -------------------------------------------------------------------------------- /testutil/gcmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/testutil/gcmd.go -------------------------------------------------------------------------------- /testutil/grpcTestUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/testutil/grpcTestUtil.go -------------------------------------------------------------------------------- /testutil/msg/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/testutil/msg/output.go -------------------------------------------------------------------------------- /testutil/param/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/testutil/param/param.go -------------------------------------------------------------------------------- /testutil/restTestUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/testutil/restTestUtil.go -------------------------------------------------------------------------------- /testutil/testBase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/testutil/testBase.go -------------------------------------------------------------------------------- /testutil/testUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/testutil/testUtil.go -------------------------------------------------------------------------------- /vendor/github.com/armon/go-radix/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - tip 4 | -------------------------------------------------------------------------------- /vendor/github.com/armon/go-radix/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/armon/go-radix 2 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/bbolt/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/bbolt/db.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/bbolt/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/bbolt/node.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/bbolt/page.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/bbolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/bbolt/tx.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/etcd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/etcd/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/golang/snappy/README -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/golang/snappy 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/handlers/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/gorilla/handlers 2 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/jonboulle/clockwork/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3 4 | 5 | sudo: false 6 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/github.com/soheilhy/cmux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/soheilhy/cmux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/xdg/scram/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/xdg/scram/README.md -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/xdg/scram/client.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/xdg/scram/common.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/xdg/scram/doc.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/xdg/scram/parse.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/xdg/scram/scram.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/github.com/xdg/scram/server.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/stringprep/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/connection_legacy.go: -------------------------------------------------------------------------------- 1 | package topology 2 | -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/.travis.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/atomic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/atomic.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/glide.lock -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/.travis.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/glide.lock -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/sync/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- 1 | # Speedle website 2 | -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teramoby/speedle-plus/HEAD/wercker.yml --------------------------------------------------------------------------------