- Sort Score
- Num 10 results
- Language All
Results 1291 - 1300 of 3,422 for _extends (0.16 seconds)
-
android/guava/src/com/google/common/collect/ForwardingQueue.java
* methods that they depend on are thread-safe. * * @author Mike Bostock * @author Louis Wasserman * @since 2.0 */ @GwtCompatible public abstract class ForwardingQueue<E extends @Nullable Object> extends ForwardingCollection<E> implements Queue<E> { /** Constructor for use by subclasses. */ protected ForwardingQueue() {} @Override protected abstract Queue<E> delegate();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 3.9K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/testers/ListListIteratorTester.java
// @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") @NullMarked public class ListListIteratorTester<E extends @Nullable Object> extends AbstractListTester<E> { @CollectionFeature.Require(absent = SUPPORTS_REMOVE) @ListFeature.Require(absent = {SUPPORTS_SET, SUPPORTS_ADD_WITH_INDEX}) public void testListIterator_unmodifiable() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/SearchBody.java
package org.codelibs.fess.app.web.api.admin.relatedcontent; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for related content administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Search term for related content */ public String term;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/HashBasedTableColumnMapTest.java
import com.google.common.collect.TableCollectionTest.ColumnMapTests; import org.jspecify.annotations.NullMarked; @GwtCompatible @NullMarked public class HashBasedTableColumnMapTest extends ColumnMapTests { public HashBasedTableColumnMapTest() { super(false, true, true, false); } @Override Table<Integer, String, Character> makeTable() { return HashBasedTable.create(); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 1.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/HashBasedTableRowMapTest.java
import com.google.common.annotations.GwtCompatible; import com.google.common.collect.TableCollectionTest.RowMapTests; import org.jspecify.annotations.NullMarked; @GwtCompatible @NullMarked public class HashBasedTableRowMapTest extends RowMapTests { public HashBasedTableRowMapTest() { super(false, true, true, true); } @Override Table<String, Integer, Character> makeTable() { return HashBasedTable.create(); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/TreeBasedTableRowTest.java
import com.google.common.annotations.GwtCompatible; import com.google.common.collect.TableCollectionTest.RowTests; import org.jspecify.annotations.NullMarked; @GwtCompatible @NullMarked public class TreeBasedTableRowTest extends RowTests { public TreeBasedTableRowTest() { super(false, true, true, true, true); } @Override Table<Character, String, Integer> makeTable() { return TreeBasedTable.create(); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 1K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/SingletonImmutableMapMapInterfaceTest.java
import com.google.common.annotations.GwtCompatible; import java.util.Map; import org.jspecify.annotations.NullUnmarked; @GwtCompatible @NullUnmarked public class SingletonImmutableMapMapInterfaceTest extends AbstractImmutableMapMapInterfaceTest<String, Integer> { @Override protected Map<String, Integer> makePopulatedMap() { return ImmutableMap.of("one", 1); } @OverrideCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 1.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/ForwardingBlockingDequeTest.java
/** * Test for {@link ForwardingBlockingDeque} * * @author Emily Soldal */ @NullUnmarked @GwtIncompatible @J2ktIncompatible public class ForwardingBlockingDequeTest extends TestCase { public void testForwarding() { ForwardingObjectTester.testForwardingObject(ForwardingBlockingDeque.class); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 02:20:33 GMT 2026 - 1.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/ForwardingListenableFutureTest.java
/** * Tests for {@link ForwardingListenableFuture}. * * @author Ben Yu */ @NullUnmarked @GwtIncompatible @J2ktIncompatible public class ForwardingListenableFutureTest extends TestCase { public void testForwarding() { ForwardingObjectTester.testForwardingObject(ForwardingListenableFuture.class); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 02:20:33 GMT 2026 - 1.1K bytes - Click Count (0) -
src/test/java/org/codelibs/core/misc/LocaleUtilTest.java
*/ package org.codelibs.core.misc; import java.util.Locale; import junit.framework.TestCase; /** * @author higa * */ public class LocaleUtilTest extends TestCase { /** * @throws Exception */ public void testGetLocale() throws Exception { assertEquals("1", LocaleUtil.getDefault(), LocaleUtil.getLocale(null));Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 1.1K bytes - Click Count (0)