- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 48 for 160 (0.03 sec)
-
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivatorTest.java
assertActivation(true, profile, newContext(null, newProperties("1.6"))); assertActivation(true, profile, newContext(null, newProperties("1.6.0"))); assertActivation(true, profile, newContext(null, newProperties("1.6.0_09"))); assertActivation(true, profile, newContext(null, newProperties("1.6.0_09-b03"))); } @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9K bytes - Viewed (0) -
ci/official/requirements_updater/requirements.in
# For release jobs, we will pin these on the release branch keras-nightly ~= 3.0.0.dev tb-nightly ~= 2.19.0.a # Test dependencies grpcio >= 1.24.3, < 2.0 portpicker == 1.6.0 scipy >= 1.13.0 requests >= 2.31.0 packaging==23.2 setuptools==70.0.0 jax==0.4.7 # The dependencies below are needed for TF wheel testing. tensorflow-io-gcs-filesystem==0.37.1 libclang >= 13.0.0
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Oct 01 18:46:13 UTC 2024 - 905 bytes - Viewed (0) -
ci/official/requirements_updater/numpy1_requirements/requirements.in
# For release jobs, we will pin these on the release branch keras-nightly ~= 3.0.0.dev tb-nightly ~= 2.18.0.a # Test dependencies grpcio >= 1.24.3, < 2.0 portpicker == 1.6.0 scipy == 1.11.3 requests >= 2.31.0 packaging==23.2 setuptools==70.0.0 jax==0.4.7 # The dependencies below are needed for TF wheel testing. tensorflow-io-gcs-filesystem==0.37.1 libclang >= 13.0.0
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Oct 11 22:42:53 UTC 2024 - 874 bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashingOutputStream.java
import java.io.FilterOutputStream; import java.io.IOException; import java.io.OutputStream; /** * An {@link OutputStream} that maintains a hash of the data written to it. * * @author Zoe Piepmeier * @since 16.0 */ @Beta @ElementTypesAreNonnullByDefault public final class HashingOutputStream extends FilterOutputStream { private final Hasher hasher; /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 11 22:00:03 UTC 2024 - 2.6K bytes - Viewed (0) -
go.mod
github.com/howardjohn/unshare-go v0.5.0 github.com/lestrrat-go/jwx v1.2.30 github.com/mattn/go-isatty v0.0.20 github.com/miekg/dns v1.1.62 github.com/mitchellh/copystructure v1.2.0 github.com/moby/buildkit v0.16.0 github.com/onsi/gomega v1.35.0 github.com/openshift/api v0.0.0-20241024191314-684b2b1679ba github.com/pires/go-proxyproto v0.8.0 github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 06 06:23:25 UTC 2024 - 10.6K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
api("com.google.guava:guava:32.1.2-jre") api("com.google.errorprone:error_prone_annotations:2.5.1") api("com.google.code.gson:gson:2.8.9") api("com.nhaarman:mockito-kotlin:1.6.0") api("com.thoughtworks.qdox:qdox:2.0.3") api("com.uwyn:jhighlight:1.0") api("com.vladsch.flexmark:flexmark-all:0.34.60") {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0) -
guava/src/com/google/common/base/Utf8.java
* href="http://www.unicode.org/versions/corrigendum1.html">"non-shortest form"</a> byte sequences, * even though the JDK decoder may accept them. * * @author Martin Buchholz * @author Clément Roux * @since 16.0 */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public final class Utf8 { /** * Returns the number of bytes in the UTF-8-encoded form of {@code sequence}. For a string, this
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/s390x.s
// Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "../../../../../runtime/textflag.h" TEXT main·foo(SB),DUPOK|NOSPLIT,$16-0 // TEXT main.foo(SB), DUPOK|NOSPLIT, $16-0 MOVD R1, R2 // b9040021 MOVW R3, R4 // b9140043 MOVH R5, R6 // b9070065 MOVB R7, R8 // b9060087 MOVWZ R1, R2 // b9160021
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:49:24 UTC 2024 - 22.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/RateLimiter.java
* granted. Tells the amount of time slept, if any. * * <p>This method is equivalent to {@code acquire(1)}. * * @return time spent sleeping to enforce rate, in seconds; 0.0 if not rate-limited * @since 16.0 (present in 13.0 with {@code void} return type}) */ @CanIgnoreReturnValue public double acquire() { return acquire(1); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 21.9K bytes - Viewed (0) -
cmd/bucket-stats.go
if l.LastMin >= t { return } if t-l.LastMin >= 60 { l.Totals = [60]AccElem{} return } for l.LastMin != t { // Clear next element. idx := (l.LastMin + 1) % 60 l.Totals[idx] = AccElem{} l.LastMin++ } } // BucketStatsMap captures bucket statistics for all buckets type BucketStatsMap struct { Stats map[string]BucketStats Timestamp time.Time }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 11:39:51 UTC 2024 - 13.4K bytes - Viewed (0)