Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1271 - 1280 of 4,465 for republic (0.38 seconds)

  1. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

         */
        public CharMappingFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        /**
         * Returns the type identifier for this dictionary file.
         *
         * @return the string "mapping" identifying this as a character mapping file
         */
        @Override
        public String getType() {
            return MAPPING;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/RelevanceEvaluationResult.java

         *
         * @return the relevant document IDs
         */
        public List<String> getRelevantDocIds() {
            return relevantDocIds;
        }
    
        /**
         * Returns the list of relevant indexes (1-based) from search results.
         *
         * @return the relevant indexes
         */
        public List<Integer> getRelevantIndexes() {
            return relevantIndexes;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/collect/MultisetsImmutableEntryTest.java

      }
    
      public void testToString() {
        assertThat(entry("foo", 1).toString()).isEqualTo("foo");
        assertThat(entry("bar", 2).toString()).isEqualTo("bar x 2");
      }
    
      public void testToStringNull() {
        assertThat(entry(NE, 1).toString()).isEqualTo("null");
        assertThat(entry(NE, 2).toString()).isEqualTo("null x 2");
      }
    
      public void testEquals() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/collect/SubMapMultimapAsMapImplementsMapTest.java

    /**
     * Test {@code TreeMultimap.asMap().subMap()} with {@link MapInterfaceTest}.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @NullMarked
    public class SubMapMultimapAsMapImplementsMapTest extends AbstractMultimapAsMapImplementsMapTest {
    
      public SubMapMultimapAsMapImplementsMapTest() {
        super(true, true, true);
      }
    
      private TreeMultimap<String, Integer> createMultimap() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 3.5K bytes
    - Click Count (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FakeTimeLimiterTest.java

    @NullUnmarked
    @GwtIncompatible
    @J2ktIncompatible
    public class FakeTimeLimiterTest extends TestCase {
    
      private static final int DELAY_MS = 50;
      private static final String RETURN_VALUE = "abc";
    
      private TimeLimiter timeLimiter;
    
      @Override
      protected void setUp() throws Exception {
        super.setUp();
        timeLimiter = new FakeTimeLimiter();
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingQueue.java

      public @Nullable E poll(long timeout, TimeUnit unit) throws InterruptedException {
        return delegate().poll(timeout, unit);
      }
    
      @Override
      public void put(E e) throws InterruptedException {
        delegate().put(e);
      }
    
      @Override
      public int remainingCapacity() {
        return delegate().remainingCapacity();
      }
    
      @CanIgnoreReturnValue // TODO(kak): consider removing this
      @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 3K bytes
    - Click Count (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/BiMapRemoveTester.java

    @SuppressWarnings("JUnit4ClassUsedInJUnit3")
    public class BiMapRemoveTester<K, V> extends AbstractBiMapTester<K, V> {
      @MapFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testRemoveKeyRemovesFromInverse() {
        getMap().remove(k0());
        expectMissing(e0());
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testRemoveKeyFromKeySetRemovesFromInverse() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Nov 14 23:40:07 GMT 2024
    - 3.2K bytes
    - Click Count (0)
  8. guava-testlib/src/com/google/common/collect/testing/testers/MapGetTester.java

    @SuppressWarnings("JUnit4ClassUsedInJUnit3")
    public class MapGetTester<K, V> extends AbstractMapTester<K, V> {
      @CollectionSize.Require(absent = ZERO)
      public void testGet_yes() {
        assertEquals("get(present) should return the associated value", v0(), get(k0()));
      }
    
      public void testGet_no() {
        assertNull("get(notPresent) should return null", get(k3()));
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Nov 14 23:40:07 GMT 2024
    - 3.1K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Key Match management.
     *
     */
    public class AdminKeymatchAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminKeymatchAction() {
            super();
        }
    
        /** The role name for key match administration. */
        public static final String ROLE = "admin-keymatch";
    
        /** Logger for this class. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/chat/ChatForm.java

    /**
     * Form class for chat requests.
     *
     * @author FessProject
     */
    public class ChatForm {
    
        /**
         * Default constructor.
         */
        public ChatForm() {
            // Default constructor
        }
    
        /**
         * The user's message/question.
         */
        @Size(max = 4000)
        public String message;
    
        /**
         * The session ID for conversation continuity.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 1.2K bytes
    - Click Count (0)
Back to Top