Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 650 for 1000L (0.11 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            searchRenderData.setRequestedTime(timestamp);
            assertEquals(timestamp, searchRenderData.getRequestedTime());
    
            // Test with negative value
            searchRenderData.setRequestedTime(-1000L);
            assertEquals(-1000L, searchRenderData.getRequestedTime());
        }
    
        public void test_setAndGetQueryId() {
            // Test with null
            searchRenderData.setQueryId(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java

         */
        public PurgeThumbnailJob() {
            // Default constructor
        }
    
        /** Expiration time for thumbnails in milliseconds (default: 30 days) */
        private long expiry = 30 * 24 * 60 * 60 * 1000L;
    
        /**
         * Executes the thumbnail purging job.
         * Removes thumbnail files that have exceeded the configured expiration time.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AccessTimeoutTarget.java

                if (logger.isDebugEnabled()) {
                    logger.debug("Interrupt {}", runningThread);
                }
                runningThread.interrupt();
                ThreadUtil.sleepQuietly(1000L);
                count++;
            }
        }
    
        /**
         * Stops the timeout target by setting the running flag to false.
         */
        public void stop() {
            if (logger.isDebugEnabled()) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java

            // Prepare test data with sectPerAlloc = 1
            byte[] buffer = new byte[22];
            int idFileSystem = 0x11111111;
            int sectPerAlloc = 1;
            long alloc = 1000L;
            long free = 500L;
            int bytesPerSect = 512;
    
            // Encode test data
            int offset = 0;
            SMBUtil.writeInt4(idFileSystem, buffer, offset);
            offset += 4;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                int chunkCount = 50;
                SrvCopychunk[] chunks = new SrvCopychunk[chunkCount];
    
                for (int i = 0; i < chunkCount; i++) {
                    chunks[i] = new SrvCopychunk(i * 1000L, i * 2000L, i * 100);
                }
    
                SrvCopychunkCopy copy = new SrvCopychunkCopy(sourceKey, chunks);
                byte[] buffer = new byte[HEADER_SIZE + (chunkCount * CHUNK_SIZE)];
    
                // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            SearchResult result = SearchResult.create()
                    .allRecordCount(1000L)
                    .allRecordCountRelation("eq")
                    .queryTime(150L)
                    .partialResults(true)
                    .addDocument(doc)
                    .facetResponse(facetResponse)
                    .build();
    
            assertEquals(1000L, result.getAllRecordCount());
            assertEquals("eq", result.getAllRecordCountRelation());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            assertEquals(50, indexingHelper.defaultRowSize);
    
            indexingHelper.setDefaultRowSize(1000);
            assertEquals(1000, indexingHelper.defaultRowSize);
        }
    
        public void test_setRequestInterval() {
            indexingHelper.setRequestInterval(1000L);
            assertEquals(1000L, indexingHelper.requestInterval);
    
            indexingHelper.setRequestInterval(0L);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java

        @Override
        public void setUp() throws Exception {
            super.setUp();
            configHelper = new TestConfigHelper();
        }
    
        public void test_setReloadInterval() {
            assertEquals(1000L, configHelper.reloadInterval);
    
            configHelper.setReloadInterval(5000L);
            assertEquals(5000L, configHelper.reloadInterval);
    
            configHelper.setReloadInterval(0L);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 00:03:47 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java

            @DisplayName("Should verify all interface methods can be mocked")
            void testAllMethodsCanBeMocked() {
                // Setup all mock behaviors
                when(mockReferralData.getExpiration()).thenReturn(1000L);
                when(mockReferralData.getPathConsumed()).thenReturn(10);
                when(mockReferralData.getDomain()).thenReturn("domain");
                when(mockReferralData.getLink()).thenReturn("link");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/timer/TimeoutManager.java

                    for (final TimeoutTask task : getExpiredTask()) {
                        processTask(executorService, task);
                    }
                    Thread.sleep(1000L);
                }
            } catch (final InterruptedException e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Interrupted.", e);
                }
            } finally {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top