- Sort Score
- Num 10 results
- Language All
Results 1221 - 1230 of 2,727 for _extends (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java
import org.codelibs.core.beans.Converter; /** * Exception thrown when an error occurs in a {@link Converter}. * * @author higa */ public class ConverterRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * The name of the property. */ private final String propertyName; /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java
import java.lang.reflect.Field; /** * Exception thrown when accessing a non-{@literal static} {@link Field} without specifying an object. * * @author koichik */ public class FieldNotStaticRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -7791347225750660981L; /** * The target class. */ private final Class<?> targetClass; /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java
import java.lang.reflect.Method; /** * Exception thrown when accessing a non-{@literal static} {@link Method} without specifying an object. * * @author koichik */ public class MethodNotStaticRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 7186052234464152208L; /** * The target class. */ private final Class<?> targetClass; /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/NoSuchFieldRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; /** * Exception that wraps {@link NoSuchFieldException}. * * @author higa */ public class NoSuchFieldRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 6609175673610180338L; /** * The target class. */ private final Class<?> targetClass; /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
import java.util.HashMap; import java.util.Map; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; public class DataStoreParamsTest extends UnitFessTestCase { private DataStoreParams dataStoreParams; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.9K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionIteratorTester.java
// @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") @NullMarked public class CollectionIteratorTester<E extends @Nullable Object> extends AbstractCollectionTester<E> { public void testIterator() { List<E> iteratorElements = new ArrayList<>(); for (E element : collection) { // uses iterator() iteratorElements.add(element); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 6.1K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java
(o1, o2) -> ((Comparable<Object>) o1).compareTo(o2); private final NavigableSet<E> delegate; public SafeTreeSet() { this(new TreeSet<E>()); } public SafeTreeSet(Collection<? extends E> collection) { this(new TreeSet<E>(collection)); } public SafeTreeSet(Comparator<? super E> comparator) { this(new TreeSet<E>(comparator)); } public SafeTreeSet(SortedSet<E> set) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 5.7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/EvictingQueue.java
* * <p>This class is not thread-safe, and does not accept null elements. * * @author Kurt Alfred Kluever * @since 15.0 */ @GwtCompatible public final class EvictingQueue<E> extends ForwardingQueue<E> implements Serializable { private final Queue<E> delegate; @VisibleForTesting final int maxSize; private EvictingQueue(int maxSize) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 4.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/SubtypeTester.java
* assert as subtypes are really subtypes according to javac. For example: * * {@snippet : * class MySubtypeTests extends SubtypeTester { * @TestSubtype(suppressGetSubtype = true, suppressGetSupertype = true) * public <T> Iterable<? extends T> listIsSubtypeOfIterable(List<T> list) { * return isSubtype(list); * } * * @TestSubtypeCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 16:11:48 GMT 2026 - 6.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/FailureUrlPagerTest.java
*/ package org.codelibs.fess.app.pager; import java.util.ArrayList; import java.util.List; import org.codelibs.fess.unit.UnitFessTestCase; public class FailureUrlPagerTest extends UnitFessTestCase { public void test_FailureUrlPager() { FailureUrlPager failureUrlPager = new FailureUrlPager(); failureUrlPager.clear(); assertEquals(0, failureUrlPager.getAllRecordCount());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 3.6K bytes - Click Count (0)