Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for generateThumbnailJob (0.09 sec)

  1. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

        /**
         * Default constructor for the GenerateThumbnailJob.
         */
        public GenerateThumbnailJob() {
            super();
        }
    
        /**
         * Sets the number of threads to use for thumbnail generation.
         *
         * @param numOfThreads the number of threads
         * @return this job instance for method chaining
         */
        public GenerateThumbnailJob numOfThreads(final int numOfThreads) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_job.xml

    	</component>
    	<component name="purgeLogJob" class="org.codelibs.fess.job.PurgeLogJob" instance="prototype">
    	</component>
    	<component name="generateThumbnailJob" class="org.codelibs.fess.job.GenerateThumbnailJob" instance="prototype">
    	</component>
    	<component name="purgeThumbnailJob" class="org.codelibs.fess.job.PurgeThumbnailJob" instance="prototype">
    	</component>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 12 22:21:45 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java

            assertEquals(1, thumbnailJob.numOfThreads);
    
            GenerateThumbnailJob result = thumbnailJob.numOfThreads(4);
    
            assertSame(thumbnailJob, result);
            assertEquals(4, thumbnailJob.numOfThreads);
        }
    
        // Test cleanup setter
        public void test_cleanup() {
            assertFalse(thumbnailJob.cleanup);
    
            GenerateThumbnailJob result = thumbnailJob.cleanup();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
Back to top