- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 189 for cleanup1 (0.06 sec)
-
docs/resiliency/resiliency-tests.sh
#!/usr/bin/env bash TESTS_RUN_STATUS=1 function cleanup() { echo "Cleaning up MinIO deployment" docker compose -f "${DOCKER_COMPOSE_FILE}" down --volumes for container in $(docker ps -q); do echo Removing docker $container docker rm -f $container >/dev/null 2>&1 docker wait $container done } function cleanup_and_prune() { cleanup docker system prune --volumes --force docker image prune --all --force }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Dec 21 04:24:45 UTC 2024 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
DirectoryCacheScope.IMMEDIATE_CHILDREN); // Shutdown directoryLeaseManager.shutdown(); // Verify cleanup assertNull(directoryLeaseManager.getCacheEntry(directoryPath)); } @Test public void testMultipleDirectories() { String dir1 = "/test/dir1"; String dir2 = "/test/dir2";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
cmd/xl-storage_test.go
} t.Cleanup(func() { os.Chmod(slashpath.Join(permDeniedDir, "mybucket"), 0o775) }) if err = os.Chmod(permDeniedDir, 0o400); err != nil { t.Fatalf("Unable to change permission to temporary directory %v. %v", permDeniedDir, err) } t.Cleanup(func() { os.Chmod(permDeniedDir, 0o775) }) return permDeniedDir }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 66K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
cipher.init(encrypt ? Cipher.ENCRYPT_MODE : Cipher.DECRYPT_MODE, keySpec, gcmSpec); return cipher; } finally { // Guaranteed cleanup of all key material if (key != null) { SecureKeyManager.secureWipe(key); } if (keyCopy != null) { SecureKeyManager.secureWipe(keyCopy);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
* * @param sessionId the session ID to update * @param name the name to set for the crawling session (uses system name if blank) * @param dayForCleanup number of days until cleanup (sets expiration if >= 0) * @throws FessSystemException if unable to store the updated crawling session */ public void updateParams(final String sessionId, final String name, final int dayForCleanup) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
cmd/prepare-storage.go
} var ( tries int verbose bool ) // Initialize all storage disks storageDisks, errs := initStorageDisksWithErrors(endpoints, storageOpts{cleanUp: true, healthCheck: true}) if err := checkDiskFatalErrs(errs); err != nil { return nil, nil, err } defer func() { if err == nil && format != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 11.1K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.32.md
- [Changes by Kind](#changes-by-kind-2) - [Feature](#feature-1) - [Bug or Regression](#bug-or-regression-2) - [Other (Cleanup or Flake)](#other-cleanup-or-flake) - [Dependencies](#dependencies-2) - [Added](#added-2) - [Changed](#changed-2) - [Removed](#removed-2) - [v1.32.5](#v1325) - [Downloads for v1.32.5](#downloads-for-v1325)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureCredentialStorageTest.java
public void tearDown() throws Exception { if (storage != null && !storage.isDestroyed()) { try { storage.close(); } catch (Exception e) { // Ignore cleanup exceptions } } if (masterPassword != null) { Arrays.fill(masterPassword, '\0'); } } @Test public void testEncryptDecrypt() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
Makefile
@echo "Installing minio binary to '$(GOPATH)/bin/minio'" @mkdir -p $(GOPATH)/bin && cp -af $(PWD)/minio $(GOPATH)/bin/minio @echo "Installation successful. To learn more, try \"minio --help\"." clean: ## cleanup all generated assets @echo "Cleaning up all the generated files" @find . -name '*.test' | xargs rm -fv @find . -name '*~' | xargs rm -fv @find . -name '.#*#' | xargs rm -fv @find . -name '#*#' | xargs rm -fv
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Apr 27 00:44:22 UTC 2025 - 11.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.22.md
- [Changelog since v1.22.16](#changelog-since-v12216) - [Changes by Kind](#changes-by-kind) - [Feature](#feature) - [Bug or Regression](#bug-or-regression) - [Other (Cleanup or Flake)](#other-cleanup-or-flake) - [Dependencies](#dependencies) - [Added](#added) - [Changed](#changed) - [Removed](#removed) - [v1.22.16](#v12216) - [Downloads for v1.22.16](#downloads-for-v12216)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Dec 13 12:43:45 UTC 2022 - 454.1K bytes - Viewed (0)