- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 262 for recurse (0.05 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
if (!pathMatch(url, path)) return false return !secure || url.isHttps } override fun equals(other: Any?): Boolean = other is Cookie && other.name == name && other.value == value && other.expiresAt == expiresAt && other.domain == domain && other.path == path && other.secure == secure && other.httpOnly == httpOnly &&
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 23.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ReverseOrdering.java
import com.google.common.annotations.J2ktIncompatible; import java.io.Serializable; import java.util.Iterator; import org.jspecify.annotations.Nullable; /** An ordering that uses the reverse of a given order. */ @GwtCompatible final class ReverseOrdering<T extends @Nullable Object> extends Ordering<T> implements Serializable { final Ordering<? super T> forwardOrder;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 3.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/NullsFirstOrdering.java
} @Override @SuppressWarnings("nullness") // should be safe, but not sure if we can avoid the warning public <S extends @Nullable T> Ordering<S> reverse() { // ordering.reverse() might be optimized, so let it do its thing return ordering.<T>reverse().<@NonNull S>nullsLast(); } @SuppressWarnings("unchecked") // still need the right way to explain this @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 2.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt
Arrays.asList( "a=b; Path=/c; Domain=example.com; Max-Age=5; Secure; HttpOnly", "a= ; Path=/c; Domain=example.com; Max-Age=5; Secure; HttpOnly", "a=b; Domain=example.com; Max-Age=5; Secure; HttpOnly", "a=b; Path=/c; Max-Age=5; Secure; HttpOnly", "a=b; Path=/c; Domain=example.com; Secure; HttpOnly", "a=b; Path=/c; Domain=example.com; Max-Age=5; HttpOnly",
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 24.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
} } } final Object recursive = dataMap.remove(getParamValue(paramMap, "field.recursive", "recursive")); if (recursive == null || Constants.FALSE.equalsIgnoreCase(recursive.toString())) { return 1L; } if (Constants.TRUE.equalsIgnoreCase(recursive.toString())) { return -1L; } return 1L; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ReverseOrdering.java
import com.google.common.annotations.J2ktIncompatible; import java.io.Serializable; import java.util.Iterator; import org.jspecify.annotations.Nullable; /** An ordering that uses the reverse of a given order. */ @GwtCompatible final class ReverseOrdering<T extends @Nullable Object> extends Ordering<T> implements Serializable { final Ordering<? super T> forwardOrder;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 3.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/IntsTest.java
assertThat(Ints.stringConverter().reverse().convert(null)).isNull(); } public void testStringConverter_reverse() { Converter<String, Integer> converter = Ints.stringConverter(); assertThat(converter.reverse().convert(1)).isEqualTo("1"); assertThat(converter.reverse().convert(0)).isEqualTo("0"); assertThat(converter.reverse().convert(-1)).isEqualTo("-1");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.2K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Booleans.java
} /** * Reverses the elements of {@code array}. This is equivalent to {@code * Collections.reverse(Booleans.asList(array))}, but is likely to be more efficient. * * @since 23.1 */ public static void reverse(boolean[] array) { checkNotNull(array); reverse(array, 0, array.length); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
} /** * Reverses the elements of {@code array}. This is equivalent to {@code * Collections.reverse(Booleans.asList(array))}, but is likely to be more efficient. * * @since 23.1 */ public static void reverse(boolean[] array) { checkNotNull(array); reverse(array, 0, array.length); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java
parentBuilder) { List<TestSuite> derivedSuites = super.createDerivedSuites(parentBuilder); if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMAP)) { derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE)); derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.NO_BOUND));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5K bytes - Viewed (0)