- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for purgeThumbnailJob (0.08 seconds)
-
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
*/ public class PurgeThumbnailJob { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(PurgeThumbnailJob.class); /** * Default constructor for PurgeThumbnailJob. * Creates a new instance of the thumbnail purging job with default expiry time (30 days). */ public PurgeThumbnailJob() { // Default constructor }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
long originalExpiry = purgeThumbnailJob.getExpiry(); PurgeThumbnailJob result = purgeThumbnailJob.expiry(0); // Test method chaining assertSame(purgeThumbnailJob, result); // Test value was not changed assertEquals(originalExpiry, purgeThumbnailJob.getExpiry()); } // Test expiry setter with negative value (should not change) @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.4K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
{"index":{"_index":"fess_config.scheduled_job","_id":"thumbnail_purger"}} {"name":"Thumbnail Purger","target":"all","cronExpression":"0 0 * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"purgeThumbnailJob\").expiry(30 * 24 * 60 * 60 * 1000L).execute();","jobLogging":true,"crawler":false,"available":true,"sortOrder":7,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0}Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5K bytes - Click Count (0) -
src/main/resources/fess_job.xml
</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> <component name="updateLabelJob" class="org.codelibs.fess.job.UpdateLabelJob" instance="prototype"> </component>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 1.7K bytes - Click Count (0)