Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_quote (1 sec)

  1. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            final String queryWithoutSort = new QueryStringBuilder().params(createSimpleParams("test")).build();
            assertEquals("test", queryWithoutSort);
        }
    
        public void test_quote() {
            // Test quote functionality through the builder behavior
            assertEquals("test", getQuery("test", new String[0], Collections.emptyMap(), Collections.emptyMap(), false));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/text/Tokenizer.java

     */
    public class Tokenizer {
    
        /**
         * Represents EOF (End of File).
         */
        public static final int TT_EOF = -1;
    
        /**
         * Represents a Quote.
         */
        public static final int TT_QUOTE = '\'';
    
        /**
         * Represents a word.
         */
        public static final int TT_WORD = -3;
    
        private static final int TT_NOTHING = -4;
    
        private static final int NEED_CHAR = Integer.MAX_VALUE;
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top