Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 373 for mesiace (0.04 seconds)

  1. src/main/java/org/codelibs/fess/llm/LlmClientManager.java

            }
            return client;
        }
    
        // RAG workflow delegation methods
    
        /**
         * Detects the intent of a user message using the configured LLM client.
         *
         * @param userMessage the user's message
         * @return the detected intent with extracted keywords
         * @throws LlmException if LLM is not available
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 11:10:51 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            // Create a very long exception message
            StringBuilder longMessage = new StringBuilder("Error: ");
            for (int i = 0; i < 100; i++) {
                longMessage.append("This is a very long error message part ").append(i).append(". ");
            }
            final String errorMessage = longMessage.toString();
    
            // Create mock SearchEngineClient that throws exception with long message
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

            // Test constructor with message only
            String message = "SSO authentication failed";
            SsoProcessException exception = new SsoProcessException(message);
    
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and Exception cause
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java

        }
    
        @Test
        public void test_constructor_withSpecialCharactersInMessage() {
            // Test constructor with special characters in message
            final String message = "Job failed with special chars: \n\t\r\"'<>&";
            final JobProcessingException exception = new JobProcessingException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
    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)
  5. src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java

            // Test constructor with message only
            String message = "Test exception message";
            FessSystemException exception = new FessSystemException(message);
    
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and cause
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  6. 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)
  7. src/main/java/org/codelibs/fess/llm/LlmMessage.java

        /** The role of the message sender. */
        private String role;
    
        /** The content of the message. */
        private String content;
    
        /**
         * Default constructor.
         */
        public LlmMessage() {
        }
    
        /**
         * Creates a new message with the specified role and content.
         *
         * @param role the message role
         * @param content 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/validation/CronExpression.java

    @Retention(RUNTIME)
    @Documented
    @Constraint(validatedBy = CronExpressionValidator.class)
    public @interface CronExpression {
    
        /**
         * The error message when validation fails.
         * @return the error message
         */
        String message() default "{org.lastaflute.validator.constraints.CronExpression.message}";
    
        /**
         * The validation groups this constraint belongs to.
         * @return the groups
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  10. src/main/webapp/css/chat.css

    .message-content p {
        margin: 0.5rem 0;
    }
    
    .message-content p:first-child {
        margin-top: 0;
    }
    
    .message-content p:last-child {
        margin-bottom: 0;
    }
    
    /* Headings in messages */
    .message-content h1, .message-content h2, .message-content h3,
    .message-content h4, .message-content h5, .message-content h6 {
        margin: 0.75rem 0 0.375rem; font-weight: 600; line-height: 1.3; color: #172b4d;
    }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
Back to Top