- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for PurgeThumbnailJob (0.06 sec)
-
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 }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
PurgeThumbnailJob result = purgeThumbnailJob.expiry(-1000L); // Test method chaining assertSame(purgeThumbnailJob, result); // Test value was not changed assertEquals(originalExpiry, purgeThumbnailJob.getExpiry()); } // Test expiry setter with small positive value public void test_expiry_smallPositiveValue() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (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>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 22:21:45 UTC 2025 - 1.5K bytes - Viewed (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}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Nov 07 06:19:20 UTC 2024 - 4.2K bytes - Viewed (0)