Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for eased (0.02 seconds)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            return str.replaceAll(originalHighlightTagPre, StringUtil.EMPTY).replaceAll(originalHighlightTagPost, StringUtil.EMPTY);
        }
    
        /**
         * Creates highlight information based on screen width.
         * Adjusts fragment size for mobile devices.
         *
         * @return the highlight information
         */
        public HighlightInfo createHighlightInfo() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            if (removedNodeList != null) {
                removedNodeList.stream().forEach(n -> node.removeChild(n));
            }
    
            return node;
        }
    
        /**
         * Prunes unwanted tags from the node based on configuration.
         *
         * @param node the node to prune
         * @param crawlingConfig the crawling configuration containing pruning rules
         * @return the pruned node
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 55.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                    return requestLocale;
                }
                return request.getLocale();
            }).orElse(Locale.getDefault());
        }
    
        /**
         * Gets the language instruction based on the user's locale.
         *
         * @return the language instruction string, or empty string if locale is English
         */
        protected String getLanguageInstruction() {
            final Locale locale = getUserLocale();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        protected LdapUser createLdapUser(final String username, final Hashtable<String, String> env) {
            return new LdapUser(env, username);
        }
    
        /**
         * Retrieves roles for the specified LDAP user based on the provided filters.
         *
         * @param ldapUser the LDAP user to retrieve roles for
         * @param bindDn the bind DN for LDAP connection
         * @param accountFilter the account filter pattern
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            assertEquals(Path.of("/export/_local/home/user/doc.html"), result);
        }
    
        @Test
        public void test_buildFilePath_specialCharacters() {
            // < in URL makes it an invalid URI, so it falls back to hash-based path
            final Path result =
                    indexExportJob.buildFilePath("/export", "https://example.com/path/file<name>.html", new HtmlIndexExportFormatter());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/chat/ChatClient.java

                        history.add(LlmMessage.assistant(content));
                    }
                }
            }
            return history;
        }
    
        /**
         * Builds the assistant message content for history based on the specified mode.
         *
         * @param msg the assistant chat message
         * @param mode the content mode (full, smart_summary, source_titles, source_titles_and_urls, truncated, none)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            assertEquals("Q2", request.getMessages().get(0).getContent());
            assertEquals("A2", request.getMessages().get(1).getContent());
        }
    
        // ========== addHistoryWithBudget — turn-based packing tests ==========
    
        @Test
        public void test_addHistoryWithBudget_turnBasedPacking_twoCompleteTurns() {
            final List<LlmMessage> history = new ArrayList<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
Back to Top