Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 231 for configured (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            });
            return failureUrl;
        }
    
        /**
         * Extracts and returns the stack trace from a throwable as a string.
         * The stack trace is abbreviated if it exceeds the configured maximum length.
         *
         * @param t the throwable to extract the stack trace from
         * @return the stack trace as a string, or empty string if extraction fails
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/FileTypeHelper.java

         */
        public void setDefaultValue(final String defaultValue) {
            this.defaultValue = defaultValue;
        }
    
        /**
         * Gets all distinct file types currently configured in the mappings.
         *
         * @return an array of all unique file type values
         */
        public String[] getTypes() {
            return mimetypeMap.values().stream().distinct().toArray(n -> new String[n]);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            }
            load();
        }
    
        /**
         * Retrieves a list of all available related query entities from the data store.
         * The results are ordered by term and limited by the configured maximum fetch size.
         *
         * @return a list of RelatedQuery entities containing all available related queries
         */
        public List<RelatedQuery> getAvailableRelatedQueryList() {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

        /** Line feed character for message formatting. */
        protected static final char LF = '\n';
    
        /**
         * Sends notifications to configured platforms.
         *
         * @param cardView the card view for the notification
         * @param discloser the mail posting discloser
         */
        public void send(final CardView cardView, final SMailPostingDiscloser discloser) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

     * This filter processes requests with specific encoding requirements and converts
     * character encodings according to configured mapping rules.
     *
     * <p>The filter intercepts requests matching configured path patterns and
     * redirects them with proper character encoding applied to parameters.</p>
     */
    public class EncodingFilter implements Filter {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

    /**
     * SSO (Single Sign-On) action controller.
     *
     * This action handles SSO authentication flows including login, logout, and metadata
     * operations. It coordinates with the SsoManager to perform authentication using
     * configured SSO providers and handles various authentication scenarios including
     * successful login, authentication failures, and redirects.
     */
    public class SsoAction extends FessLoginAction {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  7. okhttp-zstd/README.md

    OkHttp Zstandard (zstd) Integration
    ===================================
    
    This module enables [Zstandard (zstd)][1] response compression in addition to Gzip, as long as
    the `Accept-Encoding` header is not otherwise set. Web servers must be configured to return zstd
    responses.
    
    Note that zstd is not used for sending requests.
    
    ```java
    OkHttpClient client = new OkHttpClient.Builder()
      .addInterceptor(ZstdInterceptor.INSTANCE)
      .build();
    ```
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 19 13:41:00 UTC 2025
    - 556 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

        /**
         * Handles document redirection requests.
         * Validates the document ID, logs click events if enabled, and redirects
         * to the target URL or serves file content directly if configured.
         *
         * @param form the go form containing document ID and tracking parameters
         * @return action response for redirection or content streaming
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  9. src/packaging/common/systemd/fess.service

    # in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file}
    #LimitMEMLOCK=infinity
    
    # Shutdown delay in seconds, before process is tried to be killed with KILL (if configured)
    TimeoutStopSec=20
    
    [Install]
    WantedBy=multi-user.target
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/QueryCommand.java

                            .getQueryLanguages(request.getLocales(), (String[]) request.getAttribute(Constants.REQUEST_LANGUAGES)));
        }
    
        /**
         * Builds a default query builder with configured fields and boost values.
         * @param fessConfig The Fess configuration.
         * @param context The query context.
         * @param builder The function to build individual field queries.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
Back to top