- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 164 for caracter (0.07 seconds)
-
src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java
event.setVersionNo(Long.MAX_VALUE); assertEquals(Long.valueOf(Long.MAX_VALUE), event.getVersionNo()); } // Test special characters in strings @Test public void test_specialCharactersInStrings() { // Test special characters in ID TestSearchLogEvent event1 = new TestSearchLogEvent("id-with-special-!@#$%^&*()", 1L, "type");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ParameterUtilTest.java
assertEquals("value1", paramMap.get("key1")); assertEquals("value2", paramMap.get("key2")); assertEquals("value3", paramMap.get("key3")); // Test with special characters in keys and values value = "key.with.dots=value\nkey_with_underscores=value with spaces\nkey-with-dashes=value@#$%"; paramMap = ParameterUtil.parse(value); assertEquals(3, paramMap.size());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 22.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/MarkdownRenderer.java
// Fallback to escaped plain text return escapeHtml(markdown); } } /** * Escapes HTML special characters for safe display. * * @param text the text to escape * @return HTML-escaped text */ private String escapeHtml(final String text) { if (text == null) { return "";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java
discloser.setPlainText("テスト内容です。\n改行もあります。"); String result = notificationHelper.toSlackMessage(discloser); assertNotNull(result); // Unicode characters may be escaped in JSON assertTrue(result.contains("テスト") || result.contains("\\u")); } @Test public void test_toGoogleChatMessage_withUnicodeContent() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 20K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
} }); return sessionIdList; }); } /** * Generates a hashed ID from the provided URL ID string. * Encodes special characters using URL encoding or Base64 encoding as needed, * then applies a message digest algorithm to create a unique hash. * * @param urlId the URL ID string to generate a hash forCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 15.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
writeJsonResponse(response, HttpServletResponse.SC_BAD_REQUEST, createErrorResponse("Message is too long (max " + maxMessageLength + " characters)")); return; } final String userId = getUserId(request); // Set LLM type name as Access Type for search log
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
} /** * Determines the configuration type from a given config ID. * The config type is identified by the first character of the config ID. * * @param configId the configuration ID to analyze * @return the ConfigType (WEB, FILE, or DATA) or null if the config ID is invalid or doesn't match any known type */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.5K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
assertFalse(item.isDeleted()); assertEquals("third", item.toLineString()); } @Test public void test_specialCharacters() { // Test with special characters in input String specialInput = "test@#$%^&*()_+-=[]{}|;':\",./<>?"; ProtwordsItem item = new ProtwordsItem(1, specialInput); assertEquals(specialInput, item.getInput());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0) -
src/main/webapp/js/chat.js
var textarea = elements.chatInput[0]; textarea.style.height = 'auto'; textarea.style.height = Math.min(textarea.scrollHeight, 150) + 'px'; } /** * Update character counter */ function updateCharCount() { var count = elements.chatInput.val().length; var maxLength = 4000; elements.charCount.text(count);
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)