Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for 180000 (0.11 seconds)

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

  1. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            final long expiredTime = ((Number) body.get("expiredTime")).longValue();
            assertTrue(createdTime >= before);
            assertTrue(createdTime <= after);
            // heartbeat TTL = 180000
            assertEquals(180000L, expiredTime - createdTime);
        }
    
        @Test
        public void test_publishEvent_usesConfigTtl() {
            setupMockFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  2. src/main/resources/fess_config.properties

    -XX:G1HeapRegionSize=1m\n\
    -XX:MaxGCPauseMillis=60000\n\
    -XX:G1NewSizePercent=5\n\
    -XX:G1MaxNewSizePercent=5\n\
    -Djcifs.smb.client.responseTimeout=30000\n\
    -Djcifs.smb.client.soTimeout=35000\n\
    -Djcifs.smb.client.connTimeout=60000\n\
    -Djcifs.smb.client.sessionTimeout=60000\n\
    -Djcifs.smb1.smb.client.connTimeout=60000\n\
    -Djcifs.smb1.smb.client.soTimeout=35000\n\
    -Djcifs.smb1.smb.client.responseTimeout=30000\n\
    -Dio.netty.noUnsafe=true\n\
    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)
  3. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

        public void test_addHistoryWithBudget_turnBasedPacking_newestTurnOnly() {
            final List<LlmMessage> history = new ArrayList<>();
            history.add(LlmMessage.user("A".repeat(100))); // 100
            history.add(LlmMessage.assistant("B".repeat(100))); // 100
            history.add(LlmMessage.user("Q2")); // 2
            history.add(LlmMessage.assistant("A2")); // 2
            final LlmChatRequest request = new LlmChatRequest();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            for (int i = 0; i < 10000; i++) {
                if (i % 1000 == 0) {
                    logger.info("count:" + i + ", " + MemoryUtil.getMemoryUsageLog());
                }
                ResponseData responseData = new ResponseData();
                responseData.setCharSet("UTF-8");
                responseData.setContentLength(data.length());
                responseData.setExecutionTime(1000L);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                return value.longValue();
            }
            value = getAsInteger("elasticsearch.heartbeat_interval");
            if (value != null) {
                return value.longValue();
            }
            return 10000L;
        }
    
        // ===================================================================================
        //                                                                         Rate Limit
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        /** OAuth2 authorization code parameter name. */
        protected static final String CODE = "code";
    
        /** Timeout for token acquisition in milliseconds. */
        protected long acquisitionTimeout = 30 * 1000L;
    
        /** Cache for storing group information to reduce API calls. */
        protected Cache<String, Pair<String[], String[]>> groupCache;
    
        /** Group cache expiry time in seconds. */
    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)
Back to Top