- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 34 for Purge (0.04 sec)
-
cmd/batch-expire_gen.go
err = msgp.WrapError(err, "Name") return } case "Purge": var zb0004 uint32 zb0004, err = dc.ReadMapHeader() if err != nil { err = msgp.WrapError(err, "Purge") return } for zb0004 > 0 { zb0004-- field, err = dc.ReadMapKeyPtr() if err != nil { err = msgp.WrapError(err, "Purge") return } switch msgp.UnsafeString(field) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 01 12:53:30 UTC 2024 - 19.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
recentFile.createNewFile(); recentFile.setLastModified(System.currentTimeMillis()); // Override purge to avoid client operations ThumbnailManager testManager = new ThumbnailManager() { @Override public long purge(long expiry) { // Just count files that would be deleted return 1L; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
cmd/batch-expire.go
Size BatchJobSizeFilter `yaml:"size" json:"size"` Type string `yaml:"type" json:"type"` Name string `yaml:"name" json:"name"` Purge BatchJobExpirePurge `yaml:"purge" json:"purge"` } var _ yaml.Unmarshaler = &BatchJobExpireFilter{} // UnmarshalYAML - BatchJobExpireFilter extends unmarshal to extract line, col // information
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Apr 22 11:16:32 UTC 2025 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
import jakarta.annotation.Resource; /** * This class is a command-line application for creating and managing the suggest index. * It provides functionality to index words from documents and search logs, as well as * to purge old suggest data. */ public class SuggestCreator { /** * Constructs a new suggest creator. */ public SuggestCreator() { // do nothing }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
helm-releases/minio-2.0.1.tgz
code of `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} ls myminio/$BUCKET > /dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge) # Ensure bucket exists, purging if asked to createBucket() { BUCKET=$1 POLICY=$2 PURGE=$3 VERSIONING=$4 # Purge the bucket, if set & exists # Since PURGE is user input, check explicitly for `true` if [ $PURGE = true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 31 09:09:09 UTC 2021 - 13.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
} // Test purge with no purge search log public void test_purge_noPurgeSearchLog() { // Test when purge search log is disabled SuggestCreator.Options options = new SuggestCreator.Options(); assertNotNull(options); } // Test create and purge full flow public void test_createAndPurge_fullFlow() { // Test full flow of create and purge
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
assertFalse(deleteUserInfoCalled[0]); // Assert result contains skip messages assertTrue(result.contains("Skipped to purge search logs")); assertTrue(result.contains("Skipped to purge job logs")); assertTrue(result.contains("Skipped to purge user info logs")); } // Test crawlingInfoService exception handling public void test_execute_crawlingInfoException() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
helm-releases/minio-3.0.0.tgz
code of `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} ls myminio/$BUCKET > /dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge) # Ensure bucket exists, purging if asked to createBucket() { BUCKET=$1 POLICY=$2 PURGE=$3 VERSIONING=$4 # Purge the bucket, if set & exists # Since PURGE is user input, check explicitly for `true` if [ $PURGE = true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 02 01:47:43 UTC 2021 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
// ============================================================ // Data Purge Property Keys // ============================================================ /** Property key for search log purge day configuration. */ public static final String PURGE_SEARCH_LOG_DAY_PROPERTY = "purge.searchlog.day"; /** Property key for user info purge day configuration. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
cmd/bucket-replication-utils.go
// VersionPurgeStatusInternal is internally in the format "arn1=PENDING;arn2=COMPLETED;" VersionPurgeStatusInternal string // stringified representation of all version purge statuses ReplicateDecisionStr string // stringified representation of replication decision for each target
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 26K bytes - Viewed (0)