Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for infrastructure (0.33 seconds)

  1. src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java

        }
    
        @Test
        public void test_nullSafeLogout() {
            SpnegoAuthenticator authenticator = new SpnegoAuthenticator();
    
            // SPNEGO logout should return null (relies on Kerberos infrastructure)
            String logoutUrl = authenticator.logout(null);
            assertNull(logoutUrl);
        }
    
        @Test
        public void test_nullSafeGetResponse() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  2. CLAUDE.md

    │   ├── service/               # Business logic services
    │   ├── pager/                 # Pagination handlers
    │   └── job/                   # Background jobs
    ├── api/                       # REST API infrastructure
    ├── opensearch/                # DBFlute integration for OpenSearch
    │   ├── config/                # Config index (crawl configs, schedules)
    │   ├── log/                   # Log index (search logs, click logs)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  3. MIGRATION.md

    - **Search Features**: Facets, suggestions, security filtering, ranking rules
    - **Integration Points**: Applications consuming search APIs
    - **User Permissions**: Access control and label configurations
    
    ### 2. Infrastructure Requirements
    
    Ensure your Fess environment meets these requirements:
    
    - **Java**: JDK 17 or later
    - **Memory**: Minimum 4GB RAM (8GB+ recommended for production)
    - **Storage**: At least 2x your current index size
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            return null;
        }
    
        /**
         * Performs logout for the specified user.
         *
         * SPNEGO authentication relies on the underlying Kerberos infrastructure
         * for session management, so no specific logout URL is provided.
         *
         * @param user The user to logout
         * @return Always returns null as SPNEGO doesn't provide a logout URL
         */
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  5. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

    import com.fasterxml.jackson.databind.ObjectMapper;
    
    import jakarta.servlet.http.HttpSession;
    
    /**
     * Abstract base class for LLM client implementations.
     *
     * 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.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
Back to Top