forked from substrait-io/substrait-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Clint #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
chaojun-zhang
wants to merge
5
commits into
main
Choose a base branch
from
clint
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Clint #1
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ait-io#23) This PR adds a partial implementation of the binary to text plan conversion utility in hopes that a smaller PR will be easier to review. PRs are forthcoming to complete this functionality as well as add text to binary plan conversion. Included features in this PR include: * Extension space and function * Table driven test framework including Googletest Matchers * Helper functions to read plans in various forms from disk Code intended to be shared with the text to binary plan conversion code is located in substrait/textplan. The binary to text conversion code lies in the converter directory beneath that. --------- Co-authored-by: Weston Pace <[email protected]>
…o#32) * Adds support for relations, schemas, and sources. * Does not add support for pipelines and expressions. * Changes locations for binary to text conversion to use protobuffer message pointers.
04f50de
to
1e6f292
Compare
This PR should be the first PR of issue substrait-io#15, and then the second [PR](substrait-io#30) will use this for lint check. - please see https://github.com/apache/skywalking-eyes for license check - run-clang-tidy.py : a python script used to check cpp project with clang-tidy Co-authored-by: chaojun-zhang <[email protected]>
0ff75cf
to
b330c53
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
license-eye has totally checked 1617 files.
Valid | Invalid | Ignored | Fixed |
---|---|---|---|
1 | 921 | 695 | 0 |
Click to see the invalid file list
- .clang-format
- .clang-tidy
- .github/CODEOWNERS
- .github/workflows/build_test.yml
- .gitignore
- .gitmodules
- .licenserc.yaml
- Makefile
- cmake_modules/BuildUtils.cmake
- core/common/Exceptions.cpp
- core/common/tests/ExceptionsTest.cpp
- core/function/Extension.cpp
- core/function/Function.cpp
- core/function/FunctionLookup.cpp
- core/function/tests/FunctionLookupTest.cpp
- core/type/Type.cpp
- core/type/tests/TypeTest.cpp
- docker/Dockerfile
- include/common/Exceptions.h
- include/function/Extension.h
- include/function/Function.h
- include/function/FunctionLookup.h
- include/function/FunctionMapping.h
- include/substrait/common/Exceptions.h
- include/substrait/function/Extension.h
- include/substrait/function/Function.h
- include/substrait/function/FunctionLookup.h
- include/substrait/function/FunctionSignature.h
- include/substrait/type/Type.h
- include/type/Type.h
- scripts/run-clang-tidy.py
- scripts/setup-helper-functions.sh
- scripts/setup-ubuntu.sh
- src/substrait/common/Exceptions.cpp
- src/substrait/common/NumberUtils.h
- src/substrait/common/StringUtils.h
- src/substrait/common/tests/NumberUtilsTest.cpp
- src/substrait/common/tests/StringUtilsTest.cpp
- src/substrait/function/Extension.cpp
- src/substrait/function/Function.cpp
- src/substrait/function/FunctionLookup.cpp
- src/substrait/function/tests/FunctionLookupTest.cpp
- src/substrait/proto/ProtoUtils.cpp
- src/substrait/proto/ProtoUtils.h
- src/substrait/proto/update_proto_package.pl
- src/substrait/textplan/Any.h
- src/substrait/textplan/Location.cpp
- src/substrait/textplan/Location.h
- src/substrait/textplan/ParseResult.cpp
- src/substrait/textplan/ParseResult.h
- src/substrait/textplan/SubstraitErrorListener.cpp
- src/substrait/textplan/SubstraitErrorListener.h
- src/substrait/textplan/SymbolTable.cpp
- src/substrait/textplan/SymbolTable.h
- src/substrait/textplan/SymbolTablePrinter.cpp
- src/substrait/textplan/SymbolTablePrinter.h
- src/substrait/textplan/converter/BasePlanProtoVisitor.cpp
- src/substrait/textplan/converter/BasePlanProtoVisitor.h
- src/substrait/textplan/converter/InitialPlanProtoVisitor.cpp
- src/substrait/textplan/converter/InitialPlanProtoVisitor.h
- src/substrait/textplan/converter/LoadBinary.cpp
- src/substrait/textplan/converter/LoadBinary.h
- src/substrait/textplan/converter/ParseBinary.cpp
- src/substrait/textplan/converter/ParseBinary.h
- src/substrait/textplan/converter/PlanPrinterVisitor.cpp
- src/substrait/textplan/converter/PlanPrinterVisitor.h
- src/substrait/textplan/converter/Tool.cpp
- src/substrait/textplan/converter/data/q6_first_stage.json
- src/substrait/textplan/converter/tests/BinaryToTextPlanConversionTest.cpp
- src/substrait/textplan/tests/ParseResultMatchers.cpp
- src/substrait/textplan/tests/ParseResultMatchers.h
- src/substrait/textplan/tests/SymbolTableTest.cpp
- src/substrait/type/Type.cpp
- src/substrait/type/tests/TypeTest.cpp
- third_party/fmt/.clang-format
- third_party/fmt/.github/workflows/cifuzz.yml
- third_party/fmt/.github/workflows/doc.yml
- third_party/fmt/.github/workflows/linux.yml
- third_party/fmt/.github/workflows/macos.yml
- third_party/fmt/.github/workflows/windows.yml
- third_party/fmt/.gitignore
- third_party/fmt/ChangeLog.rst
- third_party/fmt/LICENSE.rst
- third_party/fmt/README.rst
- third_party/fmt/doc/_static/bootstrap.min.js
- third_party/fmt/doc/_static/breathe.css
- third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.svg
- third_party/fmt/doc/_templates/layout.html
- third_party/fmt/doc/_templates/search.html
- third_party/fmt/doc/api.rst
- third_party/fmt/doc/basic-bootstrap/README
- third_party/fmt/doc/basic-bootstrap/layout.html
- third_party/fmt/doc/basic-bootstrap/theme.conf
- third_party/fmt/doc/bootstrap/alerts.less
- third_party/fmt/doc/bootstrap/badges.less
- third_party/fmt/doc/bootstrap/bootstrap.less
- third_party/fmt/doc/bootstrap/breadcrumbs.less
- third_party/fmt/doc/bootstrap/button-groups.less
- third_party/fmt/doc/bootstrap/buttons.less
- third_party/fmt/doc/bootstrap/carousel.less
- third_party/fmt/doc/bootstrap/close.less
- third_party/fmt/doc/bootstrap/code.less
- third_party/fmt/doc/bootstrap/component-animations.less
- third_party/fmt/doc/bootstrap/dropdowns.less
- third_party/fmt/doc/bootstrap/forms.less
- third_party/fmt/doc/bootstrap/glyphicons.less
- third_party/fmt/doc/bootstrap/grid.less
- third_party/fmt/doc/bootstrap/input-groups.less
- third_party/fmt/doc/bootstrap/jumbotron.less
- third_party/fmt/doc/bootstrap/labels.less
- third_party/fmt/doc/bootstrap/list-group.less
- third_party/fmt/doc/bootstrap/media.less
- third_party/fmt/doc/bootstrap/mixins/alerts.less
- third_party/fmt/doc/bootstrap/mixins/background-variant.less
- third_party/fmt/doc/bootstrap/mixins/border-radius.less
- third_party/fmt/doc/bootstrap/mixins/buttons.less
- third_party/fmt/doc/bootstrap/mixins/center-block.less
- third_party/fmt/doc/bootstrap/mixins/clearfix.less
- third_party/fmt/doc/bootstrap/mixins/forms.less
- third_party/fmt/doc/bootstrap/mixins/gradients.less
- third_party/fmt/doc/bootstrap/mixins/grid-framework.less
- third_party/fmt/doc/bootstrap/mixins/grid.less
- third_party/fmt/doc/bootstrap/mixins/hide-text.less
- third_party/fmt/doc/bootstrap/mixins/image.less
- third_party/fmt/doc/bootstrap/mixins/labels.less
- third_party/fmt/doc/bootstrap/mixins/list-group.less
- third_party/fmt/doc/bootstrap/mixins/nav-divider.less
- third_party/fmt/doc/bootstrap/mixins/nav-vertical-align.less
- third_party/fmt/doc/bootstrap/mixins/opacity.less
- third_party/fmt/doc/bootstrap/mixins/pagination.less
- third_party/fmt/doc/bootstrap/mixins/panels.less
- third_party/fmt/doc/bootstrap/mixins/progress-bar.less
- third_party/fmt/doc/bootstrap/mixins/reset-filter.less
- third_party/fmt/doc/bootstrap/mixins/resize.less
- third_party/fmt/doc/bootstrap/mixins/responsive-visibility.less
- third_party/fmt/doc/bootstrap/mixins/size.less
- third_party/fmt/doc/bootstrap/mixins/tab-focus.less
- third_party/fmt/doc/bootstrap/mixins/table-row.less
- third_party/fmt/doc/bootstrap/mixins/text-emphasis.less
- third_party/fmt/doc/bootstrap/mixins/text-overflow.less
- third_party/fmt/doc/bootstrap/mixins/vendor-prefixes.less
- third_party/fmt/doc/bootstrap/mixins.less
- third_party/fmt/doc/bootstrap/modals.less
- third_party/fmt/doc/bootstrap/navbar.less
- third_party/fmt/doc/bootstrap/navs.less
- third_party/fmt/doc/bootstrap/normalize.less
- third_party/fmt/doc/bootstrap/pager.less
- third_party/fmt/doc/bootstrap/pagination.less
- third_party/fmt/doc/bootstrap/panels.less
- third_party/fmt/doc/bootstrap/popovers.less
- third_party/fmt/doc/bootstrap/print.less
- third_party/fmt/doc/bootstrap/progress-bars.less
- third_party/fmt/doc/bootstrap/responsive-embed.less
- third_party/fmt/doc/bootstrap/responsive-utilities.less
- third_party/fmt/doc/bootstrap/scaffolding.less
- third_party/fmt/doc/bootstrap/tables.less
- third_party/fmt/doc/bootstrap/theme.less
- third_party/fmt/doc/bootstrap/thumbnails.less
- third_party/fmt/doc/bootstrap/tooltip.less
- third_party/fmt/doc/bootstrap/type.less
- third_party/fmt/doc/bootstrap/utilities.less
- third_party/fmt/doc/bootstrap/variables.less
- third_party/fmt/doc/bootstrap/wells.less
- third_party/fmt/doc/build.py
- third_party/fmt/doc/conf.py
- third_party/fmt/doc/contents.rst
- third_party/fmt/doc/fmt.less
- third_party/fmt/doc/index.rst
- third_party/fmt/doc/syntax.rst
- third_party/fmt/doc/usage.rst
- third_party/fmt/include/fmt/args.h
- third_party/fmt/include/fmt/chrono.h
- third_party/fmt/include/fmt/color.h
- third_party/fmt/include/fmt/compile.h
- third_party/fmt/include/fmt/core.h
- third_party/fmt/include/fmt/format-inl.h
- third_party/fmt/include/fmt/format.h
- third_party/fmt/include/fmt/os.h
- third_party/fmt/include/fmt/ostream.h
- third_party/fmt/include/fmt/printf.h
- third_party/fmt/include/fmt/ranges.h
- third_party/fmt/include/fmt/std.h
- third_party/fmt/include/fmt/xchar.h
- third_party/fmt/src/fmt.cc
- third_party/fmt/src/format.cc
- third_party/fmt/src/os.cc
- third_party/fmt/support/Android.mk
- third_party/fmt/support/AndroidManifest.xml
- third_party/fmt/support/C++.sublime-syntax
- third_party/fmt/support/README
- third_party/fmt/support/Vagrantfile
- third_party/fmt/support/bazel/.bazelrc
- third_party/fmt/support/bazel/.bazelversion
- third_party/fmt/support/bazel/BUILD.bazel
- third_party/fmt/support/bazel/WORKSPACE.bazel
- third_party/fmt/support/build-docs.py
- third_party/fmt/support/build.gradle
- third_party/fmt/support/cmake/FindSetEnv.cmake
- third_party/fmt/support/cmake/JoinPaths.cmake
- third_party/fmt/support/cmake/fmt-config.cmake.in
- third_party/fmt/support/cmake/fmt.pc.in
- third_party/fmt/support/compute-powers.py
- third_party/fmt/support/docopt.py
- third_party/fmt/support/manage.py
- third_party/fmt/support/printable.py
- third_party/fmt/support/rst2md.py
- third_party/fmt/support/rtd/conf.py
- third_party/fmt/support/rtd/index.rst
- third_party/fmt/support/rtd/theme/layout.html
- third_party/fmt/support/rtd/theme/theme.conf
- third_party/fmt/test/add-subdirectory-test/main.cc
- third_party/fmt/test/args-test.cc
- third_party/fmt/test/assert-test.cc
- third_party/fmt/test/chrono-test.cc
- third_party/fmt/test/color-test.cc
- third_party/fmt/test/compile-fp-test.cc
- third_party/fmt/test/compile-test.cc
- third_party/fmt/test/core-test.cc
- third_party/fmt/test/cuda-test/cpp14.cc
- third_party/fmt/test/cuda-test/cuda-cpp14.cu
- third_party/fmt/test/detect-stdfs.cc
- third_party/fmt/test/enforce-checks-test.cc
- third_party/fmt/test/find-package-test/main.cc
- third_party/fmt/test/format-impl-test.cc
- third_party/fmt/test/format-test.cc
- third_party/fmt/test/fuzzing/.gitignore
- third_party/fmt/test/fuzzing/build.sh
- third_party/fmt/test/fuzzing/chrono-duration.cc
- third_party/fmt/test/fuzzing/chrono-timepoint.cc
- third_party/fmt/test/fuzzing/float.cc
- third_party/fmt/test/fuzzing/fuzzer-common.h
- third_party/fmt/test/fuzzing/main.cc
- third_party/fmt/test/fuzzing/named-arg.cc
- third_party/fmt/test/fuzzing/one-arg.cc
- third_party/fmt/test/fuzzing/two-args.cc
- third_party/fmt/test/gtest/.clang-format
- third_party/fmt/test/gtest/gmock/gmock.h
- third_party/fmt/test/gtest/gmock-gtest-all.cc
- third_party/fmt/test/gtest/gtest/gtest-spi.h
- third_party/fmt/test/gtest/gtest/gtest.h
- third_party/fmt/test/gtest-extra-test.cc
- third_party/fmt/test/gtest-extra.cc
- third_party/fmt/test/gtest-extra.h
- third_party/fmt/test/header-only-test.cc
- third_party/fmt/test/mock-allocator.h
- third_party/fmt/test/module-test.cc
- third_party/fmt/test/noexception-test.cc
- third_party/fmt/test/os-test.cc
- third_party/fmt/test/ostream-test.cc
- third_party/fmt/test/posix-mock-test.cc
- third_party/fmt/test/posix-mock.h
- third_party/fmt/test/printf-test.cc
- third_party/fmt/test/ranges-odr-test.cc
- third_party/fmt/test/ranges-test.cc
- third_party/fmt/test/scan-test.cc
- third_party/fmt/test/scan.h
- third_party/fmt/test/static-export-test/library.cc
- third_party/fmt/test/static-export-test/main.cc
- third_party/fmt/test/std-test.cc
- third_party/fmt/test/test-assert.h
- third_party/fmt/test/test-main.cc
- third_party/fmt/test/unicode-test.cc
- third_party/fmt/test/util.cc
- third_party/fmt/test/util.h
- third_party/fmt/test/xchar-test.cc
- third_party/googletest/.clang-format
- third_party/googletest/.github/ISSUE_TEMPLATE/00-bug_report.yml
- third_party/googletest/.github/ISSUE_TEMPLATE/10-feature_request.yml
- third_party/googletest/.github/ISSUE_TEMPLATE/config.yml
- third_party/googletest/.github/workflows/gtest-ci.yml
- third_party/googletest/.gitignore
- third_party/googletest/BUILD.bazel
- third_party/googletest/CONTRIBUTORS
- third_party/googletest/WORKSPACE
- third_party/googletest/ci/linux-presubmit.sh
- third_party/googletest/ci/macos-presubmit.sh
- third_party/googletest/ci/windows-presubmit.bat
- third_party/googletest/docs/_config.yml
- third_party/googletest/docs/_data/navigation.yml
- third_party/googletest/docs/_layouts/default.html
- third_party/googletest/docs/_sass/main.scss
- third_party/googletest/docs/assets/css/style.scss
- third_party/googletest/googlemock/cmake/gmock.pc.in
- third_party/googletest/googlemock/cmake/gmock_main.pc.in
- third_party/googletest/googlemock/include/gmock/gmock-actions.h
- third_party/googletest/googlemock/include/gmock/gmock-cardinalities.h
- third_party/googletest/googlemock/include/gmock/gmock-function-mocker.h
- third_party/googletest/googlemock/include/gmock/gmock-matchers.h
- third_party/googletest/googlemock/include/gmock/gmock-more-actions.h
- third_party/googletest/googlemock/include/gmock/gmock-more-matchers.h
- third_party/googletest/googlemock/include/gmock/gmock-nice-strict.h
- third_party/googletest/googlemock/include/gmock/gmock-spec-builders.h
- third_party/googletest/googlemock/include/gmock/gmock.h
- third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h
- third_party/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h
- third_party/googletest/googlemock/include/gmock/internal/custom/gmock-port.h
- third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h
- third_party/googletest/googlemock/include/gmock/internal/gmock-port.h
- third_party/googletest/googlemock/include/gmock/internal/gmock-pp.h
- third_party/googletest/googlemock/src/gmock-all.cc
- third_party/googletest/googlemock/src/gmock-cardinalities.cc
- third_party/googletest/googlemock/src/gmock-internal-utils.cc
- third_party/googletest/googlemock/src/gmock-matchers.cc
- third_party/googletest/googlemock/src/gmock-spec-builders.cc
- third_party/googletest/googlemock/src/gmock.cc
- third_party/googletest/googlemock/src/gmock_main.cc
- third_party/googletest/googlemock/test/BUILD.bazel
- third_party/googletest/googlemock/test/gmock-actions_test.cc
- third_party/googletest/googlemock/test/gmock-cardinalities_test.cc
- third_party/googletest/googlemock/test/gmock-function-mocker_test.cc
- third_party/googletest/googlemock/test/gmock-internal-utils_test.cc
- third_party/googletest/googlemock/test/gmock-matchers-arithmetic_test.cc
- third_party/googletest/googlemock/test/gmock-matchers-comparisons_test.cc
- third_party/googletest/googlemock/test/gmock-matchers-containers_test.cc
- third_party/googletest/googlemock/test/gmock-matchers-misc_test.cc
- third_party/googletest/googlemock/test/gmock-matchers_test.h
- third_party/googletest/googlemock/test/gmock-more-actions_test.cc
- third_party/googletest/googlemock/test/gmock-nice-strict_test.cc
- third_party/googletest/googlemock/test/gmock-port_test.cc
- third_party/googletest/googlemock/test/gmock-pp-string_test.cc
- third_party/googletest/googlemock/test/gmock-pp_test.cc
- third_party/googletest/googlemock/test/gmock-spec-builders_test.cc
- third_party/googletest/googlemock/test/gmock_all_test.cc
- third_party/googletest/googlemock/test/gmock_ex_test.cc
- third_party/googletest/googlemock/test/gmock_leak_test.py
- third_party/googletest/googlemock/test/gmock_leak_test_.cc
- third_party/googletest/googlemock/test/gmock_link2_test.cc
- third_party/googletest/googlemock/test/gmock_link_test.cc
- third_party/googletest/googlemock/test/gmock_link_test.h
- third_party/googletest/googlemock/test/gmock_output_test.py
- third_party/googletest/googlemock/test/gmock_output_test_.cc
- third_party/googletest/googlemock/test/gmock_stress_test.cc
- third_party/googletest/googlemock/test/gmock_test.cc
- third_party/googletest/googlemock/test/gmock_test_utils.py
- third_party/googletest/googletest/cmake/Config.cmake.in
- third_party/googletest/googletest/cmake/gtest.pc.in
- third_party/googletest/googletest/cmake/gtest_main.pc.in
- third_party/googletest/googletest/cmake/internal_utils.cmake
- third_party/googletest/googletest/cmake/libgtest.la.in
- third_party/googletest/googletest/include/gtest/gtest-assertion-result.h
- third_party/googletest/googletest/include/gtest/gtest-death-test.h
- third_party/googletest/googletest/include/gtest/gtest-matchers.h
- third_party/googletest/googletest/include/gtest/gtest-message.h
- third_party/googletest/googletest/include/gtest/gtest-param-test.h
- third_party/googletest/googletest/include/gtest/gtest-printers.h
- third_party/googletest/googletest/include/gtest/gtest-spi.h
- third_party/googletest/googletest/include/gtest/gtest-test-part.h
- third_party/googletest/googletest/include/gtest/gtest-typed-test.h
- third_party/googletest/googletest/include/gtest/gtest.h
- third_party/googletest/googletest/include/gtest/gtest_pred_impl.h
- third_party/googletest/googletest/include/gtest/gtest_prod.h
- third_party/googletest/googletest/include/gtest/internal/custom/gtest-port.h
- third_party/googletest/googletest/include/gtest/internal/custom/gtest-printers.h
- third_party/googletest/googletest/include/gtest/internal/custom/gtest.h
- third_party/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h
- third_party/googletest/googletest/include/gtest/internal/gtest-filepath.h
- third_party/googletest/googletest/include/gtest/internal/gtest-internal.h
- third_party/googletest/googletest/include/gtest/internal/gtest-param-util.h
- third_party/googletest/googletest/include/gtest/internal/gtest-port-arch.h
- third_party/googletest/googletest/include/gtest/internal/gtest-port.h
- third_party/googletest/googletest/include/gtest/internal/gtest-string.h
- third_party/googletest/googletest/include/gtest/internal/gtest-type-util.h
- third_party/googletest/googletest/samples/prime_tables.h
- third_party/googletest/googletest/samples/sample1.cc
- third_party/googletest/googletest/samples/sample1.h
- third_party/googletest/googletest/samples/sample10_unittest.cc
- third_party/googletest/googletest/samples/sample1_unittest.cc
- third_party/googletest/googletest/samples/sample2.cc
- third_party/googletest/googletest/samples/sample2.h
- third_party/googletest/googletest/samples/sample2_unittest.cc
- third_party/googletest/googletest/samples/sample3-inl.h
- third_party/googletest/googletest/samples/sample3_unittest.cc
- third_party/googletest/googletest/samples/sample4.cc
- third_party/googletest/googletest/samples/sample4.h
- third_party/googletest/googletest/samples/sample4_unittest.cc
- third_party/googletest/googletest/samples/sample5_unittest.cc
- third_party/googletest/googletest/samples/sample6_unittest.cc
- third_party/googletest/googletest/samples/sample7_unittest.cc
- third_party/googletest/googletest/samples/sample8_unittest.cc
- third_party/googletest/googletest/samples/sample9_unittest.cc
- third_party/googletest/googletest/src/gtest-all.cc
- third_party/googletest/googletest/src/gtest-assertion-result.cc
- third_party/googletest/googletest/src/gtest-death-test.cc
- third_party/googletest/googletest/src/gtest-filepath.cc
- third_party/googletest/googletest/src/gtest-internal-inl.h
- third_party/googletest/googletest/src/gtest-matchers.cc
- third_party/googletest/googletest/src/gtest-port.cc
- third_party/googletest/googletest/src/gtest-printers.cc
- third_party/googletest/googletest/src/gtest-test-part.cc
- third_party/googletest/googletest/src/gtest-typed-test.cc
- third_party/googletest/googletest/src/gtest.cc
- third_party/googletest/googletest/src/gtest_main.cc
- third_party/googletest/googletest/test/BUILD.bazel
- third_party/googletest/googletest/test/googletest-break-on-failure-unittest.py
- third_party/googletest/googletest/test/googletest-break-on-failure-unittest_.cc
- third_party/googletest/googletest/test/googletest-catch-exceptions-test.py
- third_party/googletest/googletest/test/googletest-catch-exceptions-test_.cc
- third_party/googletest/googletest/test/googletest-color-test.py
- third_party/googletest/googletest/test/googletest-color-test_.cc
- third_party/googletest/googletest/test/googletest-death-test-test.cc
- third_party/googletest/googletest/test/googletest-death-test_ex_test.cc
- third_party/googletest/googletest/test/googletest-env-var-test.py
- third_party/googletest/googletest/test/googletest-env-var-test_.cc
- third_party/googletest/googletest/test/googletest-failfast-unittest.py
- third_party/googletest/googletest/test/googletest-failfast-unittest_.cc
- third_party/googletest/googletest/test/googletest-filepath-test.cc
- third_party/googletest/googletest/test/googletest-filter-unittest.py
- third_party/googletest/googletest/test/googletest-filter-unittest_.cc
- third_party/googletest/googletest/test/googletest-global-environment-unittest.py
- third_party/googletest/googletest/test/googletest-global-environment-unittest_.cc
- third_party/googletest/googletest/test/googletest-json-outfiles-test.py
- third_party/googletest/googletest/test/googletest-json-output-unittest.py
- third_party/googletest/googletest/test/googletest-list-tests-unittest.py
- third_party/googletest/googletest/test/googletest-list-tests-unittest_.cc
- third_party/googletest/googletest/test/googletest-listener-test.cc
- third_party/googletest/googletest/test/googletest-message-test.cc
- third_party/googletest/googletest/test/googletest-options-test.cc
- third_party/googletest/googletest/test/googletest-output-test.py
- third_party/googletest/googletest/test/googletest-output-test_.cc
- third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test.py
- third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc
- third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test.py
- third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc
- third_party/googletest/googletest/test/googletest-param-test-test.cc
- third_party/googletest/googletest/test/googletest-param-test-test.h
- third_party/googletest/googletest/test/googletest-param-test2-test.cc
- third_party/googletest/googletest/test/googletest-port-test.cc
- third_party/googletest/googletest/test/googletest-printers-test.cc
- third_party/googletest/googletest/test/googletest-setuptestsuite-test.py
- third_party/googletest/googletest/test/googletest-setuptestsuite-test_.cc
- third_party/googletest/googletest/test/googletest-shuffle-test.py
- third_party/googletest/googletest/test/googletest-shuffle-test_.cc
- third_party/googletest/googletest/test/googletest-test-part-test.cc
- third_party/googletest/googletest/test/googletest-throw-on-failure-test.py
- third_party/googletest/googletest/test/googletest-throw-on-failure-test_.cc
- third_party/googletest/googletest/test/googletest-uninitialized-test.py
- third_party/googletest/googletest/test/googletest-uninitialized-test_.cc
- third_party/googletest/googletest/test/gtest-typed-test2_test.cc
- third_party/googletest/googletest/test/gtest-typed-test_test.cc
- third_party/googletest/googletest/test/gtest-typed-test_test.h
- third_party/googletest/googletest/test/gtest-unittest-api_test.cc
- third_party/googletest/googletest/test/gtest_all_test.cc
- third_party/googletest/googletest/test/gtest_assert_by_exception_test.cc
- third_party/googletest/googletest/test/gtest_dirs_test.cc
- third_party/googletest/googletest/test/gtest_environment_test.cc
- third_party/googletest/googletest/test/gtest_help_test.py
- third_party/googletest/googletest/test/gtest_help_test_.cc
- third_party/googletest/googletest/test/gtest_json_test_utils.py
- third_party/googletest/googletest/test/gtest_list_output_unittest.py
- third_party/googletest/googletest/test/gtest_list_output_unittest_.cc
- third_party/googletest/googletest/test/gtest_main_unittest.cc
- third_party/googletest/googletest/test/gtest_no_test_unittest.cc
- third_party/googletest/googletest/test/gtest_pred_impl_unittest.cc
- third_party/googletest/googletest/test/gtest_premature_exit_test.cc
- third_party/googletest/googletest/test/gtest_prod_test.cc
- third_party/googletest/googletest/test/gtest_repeat_test.cc
- third_party/googletest/googletest/test/gtest_skip_check_output_test.py
- third_party/googletest/googletest/test/gtest_skip_environment_check_output_test.py
- third_party/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc
- third_party/googletest/googletest/test/gtest_skip_test.cc
- third_party/googletest/googletest/test/gtest_sole_header_test.cc
- third_party/googletest/googletest/test/gtest_stress_test.cc
- third_party/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc
- third_party/googletest/googletest/test/gtest_test_utils.py
- third_party/googletest/googletest/test/gtest_testbridge_test.py
- third_party/googletest/googletest/test/gtest_testbridge_test_.cc
- third_party/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc
- third_party/googletest/googletest/test/gtest_unittest.cc
- third_party/googletest/googletest/test/gtest_xml_outfile1_test_.cc
- third_party/googletest/googletest/test/gtest_xml_outfile2_test_.cc
- third_party/googletest/googletest/test/gtest_xml_outfiles_test.py
- third_party/googletest/googletest/test/gtest_xml_output_unittest.py
- third_party/googletest/googletest/test/gtest_xml_output_unittest_.cc
- third_party/googletest/googletest/test/gtest_xml_test_utils.py
- third_party/googletest/googletest/test/production.cc
- third_party/googletest/googletest/test/production.h
- third_party/substrait/.editorconfig
- third_party/substrait/.gitattributes
- third_party/substrait/.github/actions/dev-tool-python/action.yml
- third_party/substrait/.github/dependabot.yml
- third_party/substrait/.github/workflows/licence_check.yml
- third_party/substrait/.github/workflows/pr.yml
- third_party/substrait/.github/workflows/pr_breaking.yml
- third_party/substrait/.github/workflows/pr_title.yml
- third_party/substrait/.github/workflows/release.yml
- third_party/substrait/.github/workflows/site.yml
- third_party/substrait/.gitignore
- third_party/substrait/.licenserc.yaml
- third_party/substrait/.pre-commit-config.yaml
- third_party/substrait/.releaserc.json
- third_party/substrait/.yamllint.yaml
- third_party/substrait/buf.gen.yaml
- third_party/substrait/buf.work.yaml
- third_party/substrait/ci/release/dry_run.sh
- third_party/substrait/ci/release/prepare.sh
- third_party/substrait/ci/release/publish.sh
- third_party/substrait/ci/release/run.sh
- third_party/substrait/ci/release/verify.sh
- third_party/substrait/extensions/extension_types.yaml
- third_party/substrait/extensions/functions_aggregate_approx.yaml
- third_party/substrait/extensions/functions_aggregate_generic.yaml
- third_party/substrait/extensions/functions_arithmetic.yaml
- third_party/substrait/extensions/functions_arithmetic_decimal.yaml
- third_party/substrait/extensions/functions_boolean.yaml
- third_party/substrait/extensions/functions_comparison.yaml
- third_party/substrait/extensions/functions_datetime.yaml
- third_party/substrait/extensions/functions_logarithmic.yaml
- third_party/substrait/extensions/functions_rounding.yaml
- third_party/substrait/extensions/functions_set.yaml
- third_party/substrait/extensions/functions_string.yaml
- third_party/substrait/extensions/type_variations.yaml
- third_party/substrait/extensions/unknown.yaml
- third_party/substrait/proto/buf.lock
- third_party/substrait/proto/buf.yaml
- third_party/substrait/proto/substrait/algebra.proto
- third_party/substrait/proto/substrait/capabilities.proto
- third_party/substrait/proto/substrait/extended_expression.proto
- third_party/substrait/proto/substrait/extensions/extensions.proto
- third_party/substrait/proto/substrait/function.proto
- third_party/substrait/proto/substrait/parameterized_types.proto
- third_party/substrait/proto/substrait/plan.proto
- third_party/substrait/proto/substrait/type.proto
- third_party/substrait/proto/substrait/type_expressions.proto
- third_party/substrait/site/.gitignore
- third_party/substrait/site/data/committers.yaml
- third_party/substrait/site/data/smc.yaml
- third_party/substrait/site/docs/_config
- third_party/substrait/site/docs/expressions/_config
- third_party/substrait/site/docs/extensions/.gitignore
- third_party/substrait/site/docs/extensions/generate_function_docs.py
- third_party/substrait/site/docs/img/logo.svg
- third_party/substrait/site/docs/relations/_config
- third_party/substrait/site/docs/serialization/_config
- third_party/substrait/site/docs/spec/_config
- third_party/substrait/site/docs/stylesheets/extra.css
- third_party/substrait/site/docs/tutorial/expression_trees.svg
- third_party/substrait/site/docs/tutorial/field_indices_layout.svg
- third_party/substrait/site/docs/tutorial/final_plan.json
- third_party/substrait/site/docs/tutorial/plan_tree_versus_expression.svg
- third_party/substrait/site/docs/tutorial/substrait_components.svg
- third_party/substrait/site/docs/types/_config
- third_party/substrait/site/mkdocs.yml
- third_party/substrait/site/overrides/partials/footer.html
- third_party/substrait/text/simple_extensions_schema.yaml
- third_party/yaml-cpp/.clang-format
- third_party/yaml-cpp/.codedocs
- third_party/yaml-cpp/.gitignore
- third_party/yaml-cpp/.travis.yml
- third_party/yaml-cpp/include/yaml-cpp/anchor.h
- third_party/yaml-cpp/include/yaml-cpp/binary.h
- third_party/yaml-cpp/include/yaml-cpp/contrib/anchordict.h
- third_party/yaml-cpp/include/yaml-cpp/contrib/graphbuilder.h
- third_party/yaml-cpp/include/yaml-cpp/dll.h
- third_party/yaml-cpp/include/yaml-cpp/emitfromevents.h
- third_party/yaml-cpp/include/yaml-cpp/emitter.h
- third_party/yaml-cpp/include/yaml-cpp/emitterdef.h
- third_party/yaml-cpp/include/yaml-cpp/emittermanip.h
- third_party/yaml-cpp/include/yaml-cpp/emitterstyle.h
- third_party/yaml-cpp/include/yaml-cpp/eventhandler.h
- third_party/yaml-cpp/include/yaml-cpp/exceptions.h
- third_party/yaml-cpp/include/yaml-cpp/mark.h
- third_party/yaml-cpp/include/yaml-cpp/node/convert.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/bool_type.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/impl.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/memory.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/node.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
- third_party/yaml-cpp/include/yaml-cpp/node/emit.h
- third_party/yaml-cpp/include/yaml-cpp/node/impl.h
- third_party/yaml-cpp/include/yaml-cpp/node/iterator.h
- third_party/yaml-cpp/include/yaml-cpp/node/node.h
- third_party/yaml-cpp/include/yaml-cpp/node/parse.h
- third_party/yaml-cpp/include/yaml-cpp/node/ptr.h
- third_party/yaml-cpp/include/yaml-cpp/node/type.h
- third_party/yaml-cpp/include/yaml-cpp/noncopyable.h
- third_party/yaml-cpp/include/yaml-cpp/null.h
- third_party/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
- third_party/yaml-cpp/include/yaml-cpp/parser.h
- third_party/yaml-cpp/include/yaml-cpp/stlemitter.h
- third_party/yaml-cpp/include/yaml-cpp/traits.h
- third_party/yaml-cpp/include/yaml-cpp/yaml.h
- third_party/yaml-cpp/src/binary.cpp
- third_party/yaml-cpp/src/collectionstack.h
- third_party/yaml-cpp/src/contrib/graphbuilder.cpp
- third_party/yaml-cpp/src/contrib/graphbuilderadapter.cpp
- third_party/yaml-cpp/src/contrib/graphbuilderadapter.h
- third_party/yaml-cpp/src/convert.cpp
- third_party/yaml-cpp/src/directives.cpp
- third_party/yaml-cpp/src/directives.h
- third_party/yaml-cpp/src/emit.cpp
- third_party/yaml-cpp/src/emitfromevents.cpp
- third_party/yaml-cpp/src/emitter.cpp
- third_party/yaml-cpp/src/emitterstate.cpp
- third_party/yaml-cpp/src/emitterstate.h
- third_party/yaml-cpp/src/emitterutils.cpp
- third_party/yaml-cpp/src/emitterutils.h
- third_party/yaml-cpp/src/exceptions.cpp
- third_party/yaml-cpp/src/exp.cpp
- third_party/yaml-cpp/src/exp.h
- third_party/yaml-cpp/src/indentation.h
- third_party/yaml-cpp/src/memory.cpp
- third_party/yaml-cpp/src/node.cpp
- third_party/yaml-cpp/src/node_data.cpp
- third_party/yaml-cpp/src/nodebuilder.cpp
- third_party/yaml-cpp/src/nodebuilder.h
- third_party/yaml-cpp/src/nodeevents.cpp
- third_party/yaml-cpp/src/nodeevents.h
- third_party/yaml-cpp/src/null.cpp
- third_party/yaml-cpp/src/ostream_wrapper.cpp
- third_party/yaml-cpp/src/parse.cpp
- third_party/yaml-cpp/src/parser.cpp
- third_party/yaml-cpp/src/ptr_vector.h
- third_party/yaml-cpp/src/regex_yaml.cpp
- third_party/yaml-cpp/src/regex_yaml.h
- third_party/yaml-cpp/src/regeximpl.h
- third_party/yaml-cpp/src/scanner.cpp
- third_party/yaml-cpp/src/scanner.h
- third_party/yaml-cpp/src/scanscalar.cpp
- third_party/yaml-cpp/src/scanscalar.h
- third_party/yaml-cpp/src/scantag.cpp
- third_party/yaml-cpp/src/scantag.h
- third_party/yaml-cpp/src/scantoken.cpp
- third_party/yaml-cpp/src/setting.h
- third_party/yaml-cpp/src/simplekey.cpp
- third_party/yaml-cpp/src/singledocparser.cpp
- third_party/yaml-cpp/src/singledocparser.h
- third_party/yaml-cpp/src/stream.cpp
- third_party/yaml-cpp/src/stream.h
- third_party/yaml-cpp/src/streamcharsource.h
- third_party/yaml-cpp/src/stringsource.h
- third_party/yaml-cpp/src/tag.cpp
- third_party/yaml-cpp/src/tag.h
- third_party/yaml-cpp/src/token.h
- third_party/yaml-cpp/test/create-emitter-tests.py
- third_party/yaml-cpp/test/gtest-1.8.0/.gitignore
- third_party/yaml-cpp/test/gtest-1.8.0/.travis.yml
- third_party/yaml-cpp/test/gtest-1.8.0/appveyor.yml
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/CHANGES
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/CONTRIBUTORS
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/Makefile.am
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/build-aux/.keep
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/configure.ac
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-actions.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-cardinalities.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-actions.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-actions.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-function-mockers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-function-mockers.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-matchers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-matchers.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-nice-strict.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-nice-strict.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-matchers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-more-actions.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-more-matchers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-spec-builders.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/custom/gmock-generated-actions.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/custom/gmock-matchers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/custom/gmock-port.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/gmock-generated-internal-utils.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/gmock-generated-internal-utils.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/gmock-internal-utils.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/gmock-port.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/make/Makefile
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock_config.vsprops
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock_main.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock_test.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock_config.props
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock_main.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock_test.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock_config.props
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock_main.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock_test.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/fuse_gmock_files.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/README
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/README.cppclean
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/cpp/init.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/cpp/ast.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/cpp/gmock_class.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/cpp/gmock_class_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/cpp/keywords.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/cpp/tokenize.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/cpp/utils.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/gmock_gen.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/gmock-config.in
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/gmock_doctor.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/upload.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/upload_gmock.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-all.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-cardinalities.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-internal-utils.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-matchers.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-spec-builders.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock_main.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-actions_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-cardinalities_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-generated-actions_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-generated-function-mockers_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-generated-internal-utils_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-generated-matchers_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-internal-utils_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-matchers_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-more-actions_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-nice-strict_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-port_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-spec-builders_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_all_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_ex_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_leak_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_leak_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_link2_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_link_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_link_test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_output_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_output_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_stress_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_test_utils.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/.gitignore
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/CHANGES
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/CONTRIBUTORS
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/Makefile.am
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/build-aux/.keep
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/cmake/internal_utils.cmake
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest.cbproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest.groupproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest_all.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest_link.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest_main.cbproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest_unittest.cbproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/configure.ac
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-death-test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-message.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-param-test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-param-test.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-printers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-spi.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-test-part.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-typed-test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest_pred_impl.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest_prod.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/custom/gtest-port.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/custom/gtest-printers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/custom/gtest.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-death-test-internal.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-filepath.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-internal.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-linked_ptr.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-param-util-generated.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-param-util-generated.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-param-util.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-port-arch.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-port.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-string.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-tuple.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-tuple.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-type-util.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-type-util.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/m4/acx_pthread.m4
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/m4/gtest.m4
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/make/Makefile
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest-md.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest-md.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_main-md.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_main.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_prod_test-md.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_prod_test.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_unittest-md.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_unittest.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/prime_tables.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample1.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample1.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample10_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample1_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample2.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample2.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample2_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample3-inl.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample3_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample4.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample4.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample4_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample5_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample6_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample7_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample8_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample9_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/common.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/fuse_gtest_files.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/gen_gtest_pred_impl.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/gtest-config.in
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/pump.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/release_docs.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/test/Makefile
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/upload.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/upload_gtest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-all.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-death-test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-filepath.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-internal-inl.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-port.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-printers.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-test-part.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-typed-test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest_main.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-death-test_ex_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-death-test_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-filepath_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-linked_ptr_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-listener_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-message_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-options_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-param-test2_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-param-test_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-param-test_test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-port_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-printers_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-test-part_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-tuple_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-typed-test2_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-typed-test_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-typed-test_test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-unittest-api_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_all_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_break_on_failure_unittest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_break_on_failure_unittest_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_catch_exceptions_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_catch_exceptions_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_color_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_color_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_env_var_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_env_var_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_environment_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_filter_unittest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_filter_unittest_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_help_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_help_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_list_tests_unittest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_list_tests_unittest_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_main_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_no_test_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_output_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_output_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_pred_impl_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_premature_exit_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_prod_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_repeat_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_shuffle_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_shuffle_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_sole_header_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_stress_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_test_utils.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_throw_on_failure_ex_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_throw_on_failure_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_throw_on_failure_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_uninitialized_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_uninitialized_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_outfile1_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_outfile2_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_outfiles_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_output_unittest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_output_unittest_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_test_utils.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/production.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/production.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/DebugProject.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/FrameworkTarget.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/General.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/ReleaseProject.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/StaticLibraryTarget.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/TestTarget.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Resources/Info.plist
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/Info.plist
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/runtests.sh
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/widget.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/widget.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/widget_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Scripts/runtests.sh
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Scripts/versiongenerate.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/gtest.xcodeproj/project.pbxproj
- third_party/yaml-cpp/test/gtest-1.8.0/travis.sh
- third_party/yaml-cpp/test/handler_test.h
- third_party/yaml-cpp/test/integration/emitter_test.cpp
- third_party/yaml-cpp/test/integration/encoding_test.cpp
- third_party/yaml-cpp/test/integration/gen_emitter_test.cpp
- third_party/yaml-cpp/test/integration/handler_spec_test.cpp
- third_party/yaml-cpp/test/integration/handler_test.cpp
- third_party/yaml-cpp/test/integration/load_node_test.cpp
- third_party/yaml-cpp/test/integration/node_spec_test.cpp
- third_party/yaml-cpp/test/main.cpp
- third_party/yaml-cpp/test/mock_event_handler.h
- third_party/yaml-cpp/test/node/node_test.cpp
- third_party/yaml-cpp/test/ostream_wrapper_test.cpp
- third_party/yaml-cpp/test/regex_test.cpp
- third_party/yaml-cpp/test/specexamples.h
- third_party/yaml-cpp/util/api.cpp
- third_party/yaml-cpp/util/parse.cpp
- third_party/yaml-cpp/util/read.cpp
- third_party/yaml-cpp/util/sandbox.cpp
- third_party/yaml-cpp/yaml-cpp-config-version.cmake.in
- third_party/yaml-cpp/yaml-cpp-config.cmake.in
- third_party/yaml-cpp/yaml-cpp.pc.cmake
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
license-eye has totally checked 1617 files.
Valid | Invalid | Ignored | Fixed |
---|---|---|---|
23 | 899 | 695 | 0 |
Click to see the invalid file list
- .clang-format
- .clang-tidy
- .github/CODEOWNERS
- .github/workflows/build_test.yml
- .gitignore
- .gitmodules
- .licenserc.yaml
- Makefile
- cmake_modules/BuildUtils.cmake
- docker/Dockerfile
- include/function/FunctionSignature.h
- include/substrait/common/Exceptions.h
- include/substrait/function/Extension.h
- include/substrait/function/Function.h
- include/substrait/function/FunctionLookup.h
- include/substrait/function/FunctionSignature.h
- include/substrait/type/Type.h
- scripts/run-clang-tidy.py
- scripts/setup-helper-functions.sh
- scripts/setup-ubuntu.sh
- src/substrait/common/Exceptions.cpp
- src/substrait/common/NumberUtils.h
- src/substrait/common/StringUtils.h
- src/substrait/common/tests/NumberUtilsTest.cpp
- src/substrait/common/tests/StringUtilsTest.cpp
- src/substrait/function/Extension.cpp
- src/substrait/function/Function.cpp
- src/substrait/function/FunctionLookup.cpp
- src/substrait/function/tests/FunctionLookupTest.cpp
- src/substrait/proto/ProtoUtils.cpp
- src/substrait/proto/ProtoUtils.h
- src/substrait/proto/update_proto_package.pl
- src/substrait/textplan/Any.h
- src/substrait/textplan/Location.cpp
- src/substrait/textplan/Location.h
- src/substrait/textplan/ParseResult.cpp
- src/substrait/textplan/ParseResult.h
- src/substrait/textplan/SubstraitErrorListener.cpp
- src/substrait/textplan/SubstraitErrorListener.h
- src/substrait/textplan/SymbolTable.cpp
- src/substrait/textplan/SymbolTable.h
- src/substrait/textplan/SymbolTablePrinter.cpp
- src/substrait/textplan/SymbolTablePrinter.h
- src/substrait/textplan/converter/BasePlanProtoVisitor.cpp
- src/substrait/textplan/converter/BasePlanProtoVisitor.h
- src/substrait/textplan/converter/InitialPlanProtoVisitor.cpp
- src/substrait/textplan/converter/InitialPlanProtoVisitor.h
- src/substrait/textplan/converter/LoadBinary.cpp
- src/substrait/textplan/converter/LoadBinary.h
- src/substrait/textplan/converter/ParseBinary.cpp
- src/substrait/textplan/converter/ParseBinary.h
- src/substrait/textplan/converter/PlanPrinterVisitor.cpp
- src/substrait/textplan/converter/PlanPrinterVisitor.h
- src/substrait/textplan/converter/Tool.cpp
- src/substrait/textplan/converter/data/q6_first_stage.json
- src/substrait/textplan/converter/tests/BinaryToTextPlanConversionTest.cpp
- src/substrait/textplan/tests/ParseResultMatchers.cpp
- src/substrait/textplan/tests/ParseResultMatchers.h
- src/substrait/textplan/tests/SymbolTableTest.cpp
- src/substrait/type/Type.cpp
- src/substrait/type/tests/TypeTest.cpp
- third_party/fmt/.clang-format
- third_party/fmt/.github/workflows/cifuzz.yml
- third_party/fmt/.github/workflows/doc.yml
- third_party/fmt/.github/workflows/linux.yml
- third_party/fmt/.github/workflows/macos.yml
- third_party/fmt/.github/workflows/windows.yml
- third_party/fmt/.gitignore
- third_party/fmt/ChangeLog.rst
- third_party/fmt/LICENSE.rst
- third_party/fmt/README.rst
- third_party/fmt/doc/_static/bootstrap.min.js
- third_party/fmt/doc/_static/breathe.css
- third_party/fmt/doc/_static/fonts/glyphicons-halflings-regular.svg
- third_party/fmt/doc/_templates/layout.html
- third_party/fmt/doc/_templates/search.html
- third_party/fmt/doc/api.rst
- third_party/fmt/doc/basic-bootstrap/README
- third_party/fmt/doc/basic-bootstrap/layout.html
- third_party/fmt/doc/basic-bootstrap/theme.conf
- third_party/fmt/doc/bootstrap/alerts.less
- third_party/fmt/doc/bootstrap/badges.less
- third_party/fmt/doc/bootstrap/bootstrap.less
- third_party/fmt/doc/bootstrap/breadcrumbs.less
- third_party/fmt/doc/bootstrap/button-groups.less
- third_party/fmt/doc/bootstrap/buttons.less
- third_party/fmt/doc/bootstrap/carousel.less
- third_party/fmt/doc/bootstrap/close.less
- third_party/fmt/doc/bootstrap/code.less
- third_party/fmt/doc/bootstrap/component-animations.less
- third_party/fmt/doc/bootstrap/dropdowns.less
- third_party/fmt/doc/bootstrap/forms.less
- third_party/fmt/doc/bootstrap/glyphicons.less
- third_party/fmt/doc/bootstrap/grid.less
- third_party/fmt/doc/bootstrap/input-groups.less
- third_party/fmt/doc/bootstrap/jumbotron.less
- third_party/fmt/doc/bootstrap/labels.less
- third_party/fmt/doc/bootstrap/list-group.less
- third_party/fmt/doc/bootstrap/media.less
- third_party/fmt/doc/bootstrap/mixins/alerts.less
- third_party/fmt/doc/bootstrap/mixins/background-variant.less
- third_party/fmt/doc/bootstrap/mixins/border-radius.less
- third_party/fmt/doc/bootstrap/mixins/buttons.less
- third_party/fmt/doc/bootstrap/mixins/center-block.less
- third_party/fmt/doc/bootstrap/mixins/clearfix.less
- third_party/fmt/doc/bootstrap/mixins/forms.less
- third_party/fmt/doc/bootstrap/mixins/gradients.less
- third_party/fmt/doc/bootstrap/mixins/grid-framework.less
- third_party/fmt/doc/bootstrap/mixins/grid.less
- third_party/fmt/doc/bootstrap/mixins/hide-text.less
- third_party/fmt/doc/bootstrap/mixins/image.less
- third_party/fmt/doc/bootstrap/mixins/labels.less
- third_party/fmt/doc/bootstrap/mixins/list-group.less
- third_party/fmt/doc/bootstrap/mixins/nav-divider.less
- third_party/fmt/doc/bootstrap/mixins/nav-vertical-align.less
- third_party/fmt/doc/bootstrap/mixins/opacity.less
- third_party/fmt/doc/bootstrap/mixins/pagination.less
- third_party/fmt/doc/bootstrap/mixins/panels.less
- third_party/fmt/doc/bootstrap/mixins/progress-bar.less
- third_party/fmt/doc/bootstrap/mixins/reset-filter.less
- third_party/fmt/doc/bootstrap/mixins/resize.less
- third_party/fmt/doc/bootstrap/mixins/responsive-visibility.less
- third_party/fmt/doc/bootstrap/mixins/size.less
- third_party/fmt/doc/bootstrap/mixins/tab-focus.less
- third_party/fmt/doc/bootstrap/mixins/table-row.less
- third_party/fmt/doc/bootstrap/mixins/text-emphasis.less
- third_party/fmt/doc/bootstrap/mixins/text-overflow.less
- third_party/fmt/doc/bootstrap/mixins/vendor-prefixes.less
- third_party/fmt/doc/bootstrap/mixins.less
- third_party/fmt/doc/bootstrap/modals.less
- third_party/fmt/doc/bootstrap/navbar.less
- third_party/fmt/doc/bootstrap/navs.less
- third_party/fmt/doc/bootstrap/normalize.less
- third_party/fmt/doc/bootstrap/pager.less
- third_party/fmt/doc/bootstrap/pagination.less
- third_party/fmt/doc/bootstrap/panels.less
- third_party/fmt/doc/bootstrap/popovers.less
- third_party/fmt/doc/bootstrap/print.less
- third_party/fmt/doc/bootstrap/progress-bars.less
- third_party/fmt/doc/bootstrap/responsive-embed.less
- third_party/fmt/doc/bootstrap/responsive-utilities.less
- third_party/fmt/doc/bootstrap/scaffolding.less
- third_party/fmt/doc/bootstrap/tables.less
- third_party/fmt/doc/bootstrap/theme.less
- third_party/fmt/doc/bootstrap/thumbnails.less
- third_party/fmt/doc/bootstrap/tooltip.less
- third_party/fmt/doc/bootstrap/type.less
- third_party/fmt/doc/bootstrap/utilities.less
- third_party/fmt/doc/bootstrap/variables.less
- third_party/fmt/doc/bootstrap/wells.less
- third_party/fmt/doc/build.py
- third_party/fmt/doc/conf.py
- third_party/fmt/doc/contents.rst
- third_party/fmt/doc/fmt.less
- third_party/fmt/doc/index.rst
- third_party/fmt/doc/syntax.rst
- third_party/fmt/doc/usage.rst
- third_party/fmt/include/fmt/args.h
- third_party/fmt/include/fmt/chrono.h
- third_party/fmt/include/fmt/color.h
- third_party/fmt/include/fmt/compile.h
- third_party/fmt/include/fmt/core.h
- third_party/fmt/include/fmt/format-inl.h
- third_party/fmt/include/fmt/format.h
- third_party/fmt/include/fmt/os.h
- third_party/fmt/include/fmt/ostream.h
- third_party/fmt/include/fmt/printf.h
- third_party/fmt/include/fmt/ranges.h
- third_party/fmt/include/fmt/std.h
- third_party/fmt/include/fmt/xchar.h
- third_party/fmt/src/fmt.cc
- third_party/fmt/src/format.cc
- third_party/fmt/src/os.cc
- third_party/fmt/support/Android.mk
- third_party/fmt/support/AndroidManifest.xml
- third_party/fmt/support/C++.sublime-syntax
- third_party/fmt/support/README
- third_party/fmt/support/Vagrantfile
- third_party/fmt/support/bazel/.bazelrc
- third_party/fmt/support/bazel/.bazelversion
- third_party/fmt/support/bazel/BUILD.bazel
- third_party/fmt/support/bazel/WORKSPACE.bazel
- third_party/fmt/support/build-docs.py
- third_party/fmt/support/build.gradle
- third_party/fmt/support/cmake/FindSetEnv.cmake
- third_party/fmt/support/cmake/JoinPaths.cmake
- third_party/fmt/support/cmake/fmt-config.cmake.in
- third_party/fmt/support/cmake/fmt.pc.in
- third_party/fmt/support/compute-powers.py
- third_party/fmt/support/docopt.py
- third_party/fmt/support/manage.py
- third_party/fmt/support/printable.py
- third_party/fmt/support/rst2md.py
- third_party/fmt/support/rtd/conf.py
- third_party/fmt/support/rtd/index.rst
- third_party/fmt/support/rtd/theme/layout.html
- third_party/fmt/support/rtd/theme/theme.conf
- third_party/fmt/test/add-subdirectory-test/main.cc
- third_party/fmt/test/args-test.cc
- third_party/fmt/test/assert-test.cc
- third_party/fmt/test/chrono-test.cc
- third_party/fmt/test/color-test.cc
- third_party/fmt/test/compile-fp-test.cc
- third_party/fmt/test/compile-test.cc
- third_party/fmt/test/core-test.cc
- third_party/fmt/test/cuda-test/cpp14.cc
- third_party/fmt/test/cuda-test/cuda-cpp14.cu
- third_party/fmt/test/detect-stdfs.cc
- third_party/fmt/test/enforce-checks-test.cc
- third_party/fmt/test/find-package-test/main.cc
- third_party/fmt/test/format-impl-test.cc
- third_party/fmt/test/format-test.cc
- third_party/fmt/test/fuzzing/.gitignore
- third_party/fmt/test/fuzzing/build.sh
- third_party/fmt/test/fuzzing/chrono-duration.cc
- third_party/fmt/test/fuzzing/chrono-timepoint.cc
- third_party/fmt/test/fuzzing/float.cc
- third_party/fmt/test/fuzzing/fuzzer-common.h
- third_party/fmt/test/fuzzing/main.cc
- third_party/fmt/test/fuzzing/named-arg.cc
- third_party/fmt/test/fuzzing/one-arg.cc
- third_party/fmt/test/fuzzing/two-args.cc
- third_party/fmt/test/gtest/.clang-format
- third_party/fmt/test/gtest/gmock/gmock.h
- third_party/fmt/test/gtest/gmock-gtest-all.cc
- third_party/fmt/test/gtest/gtest/gtest-spi.h
- third_party/fmt/test/gtest/gtest/gtest.h
- third_party/fmt/test/gtest-extra-test.cc
- third_party/fmt/test/gtest-extra.cc
- third_party/fmt/test/gtest-extra.h
- third_party/fmt/test/header-only-test.cc
- third_party/fmt/test/mock-allocator.h
- third_party/fmt/test/module-test.cc
- third_party/fmt/test/noexception-test.cc
- third_party/fmt/test/os-test.cc
- third_party/fmt/test/ostream-test.cc
- third_party/fmt/test/posix-mock-test.cc
- third_party/fmt/test/posix-mock.h
- third_party/fmt/test/printf-test.cc
- third_party/fmt/test/ranges-odr-test.cc
- third_party/fmt/test/ranges-test.cc
- third_party/fmt/test/scan-test.cc
- third_party/fmt/test/scan.h
- third_party/fmt/test/static-export-test/library.cc
- third_party/fmt/test/static-export-test/main.cc
- third_party/fmt/test/std-test.cc
- third_party/fmt/test/test-assert.h
- third_party/fmt/test/test-main.cc
- third_party/fmt/test/unicode-test.cc
- third_party/fmt/test/util.cc
- third_party/fmt/test/util.h
- third_party/fmt/test/xchar-test.cc
- third_party/googletest/.clang-format
- third_party/googletest/.github/ISSUE_TEMPLATE/00-bug_report.yml
- third_party/googletest/.github/ISSUE_TEMPLATE/10-feature_request.yml
- third_party/googletest/.github/ISSUE_TEMPLATE/config.yml
- third_party/googletest/.github/workflows/gtest-ci.yml
- third_party/googletest/.gitignore
- third_party/googletest/BUILD.bazel
- third_party/googletest/CONTRIBUTORS
- third_party/googletest/WORKSPACE
- third_party/googletest/ci/linux-presubmit.sh
- third_party/googletest/ci/macos-presubmit.sh
- third_party/googletest/ci/windows-presubmit.bat
- third_party/googletest/docs/_config.yml
- third_party/googletest/docs/_data/navigation.yml
- third_party/googletest/docs/_layouts/default.html
- third_party/googletest/docs/_sass/main.scss
- third_party/googletest/docs/assets/css/style.scss
- third_party/googletest/googlemock/cmake/gmock.pc.in
- third_party/googletest/googlemock/cmake/gmock_main.pc.in
- third_party/googletest/googlemock/include/gmock/gmock-actions.h
- third_party/googletest/googlemock/include/gmock/gmock-cardinalities.h
- third_party/googletest/googlemock/include/gmock/gmock-function-mocker.h
- third_party/googletest/googlemock/include/gmock/gmock-matchers.h
- third_party/googletest/googlemock/include/gmock/gmock-more-actions.h
- third_party/googletest/googlemock/include/gmock/gmock-more-matchers.h
- third_party/googletest/googlemock/include/gmock/gmock-nice-strict.h
- third_party/googletest/googlemock/include/gmock/gmock-spec-builders.h
- third_party/googletest/googlemock/include/gmock/gmock.h
- third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h
- third_party/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h
- third_party/googletest/googlemock/include/gmock/internal/custom/gmock-port.h
- third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h
- third_party/googletest/googlemock/include/gmock/internal/gmock-port.h
- third_party/googletest/googlemock/include/gmock/internal/gmock-pp.h
- third_party/googletest/googlemock/src/gmock-all.cc
- third_party/googletest/googlemock/src/gmock-cardinalities.cc
- third_party/googletest/googlemock/src/gmock-internal-utils.cc
- third_party/googletest/googlemock/src/gmock-matchers.cc
- third_party/googletest/googlemock/src/gmock-spec-builders.cc
- third_party/googletest/googlemock/src/gmock.cc
- third_party/googletest/googlemock/src/gmock_main.cc
- third_party/googletest/googlemock/test/BUILD.bazel
- third_party/googletest/googlemock/test/gmock-actions_test.cc
- third_party/googletest/googlemock/test/gmock-cardinalities_test.cc
- third_party/googletest/googlemock/test/gmock-function-mocker_test.cc
- third_party/googletest/googlemock/test/gmock-internal-utils_test.cc
- third_party/googletest/googlemock/test/gmock-matchers-arithmetic_test.cc
- third_party/googletest/googlemock/test/gmock-matchers-comparisons_test.cc
- third_party/googletest/googlemock/test/gmock-matchers-containers_test.cc
- third_party/googletest/googlemock/test/gmock-matchers-misc_test.cc
- third_party/googletest/googlemock/test/gmock-matchers_test.h
- third_party/googletest/googlemock/test/gmock-more-actions_test.cc
- third_party/googletest/googlemock/test/gmock-nice-strict_test.cc
- third_party/googletest/googlemock/test/gmock-port_test.cc
- third_party/googletest/googlemock/test/gmock-pp-string_test.cc
- third_party/googletest/googlemock/test/gmock-pp_test.cc
- third_party/googletest/googlemock/test/gmock-spec-builders_test.cc
- third_party/googletest/googlemock/test/gmock_all_test.cc
- third_party/googletest/googlemock/test/gmock_ex_test.cc
- third_party/googletest/googlemock/test/gmock_leak_test.py
- third_party/googletest/googlemock/test/gmock_leak_test_.cc
- third_party/googletest/googlemock/test/gmock_link2_test.cc
- third_party/googletest/googlemock/test/gmock_link_test.cc
- third_party/googletest/googlemock/test/gmock_link_test.h
- third_party/googletest/googlemock/test/gmock_output_test.py
- third_party/googletest/googlemock/test/gmock_output_test_.cc
- third_party/googletest/googlemock/test/gmock_stress_test.cc
- third_party/googletest/googlemock/test/gmock_test.cc
- third_party/googletest/googlemock/test/gmock_test_utils.py
- third_party/googletest/googletest/cmake/Config.cmake.in
- third_party/googletest/googletest/cmake/gtest.pc.in
- third_party/googletest/googletest/cmake/gtest_main.pc.in
- third_party/googletest/googletest/cmake/internal_utils.cmake
- third_party/googletest/googletest/cmake/libgtest.la.in
- third_party/googletest/googletest/include/gtest/gtest-assertion-result.h
- third_party/googletest/googletest/include/gtest/gtest-death-test.h
- third_party/googletest/googletest/include/gtest/gtest-matchers.h
- third_party/googletest/googletest/include/gtest/gtest-message.h
- third_party/googletest/googletest/include/gtest/gtest-param-test.h
- third_party/googletest/googletest/include/gtest/gtest-printers.h
- third_party/googletest/googletest/include/gtest/gtest-spi.h
- third_party/googletest/googletest/include/gtest/gtest-test-part.h
- third_party/googletest/googletest/include/gtest/gtest-typed-test.h
- third_party/googletest/googletest/include/gtest/gtest.h
- third_party/googletest/googletest/include/gtest/gtest_pred_impl.h
- third_party/googletest/googletest/include/gtest/gtest_prod.h
- third_party/googletest/googletest/include/gtest/internal/custom/gtest-port.h
- third_party/googletest/googletest/include/gtest/internal/custom/gtest-printers.h
- third_party/googletest/googletest/include/gtest/internal/custom/gtest.h
- third_party/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h
- third_party/googletest/googletest/include/gtest/internal/gtest-filepath.h
- third_party/googletest/googletest/include/gtest/internal/gtest-internal.h
- third_party/googletest/googletest/include/gtest/internal/gtest-param-util.h
- third_party/googletest/googletest/include/gtest/internal/gtest-port-arch.h
- third_party/googletest/googletest/include/gtest/internal/gtest-port.h
- third_party/googletest/googletest/include/gtest/internal/gtest-string.h
- third_party/googletest/googletest/include/gtest/internal/gtest-type-util.h
- third_party/googletest/googletest/samples/prime_tables.h
- third_party/googletest/googletest/samples/sample1.cc
- third_party/googletest/googletest/samples/sample1.h
- third_party/googletest/googletest/samples/sample10_unittest.cc
- third_party/googletest/googletest/samples/sample1_unittest.cc
- third_party/googletest/googletest/samples/sample2.cc
- third_party/googletest/googletest/samples/sample2.h
- third_party/googletest/googletest/samples/sample2_unittest.cc
- third_party/googletest/googletest/samples/sample3-inl.h
- third_party/googletest/googletest/samples/sample3_unittest.cc
- third_party/googletest/googletest/samples/sample4.cc
- third_party/googletest/googletest/samples/sample4.h
- third_party/googletest/googletest/samples/sample4_unittest.cc
- third_party/googletest/googletest/samples/sample5_unittest.cc
- third_party/googletest/googletest/samples/sample6_unittest.cc
- third_party/googletest/googletest/samples/sample7_unittest.cc
- third_party/googletest/googletest/samples/sample8_unittest.cc
- third_party/googletest/googletest/samples/sample9_unittest.cc
- third_party/googletest/googletest/src/gtest-all.cc
- third_party/googletest/googletest/src/gtest-assertion-result.cc
- third_party/googletest/googletest/src/gtest-death-test.cc
- third_party/googletest/googletest/src/gtest-filepath.cc
- third_party/googletest/googletest/src/gtest-internal-inl.h
- third_party/googletest/googletest/src/gtest-matchers.cc
- third_party/googletest/googletest/src/gtest-port.cc
- third_party/googletest/googletest/src/gtest-printers.cc
- third_party/googletest/googletest/src/gtest-test-part.cc
- third_party/googletest/googletest/src/gtest-typed-test.cc
- third_party/googletest/googletest/src/gtest.cc
- third_party/googletest/googletest/src/gtest_main.cc
- third_party/googletest/googletest/test/BUILD.bazel
- third_party/googletest/googletest/test/googletest-break-on-failure-unittest.py
- third_party/googletest/googletest/test/googletest-break-on-failure-unittest_.cc
- third_party/googletest/googletest/test/googletest-catch-exceptions-test.py
- third_party/googletest/googletest/test/googletest-catch-exceptions-test_.cc
- third_party/googletest/googletest/test/googletest-color-test.py
- third_party/googletest/googletest/test/googletest-color-test_.cc
- third_party/googletest/googletest/test/googletest-death-test-test.cc
- third_party/googletest/googletest/test/googletest-death-test_ex_test.cc
- third_party/googletest/googletest/test/googletest-env-var-test.py
- third_party/googletest/googletest/test/googletest-env-var-test_.cc
- third_party/googletest/googletest/test/googletest-failfast-unittest.py
- third_party/googletest/googletest/test/googletest-failfast-unittest_.cc
- third_party/googletest/googletest/test/googletest-filepath-test.cc
- third_party/googletest/googletest/test/googletest-filter-unittest.py
- third_party/googletest/googletest/test/googletest-filter-unittest_.cc
- third_party/googletest/googletest/test/googletest-global-environment-unittest.py
- third_party/googletest/googletest/test/googletest-global-environment-unittest_.cc
- third_party/googletest/googletest/test/googletest-json-outfiles-test.py
- third_party/googletest/googletest/test/googletest-json-output-unittest.py
- third_party/googletest/googletest/test/googletest-list-tests-unittest.py
- third_party/googletest/googletest/test/googletest-list-tests-unittest_.cc
- third_party/googletest/googletest/test/googletest-listener-test.cc
- third_party/googletest/googletest/test/googletest-message-test.cc
- third_party/googletest/googletest/test/googletest-options-test.cc
- third_party/googletest/googletest/test/googletest-output-test.py
- third_party/googletest/googletest/test/googletest-output-test_.cc
- third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test.py
- third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc
- third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test.py
- third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc
- third_party/googletest/googletest/test/googletest-param-test-test.cc
- third_party/googletest/googletest/test/googletest-param-test-test.h
- third_party/googletest/googletest/test/googletest-param-test2-test.cc
- third_party/googletest/googletest/test/googletest-port-test.cc
- third_party/googletest/googletest/test/googletest-printers-test.cc
- third_party/googletest/googletest/test/googletest-setuptestsuite-test.py
- third_party/googletest/googletest/test/googletest-setuptestsuite-test_.cc
- third_party/googletest/googletest/test/googletest-shuffle-test.py
- third_party/googletest/googletest/test/googletest-shuffle-test_.cc
- third_party/googletest/googletest/test/googletest-test-part-test.cc
- third_party/googletest/googletest/test/googletest-throw-on-failure-test.py
- third_party/googletest/googletest/test/googletest-throw-on-failure-test_.cc
- third_party/googletest/googletest/test/googletest-uninitialized-test.py
- third_party/googletest/googletest/test/googletest-uninitialized-test_.cc
- third_party/googletest/googletest/test/gtest-typed-test2_test.cc
- third_party/googletest/googletest/test/gtest-typed-test_test.cc
- third_party/googletest/googletest/test/gtest-typed-test_test.h
- third_party/googletest/googletest/test/gtest-unittest-api_test.cc
- third_party/googletest/googletest/test/gtest_all_test.cc
- third_party/googletest/googletest/test/gtest_assert_by_exception_test.cc
- third_party/googletest/googletest/test/gtest_dirs_test.cc
- third_party/googletest/googletest/test/gtest_environment_test.cc
- third_party/googletest/googletest/test/gtest_help_test.py
- third_party/googletest/googletest/test/gtest_help_test_.cc
- third_party/googletest/googletest/test/gtest_json_test_utils.py
- third_party/googletest/googletest/test/gtest_list_output_unittest.py
- third_party/googletest/googletest/test/gtest_list_output_unittest_.cc
- third_party/googletest/googletest/test/gtest_main_unittest.cc
- third_party/googletest/googletest/test/gtest_no_test_unittest.cc
- third_party/googletest/googletest/test/gtest_pred_impl_unittest.cc
- third_party/googletest/googletest/test/gtest_premature_exit_test.cc
- third_party/googletest/googletest/test/gtest_prod_test.cc
- third_party/googletest/googletest/test/gtest_repeat_test.cc
- third_party/googletest/googletest/test/gtest_skip_check_output_test.py
- third_party/googletest/googletest/test/gtest_skip_environment_check_output_test.py
- third_party/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc
- third_party/googletest/googletest/test/gtest_skip_test.cc
- third_party/googletest/googletest/test/gtest_sole_header_test.cc
- third_party/googletest/googletest/test/gtest_stress_test.cc
- third_party/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc
- third_party/googletest/googletest/test/gtest_test_utils.py
- third_party/googletest/googletest/test/gtest_testbridge_test.py
- third_party/googletest/googletest/test/gtest_testbridge_test_.cc
- third_party/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc
- third_party/googletest/googletest/test/gtest_unittest.cc
- third_party/googletest/googletest/test/gtest_xml_outfile1_test_.cc
- third_party/googletest/googletest/test/gtest_xml_outfile2_test_.cc
- third_party/googletest/googletest/test/gtest_xml_outfiles_test.py
- third_party/googletest/googletest/test/gtest_xml_output_unittest.py
- third_party/googletest/googletest/test/gtest_xml_output_unittest_.cc
- third_party/googletest/googletest/test/gtest_xml_test_utils.py
- third_party/googletest/googletest/test/production.cc
- third_party/googletest/googletest/test/production.h
- third_party/substrait/.editorconfig
- third_party/substrait/.gitattributes
- third_party/substrait/.github/actions/dev-tool-python/action.yml
- third_party/substrait/.github/dependabot.yml
- third_party/substrait/.github/workflows/licence_check.yml
- third_party/substrait/.github/workflows/pr.yml
- third_party/substrait/.github/workflows/pr_breaking.yml
- third_party/substrait/.github/workflows/pr_title.yml
- third_party/substrait/.github/workflows/release.yml
- third_party/substrait/.github/workflows/site.yml
- third_party/substrait/.gitignore
- third_party/substrait/.licenserc.yaml
- third_party/substrait/.pre-commit-config.yaml
- third_party/substrait/.releaserc.json
- third_party/substrait/.yamllint.yaml
- third_party/substrait/buf.gen.yaml
- third_party/substrait/buf.work.yaml
- third_party/substrait/ci/release/dry_run.sh
- third_party/substrait/ci/release/prepare.sh
- third_party/substrait/ci/release/publish.sh
- third_party/substrait/ci/release/run.sh
- third_party/substrait/ci/release/verify.sh
- third_party/substrait/extensions/extension_types.yaml
- third_party/substrait/extensions/functions_aggregate_approx.yaml
- third_party/substrait/extensions/functions_aggregate_generic.yaml
- third_party/substrait/extensions/functions_arithmetic.yaml
- third_party/substrait/extensions/functions_arithmetic_decimal.yaml
- third_party/substrait/extensions/functions_boolean.yaml
- third_party/substrait/extensions/functions_comparison.yaml
- third_party/substrait/extensions/functions_datetime.yaml
- third_party/substrait/extensions/functions_logarithmic.yaml
- third_party/substrait/extensions/functions_rounding.yaml
- third_party/substrait/extensions/functions_set.yaml
- third_party/substrait/extensions/functions_string.yaml
- third_party/substrait/extensions/type_variations.yaml
- third_party/substrait/extensions/unknown.yaml
- third_party/substrait/proto/buf.lock
- third_party/substrait/proto/buf.yaml
- third_party/substrait/proto/substrait/algebra.proto
- third_party/substrait/proto/substrait/capabilities.proto
- third_party/substrait/proto/substrait/extended_expression.proto
- third_party/substrait/proto/substrait/extensions/extensions.proto
- third_party/substrait/proto/substrait/function.proto
- third_party/substrait/proto/substrait/parameterized_types.proto
- third_party/substrait/proto/substrait/plan.proto
- third_party/substrait/proto/substrait/type.proto
- third_party/substrait/proto/substrait/type_expressions.proto
- third_party/substrait/site/.gitignore
- third_party/substrait/site/data/committers.yaml
- third_party/substrait/site/data/smc.yaml
- third_party/substrait/site/docs/_config
- third_party/substrait/site/docs/expressions/_config
- third_party/substrait/site/docs/extensions/.gitignore
- third_party/substrait/site/docs/extensions/generate_function_docs.py
- third_party/substrait/site/docs/img/logo.svg
- third_party/substrait/site/docs/relations/_config
- third_party/substrait/site/docs/serialization/_config
- third_party/substrait/site/docs/spec/_config
- third_party/substrait/site/docs/stylesheets/extra.css
- third_party/substrait/site/docs/tutorial/expression_trees.svg
- third_party/substrait/site/docs/tutorial/field_indices_layout.svg
- third_party/substrait/site/docs/tutorial/final_plan.json
- third_party/substrait/site/docs/tutorial/plan_tree_versus_expression.svg
- third_party/substrait/site/docs/tutorial/substrait_components.svg
- third_party/substrait/site/docs/types/_config
- third_party/substrait/site/mkdocs.yml
- third_party/substrait/site/overrides/partials/footer.html
- third_party/substrait/text/simple_extensions_schema.yaml
- third_party/yaml-cpp/.clang-format
- third_party/yaml-cpp/.codedocs
- third_party/yaml-cpp/.gitignore
- third_party/yaml-cpp/.travis.yml
- third_party/yaml-cpp/include/yaml-cpp/anchor.h
- third_party/yaml-cpp/include/yaml-cpp/binary.h
- third_party/yaml-cpp/include/yaml-cpp/contrib/anchordict.h
- third_party/yaml-cpp/include/yaml-cpp/contrib/graphbuilder.h
- third_party/yaml-cpp/include/yaml-cpp/dll.h
- third_party/yaml-cpp/include/yaml-cpp/emitfromevents.h
- third_party/yaml-cpp/include/yaml-cpp/emitter.h
- third_party/yaml-cpp/include/yaml-cpp/emitterdef.h
- third_party/yaml-cpp/include/yaml-cpp/emittermanip.h
- third_party/yaml-cpp/include/yaml-cpp/emitterstyle.h
- third_party/yaml-cpp/include/yaml-cpp/eventhandler.h
- third_party/yaml-cpp/include/yaml-cpp/exceptions.h
- third_party/yaml-cpp/include/yaml-cpp/mark.h
- third_party/yaml-cpp/include/yaml-cpp/node/convert.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/bool_type.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/impl.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/memory.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/node.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
- third_party/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
- third_party/yaml-cpp/include/yaml-cpp/node/emit.h
- third_party/yaml-cpp/include/yaml-cpp/node/impl.h
- third_party/yaml-cpp/include/yaml-cpp/node/iterator.h
- third_party/yaml-cpp/include/yaml-cpp/node/node.h
- third_party/yaml-cpp/include/yaml-cpp/node/parse.h
- third_party/yaml-cpp/include/yaml-cpp/node/ptr.h
- third_party/yaml-cpp/include/yaml-cpp/node/type.h
- third_party/yaml-cpp/include/yaml-cpp/noncopyable.h
- third_party/yaml-cpp/include/yaml-cpp/null.h
- third_party/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
- third_party/yaml-cpp/include/yaml-cpp/parser.h
- third_party/yaml-cpp/include/yaml-cpp/stlemitter.h
- third_party/yaml-cpp/include/yaml-cpp/traits.h
- third_party/yaml-cpp/include/yaml-cpp/yaml.h
- third_party/yaml-cpp/src/binary.cpp
- third_party/yaml-cpp/src/collectionstack.h
- third_party/yaml-cpp/src/contrib/graphbuilder.cpp
- third_party/yaml-cpp/src/contrib/graphbuilderadapter.cpp
- third_party/yaml-cpp/src/contrib/graphbuilderadapter.h
- third_party/yaml-cpp/src/convert.cpp
- third_party/yaml-cpp/src/directives.cpp
- third_party/yaml-cpp/src/directives.h
- third_party/yaml-cpp/src/emit.cpp
- third_party/yaml-cpp/src/emitfromevents.cpp
- third_party/yaml-cpp/src/emitter.cpp
- third_party/yaml-cpp/src/emitterstate.cpp
- third_party/yaml-cpp/src/emitterstate.h
- third_party/yaml-cpp/src/emitterutils.cpp
- third_party/yaml-cpp/src/emitterutils.h
- third_party/yaml-cpp/src/exceptions.cpp
- third_party/yaml-cpp/src/exp.cpp
- third_party/yaml-cpp/src/exp.h
- third_party/yaml-cpp/src/indentation.h
- third_party/yaml-cpp/src/memory.cpp
- third_party/yaml-cpp/src/node.cpp
- third_party/yaml-cpp/src/node_data.cpp
- third_party/yaml-cpp/src/nodebuilder.cpp
- third_party/yaml-cpp/src/nodebuilder.h
- third_party/yaml-cpp/src/nodeevents.cpp
- third_party/yaml-cpp/src/nodeevents.h
- third_party/yaml-cpp/src/null.cpp
- third_party/yaml-cpp/src/ostream_wrapper.cpp
- third_party/yaml-cpp/src/parse.cpp
- third_party/yaml-cpp/src/parser.cpp
- third_party/yaml-cpp/src/ptr_vector.h
- third_party/yaml-cpp/src/regex_yaml.cpp
- third_party/yaml-cpp/src/regex_yaml.h
- third_party/yaml-cpp/src/regeximpl.h
- third_party/yaml-cpp/src/scanner.cpp
- third_party/yaml-cpp/src/scanner.h
- third_party/yaml-cpp/src/scanscalar.cpp
- third_party/yaml-cpp/src/scanscalar.h
- third_party/yaml-cpp/src/scantag.cpp
- third_party/yaml-cpp/src/scantag.h
- third_party/yaml-cpp/src/scantoken.cpp
- third_party/yaml-cpp/src/setting.h
- third_party/yaml-cpp/src/simplekey.cpp
- third_party/yaml-cpp/src/singledocparser.cpp
- third_party/yaml-cpp/src/singledocparser.h
- third_party/yaml-cpp/src/stream.cpp
- third_party/yaml-cpp/src/stream.h
- third_party/yaml-cpp/src/streamcharsource.h
- third_party/yaml-cpp/src/stringsource.h
- third_party/yaml-cpp/src/tag.cpp
- third_party/yaml-cpp/src/tag.h
- third_party/yaml-cpp/src/token.h
- third_party/yaml-cpp/test/create-emitter-tests.py
- third_party/yaml-cpp/test/gtest-1.8.0/.gitignore
- third_party/yaml-cpp/test/gtest-1.8.0/.travis.yml
- third_party/yaml-cpp/test/gtest-1.8.0/appveyor.yml
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/CHANGES
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/CONTRIBUTORS
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/Makefile.am
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/build-aux/.keep
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/configure.ac
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-actions.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-cardinalities.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-actions.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-actions.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-function-mockers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-function-mockers.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-matchers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-matchers.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-nice-strict.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-generated-nice-strict.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-matchers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-more-actions.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-more-matchers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock-spec-builders.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/gmock.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/custom/gmock-generated-actions.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/custom/gmock-matchers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/custom/gmock-port.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/gmock-generated-internal-utils.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/gmock-generated-internal-utils.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/gmock-internal-utils.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/include/gmock/internal/gmock-port.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/make/Makefile
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock_config.vsprops
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock_main.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2005/gmock_test.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock_config.props
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock_main.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2010/gmock_test.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock_config.props
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock_main.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/msvc/2015/gmock_test.vcxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/fuse_gmock_files.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/README
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/README.cppclean
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/generator/cpp/init.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/gmock-config.in
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/gmock_doctor.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/scripts/upload_gmock.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-all.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-cardinalities.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-internal-utils.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-matchers.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock-spec-builders.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/src/gmock_main.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-actions_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-cardinalities_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-generated-actions_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-generated-function-mockers_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-generated-internal-utils_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-generated-matchers_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-internal-utils_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-matchers_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-more-actions_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-nice-strict_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-port_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock-spec-builders_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_all_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_ex_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_leak_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_leak_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_link2_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_link_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_link_test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_output_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_output_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_stress_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googlemock/test/gmock_test_utils.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/.gitignore
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/CHANGES
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/CONTRIBUTORS
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/Makefile.am
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/build-aux/.keep
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/cmake/internal_utils.cmake
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest.cbproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest.groupproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest_all.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest_link.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest_main.cbproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/codegear/gtest_unittest.cbproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/configure.ac
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-death-test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-message.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-param-test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-param-test.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-printers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-spi.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-test-part.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest-typed-test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest_pred_impl.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/gtest_prod.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/custom/gtest-port.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/custom/gtest-printers.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/custom/gtest.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-death-test-internal.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-filepath.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-internal.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-linked_ptr.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-param-util-generated.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-param-util-generated.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-param-util.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-port-arch.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-port.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-string.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-tuple.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-tuple.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-type-util.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/include/gtest/internal/gtest-type-util.h.pump
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/m4/acx_pthread.m4
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/m4/gtest.m4
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/make/Makefile
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest-md.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest-md.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest.sln
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_main-md.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_main.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_prod_test-md.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_prod_test.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_unittest-md.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/msvc/gtest_unittest.vcproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/prime_tables.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample1.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample1.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample10_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample1_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample2.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample2.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample2_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample3-inl.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample3_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample4.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample4.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample4_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample5_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample6_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample7_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample8_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/samples/sample9_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/common.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/fuse_gtest_files.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/gen_gtest_pred_impl.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/gtest-config.in
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/pump.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/release_docs.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/test/Makefile
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/scripts/upload_gtest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-all.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-death-test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-filepath.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-internal-inl.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-port.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-printers.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-test-part.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest-typed-test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/src/gtest_main.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-death-test_ex_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-death-test_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-filepath_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-linked_ptr_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-listener_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-message_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-options_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-param-test2_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-param-test_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-param-test_test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-port_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-printers_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-test-part_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-tuple_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-typed-test2_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-typed-test_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-typed-test_test.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest-unittest-api_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_all_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_break_on_failure_unittest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_break_on_failure_unittest_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_catch_exceptions_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_catch_exceptions_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_color_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_color_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_env_var_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_env_var_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_environment_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_filter_unittest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_filter_unittest_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_help_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_help_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_list_tests_unittest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_list_tests_unittest_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_main_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_no_test_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_output_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_output_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_pred_impl_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_premature_exit_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_prod_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_repeat_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_shuffle_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_shuffle_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_sole_header_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_stress_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_test_utils.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_throw_on_failure_ex_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_throw_on_failure_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_throw_on_failure_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_uninitialized_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_uninitialized_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_unittest.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_outfile1_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_outfile2_test_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_outfiles_test.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_output_unittest.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_output_unittest_.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/gtest_xml_test_utils.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/production.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/test/production.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/DebugProject.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/FrameworkTarget.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/General.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/ReleaseProject.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/StaticLibraryTarget.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Config/TestTarget.xcconfig
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Resources/Info.plist
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/Info.plist
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/runtests.sh
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/widget.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/widget.h
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Samples/FrameworkSample/widget_test.cc
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Scripts/runtests.sh
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/Scripts/versiongenerate.py
- third_party/yaml-cpp/test/gtest-1.8.0/googletest/xcode/gtest.xcodeproj/project.pbxproj
- third_party/yaml-cpp/test/gtest-1.8.0/travis.sh
- third_party/yaml-cpp/test/handler_test.h
- third_party/yaml-cpp/test/integration/emitter_test.cpp
- third_party/yaml-cpp/test/integration/encoding_test.cpp
- third_party/yaml-cpp/test/integration/gen_emitter_test.cpp
- third_party/yaml-cpp/test/integration/handler_spec_test.cpp
- third_party/yaml-cpp/test/integration/handler_test.cpp
- third_party/yaml-cpp/test/integration/load_node_test.cpp
- third_party/yaml-cpp/test/integration/node_spec_test.cpp
- third_party/yaml-cpp/test/main.cpp
- third_party/yaml-cpp/test/mock_event_handler.h
- third_party/yaml-cpp/test/node/node_test.cpp
- third_party/yaml-cpp/test/ostream_wrapper_test.cpp
- third_party/yaml-cpp/test/regex_test.cpp
- third_party/yaml-cpp/test/specexamples.h
- third_party/yaml-cpp/util/api.cpp
- third_party/yaml-cpp/util/parse.cpp
- third_party/yaml-cpp/util/read.cpp
- third_party/yaml-cpp/util/sandbox.cpp
- third_party/yaml-cpp/yaml-cpp-config-version.cmake.in
- third_party/yaml-cpp/yaml-cpp-config.cmake.in
- third_party/yaml-cpp/yaml-cpp.pc.cmake
c70082d
to
3415253
Compare
…rma and license header
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.