Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for default (0.17 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default void setSearchLog(final boolean value) {
            setSystemPropertyAsBoolean(Constants.SEARCH_LOG_PROPERTY, value);
        }
    
        default boolean isSearchLog() {
            return getSystemPropertyAsBoolean(Constants.SEARCH_LOG_PROPERTY, true);
        }
    
        default void setUserInfo(final boolean value) {
            setSystemPropertyAsBoolean(Constants.USER_INFO_PROPERTY, value);
        }
    
        default boolean isUserInfo() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/Constants.java

        /** Default interval time in milliseconds for web crawling. */
        public static final int DEFAULT_INTERVAL_TIME_FOR_WEB = 10000;
    
        /** Default number of threads for file system crawling. */
        public static final int DEFAULT_NUM_OF_THREAD_FOR_FS = 5;
    
        /** Default number of threads for web crawling. */
        public static final int DEFAULT_NUM_OF_THREAD_FOR_WEB = 1;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/storage/StorageClientFactory.java

         * @return detected storage type
         */
        public static StorageType detectStorageType(final String endpoint) {
            if (StringUtil.isBlank(endpoint)) {
                // Default to S3 if no endpoint (uses AWS default)
                return StorageType.S3;
            }
    
            final String lowerEndpoint = endpoint.toLowerCase(Locale.ROOT);
    
            // GCS patterns
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        /** Configuration key for Entra ID default groups. */
        protected static final String ENTRAID_DEFAULT_GROUPS = "entraid.default.groups";
    
        /** Configuration key for Entra ID default roles. */
        protected static final String ENTRAID_DEFAULT_ROLES = "entraid.default.roles";
    
        // Legacy configuration keys for backward compatibility (Azure AD)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

     *
     * <h2>Optional Configuration</h2>
     * <pre>
     * # User attribute mapping
     * saml.attribute.group.name=groups
     * saml.attribute.role.name=roles
     *
     * # Default groups/roles for authenticated users
     * saml.default.groups=user
     * saml.default.roles=user
     * </pre>
     *
     * <h2>Security Settings (Production)</h2>
     * <p>For production environments, consider enabling these security features:</p>
     * <pre>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Size(max = 10000)
        public String appValue;
    
        /**
         * Default label value to use when no specific label is selected.
         * This affects which documents are included in search results by default.
         */
        @Size(max = 1000)
        public String defaultLabelValue;
    
        /**
         * Default sort order for search results.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        }
    
        /**
         * Builds a default redirect URL for OpenID Connect based on the environment.
         * Uses the configured base URL or defaults to http://localhost:8080 for compatibility
         * with common OIDC provider configurations.
         *
         * @return the default redirect URL
         */
        protected String buildDefaultRedirectUrl() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g.  */
        String CRAWLER_DOCUMENT_HTML_DEFAULT_INCLUDE_SEARCH_PATTERNS = "crawler.document.html.default.include.search.patterns";
    
        /** The key of the configuration. e.g.  */
        String CRAWLER_DOCUMENT_HTML_DEFAULT_EXCLUDE_SEARCH_PATTERNS = "crawler.document.html.default.exclude.search.patterns";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  9. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                if (logger.isDebugEnabled()) {
                    logger.debug("Using custom GCS endpoint: {}", endpoint);
                }
            } else {
                // Production: use credentials file or default credentials
                if (StringUtil.isNotBlank(credentialsPath)) {
                    try (FileInputStream fis = new FileInputStream(credentialsPath)) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.user_info_enabled=User Log
    labels.user_favorite_enabled=Favorite Log
    labels.web_api_json_enabled=JSON Response
    labels.app_value=System Property
    labels.default_label_value=Default Label Value
    labels.default_sort_value=Default Sort Value
    labels.virtual_host_value=Virtual Host
    labels.append_query_param_enabled=Append Search Parameters
    labels.login_required=Login Required
    labels.result_collapsed=Collapse Duplicate Results
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
Back to top