Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for be (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public Integer purgeUserInfoDay;
    
        /**
         * Bot user agents whose search logs should be purged.
         * Search logs from these bots will be automatically removed.
         */
        @Size(max = 10000)
        public String purgeByBots;
    
        /**
         * Email addresses to receive system notifications.
         * Multiple addresses can be specified, separated by commas.
         */
        @Size(max = 1000)
        public String notificationTo;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

            protected StemmerOverrideItem item;
    
            /**
             * Constructs a new updater for a stemmer override item.
             *
             * @param newItem The item to be added or updated.
             * @throws DictionaryException if the temporary file cannot be created.
             */
            protected StemmerOverrideUpdater(final StemmerOverrideItem newItem) {
                FileOutputStream fos = null;
                try {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. README.md

    There are 2 ways to try Fess. The first is to download and install yourself. The second is to use [Docker](https://www.docker.com/products/docker-engine).
    
    ### Download and Install/Run
    
    Fess 15.3 is now available and can be downloaded on the [Releases page](https://github.com/codelibs/fess/releases "download"). Downloads come in 3 flavors: deb, rpm, zip.
    
    The following commands show how to use the zip download:
    
        $ unzip fess-15.3.x.zip
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 00:28:33 UTC 2025
    - 7.8K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

    /**
     * Character mapping file handler for managing character mapping dictionaries.
     * This class provides functionality to load, parse, and manage character mapping
     * rules that define how input characters should be transformed to output characters
     * during text analysis and search processing.
     *
     * Character mapping files contain mapping rules in the format:
     * input1,input2,... => output
     */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        /** A map of design JSP file names. */
        protected final Map<String, String> designJspFileNameMap = new LinkedHashMap<>();
    
        /** A flag to indicate if the system should be forcefully stopped. */
        protected final AtomicBoolean forceStop = new AtomicBoolean(false);
    
        /** A cache for language items. */
        protected LoadingCache<String, List<Map<String, String>>> langItemsCache;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

         * This method defers the retrieval of nested group information to avoid login delays.
         * @param user The Entra ID user.
         * @param initialGroups The initial group list to be updated.
         * @param initialRoles The initial role list to be updated.
         * @param groupIds The list of group IDs to lookup parent groups for.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                }
    
                // SECURITY WARNING: JWT signature validation is not implemented.
                // This is a critical security vulnerability. The ID token should be validated
                // to ensure it was issued by the expected OpenID Connect provider and has not been tampered with.
                // TODO: Implement JWT signature validation using the provider's public key
    
    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/sso/saml/SamlAuthenticator.java

     * For production or when the IdP is configured with a different URL, you should
     * set one of the following:</p>
     *
     * <h3>Option 1: Set base URL (recommended for simplicity)</h3>
     * <pre>
     * # All SP URLs will be derived from this base URL
     * saml.sp.base.url=https://your-fess-server.example.com
     * </pre>
     *
     * <h3>Option 2: Set individual SP URLs</h3>
     * <pre>
     * # SP Entity ID (Audience URI in IdP)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  9. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                return bos.toByteArray();
            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        /**
         * Determines if the search parameter cookie should be secure based on configuration and request.
         *
         * @param request The HTTP request
         * @return true if the cookie should have the secure flag set
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 36.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/Constants.java

     * </ul>
     */
    public class Constants extends CoreLibConstants {
    
        /**
         * Private constructor to prevent instantiation of this utility class.
         * This class contains only static constants and should not be instantiated.
         */
        private Constants() {
            // Utility class - no instantiation
        }
    
        // ============================================================
        // System and UI Constants
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 35.2K bytes
    - Viewed (0)
Back to top