- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 1,250 for errored (0.07 sec)
-
cmd/erasure-sets.go
----------------- failure for all cases. // Pseudo code for managing `format.json`. // Generic checks. if (no quorum) return error if (any disk is corrupt) return error // Always error if (jbod inconsistent) return error // Always error. if (disks not recognized) // Always error. // Specific checks. if (all disks online) if (all disks return format.json) if (jbod consistent)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 37K bytes - Viewed (1) -
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
assertTrue(exception.getMessage().contains("Disk full")); } @Test @DisplayName("Should have correct retryable flags for error codes") void testErrorCodeRetryableFlags() { // Retryable errors assertTrue(SmbOperationException.ErrorCode.CONNECTION_FAILED.isRetryable()); assertTrue(SmbOperationException.ErrorCode.CONNECTION_TIMEOUT.isRetryable());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.1K bytes - Viewed (0) -
docs/iam/identity-manager-plugin.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package main import ( "encoding/json" "errors" "fmt" "log" "net/http" ) func writeErrorResponse(w http.ResponseWriter, err error) { w.WriteHeader(http.StatusBadRequest) json.NewEncoder(w).Encode(map[string]string{ "reason": fmt.Sprintf("%v", err), }) } type Resp struct {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed May 01 21:31:13 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/em/docs/tutorial/dependencies/dependencies-with-yield.md
dep -->> handler: Raise HTTPException handler -->> client: HTTP error response dep -->> dep: Raise other exception end dep ->> operation: Run dependency, e.g. DB session opt raise operation -->> dep: Raise HTTPException dep -->> handler: Auto forward exception handler -->> client: HTTP error response operation -->> dep: Raise other exception
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 8.4K bytes - Viewed (0) -
src/main/resources/fess_message_nl.properties
errors.failed_to_find_plugins=Geen beschikbare plugins gevonden. errors.failed_to_process_sso_request=Kan verzoek niet verwerken: {0} errors.property_required={0} is vereist. errors.property_type_integer={0} is een geheel getal. errors.property_type_long={0} is een lang geheel getal. errors.property_type_float={0} is een float. errors.property_type_double={0} is een double. errors.property_type_date={0} is een datum.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12K bytes - Viewed (0) -
src/main/resources/fess_message_ru.properties
errors.property_type_date={0} должно быть датой. errors.storage_file_upload_failure=Не удалось загрузить {0}. errors.storage_file_not_found=Целевой файл не существует в хранилище. errors.storage_file_download_failure=Не удалось скачать {0}. errors.storage_access_error=Ошибка доступа к хранилищу: {0} errors.storage_no_upload_file=Укажите файл для загрузки. errors.storage_directory_name_is_invalid=Имя каталога недействительно.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 15.8K bytes - Viewed (0) -
schema/utils_test.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Jul 31 10:19:25 UTC 2020 - 1.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/DosFileFilterTest.java
void setUp() { // Basic setup, specific filter attributes will be set in each test } /** * Tests the constructor of DosFileFilter. * This test ensures that the constructor runs without errors and correctly initializes the object. * The wildcard parameter is stored but its filtering logic is handled server-side, * so we only verify its acceptance here. */ @Test void testConstructor() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
cmd/os-reliable.go
// This is a special case should be handled only for // windows, because windows API does not return "not a // directory" error message. Handle this specifically here. return errFileAccessDenied case isSysErrCrossDevice(err): return fmt.Errorf("%w (%s)->(%s)", errCrossDeviceLink, srcFilePath, dstFilePath) case osIsNotExist(err): return errFileNotFound case osIsExist(err):
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Apr 22 17:49:30 UTC 2024 - 5.8K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64dynlinkerror.s
CMPL runtime·writeBarrier(SB), $0 MOVQ R15, AX // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here" RET TEXT ·a8(SB), 0, $0-0 CMPL runtime·writeBarrier(SB), $0 ADDQ AX, R15 // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here" RET TEXT ·a9(SB), 0, $0-0 CMPL runtime·writeBarrier(SB), $0
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Mar 15 20:45:41 UTC 2023 - 4.8K bytes - Viewed (0)