- Sort Score
- Num 10 results
- Language All
Results 181 - 190 of 277 for UNUSED (0.04 seconds)
-
android/guava-tests/test/com/google/common/base/PredicatesTest.java
private static final Predicate<@Nullable Integer> FALSE = Predicates.alwaysFalse(); private static final Predicate<@Nullable Integer> NEVER_REACHED = unused -> { throw new AssertionFailedError("This predicate should never have been evaluated"); }; /** Instantiable predicate with reasonable hashCode() and equals() methods. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 32.2K bytes - Click Count (0) -
gradlew
do ls=$( ls -ld "$app_path" ) link=${ls#*' -> '} case $link in #( /*) app_path=$link ;; #( *) app_path=$APP_HOME$link ;; esac done # This is normally unused # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Mar 20 08:59:10 GMT 2026 - 8.5K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/HostnameVerifierTest.kt
/** * Ignored due to incompatibilities between Android and Java on how non-ASCII subject alt names * are parsed. Android fails to parse these, which means we fall back to the CN. The RI does parse * them, so the CN is unused. */ @Test fun verifyNonAsciiSubjectAlt() { // Expecting actual: // ["bar.com", "è±å.co.jp"] // to contain exactly (and in same order): // ["bar.com", "������.co.jp"]
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 40.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/HashTestUtils.java
Random rng = new Random(0L); byte[] bytes = new byte[rng.nextInt(256) + 1]; rng.nextBytes(bytes); ByteBuffer buffer = ByteBuffer.wrap(bytes); HashCode unused = hashFunction.hashBytes(buffer); assertFalse(buffer.hasRemaining()); } static void assertHashByteBufferPreservesByteOrder(HashFunction hashFunction) { Random rng = new Random(0L);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Oct 28 18:19:59 GMT 2025 - 25.6K bytes - Click Count (0) -
scripts/docs.py
) if counterpart_dir in all_docs_content: counterpart_found = True if counterpart_found: continue logging.info(f"Removing unused file: {py_file}") py_file.unlink() removed += 1 # Clean up directories that are empty or only contain __init__.py / __pycache__ for dir_path in sorted(docs_src_path.rglob("*"), reverse=True):Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/collect/ConcurrentHashMultisetBenchmark.java
} }, ; abstract Multiset<Integer> get(); } /** * Duplication of the old version of ConcurrentHashMultiset (with some unused stuff removed, like * serialization code) which used a map with boxed integers for the values. */ private static final class OldConcurrentHashMultiset<E> extends AbstractMultiset<E> {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 16.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtlmContext.java
this.ntlmsspFlags, this.auth.isGuest() || !this.auth.isAnonymous()); } /** * Creates a Type 1 (negotiation) message to initiate NTLM authentication. * @param token unused in this implementation * @return the Type 1 message bytes */ protected byte[] makeNegotiate(final byte[] token) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 17.3K bytes - Click Count (1) -
guava/src/com/google/common/collect/ImmutableSet.java
impl = new RegularSetBuilderImpl<>(capacity); } else { impl = EmptySetBuilderImpl.instance(); } } Builder(@SuppressWarnings("unused") boolean subclass) { this.impl = null; // unused } @VisibleForTesting void forceJdk() { requireNonNull(impl); // see the comment on the field this.impl = new JdkBackedSetBuilderImpl<>(impl); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Nov 07 16:09:47 GMT 2025 - 35.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ObjectCountHashMap.java
int firstIndex() { return (size == 0) ? -1 : 0; } int nextIndex(int index) { return (index + 1 < size) ? index + 1 : -1; } int nextIndexAfterRemove(int oldNextIndex, @SuppressWarnings("unused") int removedIndex) { return oldNextIndex - 1; } int size() { return size; } @SuppressWarnings("unchecked") @ParametricNullness K getKey(int index) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 14.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/ImmutableRangeSetTest.java
overlaps = true; anyOverlaps = true; break; } } try { ImmutableRangeSet<Integer> unused = builder.add(range).build(); assertFalse(overlaps); mutable.add(range); } catch (IllegalArgumentException e) { assertTrue(overlaps); continue subsets; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Jan 25 16:19:30 GMT 2025 - 21.7K bytes - Click Count (0)