- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for bazelisk (0.05 seconds)
-
ci/devinfra/docker/windows2022/Dockerfile
# 2022\Community\VC\Tools\MSVC\14.39.33519\bin\Hostx64\x64 # ENV BAZEL_VC_FULL_VERSION 14.39.33519 # Install Bazelisk. RUN md C:\tools\bazel RUN (New-Object Net.WebClient).DownloadFile( \ 'https://github.com/bazelbuild/bazelisk/releases/download/v1.22.1/bazelisk-windows-amd64.exe', \ 'C:\tools\bazel\bazel.exe'); \
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Mar 04 19:50:57 GMT 2026 - 10.4K bytes - Click Count (0) -
configure.py
def retrieve_bazel_version(): """Retrieve installed bazel version (or bazelisk). Returns: The bazel version detected. """ bazel_executable = shutil.which('bazel') if bazel_executable is None: bazel_executable = shutil.which('bazelisk') if bazel_executable is None: print('Cannot find bazel. Please install bazel/bazelisk.') sys.exit(1) stderr = open(os.devnull, 'wb')
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Fri Dec 19 16:32:04 GMT 2025 - 48.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MultimapsTest.java
List<Integer> bazList = filtered.get("baz"); assertThat(bazList).isEmpty(); assertThrows(IllegalArgumentException.class, () -> bazList.add(5)); assertThrows(IllegalArgumentException.class, () -> bazList.add(0, 6)); assertThrows(IllegalArgumentException.class, () -> bazList.addAll(ImmutableList.of(7, 8))); assertThrows(IllegalArgumentException.class, () -> bazList.addAll(0, ImmutableList.of(9, 10))); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 39.2K bytes - Click Count (0)