- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 130 for caracter (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/service/FessAppService.java
public abstract class FessAppService { /** * Default constructor. */ public FessAppService() { // Default constructor } /** * Wraps a query string with wildcard characters to enable partial matching. * This method ensures that the query string is surrounded by asterisks (*) * to support prefix and suffix matching in search operations. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java
assertEquals(longMessage, exception.getMessage()); } @Test public void test_specialCharactersInMessage() { // Test with special characters in message String specialMessage = "Error: \n\t\r Special chars: 日本語 中文 한국어 émojis 😀 🎉"; ScheduledJobException exception = new ScheduledJobException(specialMessage);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
assertEquals(message, exception.getMessage()); } @Test public void test_specialCharactersInMessage() { // Test with special characters in message String message = "Storage error: \n\t\r\"'<>&"; StorageException exception = new StorageException(message); assertEquals(message, exception.getMessage()); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/ItemForm.java
public String path; /** * Default constructor. */ public ItemForm() { // Default constructor } /** The name of the storage item, limited to 100 characters */ @Size(max = 100) public String name; /** The file to be uploaded for the storage item */ public MultipartFormFile uploadFile;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java
assertEquals(message, exception.getMessage()); } @Test public void test_exceptionWithSpecialCharactersInMessage() { // Test with special characters in message int statusCode = 400; String message = "Error: \"Invalid JSON\" - {key: 'value'} \n\t@#$%^&*()"; WebApiException exception = new WebApiException(statusCode, message);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
assertEquals("value3", param.getValues()[2]); assertNull(param.getValues()[3]); } @Test public void test_constructor_withSpecialCharacters() { // Test with special characters in name and values String name = "param-name_123!@#"; String[] values = { "value with spaces", "value@special#chars", "日本語" }; RequestParameter param = new RequestParameter(name, values);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java
public String id; /** * The username of the user who last updated this web authentication configuration. * Used for audit trail purposes to track who made changes. * Maximum length is 255 characters. */ @Size(max = 255) public String updatedBy; /** * The timestamp when this web authentication configuration was last updated.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/UploadForm.java
*/ @Required public MultipartFormFile designFile; /** * The name for the design file being uploaded. * Must not contain invalid file system characters like backslash, colon, asterisk, etc. */ @Pattern(regexp = "^[^\\\\|/|:|\\*|?|\"|<|>|\\|]+$", message = "{errors.design_file_name_is_invalid}") public String designFileName; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java
// Create a script longer than 100 characters (default max length) StringBuilder sb = new StringBuilder(); for (int i = 0; i < 120; i++) { sb.append("a"); } String longScript = sb.toString(); String result = activityHelper.normalizeScript(longScript); // Should be truncated to 100 characters (97 + "...") assertEquals(100, result.length());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 11:45:43 GMT 2026 - 24.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java
assertEquals(plainText, decrypted); } @Test public void test_invertibleCryptography_withSpecialCharacters() { // Test with special characters InvertibleCryptographer cryptographer = securityResourceProvider.providePrimaryInvertibleCryptographer(); assertNotNull(cryptographer); String plainText = "!@#$%^&*(){}[]|\\:;\"'<>,.?/~`";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.2K bytes - Click Count (0)