Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for Sheather (0.13 sec)

  1. src/main/java/org/codelibs/core/beans/PropertyDesc.java

         */
        boolean hasWriteMethod();
    
        /**
         * Returns whether the property value can be retrieved.
         *
         * @return whether the property value can be retrieved
         */
        boolean isReadable();
    
        /**
         * Returns whether the property value can be set.
         *
         * @return whether the property value can be set
         */
        boolean isWritable();
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

     * and whether the crawling process should be aborted.
     */
    public class DataStoreCrawlingException extends CrawlingAccessException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * The URL where the crawling error occurred.
         */
        private final String url;
    
        /**
         * Flag indicating whether the crawling process should be aborted.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java

         * Script type of the scheduled job.
         */
        public String scriptType;
    
        /**
         * Whether the scheduled job is a crawler job.
         */
        public String crawler;
    
        /**
         * Whether logging is enabled for the scheduled job.
         */
        public String jobLogging;
    
        /**
         * Whether the scheduled job is available.
         */
        public String available;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/timer/TimeoutTask.java

        }
    
        /**
         * Returns whether the task has expired.
         *
         * @return whether the task has expired
         */
        public boolean isExpired() {
            return System.currentTimeMillis() >= startTime + timeoutMillis;
        }
    
        /**
         * Returns whether the task is permanent.
         *
         * @return whether the task is permanent
         */
        public boolean isPermanent() {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

        private int allRecordCount;
    
        /** Total number of pages available for pagination. */
        private int allPageCount;
    
        /** Flag indicating whether a previous page exists. */
        private boolean existPrePage;
    
        /** Flag indicating whether a next page exists. */
        private boolean existNextPage;
    
        /** List of page numbers to display in pagination navigation. */
        private List<Integer> pageNumberList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/BeanDesc.java

         */
        Map<TypeVariable<?>, Type> getTypeVariables();
    
        /**
         * Returns whether the {@link PropertyDesc} exists.
         *
         * @param propertyName
         *            The property name. Must not be {@literal null} or empty string
         * @return Whether the {@link PropertyDesc} exists
         */
        boolean hasPropertyDesc(String propertyName);
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

        private int allRecordCount;
    
        /**
         * Total number of pages.
         */
        private int allPageCount;
    
        /**
         * Flag indicating whether a previous page exists.
         */
        private boolean existPrePage;
    
        /**
         * Flag indicating whether a next page exists.
         */
        private boolean existNextPage;
    
        /**
         * List of page numbers for pagination navigation.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java

        }
    
        /** The total number of records. */
        private int allRecordCount;
    
        /** The total number of pages. */
        private int allPageCount;
    
        /** Whether a previous page exists. */
        private boolean existPrePage;
    
        /** Whether a next page exists. */
        private boolean existNextPage;
    
        /** The list of page numbers. */
        private List<Integer> pageNumberList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

        private int allRecordCount;
    
        /** Total number of pages calculated from record count and page size. */
        private int allPageCount;
    
        /** Flag indicating whether a previous page exists. */
        private boolean existPrePage;
    
        /** Flag indicating whether a next page exists. */
        private boolean existNextPage;
    
        /** List of page numbers for pagination navigation. */
        private List<Integer> pageNumberList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

        protected final String allRecordCountRelation;
    
        /** The time taken to execute the search query in milliseconds. */
        protected final long queryTime;
    
        /** Flag indicating whether the search results are partial due to timeout or other constraints. */
        protected final boolean partialResults;
    
        /** The facet response containing aggregated facet information for the search results. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top