Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 11 for blive (0.03 seconds)

  1. src/main/resources/fess_indices/_aws/fess.json

            },
            "danish_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Hej", "verden", "Søg"]
            },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_cloud/fess.json

            },
            "danish_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Hej", "verden", "Søg"]
            },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

            }
    
            // Verify alive is false
            assertFalse("alive should be false after all stop() calls", dataStore.alive);
        }
    
        /**
         * Test that multiple threads can safely read alive field while one writes.
         */
        @Test
        public void test_aliveField_concurrentReadWrite() throws Exception {
            dataStore.alive = true;
    
            final int readerCount = 5;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (1)
  4. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            // Wait for completion with longer timeout
            indexUpdater.join(3000);
    
            assertFalse(errorOccurred.get());
            // Thread may still be alive in test environment, just check no errors
            // // Thread may still be alive in test environment
            // assertFalse(indexUpdater.isAlive());
        }
    
        // Test updateDocument with boost matcher
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/orig/view/chat/chat.jsp

    				<div class="card shadow-sm">
    					<div class="card-header d-flex justify-content-between align-items-center">
    						<div id="statusArea" class="status-lozenge status-ready" role="status" aria-live="polite">
    							<i class="fa fa-robot me-1" aria-hidden="true"></i>
    							<span class="status-text"><la:message key="labels.chat_status_ready" /></span>
    						</div>
    						<div class="d-flex gap-2">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java

            ComponentUtil.setFessConfig(fessConfig);
    
            // Execute
            String result = pingSearchEngineJob.execute();
    
            // Assert
            assertEquals("test-cluster is alive.", result);
        }
    
        // Test RED status with state change
        @Test
        public void test_execute_redStatusNoChange() {
            // Setup mock components
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/view/chat/chat.jsp

    				<div class="card shadow-sm">
    					<div class="card-header d-flex justify-content-between align-items-center">
    						<div id="statusArea" class="status-lozenge status-ready" role="status" aria-live="polite">
    							<i class="fa fa-robot me-1" aria-hidden="true"></i>
    							<span class="status-text"><la:message key="labels.chat_status_ready" /></span>
    						</div>
    						<div class="d-flex gap-2">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

            response.setContentType("text/event-stream");
            response.setCharacterEncoding("UTF-8");
            response.setHeader("Cache-Control", "no-cache");
            response.setHeader("Connection", "keep-alive");
            response.setHeader("X-Accel-Buffering", "no"); // Disable nginx buffering
    
            try (final PrintWriter writer = response.getWriter()) {
                final String userId = getUserId(request);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

         */
        public EntraIdAuthenticator() {
            // Default constructor
        }
    
        // New configuration keys for Entra ID
        /** Configuration key for Entra ID state time-to-live. */
        protected static final String ENTRAID_STATE_TTL = "entraid.state.ttl";
    
        /** Configuration key for Entra ID authority URL. */
        protected static final String ENTRAID_AUTHORITY = "entraid.authority";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
  10. src/main/resources/fess_config.properties

    coordinator.poll.interval=60
    # Time-to-live (ms) for instance heartbeat documents.
    coordinator.heartbeat.ttl=180000
    # Time-to-live (ms) for operation lock documents.
    coordinator.operation.ttl=7200000
    # Maximum number of retries for acquiring an operation lock.
    coordinator.operation.retry=3
    # Time-to-live (ms) for event notification documents.
    coordinator.event.ttl=600000
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
Back to Top