- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for AbstractTableReadTest (0.38 sec)
-
guava-tests/test/com/google/common/collect/AbstractTableReadTest.java
import org.jspecify.annotations.Nullable; /** * Test cases for {@link Table} read operations. * * @author Jared Levy */ @GwtCompatible @NullMarked public abstract class AbstractTableReadTest<C extends @Nullable Character> extends TestCase { protected Table<String, Integer, C> table; /** * Creates a table with the specified data. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/AbstractTableTest.java
* * @author Jared Levy * @author Louis Wasserman */ @GwtCompatible @NullMarked public abstract class AbstractTableTest<C extends @Nullable Character> extends AbstractTableReadTest<C> { protected void populate(Table<String, Integer, C> table, @Nullable Object... data) { checkArgument(data.length % 3 == 0); for (int i = 0; i < data.length; i += 3) { table.put(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/AbstractTableTest.java
* * @author Jared Levy * @author Louis Wasserman */ @GwtCompatible @NullMarked public abstract class AbstractTableTest<C extends @Nullable Character> extends AbstractTableReadTest<C> { protected void populate(Table<String, Integer, C> table, @Nullable Object... data) { checkArgument(data.length % 3 == 0); for (int i = 0; i < data.length; i += 3) { table.put(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5.8K bytes - Viewed (0)