├── .bazelrc ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── BUILD ├── LICENSE ├── OWNERS ├── README.md ├── WORKSPACE ├── api_spec ├── BUILD ├── include │ └── http_api_spec_parser.h └── src │ ├── http_api_spec_parser_impl.cc │ ├── http_api_spec_parser_impl.h │ ├── http_api_spec_parser_test.cc │ ├── http_template.cc │ ├── http_template.h │ ├── http_template_test.cc │ ├── path_matcher.h │ ├── path_matcher_node.cc │ ├── path_matcher_node.h │ └── path_matcher_test.cc ├── cc_gogo_protobuf.bzl ├── control ├── include │ ├── http │ │ ├── BUILD │ │ ├── check_data.h │ │ ├── controller.h │ │ ├── report_data.h │ │ └── request_handler.h │ ├── tcp │ │ ├── BUILD │ │ ├── check_data.h │ │ ├── controller.h │ │ ├── report_data.h │ │ └── request_handler.h │ └── utils │ │ ├── BUILD │ │ └── status.h └── src │ ├── BUILD │ ├── attribute_names.cc │ ├── attribute_names.h │ ├── client_context_base.cc │ ├── client_context_base.h │ ├── http │ ├── BUILD │ ├── attributes_builder.cc │ ├── attributes_builder.h │ ├── attributes_builder_test.cc │ ├── client_context.cc │ ├── client_context.h │ ├── controller_impl.cc │ ├── controller_impl.h │ ├── mock_check_data.h │ ├── mock_report_data.h │ ├── request_handler_impl.cc │ ├── request_handler_impl.h │ ├── request_handler_impl_test.cc │ ├── service_context.cc │ └── service_context.h │ ├── mock_mixer_client.h │ ├── request_context.h │ ├── tcp │ ├── BUILD │ ├── attributes_builder.cc │ ├── attributes_builder.h │ ├── attributes_builder_test.cc │ ├── client_context.h │ ├── controller_impl.cc │ ├── controller_impl.h │ ├── mock_check_data.h │ ├── mock_report_data.h │ ├── request_handler_impl.cc │ ├── request_handler_impl.h │ └── request_handler_impl_test.cc │ └── utils │ ├── BUILD │ └── status.cc ├── create_global_dictionary.py ├── googleapis.bzl ├── include ├── attributes_builder.h ├── client.h ├── environment.h ├── options.h └── timer.h ├── istio.deps ├── prefetch ├── BUILD ├── README.md ├── circular_queue.h ├── circular_queue_test.cc ├── quota_prefetch.cc ├── quota_prefetch.h ├── quota_prefetch_test.cc ├── time_based_counter.cc ├── time_based_counter.h └── time_based_counter_test.cc ├── protobuf.bzl ├── prow └── mixerclient-presubmit.sh ├── quota ├── BUILD ├── include │ ├── config_parser.h │ └── requirement.h └── src │ ├── config_parser_impl.cc │ ├── config_parser_impl.h │ └── config_parser_impl_test.cc ├── repositories.bzl ├── script ├── check-license-headers └── check-style ├── src ├── attribute_compressor.cc ├── attribute_compressor.h ├── attribute_compressor_test.cc ├── attributes_builder.cc ├── check_cache.cc ├── check_cache.h ├── check_cache_test.cc ├── client_impl.cc ├── client_impl.h ├── client_impl_test.cc ├── delta_update.cc ├── delta_update.h ├── delta_update_test.cc ├── global_dictionary.h ├── quota_cache.cc ├── quota_cache.h ├── quota_cache_test.cc ├── referenced.cc ├── referenced.h ├── referenced_test.cc ├── report_batch.cc ├── report_batch.h └── report_batch_test.cc ├── tools └── bazel.rc ├── utils ├── google_macros.h ├── md5.cc ├── md5.h ├── md5_test.cc ├── protobuf.cc ├── protobuf.h ├── simple_lru_cache.h ├── simple_lru_cache_inl.h ├── simple_lru_cache_test.cc └── status_test_util.h └── x_tools_imports.bzl /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/.bazelrc -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/WORKSPACE -------------------------------------------------------------------------------- /api_spec/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/BUILD -------------------------------------------------------------------------------- /api_spec/include/http_api_spec_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/include/http_api_spec_parser.h -------------------------------------------------------------------------------- /api_spec/src/http_api_spec_parser_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/http_api_spec_parser_impl.cc -------------------------------------------------------------------------------- /api_spec/src/http_api_spec_parser_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/http_api_spec_parser_impl.h -------------------------------------------------------------------------------- /api_spec/src/http_api_spec_parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/http_api_spec_parser_test.cc -------------------------------------------------------------------------------- /api_spec/src/http_template.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/http_template.cc -------------------------------------------------------------------------------- /api_spec/src/http_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/http_template.h -------------------------------------------------------------------------------- /api_spec/src/http_template_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/http_template_test.cc -------------------------------------------------------------------------------- /api_spec/src/path_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/path_matcher.h -------------------------------------------------------------------------------- /api_spec/src/path_matcher_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/path_matcher_node.cc -------------------------------------------------------------------------------- /api_spec/src/path_matcher_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/path_matcher_node.h -------------------------------------------------------------------------------- /api_spec/src/path_matcher_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/api_spec/src/path_matcher_test.cc -------------------------------------------------------------------------------- /cc_gogo_protobuf.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/cc_gogo_protobuf.bzl -------------------------------------------------------------------------------- /control/include/http/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/http/BUILD -------------------------------------------------------------------------------- /control/include/http/check_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/http/check_data.h -------------------------------------------------------------------------------- /control/include/http/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/http/controller.h -------------------------------------------------------------------------------- /control/include/http/report_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/http/report_data.h -------------------------------------------------------------------------------- /control/include/http/request_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/http/request_handler.h -------------------------------------------------------------------------------- /control/include/tcp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/tcp/BUILD -------------------------------------------------------------------------------- /control/include/tcp/check_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/tcp/check_data.h -------------------------------------------------------------------------------- /control/include/tcp/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/tcp/controller.h -------------------------------------------------------------------------------- /control/include/tcp/report_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/tcp/report_data.h -------------------------------------------------------------------------------- /control/include/tcp/request_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/tcp/request_handler.h -------------------------------------------------------------------------------- /control/include/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/utils/BUILD -------------------------------------------------------------------------------- /control/include/utils/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/include/utils/status.h -------------------------------------------------------------------------------- /control/src/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/BUILD -------------------------------------------------------------------------------- /control/src/attribute_names.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/attribute_names.cc -------------------------------------------------------------------------------- /control/src/attribute_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/attribute_names.h -------------------------------------------------------------------------------- /control/src/client_context_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/client_context_base.cc -------------------------------------------------------------------------------- /control/src/client_context_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/client_context_base.h -------------------------------------------------------------------------------- /control/src/http/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/BUILD -------------------------------------------------------------------------------- /control/src/http/attributes_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/attributes_builder.cc -------------------------------------------------------------------------------- /control/src/http/attributes_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/attributes_builder.h -------------------------------------------------------------------------------- /control/src/http/attributes_builder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/attributes_builder_test.cc -------------------------------------------------------------------------------- /control/src/http/client_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/client_context.cc -------------------------------------------------------------------------------- /control/src/http/client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/client_context.h -------------------------------------------------------------------------------- /control/src/http/controller_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/controller_impl.cc -------------------------------------------------------------------------------- /control/src/http/controller_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/controller_impl.h -------------------------------------------------------------------------------- /control/src/http/mock_check_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/mock_check_data.h -------------------------------------------------------------------------------- /control/src/http/mock_report_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/mock_report_data.h -------------------------------------------------------------------------------- /control/src/http/request_handler_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/request_handler_impl.cc -------------------------------------------------------------------------------- /control/src/http/request_handler_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/request_handler_impl.h -------------------------------------------------------------------------------- /control/src/http/request_handler_impl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/request_handler_impl_test.cc -------------------------------------------------------------------------------- /control/src/http/service_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/service_context.cc -------------------------------------------------------------------------------- /control/src/http/service_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/http/service_context.h -------------------------------------------------------------------------------- /control/src/mock_mixer_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/mock_mixer_client.h -------------------------------------------------------------------------------- /control/src/request_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/request_context.h -------------------------------------------------------------------------------- /control/src/tcp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/BUILD -------------------------------------------------------------------------------- /control/src/tcp/attributes_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/attributes_builder.cc -------------------------------------------------------------------------------- /control/src/tcp/attributes_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/attributes_builder.h -------------------------------------------------------------------------------- /control/src/tcp/attributes_builder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/attributes_builder_test.cc -------------------------------------------------------------------------------- /control/src/tcp/client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/client_context.h -------------------------------------------------------------------------------- /control/src/tcp/controller_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/controller_impl.cc -------------------------------------------------------------------------------- /control/src/tcp/controller_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/controller_impl.h -------------------------------------------------------------------------------- /control/src/tcp/mock_check_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/mock_check_data.h -------------------------------------------------------------------------------- /control/src/tcp/mock_report_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/mock_report_data.h -------------------------------------------------------------------------------- /control/src/tcp/request_handler_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/request_handler_impl.cc -------------------------------------------------------------------------------- /control/src/tcp/request_handler_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/request_handler_impl.h -------------------------------------------------------------------------------- /control/src/tcp/request_handler_impl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/tcp/request_handler_impl_test.cc -------------------------------------------------------------------------------- /control/src/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/utils/BUILD -------------------------------------------------------------------------------- /control/src/utils/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/control/src/utils/status.cc -------------------------------------------------------------------------------- /create_global_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/create_global_dictionary.py -------------------------------------------------------------------------------- /googleapis.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/googleapis.bzl -------------------------------------------------------------------------------- /include/attributes_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/include/attributes_builder.h -------------------------------------------------------------------------------- /include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/include/client.h -------------------------------------------------------------------------------- /include/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/include/environment.h -------------------------------------------------------------------------------- /include/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/include/options.h -------------------------------------------------------------------------------- /include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/include/timer.h -------------------------------------------------------------------------------- /istio.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/istio.deps -------------------------------------------------------------------------------- /prefetch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/BUILD -------------------------------------------------------------------------------- /prefetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/README.md -------------------------------------------------------------------------------- /prefetch/circular_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/circular_queue.h -------------------------------------------------------------------------------- /prefetch/circular_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/circular_queue_test.cc -------------------------------------------------------------------------------- /prefetch/quota_prefetch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/quota_prefetch.cc -------------------------------------------------------------------------------- /prefetch/quota_prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/quota_prefetch.h -------------------------------------------------------------------------------- /prefetch/quota_prefetch_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/quota_prefetch_test.cc -------------------------------------------------------------------------------- /prefetch/time_based_counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/time_based_counter.cc -------------------------------------------------------------------------------- /prefetch/time_based_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/time_based_counter.h -------------------------------------------------------------------------------- /prefetch/time_based_counter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prefetch/time_based_counter_test.cc -------------------------------------------------------------------------------- /protobuf.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/protobuf.bzl -------------------------------------------------------------------------------- /prow/mixerclient-presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/prow/mixerclient-presubmit.sh -------------------------------------------------------------------------------- /quota/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/quota/BUILD -------------------------------------------------------------------------------- /quota/include/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/quota/include/config_parser.h -------------------------------------------------------------------------------- /quota/include/requirement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/quota/include/requirement.h -------------------------------------------------------------------------------- /quota/src/config_parser_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/quota/src/config_parser_impl.cc -------------------------------------------------------------------------------- /quota/src/config_parser_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/quota/src/config_parser_impl.h -------------------------------------------------------------------------------- /quota/src/config_parser_impl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/quota/src/config_parser_impl_test.cc -------------------------------------------------------------------------------- /repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/repositories.bzl -------------------------------------------------------------------------------- /script/check-license-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/script/check-license-headers -------------------------------------------------------------------------------- /script/check-style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/script/check-style -------------------------------------------------------------------------------- /src/attribute_compressor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/attribute_compressor.cc -------------------------------------------------------------------------------- /src/attribute_compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/attribute_compressor.h -------------------------------------------------------------------------------- /src/attribute_compressor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/attribute_compressor_test.cc -------------------------------------------------------------------------------- /src/attributes_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/attributes_builder.cc -------------------------------------------------------------------------------- /src/check_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/check_cache.cc -------------------------------------------------------------------------------- /src/check_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/check_cache.h -------------------------------------------------------------------------------- /src/check_cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/check_cache_test.cc -------------------------------------------------------------------------------- /src/client_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/client_impl.cc -------------------------------------------------------------------------------- /src/client_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/client_impl.h -------------------------------------------------------------------------------- /src/client_impl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/client_impl_test.cc -------------------------------------------------------------------------------- /src/delta_update.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/delta_update.cc -------------------------------------------------------------------------------- /src/delta_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/delta_update.h -------------------------------------------------------------------------------- /src/delta_update_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/delta_update_test.cc -------------------------------------------------------------------------------- /src/global_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/global_dictionary.h -------------------------------------------------------------------------------- /src/quota_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/quota_cache.cc -------------------------------------------------------------------------------- /src/quota_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/quota_cache.h -------------------------------------------------------------------------------- /src/quota_cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/quota_cache_test.cc -------------------------------------------------------------------------------- /src/referenced.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/referenced.cc -------------------------------------------------------------------------------- /src/referenced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/referenced.h -------------------------------------------------------------------------------- /src/referenced_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/referenced_test.cc -------------------------------------------------------------------------------- /src/report_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/report_batch.cc -------------------------------------------------------------------------------- /src/report_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/report_batch.h -------------------------------------------------------------------------------- /src/report_batch_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/src/report_batch_test.cc -------------------------------------------------------------------------------- /tools/bazel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/tools/bazel.rc -------------------------------------------------------------------------------- /utils/google_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/google_macros.h -------------------------------------------------------------------------------- /utils/md5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/md5.cc -------------------------------------------------------------------------------- /utils/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/md5.h -------------------------------------------------------------------------------- /utils/md5_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/md5_test.cc -------------------------------------------------------------------------------- /utils/protobuf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/protobuf.cc -------------------------------------------------------------------------------- /utils/protobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/protobuf.h -------------------------------------------------------------------------------- /utils/simple_lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/simple_lru_cache.h -------------------------------------------------------------------------------- /utils/simple_lru_cache_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/simple_lru_cache_inl.h -------------------------------------------------------------------------------- /utils/simple_lru_cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/simple_lru_cache_test.cc -------------------------------------------------------------------------------- /utils/status_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/utils/status_test_util.h -------------------------------------------------------------------------------- /x_tools_imports.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/old_mixerclient_repo/HEAD/x_tools_imports.bzl --------------------------------------------------------------------------------