- Sort Score
- Result 10 results
- Languages All
Results 1401 - 1410 of 1,618 for complements (0.08 sec)
-
android/guava/src/com/google/common/collect/CompactHashSet.java
* * @author Dimitris Andreou * @author Jon Noack */ @GwtIncompatible // not worth using in GWT for now @ElementTypesAreNonnullByDefault class CompactHashSet<E extends @Nullable Object> extends AbstractSet<E> implements Serializable { // TODO(user): cache all field accesses in local vars /** Creates an empty {@code CompactHashSet} instance. */ public static <E extends @Nullable Object> CompactHashSet<E> create() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 24K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/InvokableTest.java
} public void testLocalClassDefaultConstructor() { final int i = 1; final String s = "hello world"; class LocalWithDefaultConstructor implements Runnable { @Override public void run() { System.out.println(s + i); } } Constructor<?> constructor = LocalWithDefaultConstructor.class.getDeclaredConstructors()[0];
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 30.7K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 24.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/TableCollectionTest.java
for (int i = 0; i < elements.length; i++) { table.put(i, 'a', elements[i]); } } private abstract static class TestCellSetGenerator implements TestSetGenerator<Cell<String, Integer, Character>> { @Override public SampleElements<Cell<String, Integer, Character>> samples() { return new SampleElements<>( immutableCell("bar", 1, 'a'),
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 35.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/InvokableTest.java
} public void testLocalClassDefaultConstructor() { final int i = 1; final String s = "hello world"; class LocalWithDefaultConstructor implements Runnable { @Override public void run() { System.out.println(s + i); } } Constructor<?> constructor = LocalWithDefaultConstructor.class.getDeclaredConstructors()[0];
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 30.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
* otherwise-concurrent GC cycle. */ private static final class TaskNonReentrantExecutor extends AtomicReference<RunningState> implements Executor, Runnable { /** * Used to update and read the latestTaskQueue field. Set to null once the runnable has been run * or queued. */ @CheckForNull ExecutionSequencer sequencer;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 01 21:46:34 UTC 2024 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
import org.codelibs.core.lang.ClassUtil; import org.codelibs.core.lang.FieldUtil; import org.codelibs.core.lang.StringUtil; /** * {@link BeanDesc}の実装クラスです。 * * @author higa */ public class BeanDescImpl implements BeanDesc { /** 空のオブジェクト配列 */ protected static final Object[] EMPTY_ARGS = new Object[0]; /** 空のクラス配列 */ protected static final Class<?>[] EMPTY_PARAM_TYPES = new Class<?>[0];
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 26.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java
return ObjectArrays.concat(a, b, Integer.class); } @J2ktIncompatible @GwtIncompatible // used only from suite public abstract static class TestIntegerListGenerator implements TestListGenerator<Integer> { @Override public SampleElements<Integer> samples() { return new SampleIntegers(); } @Override public List<Integer> create(Object... elements) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 20.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
return ObjectArrays.concat(a, b, Double.class); } @J2ktIncompatible @GwtIncompatible // used only from suite public abstract static class TestDoubleListGenerator implements TestListGenerator<Double> { @Override public SampleElements<Double> samples() { return new SampleDoubles(); } @Override public List<Double> create(Object... elements) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 21.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/AbstractImmutableSetTest.java
Iterator<@Nullable String> c = Iterators.forArray("a", null, "b"); assertThrows(NullPointerException.class, () -> copyOf((Iterator<String>) c)); } private static class CountingIterable implements Iterable<String> { int count = 0; @Override public Iterator<String> iterator() { count++; return Iterators.forArray("a", "b", "a"); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 18.5K bytes - Viewed (0)