Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for quante (0.03 seconds)

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

  1. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

        }
    
        @Test
        public void test_render_blockquote() {
            String result = markdownRenderer.render("> This is a quote");
            assertTrue(result.contains("<blockquote>"));
            assertTrue(result.contains("This is a quote"));
        }
    
        @Test
        public void test_render_link_http() {
            String result = markdownRenderer.render("[Link](http://example.com)");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

         * 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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            assertEquals("test", queryWithoutSort);
        }
    
        @Test
        public void test_quote() {
            // Test quote functionality through the builder behavior
            assertEquals("test", getQuery("test", new String[0], Collections.emptyMap(), Collections.emptyMap(), false));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

        @Test
        public void test_parse_invalid_quotes() {
            String value;
            String[] result;
    
            // Unmatched quote at start
            value = "\"unmatched";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(0, result.length);
    
            // Unmatched quote at end
            value = "unmatched\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(0, result.length);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

        }
    
        @Test
        public void test_sourceTitles_emptyTitles() {
            final ChatMessage msg = ChatMessage.assistantMessage("Some content here that is quite long enough to be truncated.");
            final Map<String, Object> doc = new HashMap<>();
            doc.put("title", "");
            doc.put("url", "http://example.com/1");
            msg.addSource(new ChatSource(1, doc));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            final String p = path.trim();
            if (p.startsWith("#")) {
                return StringUtils.EMPTY;
            }
    
            if (p.startsWith(GsaConfigParser.CONTAINS)) {
                return ".*" + Pattern.quote(p.substring(GsaConfigParser.CONTAINS.length())) + ".*";
            }
    
            if (p.startsWith(GsaConfigParser.REGEXP)) {
                return p.substring(GsaConfigParser.REGEXP.length());
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
Back to Top