Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 34 for setCss (0.04 seconds)

  1. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

        public void test_equals_comprehensive() {
            PrunedTag tag1 = new PrunedTag("div");
            tag1.setId("test");
            tag1.setCss("highlight");
            tag1.setAttr("data-value", "123");
    
            PrunedTag tag2 = new PrunedTag("div");
            tag2.setId("test");
            tag2.setCss("highlight");
            tag2.setAttr("data-value", "123");
    
            assertTrue(tag1.equals(tag2));
            assertTrue(tag2.equals(tag1));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/entity/ChatSession.java

        }
    
        /**
         * Gets the session ID.
         *
         * @return the session ID
         */
        public String getSessionId() {
            return sessionId;
        }
    
        /**
         * Sets the session ID.
         *
         * @param sessionId the session ID
         */
        public void setSessionId(final String sessionId) {
            this.sessionId = sessionId;
        }
    
        /**
         * Gets the user ID.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/LlmChatResponse.java

        }
    
        /**
         * Gets the response content.
         *
         * @return the content
         */
        public String getContent() {
            return content;
        }
    
        /**
         * Sets the response content.
         *
         * @param content the content
         */
        public void setContent(final String content) {
            this.content = content;
        }
    
        /**
         * Gets the finish reason.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                super();
            }
    
            /**
             * Sets the ID of the updated item.
             * @param id The ID to set.
             * @return This ApiUpdateResponse instance.
             */
            public ApiUpdateResponse id(final String id) {
                this.id = id;
                return this;
            }
    
            /**
             * Sets whether the item was created or updated.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

        }
    
        /**
         * Gets the highlighting type.
         *
         * @return the highlighting type
         */
        public String getType() {
            return type;
        }
    
        /**
         * Sets the highlighting type with fluent interface.
         *
         * @param type the highlighting type to set
         * @return this HighlightInfo instance for method chaining
         */
        public HighlightInfo type(final String type) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 10:17:07 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/entity/ChatMessage.java

        }
    
        /**
         * Sets the message ID.
         *
         * @param id the message ID
         */
        public void setId(final String id) {
            this.id = id;
        }
    
        /**
         * Gets the message role.
         *
         * @return the message role
         */
        public String getRole() {
            return role;
        }
    
        /**
         * Sets the message role.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 04:52:31 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/llm/LlmChatRequest.java

        }
    
        /**
         * Gets the messages in this request.
         *
         * @return the list of messages
         */
        public List<LlmMessage> getMessages() {
            return messages;
        }
    
        /**
         * Sets the messages in this request.
         *
         * @param messages the list of messages
         */
        public void setMessages(final List<LlmMessage> messages) {
            this.messages = messages;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 03:38:31 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

        }
    
        // ========== Thread Safety Tests ==========
    
        /**
         * Test that the volatile alive field is visible across threads.
         * One thread sets alive to false, other threads should see the change immediately.
         */
        @Test
        public void test_aliveField_volatileVisibility() throws Exception {
            // Ensure alive starts as true
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (1)
  9. src/main/java/org/codelibs/fess/llm/LlmMessage.java

        }
    
        /**
         * Sets the message role.
         *
         * @param role the role
         */
        public void setRole(final String role) {
            this.role = role;
        }
    
        /**
         * Gets the message content.
         *
         * @return the content
         */
        public String getContent() {
            return content;
        }
    
        /**
         * Sets the message content.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        /** A set of names of threads that are currently waiting. */
        protected Set<String> waitingThreadNames = Collections.synchronizedSet(new HashSet<>());
    
        /**
         * Initializes the SystemHelper.
         * This method sets up system properties, caches, and other initial configurations.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    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