Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for unquoted (0.06 sec)

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

            result = KuromojiCSVUtil.parse(value);
            assertEquals(3, result.length);
            assertEquals("quoted", result[0]);
            assertEquals("unquoted", result[1]);
            assertEquals("\"another quoted\"", result[2]);
        }
    
        public void test_parse_escaped_quotes() {
            String value;
            String[] result;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

            }
    
            /**
             * Overrides the field query creation to handle quoted queries specially.
             * For quoted queries on the default field, creates a phrase query instead of a term query.
             *
             * @param field the field to query
             * @param queryText the query text
             * @param quoted whether the query is quoted
             * @return the created Query object
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartBody.kt

        private val CRLF = byteArrayOf('\r'.code.toByte(), '\n'.code.toByte())
        private val DASHDASH = byteArrayOf('-'.code.toByte(), '-'.code.toByte())
    
        /**
         * Appends a quoted-string to a StringBuilder.
         *
         * RFC 2388 is rather vague about how one should escape special characters in form-data
         * parameters, and as it turns out Firefox and Chrome actually do rather different things, and
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

        /**
         * Quotes a string value if it contains spaces.
         * Multi-word values are wrapped in double quotes with internal quotes replaced by spaces.
         *
         * @param value the string value to quote
         * @return the quoted string if it contains spaces, otherwise the original value
         */
        protected String quote(final String value) {
            if (value.split("\\s").length > 1) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

            return s.replace("\\\\", "\\");
        }
    
        /**
         * Appends a filter path pattern to a string buffer with appropriate wildcards.
         * Handles various pattern formats including anchored patterns and quoted patterns.
         *
         * @param buf the string buffer to append to
         * @param v the pattern value to append
         * @return the complete pattern string from the buffer
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                logger.warn("Failed to write a sugget elevate word.", e);
            }
        }
    
        /**
         * Safely retrieves a value from a list at the specified index, handling bounds checking
         * and cleaning up quoted strings.
         *
         * @param list the list to retrieve the value from
         * @param index the index of the value to retrieve
         * @return the cleaned value at the specified index, or empty string if index is out of bounds
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.3K bytes
    - Viewed (0)
Back to top