Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 567 for erreurs (0.03 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

         */
        public void incrementErrors() {
            errors.incrementAndGet();
        }
    
        /**
         * Get error rate (errors / total requests)
         *
         * @return error rate between 0.0 and 1.0
         */
        public double getErrorRate() {
            long total = requestsSent.get();
            if (total == 0)
                return 0.0;
            return (double) errors.get() / total;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/endtoend_test.go

    			continue
    		}
    		errors[fileline] = line
    	}
    
    	// Reconstruct expected errors by independently "parsing" the input.
    	data, err := os.ReadFile(input)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	lineno := 0
    	lines := strings.Split(string(data), "\n")
    	for _, line := range lines {
    		lineno++
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 26 01:02:50 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. cmd/background-newdisks-heal-ops.go

    					if err := healFreshDisk(ctx, z, disk); err != nil {
    						globalBackgroundHealState.setDiskHealingStatus(disk, false)
    						timedout := OperationTimedOut{}
    						if !errors.Is(err, context.Canceled) && !errors.As(err, &timedout) && !errors.Is(err, errRetryHealing) {
    							printEndpointError(disk, err, false)
    						}
    						return
    					}
    					// Only upon success pop the healed disk.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_it.properties

    errors.plugin_file_is_not_found={0} non trovato.
    errors.failed_to_install_plugin=Impossibile installare {0}.
    errors.failed_to_find_plugins=Nessun plugin disponibile trovato.
    errors.failed_to_process_sso_request=Impossibile elaborare la richiesta: {0}
    
    errors.property_required={0} è obbligatorio.
    errors.property_type_integer={0} è un numero intero.
    errors.property_type_long={0} è un numero lungo.
    errors.property_type_float={0} è un numero float.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_zh_CN.properties

    errors.failed_to_install_plugin=安装 {0} 失败。
    errors.failed_to_find_plugins=未找到可用插件。
    errors.failed_to_process_sso_request=处理请求失败: {0}
    
    errors.property_required={0} 是必需的。
    errors.property_type_integer={0} 是数字。
    errors.property_type_long={0} 是数字。
    errors.property_type_float={0} 是数字。
    errors.property_type_double={0} 是数字。
    errors.property_type_date={0} 是日期。
    
    errors.storage_file_upload_failure=上传 {0} 失败。
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  8. tests/scanner_valuer_test.go

    	if b, ok := value.([]byte); ok {
    		if len(b) < 3 || b[0] != '*' || b[1] != '*' || b[2] != '*' {
    			return errors.New("Too short")
    		}
    
    		*data = append((*data)[0:], b[3:]...)
    		return nil
    	} else if s, ok := value.(string); ok {
    		*data = []byte(s[3:])
    		return nil
    	}
    
    	return errors.New("Bytes expected")
    }
    
    func (data EncryptedData) Value() (driver.Value, error) {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Jun 07 07:02:07 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. cmd/naughty-disk_test.go

    )
    
    // naughtyDisk wraps a POSIX disk and returns programmed errors
    // specified by the developer. The purpose is to simulate errors
    // that are hard to simulate in practice like DiskNotFound.
    // Programmed errors are stored in errors field.
    type naughtyDisk struct {
    	// The real disk
    	disk StorageAPI
    	// Programmed errors: API call number => error to return
    	errors map[int]error
    	// The error to return when no error value is programmed
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 25 05:41:04 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  10. cmd/bucket-quota.go

    	timedout := OperationTimedOut{}
    	if err != nil && !errors.Is(err, context.DeadlineExceeded) && !errors.As(err, &timedout) {
    		if len(dui.BucketsUsage) > 0 {
    			internalLogOnceIf(GlobalContext, fmt.Errorf("unable to retrieve usage information for bucket: %s, relying on older value cached in-memory: err(%v)", bucket, err), "bucket-usage-cache-"+bucket)
    		} else {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Aug 06 23:48:58 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top