Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for lett (0.01 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CharUtilTest.java

            // Test characters just outside ranges that are not valid
            assertFalse(CharUtil.isUrlChar('`')); // backtick (just before 'a')
            assertFalse(CharUtil.isUrlChar('{')); // left brace (just after 'z')
            assertFalse(CharUtil.isUrlChar('^')); // caret (before 'a' range)
            assertFalse(CharUtil.isUrlChar('|')); // pipe (not in valid set)
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/StringUtil.java

        }
    
        /**
         * Removes whitespace from the left side of the string.
         *
         * @param text
         *            The text to trim
         * @return The resulting string
         */
        public static final String ltrim(final String text) {
            return ltrim(text, null);
        }
    
        /**
         * Removes the specified characters from the left side of the string.
         *
         * @param text
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

         *
         * <p>This method escapes the following characters as per RFC 4515:
         * <ul>
         * <li>\ (backslash) → \5c</li>
         * <li>* (asterisk) → \2a</li>
         * <li>( (left parenthesis) → \28</li>
         * <li>) (right parenthesis) → \29</li>
         * <li>\0 (null character) → \00</li>
         * </ul>
         *
         * <p><strong>Security Note:</strong> This method MUST be called on all user-supplied
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 86.3K bytes
    - Viewed (0)
Back to top