Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 108 for invalidAt (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/resources/fess_message_pt_BR.properties

    errors.invalid_query_unknown = A consulta especificada tem condições desconhecidas.
    errors.invalid_query_parse_error = A consulta fornecida é inválida.
    errors.invalid_query_sort_value = A ordenação especificada {0} é inválida.
    errors.invalid_query_unsupported_sort_field = O campo de ordenação especificado {0} não é suportado.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            } catch (FessSystemException e) {
                assertEquals("Invalid time format: 12. Expected format: HH:MM", e.getMessage());
            }
    
            try {
                IntervalControlHelper.parseTime("12:30:45");
                fail("Should throw FessSystemException");
            } catch (FessSystemException e) {
                assertEquals("Invalid time format: 12:30:45. Expected format: HH:MM", e.getMessage());
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            assertEquals(exception.getMessage(), exception2.getMessage());
        }
    
        @Test
        public void test_toString() {
            // Test the toString method
            String message = "LDAP configuration is invalid";
            LdapConfigurationException exception = new LdapConfigurationException(message);
    
            String toStringResult = exception.toString();
            assertNotNull(toStringResult);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java

            assertNull(exception.getCause());
        }
    
        @Test
        public void test_exceptionChaining() {
            // Test exception chaining
            Throwable rootCause = new IllegalArgumentException("Invalid argument");
            Throwable intermediateCause = new RuntimeException("Processing failed", rootCause);
            String message = "Plugin operation failed";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

        /**
         * If enabled, automatically fixes invalid computed runtime declarations.
         */
        @get:Input
        @get:Optional
        @get:Option(option = "fix", description = "When enabled, will write the correct computed runtimes back to the build files")
        abstract val fix: Property<Boolean>
    
        /**
         * If enabled, prints extra details describing why a target runtime declaration is invalid.
         */
        @get:Input
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

                        // Success on first call
                        return;
                    case 2:
                        throw new IllegalArgumentException("Invalid argument");
                    case 3:
                        throw new IllegalStateException("Invalid state");
                    case 4:
                        throw new NullPointerException("Null pointer");
                    default:
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            Exception cause = new IllegalArgumentException("Invalid SSO token");
            SsoLoginException exception = new SsoLoginException("SSO error", cause);
    
            Throwable retrievedCause = exception.getCause();
            assertNotNull(retrievedCause);
            assertSame(cause, retrievedCause);
            assertEquals("Invalid SSO token", retrievedCause.getMessage());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/validation/CronExpressionTest.java

            assertTrue(violations.isEmpty());
        }
    
        // Test validation with invalid cron expressions
        @Test
        public void test_invalidCronExpressions() {
            TestBean bean = new TestBean();
    
            // Test invalid cron expression
            bean.setCronExpression("invalid");
            Set<ConstraintViolation<TestBean>> violations = validator.validate(bean);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/exception/InvalidQueryException.java

    import org.codelibs.fess.mylasta.action.FessMessages;
    import org.lastaflute.web.validation.VaMessenger;
    
    /**
     * Exception thrown when an invalid query is encountered.
     * This exception is typically used in search contexts where a provided
     * query is malformed, contains invalid syntax, or violates query constraints.
     */
    public class InvalidQueryException extends FessSystemException {
    
        /** Serial version UID for serialization */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java

        @Test
        public void test_edgeCaseBehavior() {
            String[] edgeCases = { "0 0 25 * * ?", // Invalid day of month
                    "0 60 * * * ?", // Invalid minute
                    "0 0 0 32 1 ?", // Invalid day
                    "0 0 0 1 13 ?", // Invalid month
            };
    
            for (String cron : edgeCases) {
                boolean result = validator.determineValid(cron);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
Back to Top