Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 356 for seas (0.05 sec)

  1. src/main/java/org/codelibs/fess/job/ExecJob.java

         * This method sets the job executor and then calls the abstract execute method.
         *
         * @param jobExecutor the job executor to use for execution
         * @return the execution result message or summary
         */
        public String execute(final JobExecutor jobExecutor) {
            jobExecutor(jobExecutor);
            return execute();
        }
    
        /**
         * Sets the job executor for this job.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

         * Gets the total number of records across all pages.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records across all pages.
         *
         * @param allRecordCount the total record count
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

         * Gets the total number of records in the result set.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records in the result set.
         *
         * @param allRecordCount the total record count to set
         */
        public void setAllRecordCount(final int allRecordCount) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/Tuple5.java

        /**
         * Sets the fourth value.
         *
         * @param value4
         *            The fourth value
         */
        public void setValue4(final T4 value4) {
            this.value4 = value4;
        }
    
        /**
         * Returns the fifth value.
         *
         * @return The fifth value
         */
        public T5 getValue5() {
            return value5;
        }
    
        /**
         * Sets the fifth value.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

         * Gets the total number of records across all pages.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records across all pages.
         *
         * @param allRecordCount the total record count
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

            }
            cookieNameMap.put(cookieName, roleName);
        }
    
        /**
         * Sets the cached cipher.
         * @param cipher The cached cipher.
         */
        public void setCipher(final CachedCipher cipher) {
            this.cipher = cipher;
        }
    
        /**
         * Sets the value separator.
         * @param valueSeparator The value separator.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/SortedIterablesTest.java

      public void testSameComparator() {
        assertTrue(SortedIterables.hasSameComparator(Ordering.natural(), Sets.newTreeSet()));
        assertTrue(SortedIterables.hasSameComparator(Ordering.natural(), Maps.newTreeMap().keySet()));
        assertTrue(
            SortedIterables.hasSameComparator(
                Ordering.natural().reverse(), Sets.newTreeSet(Ordering.natural().reverse())));
      }
    
      public void testComparator() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

    /**
     * GWT emulated version of {@link com.google.common.collect.ImmutableSet}. For the unsorted sets,
     * they are thin wrapper around {@link java.util.Collections#emptySet()}, {@link
     * Collections#singleton(Object)} and {@link java.util.LinkedHashSet} for empty, singleton and
     * regular sets respectively. For the sorted sets, it's a thin wrapper around {@link
     * java.util.TreeSet}.
     *
     * @see ImmutableSortedSet
     * @author Hayward Chan
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

            /** The list of documents to be included in the search result. */
            private final List<Map<String, Object>> documentList = new ArrayList<>();
    
            /**
             * Sets the total number of records that match the search criteria.
             *
             * @param allRecordCount The total record count
             * @return This builder instance for method chaining
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/text/Tokenizer.java

            }
        }
    
        /**
         * Sets a character as a word character.
         *
         * @param ctype2
         *            The array of character types.
         * @param val
         *            The character code.
         */
        protected static void wordChar(final byte[] ctype2, final int val) {
            ctype2[val] |= CT_ALPHA;
        }
    
        /**
         * Sets characters as whitespace.
         *
         * @param ctype2
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top