- Sort Score
- Num 10 results
- Language All
Results 1761 - 1770 of 3,422 for _extends (0.06 seconds)
-
src/main/java/org/codelibs/core/exception/ClUnsupportedOperationException.java
*/ package org.codelibs.core.exception; /** * Exception that wraps {@link UnsupportedOperationException}. * * @author wyukawa */ public class ClUnsupportedOperationException extends UnsupportedOperationException { private static final long serialVersionUID = -6732367317955522602L; /** * Creates a {@link ClUnsupportedOperationException}. */Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
import org.codelibs.fess.util.ComponentUtil; /** * Helper class for crawler logging operations. * Extends LogHelperImpl to provide specialized logging functionality for crawler operations, * including failure URL tracking and crawler statistics integration. */ public class CrawlerLogHelper extends LogHelperImpl { /** * Creates a new instance of CrawlerLogHelper. */ public CrawlerLogHelper() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/DocMap.java
/** * Copies all of the mappings from the specified map to this map. * * @param m the mappings to be stored in this map */ @Override public void putAll(final Map<? extends String, ? extends Object> m) { parent.putAll(m); } /** * Removes all of the mappings from this map. */ @Override public void clear() { parent.clear(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; /** * Test class for GoAction. * Tests the isFileSystemPath method for various protocol types. */ public class GoActionTest extends UnitFessTestCase { private TestableGoAction goAction; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 8.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java
* * @author Justin T. Sampson */ @NullUnmarked @GwtIncompatible @J2ktIncompatible public abstract class MonitorTestCase extends TestCase { public class TestGuard extends Monitor.Guard { private volatile boolean satisfied; public TestGuard(boolean satisfied) { super(MonitorTestCase.this.monitor); this.satisfied = satisfied; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 02:20:33 GMT 2026 - 8.1K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/LongAdder.java
* high contention, expected throughput of this class is significantly higher, at the expense of * higher space consumption. * * <p>This class extends {@link Number}, but does not define methods such as {@code * equals}, {@code hashCode} and {@code compareTo} because instances are expected to be mutated, and * so are not useful as collection keys. *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 20 13:05:10 GMT 2025 - 5.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/SynchronizedDequeTest.java
import org.jspecify.annotations.Nullable; /** * Tests for {@link Synchronized#deque} and {@link Queues#synchronizedDeque}. * * @author Kurt Alfred Kluever */ @NullUnmarked public class SynchronizedDequeTest extends TestCase { protected Deque<String> create() { TestDeque<String> inner = new TestDeque<>(); Deque<String> outer = Synchronized.deque(inner, inner.mutex);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 17:42:14 GMT 2025 - 7.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
import org.codelibs.fess.util.ComponentUtil; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; import org.opensearch.script.Script; public class LanguageHelperTest extends UnitFessTestCase { private LanguageHelper languageHelper; @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 - 13K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java
import org.lastaflute.job.subsidiary.LaunchNowOpCall; import org.lastaflute.job.subsidiary.LaunchNowOption; import org.lastaflute.job.subsidiary.LaunchedProcess; public class ScheduledJobTest extends UnitFessTestCase { @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 15.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/ThrowablesTest.java
* @author Kevin Bourrillion */ @GwtCompatible @SuppressWarnings({ "deprecation", // tests of numerous deprecated methods "nullness", // TODO(cpovirk): fix errors }) @NullUnmarked public class ThrowablesTest extends TestCase { // We're testing that the method is in fact equivalent to throwing the exception directly. @SuppressWarnings("ThrowIfUncheckedKnownUnchecked") public void testThrowIfUnchecked_unchecked() { assertThrows(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 15K bytes - Click Count (0)