Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 345 for 1000L (0.01 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            generator1.setCommandList(Collections.singletonList("echo test1"));
            generator2.setCommandList(Collections.singletonList("echo test2"));
    
            generator1.setCommandTimeout(1000L);
            generator2.setCommandTimeout(2000L);
    
            assertTrue("Multiple generators should work independently", true);
        }
    
        // Test command string construction edge cases
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        }
    
        /** Interval for checking user information in milliseconds (default: 10 minutes). */
        protected long userCheckInterval = 10 * 60 * 1000L; // 10 min
    
        /** Maximum size of the user information cache. */
        protected int userInfoCacheSize = 10000;
    
        /** Queue for storing search logs. */
        protected Queue<SearchLog> searchLogQueue = new ConcurrentLinkedQueue<>();
    
        /** Queue for storing click logs. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.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. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

                return 100;
            }
    
            @Override
            public String getIndexerWebfsMaxDocumentRequestSize() {
                return "1000";
            }
    
            @Override
            public Integer getIndexerUnprocessedDocumentSizeAsInteger() {
                return 1000;
            }
    
            @Override
            public boolean getIndexerClickCountEnabledAsBoolean() {
                return true;
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        /** Default interval time in milliseconds for file system crawling. */
        public static final int DEFAULT_INTERVAL_TIME_FOR_FS = 1000;
    
        /** Default interval time in milliseconds for web crawling. */
        public static final int DEFAULT_INTERVAL_TIME_FOR_WEB = 10000;
    
        /** Default number of threads for file system crawling. */
        public static final int DEFAULT_NUM_OF_THREAD_FOR_FS = 5;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        /** The end-of-life timestamp for the application. */
        protected long eolTime;
    
        private short systemCpuPercent;
    
        private long systemCpuCheckTime;
    
        private long systemCpuCheckInterval = 1000L;
    
        /** A map of listeners for configuration updates. */
        protected Map<String, Supplier<String>> updateConfigListenerMap = new HashMap<>();
    
        /** A set of names of threads that are currently waiting. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/LongMath.java

        3, 2, 2, 2, 1, 1, 1, 0, 0, 0
      };
    
      @GwtIncompatible // TODO
      @VisibleForTesting
      static final long[] powersOf10 = {
        1L,
        10L,
        100L,
        1000L,
        10000L,
        100000L,
        1000000L,
        10000000L,
        100000000L,
        1000000000L,
        10000000000L,
        100000000000L,
        1000000000000L,
        10000000000000L,
        100000000000000L,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                } else if (logger.isDebugEnabled()) {
                    logger.debug("[{}] Failed to access to Fesen ({})", i, SystemUtil.getSearchEngineHttpAddress(), cause);
                }
                ThreadUtil.sleep(1000L);
            }
            final String message =
                    "Fesen (" + SystemUtil.getSearchEngineHttpAddress() + ") is not available. Check the state of your Fesen cluster ("
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/InetAddressOrderTest.kt

    import org.junit.jupiter.api.Test
    
    @Suppress("ktlint:standard:property-naming")
    class InetAddressOrderTest {
      val ipv4_10_0_0_6 = Inet4Address.getByName("10.0.0.6")
      val ipv4_10_0_0_1 = Inet4Address.getByName("10.0.0.1")
      val ipv4_10_0_0_4 = Inet4Address.getByName("10.0.0.4")
      val ipv6_ab = Inet6Address.getByName("::ac")
      val ipv6_fc = Inet6Address.getByName("::fc")
    
      @Test fun prioritiseIpv6Example() {
        val result =
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

            CacheBuilder.newBuilder().expireAfterWrite(20000, MILLISECONDS).ticker(fakeTicker).build();
    
        cache.put(654, 2675);
        fakeTicker.advance(10000, MILLISECONDS);
        cache.put(2456, 56);
        cache.put(2, 15);
    
        fakeTicker.advance(10001, MILLISECONDS);
    
        assertTrue(cache.asMap().containsValue(15));
        assertTrue(cache.asMap().containsValue(56));
        assertFalse(cache.asMap().containsValue(2675));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 14.4K bytes
    - Viewed (0)
Back to top