Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1251 - 1260 of 6,682 for republic (0.11 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsDuplicateHost.java

        public String getCreatedBy() {
            checkSpecifiedProperty("createdBy");
            return convertEmptyToNull(createdBy);
        }
    
        public void setCreatedBy(String value) {
            registerModifiedProperty("createdBy");
            this.createdBy = value;
        }
    
        public Long getCreatedTime() {
            checkSpecifiedProperty("createdTime");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Tables.java

        }
    
        @Override
        public void clear() {
          original.clear();
        }
    
        @Override
        public Map<C, V> column(@ParametricNullness R columnKey) {
          return original.row(columnKey);
        }
    
        @Override
        public Set<R> columnKeySet() {
          return original.rowKeySet();
        }
    
        @Override
        public Map<R, Map<C, V>> columnMap() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Decodable.java

     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/DefaultGenerationListener.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.LinkedList;
    
    public class DefaultGenerationListener implements GenerationListener {
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultGenerationListener.class);
        private final LinkedList<String> contextStack = new LinkedList<String>();
    
        @Override
        public void warning(String message) {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        public static Path getOrigPath(final String... names) {
            return getPath("WEB-INF/", "orig", names);
        }
    
        public static Path getMailTemplatePath(final String... names) {
            return getPath("WEB-INF/", "mail", names);
        }
    
        public static Path getViewTemplatePath(final String... names) {
            return getPath("WEB-INF/", "view", names);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 08:52:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/AbstractMultimap.java

        implements Multimap<K, V> {
      @Override
      public boolean isEmpty() {
        return size() == 0;
      }
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
        for (Collection<V> collection : asMap().values()) {
          if (collection.contains(value)) {
            return true;
          }
        }
    
        return false;
      }
    
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

    import org.mockito.Mockito;
    
    /**
     * Tests for MoreExecutors.
     *
     * @author Kyle Littlefield (klittle)
     */
    public class MoreExecutorsTest extends JSR166TestCase {
    
      private static final Runnable EMPTY_RUNNABLE =
          new Runnable() {
            @Override
            public void run() {}
          };
    
      public void testDirectExecutorServiceServiceInThreadExecution() throws Exception {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

       */
      @Override
      public Iterator<E> iterator() {
        return new QueueIterator();
      }
    
      @Override
      public void clear() {
        for (int i = 0; i < size; i++) {
          queue[i] = null;
        }
        size = 0;
      }
    
      @Override
      @J2ktIncompatible // Incompatible return type change. Use inherited (unoptimized) implementation
      public Object[] toArray() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

        }
    
        public List<Map<String, Object>> getDocumentList() {
            return documentList;
        }
    
        public long getAllRecordCount() {
            return allRecordCount;
        }
    
        public String getAllRecordCountRelation() {
            return allRecordCountRelation;
        }
    
        public long getQueryTime() {
            return queryTime;
        }
    
        public boolean isPartialResults() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

                newOutput = output;
            }
        }
    
        public String[] getNewInputs() {
            return newInputs;
        }
    
        public void setNewInputs(final String[] newInputs) {
            this.newInputs = newInputs;
        }
    
        public String getNewOutput() {
            return newOutput;
        }
    
        public void setNewOutput(final String newOutput) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top