- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 452 for compilation (0.05 sec)
-
guava-tests/test/com/google/common/base/OptionalTest.java
* mentioned in the method Javadoc does in fact compile. */ @SuppressWarnings("unused") // compilation test public void testSampleCodeError1() { Optional<Integer> optionalInt = getSomeOptionalInt(); // Number value = optionalInt.or(0.5); // error } @SuppressWarnings("unused") // compilation test public void testSampleCodeError2() { FluentIterable<? extends Number> numbers = getSomeNumbers();
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-22 03:38 - 10.5K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
val spockVersion = if (isGroovy4) "2.3-groovy-4.0" else "2.3-groovy-3.0" val groovyGroup = if (isGroovy4) "org.apache.groovy" else "org.codehaus.groovy" val asmVersion = "9.7.1" // To try out better kotlin compilation avoidance and incremental compilation // with -Pkotlin.incremental.useClasspathSnapshot=true val kotlinVersion = providers.gradleProperty("buildKotlinVersion") .getOrElse(embeddedKotlinVersion) dependencies { constraints {
Registered: 2025-05-28 11:36 - Last Modified: 2025-05-27 14:51 - 4.7K bytes - Viewed (0) -
buildscripts/cross-compile.sh
#!/bin/bash set -e # Enable tracing if set. [ -n "$BASH_XTRACEFD" ] && set -x function _init() { ## All binaries are static make sure to disable CGO. export CGO_ENABLED=0 ## List of architectures and OS to test coss compilation. SUPPORTED_OSARCH="linux/ppc64le linux/mips64 linux/amd64 linux/arm64 linux/s390x darwin/arm64 darwin/amd64 freebsd/amd64 windows/amd64 linux/arm linux/386 netbsd/amd64 linux/mips openbsd/amd64" } function _build() {
Registered: 2025-05-25 19:28 - Last Modified: 2023-12-19 01:08 - 958 bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/aarch64.bazelrc
build:sigbuild_remote_cache --remote_cache="https://storage.googleapis.com/tensorflow-devinfra-bazel-cache/manylinux2014" --remote_upload_local_results=false # Change the value of CACHEBUSTER when upgrading the toolchain, or when testing # different compilation methods. E.g. for a PR to test a new CUDA version, set # the CACHEBUSTER to the PR number. build --action_env=CACHEBUSTER=20220325 # Use Python 3.X as installed in container image
Registered: 2025-05-27 12:39 - Last Modified: 2024-07-12 20:16 - 5.7K bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc
build:sigbuild_remote_cache --remote_cache="https://storage.googleapis.com/tensorflow-devinfra-bazel-cache/manylinux2014" --remote_upload_local_results=false # Change the value of CACHEBUSTER when upgrading the toolchain, or when testing # different compilation methods. E.g. for a PR to test a new CUDA version, set # the CACHEBUSTER to the PR number. build --action_env=CACHEBUSTER=20220325 # Use Python 3.X as installed in container image
Registered: 2025-05-27 12:39 - Last Modified: 2024-07-12 20:16 - 6.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/CacheRetention.java
* * @since 4.0.0 */ @Experimental public enum CacheRetention { /** * Data should be persisted across Maven invocations. * Suitable for: * - Dependency resolution results * - Compilation outputs * - Downloaded artifacts */ PERSISTENT, /** * Data should be retained for the duration of the current Maven session. * Suitable for: * - Build-wide configuration
Registered: 2025-05-24 08:56 - Last Modified: 2025-02-07 00:45 - 1.9K bytes - Viewed (0) -
.github/CONTRIBUTING.md
When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible. Please also make sure your code compiles by running `./gradlew check`. Checkstyle failures during compilation indicate errors in your style and can be viewed in the `checkstyle-result.xml` file. Some general advice
Registered: 2025-05-30 11:42 - Last Modified: 2019-03-17 04:16 - 1.4K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/AbstractBuildScanInfoCollectingService.kt
/** * A BuildService which monitors a few tasks (in both build-logic and main build) and collects information for build scan. * It's currently implemented by two use cases: * 1. Collect cache misses for compilation tasks and publish a `CACHE_MISS` tag for build scan. * 2. Collect failed task paths and display a link which points to the corresponding task in the build scan, like `https://ge.gradle.org/s/xxx/console-log?task=yyy`. */
Registered: 2025-05-28 11:36 - Last Modified: 2022-08-11 07:01 - 2.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java
* * @since 4.0.0 */ @Experimental public enum JavaPathType implements PathType { /** * The path identified by the Java {@code --class-path} option. * Used for compilation, execution and Javadoc among others. * The Java tools location is {@link StandardLocation#CLASS_PATH}. * * <h4>Context-sensitive interpretation</h4>
Registered: 2025-05-24 08:56 - Last Modified: 2025-04-05 11:52 - 15K bytes - Viewed (1) -
android/guava/src/com/google/common/collect/EmptyImmutableListMultimap.java
} /* * TODO(b/242884182): Figure out why this helps produce the same class file when we compile most * of common.collect a second time with the results of the first compilation on the classpath. Or * just back this out once we stop doing that (which we'll do after our internal GWT setup * changes). */ @Override public ImmutableMap<Object, Collection<Object>> asMap() {
Registered: 2025-05-30 12:43 - Last Modified: 2025-02-13 17:34 - 1.8K bytes - Viewed (0)