Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for Sheather (0.07 sec)

  1. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

         */
        protected String parameterKey;
    
        /**
         * Whether the parameter value is encrypted.
         */
        protected boolean encryptedParameterValue = true;
    
        /**
         * The key for the request header that contains role information.
         */
        protected String headerKey;
    
        /**
         * Whether the header value is encrypted.
         */
        protected boolean encryptedHeaderValue = true;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K 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/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)
  5. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        protected String allRecordCountRelation;
    
        /** Total number of pages based on record count and page size. */
        protected int allPageCount;
    
        /** Flag indicating whether a next page exists. */
        protected boolean existNextPage;
    
        /** Flag indicating whether a previous page exists. */
        protected boolean existPrevPage;
    
        /** Starting record number for the current page. */
        protected long currentStartRecordNumber;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K 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. android/guava/src/com/google/common/net/InternetDomainName.java

     *
     * <p>One common use of this class is to determine whether a given string is likely to represent an
     * addressable domain on the web -- that is, for a candidate string {@code "xxx"}, might browsing to
     * {@code "http://xxx/"} result in a webpage being displayed? In the past, this test was frequently
     * done by determining whether the domain ended with a {@linkplain #isPublicSuffix() public suffix}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/main/resources/fess_config.properties

    # Whether to use lowercase for LDAP permission names.
    ldap.lowercase.permission.name=false
    # Whether to allow empty permissions in LDAP.
    ldap.allow.empty.permission=true
    # Whether to use samAccountName for LDAP group.
    ldap.samaccountname.group=false
    
    # Whether LDAP role search for user is enabled.
    ldap.role.search.user.enabled=true
    # Whether LDAP role search for group is enabled.
    ldap.role.search.group.enabled=true
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
Back to top