Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 129 for seriez (0.04 seconds)

  1. src/main/java/org/codelibs/fess/exception/QueryParseException.java

     * This exception wraps Lucene's ParseException to provide consistent error handling
     * within the Fess search framework.
     *
     */
    public class QueryParseException extends FessSystemException {
    
        /** Serial version UID for serialization compatibility */
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new QueryParseException with the specified ParseException as the cause.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryException.java

     * This exception is typically used for issues during dictionary file
     * reading, writing, parsing, or other dictionary-related operations.
     */
    public class DictionaryException extends FessSystemException {
    
        /** Serial version UID for serialization. */
        private static final long serialVersionUID = 1L;
    
        /**
         * Creates a new DictionaryException with the specified message and cause.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java

            assertEquals(messageCode, exception.getMessageCode());
        }
    
        @Test
        public void test_verifySerialVersionUID() {
            // Setup
            final String message = "Test serial version UID";
            final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsSsoLoginError(UserMessages.GLOBAL_PROPERTY_KEY);
    
            // Execute
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  4. .teamcity/pom.xml

                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </repository>
            <repository>
                <id>teamcity-server</id>
                <url>https://builds.gradle.org/app/dsl-plugins-repository</url>
                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </repository>
            <repository>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 22:03:46 GMT 2026
    - 7.4K bytes
    - Click Count (2)
  5. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_PREAUTH_USERNAME = "spnego.preauth.username";
    
        /** Configuration key for login server module name. */
        protected static final String SPNEGO_LOGIN_SERVER_MODULE = "spnego.login.server.module";
    
        /** Configuration key for login client module name. */
        protected static final String SPNEGO_LOGIN_CLIENT_MODULE = "spnego.login.client.module";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  6. KEYS.md

    First, copy the public key block below into a new file called `gradle_pubkey.asc`, then import it with this command:
    
    ```bash
    gpg --import gradle_pubkey.asc
    ```
    
    Alternatively, you can fetch the key directly from a key server:
    
    ```bash
    gpg --keyserver hkps://keys.openpgp.org --recv-keys 1BD97A6A154E7810EE0BC832E2F38302C8075E3D
    ```
    
    ### Verifying signatures
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Dec 04 14:29:13 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  7. src/main/assemblies/files/fess

    #    -X prop       set non-standard JAVA system property
    #   --prop=val
    #   --prop val     set fess property (i.e.  -Des.<prop>=<val>)
    
    CDPATH=""
    SCRIPT="$0"
    
    # SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path.
    while [ -h "$SCRIPT" ] ; do
      ls=`ls -ld "$SCRIPT"`
      # Drop everything prior to ->
      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Click Count (0)
  8. src/main/resources/fess_label_en.properties

    labels.ldap_initial_context_factory=Initial Context Factory
    labels.general_menu_oic=OpenID Connect
    labels.oic_client_id=Client ID
    labels.oic_client_secret=Client Secret
    labels.oic_auth_server_url=Authorization Server URL
    labels.oic_token_server_url=Token Server URL
    labels.oic_redirect_url=Redirect URL
    labels.oic_scope=Scope
    labels.oic_base_url=Base URL
    labels.oic_default_groups=Default Groups
    labels.oic_default_roles=Default Roles
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/exception/FessUserNotFoundException.java

     * This exception is typically thrown during authentication or user lookup operations
     * when the specified user does not exist in the system.
     */
    public class FessUserNotFoundException extends FessSystemException {
    
        /** Serial version UID for serialization compatibility */
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new FessUserNotFoundException with the specified username.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/error/ErrorBusyAction.java

    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    
    /**
     * Action class for handling HTTP 429 Too Many Requests error pages.
     * This action displays error pages when the server is under high load.
     */
    public class ErrorBusyAction extends FessSearchAction {
    
        /**
         * Default constructor for ErrorBusyAction.
         */
        public ErrorBusyAction() {
            super();
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 1.4K bytes
    - Click Count (0)
Back to Top