- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 505 for erreurs (0.04 sec)
-
src/main/resources/fess_message_zh_TW.properties
errors.result_size_exceeded = 無法顯示更多結果。 errors.target_file_does_not_exist = 檔案 {0} 不存在。 errors.failed_to_delete_file = 刪除檔案 {0} 失敗。 errors.docid_not_found = 未找到文檔ID。原因: {0} errors.document_not_found = 未找到文檔ID的URL。原因: {0} errors.not_load_from_server = 無法從該伺服器載入。原因: {0} errors.failed_to_start_job = 無法啟動作業 {0}。 errors.failed_to_stop_job = 停止作業 {0} 失敗。 errors.failed_to_download_synonym_file = 下載同義詞檔案失敗。 errors.failed_to_upload_synonym_file = 上傳同義詞檔案失敗。
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/resources/fess_message.properties
errors.plugin_file_is_not_found={0} is not found. errors.failed_to_install_plugin=Failed to install {0}. errors.failed_to_find_plugins=Could not find available plugins. errors.failed_to_process_sso_request=Failed to process a request: {0} errors.property_required={0} is required. errors.property_type_integer={0} must be an integer. errors.property_type_long={0} must be a long. errors.property_type_float={0} must be a float.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
errors.plugin_file_is_not_found={0} is not found. errors.failed_to_install_plugin=Failed to install {0}. errors.failed_to_find_plugins=Could not find available plugins. errors.failed_to_process_sso_request=Failed to process a request: {0} errors.property_required={0} is required. errors.property_type_integer={0} must be an integer. errors.property_type_long={0} must be a long. errors.property_type_float={0} must be a float.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K bytes - Viewed (0) -
tests/update_has_many_test.go
user := *GetUser("update-has-many", Config{}) if err := DB.Create(&user).Error; err != nil { t.Fatalf("errors happened when create: %v", err) } user.Pets = []*Pet{{Name: "pet1"}, {Name: "pet2"}} if err := DB.Save(&user).Error; err != nil { t.Fatalf("errors happened when update: %v", err) } var user2 User DB.Preload("Pets").Find(&user2, "id = ?", user.ID) CheckUser(t, user2, user)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Jan 06 07:02:53 UTC 2022 - 2K bytes - Viewed (0) -
cmd/admin-handler-utils.go
Description: err.Error(), HTTPStatusCode: http.StatusBadRequest, } case errors.Is(err, kes.ErrKeyExists): apiErr = APIError{ Code: "XMinioKMSKeyExists", Description: err.Error(), HTTPStatusCode: http.StatusConflict, } // Tier admin API errors case errors.Is(err, madmin.ErrTierNameEmpty): apiErr = APIError{ Code: "XMinioAdminTierNameEmpty",
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jul 03 07:17:20 UTC 2024 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
/** The key of the message: <ul class="has-error"> */ public static final String ERRORS_HEADER = "{errors.header}"; /** The key of the message: </ul> */ public static final String ERRORS_FOOTER = "{errors.footer}"; /** The key of the message: <li><i class="fa fa-exclamation-circle"></i> */ public static final String ERRORS_PREFIX = "{errors.prefix}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
try { Field errorsField = Crawler.class.getDeclaredField("errors"); errorsField.setAccessible(true); @SuppressWarnings("unchecked") Queue<String> errors = (Queue<String>) errorsField.get(null); assertTrue(errors.contains(errorMsg)); } catch (Exception e) { fail("Failed to access errors field: " + e.getMessage()); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
// Test error message constants assertEquals("{errors.front_header}", FessMessages.ERRORS_front_header); assertEquals("{errors.front_footer}", FessMessages.ERRORS_front_footer); assertEquals("{errors.front_prefix}", FessMessages.ERRORS_front_prefix); assertEquals("{errors.front_suffix}", FessMessages.ERRORS_front_suffix); assertEquals("{errors.header}", FessMessages.ERRORS_HEADER);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
/** Network-related errors (connection, timeout, etc.) */ NETWORK, /** Authentication and authorization errors */ AUTHENTICATION, /** File system errors (not found, access denied, etc.) */ FILE_SYSTEM, /** Protocol errors (invalid message, unsupported operation, etc.) */ PROTOCOL, /** Resource errors (out of memory, disk space, etc.) */ RESOURCE,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
cmd/metrics-realtime.go
} cm, err := c.Times(false) if err != nil { m.Errors = append(m.Errors, fmt.Sprintf("%s: %v (cpuTimes)", byHostName, err.Error())) } else { // not collecting per-cpu stats, so there will be only one element if len(cm) == 1 { m.Aggregated.CPU.TimesStat = &cm[0] } else { m.Errors = append(m.Errors, fmt.Sprintf("%s: Expected one CPU stat, got %d", byHostName, len(cm))) } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Jun 01 05:16:24 UTC 2024 - 6.3K bytes - Viewed (0)