- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 163 for Drive (0.08 sec)
-
cmd/global-heal.go
bgSeq, found := globalBackgroundHealState.getHealSequenceByToken(bgHealingUUID) if !found { return errors.New("no local healing sequence initialized, unable to heal the drive") } scanMode := madmin.HealNormalScan // Make sure to copy since `buckets slice` // is modified in place by tracker. healBuckets := make([]string, len(buckets)) copy(healBuckets, buckets)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 16.3K bytes - Viewed (0) -
README.md
> NOTE: To deploy MinIO on with persistent storage, you must map local persistent directories from the host OS to the container using the `podman -v` option. For example, `-v /mnt/data:/data` maps the host OS drive at `/mnt/data` to `/data` on the container. ## macOS Use the following commands to run a standalone MinIO server on macOS.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 13:34:11 UTC 2024 - 18.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/ClassPathTest.java
notJar.delete(); } } public void testGetClassPathEntry() throws MalformedURLException, URISyntaxException { if (isWindows()) { return; // TODO: b/136041958 - We need to account for drive letters in the path. } assertEquals( new File("/usr/test/dep.jar").toURI(), ClassPath.getClassPathEntry(new File("/home/build/outer.jar"), "file:/usr/test/dep.jar") .toURI());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 22:09:38 UTC 2024 - 27.6K bytes - Viewed (0) -
docs_src/extra_models/tutorial003.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 644 bytes - Viewed (0) -
docs/debugging/README.md
``` The output printed will be of the form ```sh ● Admin Info ... ✔ ● CPU ... ✔ ● Disk Hardware ... ✔ ● Os Info ... ✔ ● Mem Info ... ✔ ● Process Info ... ✔ ● Config ... ✔ ● Drive ... ✔ ● Net ... ✔ ********************************************************************************* WARNING!! ** THIS FILE MAY CONTAIN SENSITIVE INFORMATION ABOUT YOUR ENVIRONMENT **
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Feb 25 01:17:53 UTC 2022 - 8.7K bytes - Viewed (0) -
cmd/metrics-v3-cluster-erasure-set.go
poolIDL, setIDL) erasureSetReadToleranceMD = NewGaugeMD(erasureSetReadTolerance, "No of drive failures that can be tolerated without disrupting read operations", poolIDL, setIDL) erasureSetWriteToleranceMD = NewGaugeMD(erasureSetWriteTolerance, "No of drive failures that can be tolerated without disrupting write operations", poolIDL, setIDL) erasureSetReadHealthMD = NewGaugeMD(erasureSetReadHealth,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 14 07:25:56 UTC 2024 - 4.4K bytes - Viewed (0) -
internal/disk/stat_windows.go
uintptr(unsafe.Pointer(&lpTotalNumberOfFreeBytes))) if uint64(lpTotalNumberOfFreeBytes) > uint64(lpTotalNumberOfBytes) { return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", uint64(lpTotalNumberOfFreeBytes), uint64(lpTotalNumberOfBytes), path) } info = Info{ Total: uint64(lpTotalNumberOfBytes),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Feb 26 19:34:50 UTC 2024 - 4.1K bytes - Viewed (0) -
internal/logger/utils.go
} } // logIgnoreError if true,the error will ignore. func logIgnoreError(err error) bool { return err == nil || errors.Is(err, context.Canceled) || errors.Is(err, http.ErrServerClosed) || err.Error() == "drive not found"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 04 23:10:08 UTC 2022 - 1.7K bytes - Viewed (0) -
internal/config/heal/help.go
Optional: true, Type: "int", }, config.HelpKV{ Key: DriveWorkers, Description: `the number of workers per drive to heal a new disk replacement` + defaultHelpPostfix(DriveWorkers), Optional: true, Type: "int", }, }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 11 21:48:54 UTC 2023 - 1.8K bytes - Viewed (0) -
tests/test_tutorial/test_extra_models/test_tutorial003_py310.py
@needs_py310 def test_get_car(client: TestClient): response = client.get("/items/item1") assert response.status_code == 200, response.text assert response.json() == { "description": "All my friends drive a low rider", "type": "car", } @needs_py310 def test_get_plane(client: TestClient): response = client.get("/items/item2") assert response.status_code == 200, response.text
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 04 20:47:07 UTC 2023 - 5.3K bytes - Viewed (0)