Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 28 for styles (0.04 seconds)

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

  1. src/main/webapp/css/chat.css

    /* Chat Page Styles - Bootstrap 5 Compatible with Atlassian Design System */
    
    /* ============================================
       Status Lozenge (ADS-style badge)
       ============================================ */
    .status-lozenge {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.75rem;
        border-radius: 3px;
        font-size: 0.8125rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

         * <pre>
         * <span style="font-size: 130%; color: #553000">[Small Helper]</span>
         * o saveInfo() <span style="color: #3F7E5E">// save messages to session</span>
         * o write() <span style="color: #3F7E5E">// write text to specified file</span>
         * o copyBeanToBean() <span style="color: #3F7E5E">// copy bean to bean by BeanUtil</span>
         * o getServletContext() <span style="color: #3F7E5E">// get servlet context</span>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 13:57:12 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  3. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                            <la:errors property="webApiJson"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="webApiJson" styleClass="form-check-input" property="webApiJson"/>
                                                <label for="webApiJson" class="form-check-label">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 83.1K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                            <div class="col-sm-9">
                                                    ${f:h(doc.doc_id)}
                                                <la:hidden styleId="doc.doc_id" property="doc.doc_id"/>
                                            </div>
                                        </div>
                                    </c:if>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 28.1K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/admin/maintenance/admin_maintenance.jsp

                                            <la:errors property="replaceAliases"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="replaceAliases" styleClass="form-check-input" property="replaceAliases"/>
                                                <label for="replaceAliases" class="form-check-label">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 17.3K bytes
    - Click Count (0)
  6. src/main/webapp/js/chat.js

            });
        }
    
        /**
         * Auto-resize textarea based on content
         */
        function autoResizeTextarea() {
            var textarea = elements.chatInput[0];
            textarea.style.height = 'auto';
            textarea.style.height = Math.min(textarea.scrollHeight, 150) + 'px';
        }
    
        /**
         * Update character counter
         */
        function updateCharCount() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                return;
            }
            clickLogQueue.add(clickLog);
        }
    
        /**
         * Stores search logs from the queue.
         */
        public void storeSearchLog() {
            storeSearchLogFromQueue();
            storeClickLogFromQueue();
        }
    
        /**
         * Stores click logs from the queue.
         */
        protected void storeClickLogFromQueue() {
            if (!clickLogQueue.isEmpty()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/llm/LlmClient.java

                LlmStreamCallback callback);
    
        /**
         * Generates an FAQ answer using document content (streaming).
         * Uses a prompt optimized for direct, concise FAQ-style answers.
         *
         * @param userMessage the user's message
         * @param documents the documents with content
         * @param history the conversation history
         * @param callback the streaming callback
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/exec/Crawler.java

    import jakarta.annotation.Resource;
    
    /**
     * Main executable class for running crawling operations in the Fess search engine.
     * This class serves as the entry point for crawling web content, file systems, and data stores.
     * It manages the crawling lifecycle, including initialization, execution coordination,
     * monitoring, and cleanup operations.
     *
     * <p>The crawler can operate in different modes based on command-line options:
     * <ul>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

            assertNotNull(annotation1, "First annotation should exist");
            assertNotNull(annotation2, "Second annotation should exist");
    
            // Annotations with different protocol types should not be equal
            assertFalse("Annotations with different protocol types should not be equal", annotation1.equals(annotation2));
    
            // Test with same field
            final UriType annotation1Copy = field1.getAnnotation(UriType.class);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.3K bytes
    - Click Count (0)
Back to Top