commit | 95ee651bf734c8dcbfc72dd41b15dc5f3dcdfa02 | [log] [tgz] |
---|---|---|
author | Klaus Aehlig <aehlig@google.com> | Wed Jul 06 09:28:35 2016 +0000 |
committer | Klaus Aehlig <aehlig@google.com> | Wed Jul 06 09:43:33 2016 +0000 |
tree | 8df33e2e2a9d127007806c4d9e6f8b2905d9c7e5 | |
parent | db2df69c475fabe4d3a09c6124d3f75f8cbf441a [diff] |
Experimental UI: make stopUpdateThread() more insisting The stopUpdateThread() method tries to stop the update thread by calling the interrupt() and join() methods on that thread. When getting interrupted while waiting for the thread to join, do not ignore the exception, instead try again to make sure we don't leave that method before the other thread is actually stopped. While there, also clean up the synchronized blocks for the thread handling: all blocks that handle multiple global variables like buildComplete, updateThread, etc, are synchronized while the actual thread-manipulating operations are outside those blocks. -- MOS_MIGRATED_REVID=126679343
{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.