- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 353 for mesiace (0.05 seconds)
-
src/main/java/org/codelibs/fess/entity/ChatMessage.java
/** The unique identifier for this message. */ private String id; /** The role of the message sender (user or assistant). */ private String role; /** The content of the message. */ private String content; /** The timestamp when the message was created. */ private LocalDateTime timestamp; /** The list of sources referenced in this message. */ private List<ChatSource> sources;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/helper/NotificationHelper.java
logger.warn("Failed to send {} to {}.", body, url, e); } })); } /** * Converts the discloser to a Slack message format. * * @param discloser the mail posting discloser * @return the formatted Slack message */ protected String toSlackMessage(final SMailPostingDiscloser discloser) { final StringBuilder buf = new StringBuilder(100);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmException.java
/** * Creates a new exception with the specified message. * * @param message the error message */ public LlmException(final String message) { super(message); errorCode = ERROR_UNKNOWN; } /** * Creates a new exception with the specified message and cause. * * @param message the error message * @param cause the cause of the exception */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 3.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
@Test public void test_constructor_withMessage() { // Test with message only String message = "Data store error occurred"; DataStoreException exception = new DataStoreException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); assertTrue(exception instanceof FessSystemException);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
@Test public void test_constructorWithMessage() { // Test constructor with message only String message = "GSA configuration error occurred"; GsaConfigException exception = new GsaConfigException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/LdapOperationException.java
* * @param message The detail message. * @param cause The cause. */ public LdapOperationException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new LDAP operation exception with the specified detail message. * * @param message The detail message. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.4K bytes - Click Count (0) -
src/main/resources/fess_message_nl.properties
constraints.Mod11Check.message = De Modulo 11 checksum van {value} is onjuist. constraints.ModCheck.message = De {modType} checksum van {value} is onjuist. constraints.NotBlank.message = {item} mag niet leeg zijn. constraints.NotEmpty.message = {item} mag niet leeg zijn. constraints.ParametersScriptAssert.message = De scriptuitdrukking "{script}" is niet waar. constraints.Range.message = {item} moet tussen {min} en {max} liggen.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 12.9K bytes - Click Count (0) -
src/main/resources/fess_message_ru.properties
constraints.ScriptAssert.message = Скриптовое выражение "{script}" не является истинным. constraints.URL.message = {item} - неверный URL-адрес. constraints.Required.message = {item} обязательно. constraints.TypeInteger.message = {item} должно быть числом. constraints.TypeLong.message = {item} должно быть числом. constraints.TypeFloat.message = {item} должно быть числом. constraints.TypeDouble.message = {item} должно быть числом.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 17.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
@Test public void test_constructor_withMessage() { // Test constructor with message only String message = "Command execution failed"; CommandExecutionException exception = new CommandExecutionException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.4K bytes - Click Count (0)