Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1281 - 1290 of 3,339 for _extends (0.34 seconds)

  1. 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)
  2. src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java

    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    
    import jakarta.servlet.ServletRequest;
    import jakarta.servlet.ServletResponse;
    
    public class CorsHandlerFactoryTest extends UnitFessTestCase {
    
        private CorsHandlerFactory corsHandlerFactory;
    
        @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
    - 9.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

    import static org.junit.jupiter.api.Assertions.assertNotSame;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class UnsupportedSearchExceptionTest extends UnitFessTestCase {
    
        @Test
        public void test_constructor_withMessage() {
            // Test with normal message
            String message = "Search operation not supported";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/collect/CompactLinkedHashMapTest.java

    import junit.framework.TestSuite;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@code CompactLinkedHashMap}.
     *
     * @author Louis Wasserman
     */
    @NullUnmarked
    public class CompactLinkedHashMapTest extends TestCase {
      @AndroidIncompatible // test-suite builders
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTest(
            MapTestSuiteBuilder.using(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Oct 28 18:44:53 GMT 2025
    - 6.7K bytes
    - Click Count (0)
  5. android/guava-testlib/test/com/google/common/testing/EquivalenceTesterTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@link EquivalenceTester}.
     *
     * @author Gregory Kick
     */
    @GwtCompatible
    @NullUnmarked
    public class EquivalenceTesterTest extends TestCase {
      private EquivalenceTester<Object> tester;
      private MockEquivalence equivalenceMock;
    
      @Override
      public void setUp() throws Exception {
        super.setUp();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 27 16:19:35 GMT 2024
    - 8.4K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/cache/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 Aug 07 16:05:33 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  7. guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       */
      public static ListeningScheduledExecutorService sameThreadScheduledExecutor() {
        return new SameThreadScheduledExecutorService();
      }
    
      private static final class NoOpScheduledExecutorService extends AbstractListeningExecutorService
          implements ListeningScheduledExecutorService {
    
        private volatile boolean shutdown;
    
        @Override
        public void shutdown() {
          shutdown = true;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  8. guava-testlib/test/com/google/common/testing/EquivalenceTesterTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@link EquivalenceTester}.
     *
     * @author Gregory Kick
     */
    @GwtCompatible
    @NullUnmarked
    public class EquivalenceTesterTest extends TestCase {
      private EquivalenceTester<Object> tester;
      private MockEquivalence equivalenceMock;
    
      @Override
      public void setUp() throws Exception {
        super.setUp();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 27 16:19:35 GMT 2024
    - 8.4K bytes
    - Click Count (0)
  9. guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Test cases for {@link SettableFuture}.
     *
     * @author Sven Mawson
     */
    @NullUnmarked
    @GwtIncompatible
    @J2ktIncompatible
    public class SettableFutureTest extends TestCase {
    
      private SettableFuture<String> future;
      private ListenableFutureTester tester;
    
      @Override
      protected void setUp() throws Exception {
        super.setUp();
    
        future = SettableFuture.create();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/util/QueryResponseList.java

            parent.add(index, element);
        }
    
        @Override
        public boolean addAll(final Collection<? extends Map<String, Object>> c) {
            return parent.addAll(c);
        }
    
        @Override
        public boolean addAll(final int index, final Collection<? extends Map<String, Object>> c) {
            return parent.addAll(index, c);
        }
    
        @Override
        public void clear() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.5K bytes
    - Click Count (0)
Back to Top