commit | 564940d73ab135f2dd0573623b8934ed1cd7b9d1 | [log] [tgz] |
---|---|---|
author | Greg Estren <gregce@google.com> | Tue Feb 14 21:30:29 2017 +0000 |
committer | Dmitry Lomov <dslomov@google.com> | Wed Feb 15 10:04:56 2017 +0000 |
tree | b886fabd6a057ef9c3d2e75fd2af6cfc9faf0f98 | |
parent | f98361fe0f7af3d549838f940e4af32b73888755 [diff] |
Remove type checking requirement from AttributeMap.has. This overrides the traditional has(String name, Type<>T> type) with has(String name) and removes the type check outright from isConfigurable. Ideally we'd remove the old version in this same change. But there are enough uses of it that that's not a risk-free change and is safer as followup changes. -- PiperOrigin-RevId: 147513593 MOS_MIGRATED_REVID=147513593
{Fast, Correct} - Choose two
Bazel is a build tool that builds code quickly and reliably. It is used to build the majority of Google‘s software, and thus it has been designed to handle build problems present in Google’s development environment, including:
A massive, shared code repository, in which all software is built from source. Bazel has been built for speed, using both caching and parallelism to achieve this. Bazel is critical to Google's ability to continue to scale its software development practices as the company grows.
An emphasis on automated testing and releases. Bazel has been built for correctness and reproducibility, meaning that a build performed on a continuous build machine or in a release pipeline will generate bitwise-identical outputs to those generated on a developer's machine.
Language and platform diversity. Bazel's architecture is general enough to support many different programming languages within Google, and can be used to build both client and server software targeting multiple architectures from the same underlying codebase.
Find more background about Bazel in our FAQ.