Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 14 of 14 for isElement (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            }
    
            @Override
            public void service(jakarta.servlet.ServletRequest req, jakarta.servlet.ServletResponse res) {
                // Not used in tests
            }
    
            // Implement other required methods with default/empty implementations
            @Override
            public Object getAttribute(String name) {
                return null;
            }
    
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 31.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                // This is a critical security vulnerability. The ID token should be validated
                // to ensure it was issued by the expected OpenID Connect provider and has not been tampered with.
                // TODO: Implement JWT signature validation using the provider's public key
    
                final Map<String, Object> attributes = new HashMap<>();
                attributes.put("accesstoken", tr.getAccessToken());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Dec 14 01:18:25 GMT 2025
    - 16.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

     *
     * Provides shared infrastructure (HTTP client, availability checking) and
     * default implementations of RAG workflow methods with injectable prompt templates.
     * Subclasses implement provider-specific chat/streamChat and checkAvailabilityNow.
     */
    public abstract class AbstractLlmClient implements LlmClient {
    
        private static final Logger logger = LogManager.getLogger(AbstractLlmClient.class);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            }
    
            void testAddIntentHistory(final LlmChatRequest request, final List<LlmMessage> history) {
                addIntentHistory(request, history);
            }
    
            // Implement abstract methods
    
            @Override
            public LlmChatResponse chat(final LlmChatRequest request) {
                // Capture the full request and user message for verification
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
Back to Top