Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 488 for 1000L (0.04 sec)

  1. src/main/java/org/codelibs/fess/exec/Crawler.java

                        String command;
                        while (true) {
                            try {
                                while (!reader.ready()) {
                                    ThreadUtil.sleep(1000L);
                                }
                                command = reader.readLine().trim();
                                if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbSession.java

                do {
                    if (dc_list_expiration < now) {
                        final NbtAddress[] list = NbtAddress.getAllByName(DOMAIN, 0x1C, null, null);
                        dc_list_expiration = now + CACHE_POLICY * 1000L;
                        if (list != null && list.length > 0) {
                            dc_list = list;
                        } else { /* keep using the old list */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

                SMBUtil.writeInt2(1, buffer1, 2);
                SMBUtil.writeInt8(1000, buffer1, 40);
                SMBUtil.writeInt8(500, buffer1, 48);
                SMBUtil.writeInt4(0x01, buffer1, 56);
    
                response.readBytesWireFormat(buffer1, 0);
    
                assertEquals(1, response.getCloseFlags());
                assertEquals(1000, response.getAllocationSize());
                assertEquals(500, response.getEndOfFile());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K 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/jcifs/smb/DfsImpl.java

        private static class CacheEntry<T> {
    
            long expiration;
            Map<String, T> map;
    
            CacheEntry(final long ttl) {
                this.expiration = System.currentTimeMillis() + ttl * 1000L;
                this.map = new ConcurrentHashMap<>();
            }
        }
    
        private static class NegativeCacheEntry<T> extends CacheEntry<T> {
    
            /**
             * @param ttl
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
  6. 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)
  7. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

        }
    
        @Test
        @DisplayName("Should generate multiple unique nonces without collision")
        void testGenerateMultipleNoncesNoCollision() {
            // Given
            int count = 10000; // Test with larger number for collision detection
            Set<String> nonceSet = new HashSet<>();
    
            // When
            for (int i = 0; i < count; i++) {
                byte[] nonce = encryptionContext.generateNonce();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top