- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 1,698 for Build (0.03 sec)
-
ci/official/containers/ml_build/builder.packages.txt
# Packages to be installed for the new Docker image. # Packages needed to build devtoolset file flex g++ make patch rpm2cpio unar wget xz-utils cpio # Other build-related tools apt-transport-https autoconf automake build-essential ca-certificates llvm-18 clang-18 clang-tidy-18 lld-18 clang-format-12 curl git parallel sudo swig unzip zip openjdk-21-jdk
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Oct 11 22:54:10 UTC 2024 - 360 bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CacheControlJvmTest.kt
.noStore() .maxAge(1, TimeUnit.SECONDS) .maxStale(2, TimeUnit.SECONDS) .minFresh(3, TimeUnit.SECONDS) .onlyIfCached() .noTransform() .immutable() .build() assertThat(cacheControl.toString()).isEqualTo( "no-cache, no-store, max-age=1, max-stale=2, min-fresh=3, only-if-cached, " + "no-transform, immutable", ) assertThat(cacheControl.noCache).isTrue()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.3K bytes - Viewed (0) -
ci/official/README.md
******************************************************************************** ## TensorFlow's Official CI and Build/Test Scripts TensorFlow's official CI jobs run the scripts in this folder. Our internal CI system, Kokoro, schedules our CI jobs by combining a build script with a file from the `envs` directory that is filled with configuration options: - Nightly jobs (Run nightly on the `nightly` branch)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/cache/CacheInterceptor.kt
.receivedResponseAtMillis(System.currentTimeMillis()) .build().also { listener.satisfactionFailure(call, it) } } // If we don't need the network, we're done. if (networkRequest == null) { return cacheResponse!!.newBuilder() .cacheResponse(cacheResponse.stripBody()) .build().also { listener.cacheHit(call, it) } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Mar 22 07:09:21 UTC 2024 - 10.2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin.xml
</plugin> <plugin> <groupId>test</groupId> <artifactId>duplicate</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>test</id> <build> <pluginManagement> <plugins> <plugin> <groupId>profile</groupId> <artifactId>managed-duplicate</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableMultimapTest.java
builder.put("key", "value"); assertThat(builder.build().entries()).containsExactly(immutableEntry("key", "value")); } public void testBuilderWithExpectedKeysPositive() { ImmutableMultimap.Builder<String, String> builder = ImmutableMultimap.builderWithExpectedKeys(1); builder.put("key", "value"); assertThat(builder.build().entries()).containsExactly(immutableEntry("key", "value")); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 6.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
} @Nonnull static ArtifactResolverRequest build( @Nonnull Session session, @Nonnull Collection<? extends ArtifactCoordinates> coordinates) { return builder() .session(nonNull(session, "session cannot be null")) .coordinates(nonNull(coordinates, "coordinates cannot be null")) .build(); } @Nonnull static ArtifactResolverRequest build(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 4.6K bytes - Viewed (0) -
ci/official/containers/linux_arm64/builder.packages.txt
# See https://github.com/pyenv/pyenv/wiki#suggested-build-environment build-essential curl libbz2-dev libffi-dev liblzma-dev libncurses5-dev libreadline-dev libsqlite3-dev libssl-dev libxml2-dev libxmlsec1-dev llvm make openssl tk-dev wget xz-utils zlib1g-dev git # Packages needed to build devtoolset file flex g++ make patch rpm2cpio unar wget
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Sep 29 00:26:34 UTC 2023 - 430 bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java
protected Set<String> create(String[] elements) { ImmutableSet.Builder<String> builder = ImmutableSet.builder(); for (String e : elements) { builder.add(e); } return builder.build(); } } public static class ImmutableSetSizedBuilderGenerator extends TestStringSetGenerator { @Override protected Set<String> create(String[] elements) { ImmutableSet.Builder<String> builder =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 15.6K bytes - Viewed (0) -
okhttp-dnsoverhttps/README.md
val bootstrapClient = OkHttpClient.Builder().cache(appCache).build() val dns = DnsOverHttps.Builder().client(bootstrapClient) .url("https://dns.google/dns-query".toHttpUrl()) .bootstrapDnsHosts(InetAddress.getByName("8.8.4.4"), InetAddress.getByName("8.8.8.8")) .build() val client = bootstrapClient.newBuilder().dns(dns).build() ```
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 17 15:34:10 UTC 2023 - 740 bytes - Viewed (0)