- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for coefficient (0.04 sec)
-
android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java
assertWithMessage("Pearson's correlation coefficient of %s", values) .that(pearsonsCorrelationCoefficient) .isNaN(); assertWithMessage("Pearson's correlation coefficient by addAll(PairedStats) of %s", values) .that(pearsonsCorrelationCoefficient) .isNaN(); } else { assertWithMessage("Pearson's correlation coefficient of %s", values)
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 23.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java
assertWithMessage("Pearson's correlation coefficient of %s", values) .that(pearsonsCorrelationCoefficient) .isNaN(); assertWithMessage("Pearson's correlation coefficient by addAll(PairedStats) of %s", values) .that(pearsonsCorrelationCoefficient) .isNaN(); } else { assertWithMessage("Pearson's correlation coefficient of %s", values)
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 23.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/PairedStatsTest.java
if (values.hasAnyNonFinite()) { assertWithMessage("Pearson's correlation coefficient of %s", values) .that(pearsonsCorrelationCoefficient) .isNaN(); } else { assertWithMessage("Pearson's correlation coefficient of %s", values) .that(pearsonsCorrelationCoefficient) .isWithin(ALLOWED_ERROR) .of(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 14K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/PairedStatsTest.java
if (values.hasAnyNonFinite()) { assertWithMessage("Pearson's correlation coefficient of %s", values) .that(pearsonsCorrelationCoefficient) .isNaN(); } else { assertWithMessage("Pearson's correlation coefficient of %s", values) .that(pearsonsCorrelationCoefficient) .isWithin(ALLOWED_ERROR) .of(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 14K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
1L * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11 * 12 * 13 * 14 * 15 * 16 * 17 * 18 * 19 * 20 }; /** * Returns {@code n} choose {@code k}, also known as the binomial coefficient of {@code n} and * {@code k}, or {@link Long#MAX_VALUE} if the result does not fit in a {@code long}. * * @throws IllegalArgumentException if {@code n < 0}, {@code k < 0}, or {@code k > n} */Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 03 21:01:09 UTC 2025 - 46.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/LinkedHashMultiset.java
return new LinkedHashMultiset<>(distinctElements); } /** * Creates a new {@code LinkedHashMultiset} containing the specified elements. * * <p>This implementation is highly efficient when {@code elements} is itself a {@link Multiset}. * * @param elements the elements that the multiset should contain */ public static <E extends @Nullable Object> LinkedHashMultiset<E> create(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Dec 05 23:15:58 UTC 2025 - 3.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Streams.java
* if and only if {@code stream} was efficiently splittable and its underlying spliterator * reported {@link Spliterator#SUBSIZED}. This is generally the case if the underlying stream * comes from a data structure supporting efficient indexed random access, typically an array or * list. * * <p>The order of the resulting stream is defined if and only if the order of the original stream * was defined. */Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 21 15:40:45 UTC 2025 - 36.8K bytes - Viewed (0) -
CLAUDE.md
### I/O Layer - **`org.codelibs.curl.io.ContentCache`**: Handles automatic in-memory or on-disk caching of request/response bodies - **`org.codelibs.curl.io.ContentOutputStream`**: Streaming utilities for efficient content handling ### Key Design Patterns 1. **Fluent Builder Pattern**: `CurlRequest` uses method chaining for configuration 2. **Factory Pattern**: `Curl` class provides static factory methods for each HTTP method
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 3.2K bytes - Viewed (0) -
README.md
HTTP is the way modern applications network. It’s how we exchange data & media. Doing HTTP efficiently makes your stuff load faster and saves bandwidth. OkHttp is an HTTP client that’s efficient by default: * HTTP/2 support allows all requests to the same host to share a socket. * Connection pooling reduces request latency (if HTTP/2 isn’t available). * Transparent GZIP shrinks download sizes.
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Oct 30 21:39:59 UTC 2025 - 9.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/Queues.java
*/ long deadline = System.nanoTime() + unit.toNanos(timeout); int added = 0; while (added < numElements) { // we could rely solely on #poll, but #drainTo might be more efficient when there are multiple // elements already available (e.g. LinkedBlockingQueue#drainTo locks only once) added += q.drainTo(buffer, numElements - added);Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Nov 04 17:24:58 UTC 2025 - 18K bytes - Viewed (0)