- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 184 for cleanup1 (0.04 sec)
-
cmd/erasure-object_test.go
} if test.expectedErr == nil && actualErr != nil { t.Errorf("Expected to pass, but failed with %s", actualErr) } }) } // Cleanup backend directories removeRoots(fsDirs) } func TestDeleteObjectsVersionedTwoPools(t *testing.T) { ctx, cancel := context.WithCancel(t.Context()) defer cancel()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 38.3K bytes - Viewed (0) -
docs/site-replication/run-multi-site-oidc.sh
#!/usr/bin/env bash # shellcheck disable=SC2120 exit_1() { cleanup echo "minio1 ============" cat /tmp/minio1_1.log echo "minio2 ============" cat /tmp/minio2_1.log echo "minio3 ============" cat /tmp/minio3_1.log exit 1 } cleanup() { echo "Cleaning up instances of MinIO" pkill minio pkill -9 minio rm -rf /tmp/minio{1,2,3} } cleanup unset MINIO_KMS_KES_CERT_FILE
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
this.lock = new ReentrantReadWriteLock(); // Start cleanup executor for expired leases this.cleanupExecutor = Executors.newSingleThreadScheduledExecutor(r -> { Thread t = new Thread(r, "LeaseManager-Cleanup"); t.setDaemon(true); return t; }); // Schedule periodic cleanup long cleanupInterval = context.getConfig().getLeaseTimeout();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessIntegrationTest.java
assertTrue(mockService.getPort() > 0); assertEquals(0, mockService.getRegistrationCount()); } /** * Test the complete workflow of witness registration, notification, and cleanup */ @Test void testCompleteWitnessWorkflow() throws Exception { // Simulate complete witness workflow // 1. Service discovery and registration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserInfoService.java
*/ public UserInfoService() { // Default constructor } /** * Deletes user information records older than the specified number of days. * This method is used for data cleanup and maintenance operations. * * @param days the number of days to keep user information records */ public void deleteBefore(final int days) { userInfoBhv.queryDelete(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java
* Default constructor. */ public MailForm() { // Default constructor } /** The incremental crawling setting. */ public String incrementalCrawling; /** The day for cleanup setting. */ public String dayForCleanup; /** The crawling thread count setting. */ public String crawlingThreadCount; /** The search log setting. */ public String searchLog;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
cmd/erasure-multipart.go
paths := []string{ dstEntry, dstEntry + ".meta", } // cleanup existing paths first across all drives. er.cleanupMultipartPath(ctx, paths...) g := errgroup.WithNErrs(len(disks)) // Rename file on all underlying storage disks. for index := range disks {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 47.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
*/ public abstract Object execute(String scriptType, String script); /** * Initiates shutdown of the job executor. * This method notifies the shutdown listener to perform cleanup operations. */ public void shutdown() { shutdownListener.onShutdown(); } /** * Adds a shutdown listener to be notified when the executor is shutting down. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
} /** * Deletes all crawling sessions and their parameters except for the specified active sessions. * This is a cleanup operation that removes inactive session data while preserving active ones. * * @param activeSessionId a set of session IDs to preserve during the cleanup operation */ public void deleteOldSessions(final Set<String> activeSessionId) { final List<CrawlingInfo> activeSessionList =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/FinalizableSoftReference.java
* @param queue that should finalize the referent */ protected FinalizableSoftReference(@Nullable T referent, FinalizableReferenceQueue queue) { super(referent, queue.queue); queue.cleanUp(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.5K bytes - Viewed (0)