Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for Be (0.02 seconds)

  1. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

                source.put("url", "http://evil.com/secret.html");
                source.put("content", "should not be written outside");
    
                indexExportJob.exportDocument(source, tempDir.toString(), Collections.emptySet(), new HtmlIndexExportFormatter());
    
                assertFalse(Files.exists(outsideDir.resolve("secret.html")), "File must not be written outside base directory via symlink");
            } finally {
    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)
  2. src/main/java/org/codelibs/fess/chat/ChatClient.java

            }
            return available;
        }
    
        /**
         * Performs a chat request with RAG.
         *
         * @param sessionId the session ID (can be null for new sessions)
         * @param userMessage the user's message
         * @param userId the user ID (can be null for anonymous users)
         * @return the chat response including session info and sources
         */
    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)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        private static final String ROBOTS_TAG_NOFOLLOW = "nofollow";
    
        /** Size of UTF-8 BOM (Byte Order Mark) in bytes */
        private static final int UTF8_BOM_SIZE = 3;
    
        /** Flag indicating whether content should be pruned */
        public boolean prunedContent = true;
    
        /** Map containing URL conversion rules (regex patterns to replacement strings) */
        protected Map<String, String> convertUrlMap = new LinkedHashMap<>();
    
    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/admin/plugins/daterangepicker/daterangepicker.js

            //custom options from user
            if (typeof options !== 'object' || options === null)
                options = {};
    
            //allow setting options with data attributes
            //data-api options will be overwritten with custom javascript options
            options = $.extend(this.element.data(), options);
    
            //html template for the picker UI
            if (typeof options.template !== 'string' && !(options.template instanceof $))
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 64.8K bytes
    - Click Count (0)
  5. src/main/webapp/js/bootstrap.min.js

    or(const t of e)t.classList.remove(Fe)}static jQueryInterface(t){return this.each((function(){const e=Be.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}F.on(window,"load.bs.scrollspy.data-api",(()=>{for(const t of K.find('[data-bs-spy="scroll"]'))Be.getOrCreateInstance(t)})),b(Be);const qe="ArrowLeft",We="ArrowRight",Re="ArrowUp",Ke="ArrowDown",Ve="active",Qe="fade",Xe="show",Ye='...
    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)
  6. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        /** Whether to encode URL links */
        protected boolean encodeUrlLink = false;
    
        /** Character encoding for URL links */
        protected String urlLinkEncoding = Constants.UTF_8;
    
        /** Fields that should be highlighted in search results */
        protected String[] highlightedFields;
    
        /** Original highlight tag prefix */
        protected String originalHighlightTagPre = "";
    
        /** Original highlight tag suffix */
    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)
  7. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

            assertFalse(id1.contains("-"));
        }
    
        @Test
        public void test_generateId_format() {
            String id = queryHelper.generateId();
            // UUID without dashes should be 32 characters
            assertEquals(32, id.length());
            assertTrue(id.matches("[a-f0-9]{32}"));
        }
    
        @Test
        public void test_addDefaultSort_singleField() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 53.2K bytes
    - Click Count (0)
  8. src/main/webapp/js/admin/jquery-3.7.1.min.js

    e?e?this.show():this.hide():this.each(function(){ee(this)?ce(this).show():ce(this).hide()})}});var xe,be,we=/^(?:checkbox|radio)$/i,Te=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="<textarea>x</te...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 85.5K bytes
    - Click Count (1)
  9. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            final EventInfo event = new EventInfo();
            event.name = "test_event";
            coordinatorHelper.dispatchEvent(event);
    
            // Second handler should still be called even if first throws
            assertTrue(secondCalled.get());
        }
    
        @Test
        public void test_dispatchEvent_eventData() {
            final AtomicReference<String> receivedData = new AtomicReference<>();
    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)
  10. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            });
    
            client.generateSummaryResponse("summarize", documents, history, (chunk, done) -> {});
    
            // The document content in system message should be truncated
            final String systemMsg = captured.toString();
            // Not all 10 documents should be fully included
            int docCount = 0;
            int fromIndex = 0;
            while ((fromIndex = systemMsg.indexOf("=== Document ===", fromIndex)) != -1) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)