Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for original2 (0.05 seconds)

  1. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            assertEquals("original query", result);
        }
    
        @Test
        public void test_regenerateQuery_exception_returnsFailedQuery() {
            client.setChatResponse(null); // causes LlmException
    
            final String result = client.regenerateQuery("test question", "original query", "no_results", Collections.emptyList());
    
            assertEquals("original query", result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

        public void test_toJson_and_parseJson_roundtrip() {
            final Map<String, Object> original = new LinkedHashMap<>();
            original.put("type", "operation");
            original.put("name", "reindex");
            original.put("status", "running");
            original.put("createdTime", 1234567890L);
    
            final String json = coordinatorHelper.toJson(original);
            final Map<String, Object> parsed = coordinatorHelper.parseJson(json);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                return false;
            }
            return true;
        }
    
        /**
         * Validates if the canonical URL is valid relative to the original URL.
         * Specifically checks for HTTPS to HTTP downgrades.
         *
         * @param url the original URL
         * @param canonicalUrl the canonical URL to validate
         * @return true if the canonical URL is valid, false otherwise
         */
    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)
  4. src/main/webapp/js/bootstrap.min.js

    s._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),F.off(this._element.closest(Te),ke,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 58.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        /** Fields that should be highlighted in search results */
        protected String[] highlightedFields;
    
        /** Original highlight tag prefix */
        protected String originalHighlightTagPre = "";
    
        /** Original highlight tag suffix */
        protected String originalHighlightTagPost = "";
    
        /** Configured highlight tag prefix */
        protected String highlightTagPre;
    
    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)
  6. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            final Path outsideDir = Files.createTempDirectory("outside");
            try {
                final Path outsideTarget = outsideDir.resolve("stolen.html");
                Files.writeString(outsideTarget, "original", StandardCharsets.UTF_8);
    
                final Path hostDir = tempDir.resolve("example.com");
                Files.createDirectories(hostDir);
                final Path symlinkFile = hostDir.resolve("page.html");
    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)
  7. src/main/webapp/js/admin/bootstrap.min.js

    l",this._hideModalHandler),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new th...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 61.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

        // --- JSON parsing utilities ---
    
        /**
         * Parses the LLM response and extracts intent detection result.
         *
         * @param response the JSON response from LLM
         * @param userMessage the original user message
         * @return the parsed intent detection result
         */
        protected IntentDetectionResult parseIntentResponse(final String response, final String userMessage) {
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/chat/ChatClient.java

                        .getDocumentListByDocIds(docIds.toArray(new String[0]), fields, OptionalThing.empty(),
                                SearchRequestParams.SearchRequestType.JSON);
    
                // Reorder results to match original docIds order (preserve search score order)
                final Map<String, Map<String, Object>> resultMap = new LinkedHashMap<>();
                for (final Map<String, Object> doc : results) {
    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)
Back to Top