- Sort Score
- Num 10 results
- Language All
Results 911 - 920 of 1,690 for xtrue (0.25 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/annotations/GwtCompatible.java
* Documentation about GWT serialization</a> */ boolean serializable() default false; /** * When {@code true}, the annotated type is emulated in GWT. The emulated source (also known as * super-source) is different from the implementation used by the JVM. * * @see <a href=
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 06 17:15:36 GMT 2025 - 2K bytes - Click Count (0) -
android/guava/src/com/google/common/base/FunctionalEquivalence.java
} @Override protected int doHash(F a) { return resultEquivalence.hash(function.apply(a)); } @Override public boolean equals(@Nullable Object obj) { if (obj == this) { return true; } if (obj instanceof FunctionalEquivalence) { FunctionalEquivalence<?, ?> that = (FunctionalEquivalence<?, ?>) obj; return function.equals(that.function) && resultEquivalence.equals(that.resultEquivalence);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 2.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/OsddHelperTest.java
public void test_init_force() throws IOException { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getOsddLinkEnabled() { return "true"; } @Override public String getSsoType() { return "saml"; } }); final OsddHelper osddHelper = new OsddHelper();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/cache/CacheBuilderSpecTest.java
assertCacheBuilderEquivalence(CacheBuilder.newBuilder().weakKeys(), CacheBuilder.from(spec)); } public void testParse_weakKeysCannotHaveValue() { assertThrows(IllegalArgumentException.class, () -> parse("weakKeys=true")); } public void testParse_repeatedKeyStrength() { assertThrows(IllegalArgumentException.class, () -> parse("weakKeys, weakKeys")); } public void testParse_softValues() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 30 22:03:28 GMT 2025 - 20.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionBean.java
return false; } @Override public boolean canPagingCountLater() { return false; } @Override public boolean canPagingReSelect() { return true; } @Override public void paging(int pageSize, int pageNumber) { if (pageSize <= 0) { throwPagingPageSizeNotPlusException(pageSize, pageNumber); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 17.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionBean.java
return false; } @Override public boolean canPagingCountLater() { return false; } @Override public boolean canPagingReSelect() { return true; } @Override public void paging(int pageSize, int pageNumber) { if (pageSize <= 0) { throwPagingPageSizeNotPlusException(pageSize, pageNumber); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 17.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java
* One thread sets alive to false, other threads should see the change immediately. */ @Test public void test_aliveField_volatileVisibility() throws Exception { // Ensure alive starts as true assertTrue(dataStore.alive); final int readerThreadCount = 5; final long testDurationMs = 200; // Run for 200ms final Thread[] readerThreads = new Thread[readerThreadCount];Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.8K bytes - Click Count (1) -
android/guava/src/com/google/common/collect/FilteredEntryMultimap.java
if (collection.size() == entry.getValue().size()) { entryIterator.remove(); } else { collection.clear(); } changed = true; } } return changed; } @WeakOuter private final class AsMap extends ViewCachingAbstractMap<K, Collection<V>> { @Override public boolean containsKey(@Nullable Object key) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 12.3K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java
@SuppressWarnings("CatchingUnchecked") // sneaky checked exception private void workOnQueue() { boolean interruptedDuringTask = false; boolean hasSetRunning = false; try { while (true) { synchronized (queue) { // Choose whether this thread will run or not after acquiring the lock on the first // iteration if (!hasSetRunning) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 10.6K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ReusePlan.kt
*/ package okhttp3.internal.connection /** Reuse a connection from the pool. */ internal class ReusePlan( val connection: RealConnection, ) : RoutePlanner.Plan { override val isReady = true override fun connectTcp() = error("already connected") override fun connectTlsEtc() = error("already connected") override fun handleSuccess() = connection
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 1K bytes - Click Count (0)