Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for invalidAt (0.03 sec)

  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.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

        }
    
        /**
         * Encode the JSP content.
         * @param value The value.
         * @return The encoded value.
         */
        public static String encodeJsp(final String value) {
            return value.replace("<% try{ %>", TRY_STATEMENT)
                    .replace("<% }catch(Exception e){session.invalidate();} %>", CACHE_AND_SESSION_INVALIDATE_STATEMENT);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_4x.md

     *  Fix: Don't crash decompressing web sockets messages. We had a bug where we assumed deflated
        bytes in would always yield deflated bytes out and this isn't always the case!
    
     *  Fix: Reliably update and invalidate the disk cache on windows. As originally designed our
        internal `DiskLruCache` assumes an inode-like file system, where it's fine to delete files that
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/validation/CronExpressionTest.java

            assertTrue(violations.isEmpty());
        }
    
        // Test validation with invalid cron expressions
        public void test_invalidCronExpressions() {
            TestBean bean = new TestBean();
    
            // Test invalid cron expression
            bean.setCronExpression("invalid");
            Set<ConstraintViolation<TestBean>> violations = validator.validate(bean);
            assertFalse(violations.isEmpty());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

                    "11-malformed:-invalid" // Should not match pattern
            };
    
            String[] result = JvmUtil.filterJvmOptions(args);
            assertEquals(4, result.length); // All should pass through since invalid patterns don't match
            assertEquals("-Dprop=value:with:colons", result[0]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashSet.java

        Set<E> delegate = delegateOrNull();
        if (delegate != null) {
          metadata =
              Ints.constrainToRange(size(), CompactHashing.DEFAULT_SIZE, CompactHashing.MAX_SIZE);
          delegate.clear(); // invalidate any iterators left over!
          table = null;
          size = 0;
        } else {
          Arrays.fill(requireElements(), 0, size, null);
          CompactHashing.tableClear(requireTable());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        assertFailsToDecode(base64(), "12345", "Invalid input length 5");
        // These have a combination of invalid length, unrecognized characters and wrong padding.
        assertFailsToDecode(base64(), "AB=C", "Unrecognized character: =");
        assertFailsToDecode(base64(), "A=BCD", "Invalid input length 5");
        assertFailsToDecode(base64(), "?", "Invalid input length 1");
      }
    
      public void testBase64CannotUpperCase() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_message.properties

    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    constraints.CreditCardNumber.message = {item} is an invalid credit card number.
    constraints.EAN.message = {item} is an invalid {type} barcode.
    constraints.Email.message = {item} is not a valid email address.
    constraints.Length.message = The length of {item} must be between {min} and {max}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_en.properties

    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    constraints.CreditCardNumber.message = {item} is an invalid credit card number.
    constraints.EAN.message = {item} is an invalid {type} barcode.
    constraints.Email.message = {item} is not a valid email address.
    constraints.Length.message = The length of {item} must be between {min} and {max}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            } catch (FessSystemException e) {
                assertEquals("Invalid format: 12", e.getMessage());
            }
    
            try {
                IntervalControlHelper.parseTime("12:30:45");
                fail("Should throw FessSystemException");
            } catch (FessSystemException e) {
                assertEquals("Invalid format: 12:30:45", e.getMessage());
            }
    
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top