- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 27 for setCss (0.05 seconds)
-
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) -
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) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
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) -
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) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
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) -
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) -
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 trueCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.8K bytes - Click Count (1) -
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) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* Defines how search results are ordered when no specific sort is requested. */ @Size(max = 1000) public String defaultSortValue; /** * Virtual host configuration for multi-tenant setups. * Allows different search configurations based on the request host. */ @Size(max = 10000) public String virtualHostValue; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 15.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
} return queryRegenerationPrompt; } /** Sets the system prompt for LLM interactions. * @param systemPrompt the system prompt */ public void setSystemPrompt(final String systemPrompt) { this.systemPrompt = systemPrompt; } /** Sets the prompt for detecting user intent. * @param intentDetectionPrompt the intent detection prompt */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0)