Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 436 for mirrors (0.03 sec)

  1. tests/gorm_test.go

    			t.Fatalf("errors happened on create: %v", results.Error)
    		} else if results.RowsAffected != 1 {
    			t.Fatalf("rows affected expects: %v, got %v", 1, results.RowsAffected)
    		} else if u1.ID == 0 {
    			t.Fatalf("ID expects : not equal 0, got %v", u1.ID)
    		}
    
    		got := user{}
    		results := DB.First(&got, "id = ?", u1.ID)
    		if results.Error != nil {
    			t.Fatalf("errors happened on first: %v", results.Error)
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Jun 01 07:22:21 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. tests/update_belongs_to_test.go

    	if err := DB.Create(&user).Error; err != nil {
    		t.Fatalf("errors happened when create: %v", err)
    	}
    
    	user.Company = Company{Name: "company-belongs-to-association"}
    	user.Manager = &User{Name: "manager-belongs-to-association"}
    	if err := DB.Save(&user).Error; err != nil {
    		t.Fatalf("errors happened when update: %v", err)
    	}
    
    	var user2 User
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Jul 14 06:55:54 UTC 2022
    - 1.6K 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/prepare-storage.go

    	if err := checkDiskFatalErrs(sErrs); err != nil {
    		return nil, err
    	}
    
    	for i, err := range sErrs {
    		if err != nil && !errors.Is(err, errXLBackend) && !errors.Is(err, errUnformattedDisk) {
    			if errors.Is(err, errDiskNotFound) && verboseLogging {
    				if globalEndpoints.NEndpoints() > 1 {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jul 12 20:51:54 UTC 2024
    - 11.1K bytes
    - Viewed (1)
  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. tests/hooks_test.go

    }
    
    func (s *Product) BeforeCreate(tx *gorm.DB) (err error) {
    	if s.Code == "Invalid" {
    		err = errors.New("invalid product")
    	}
    	s.BeforeCreateCallTimes = s.BeforeCreateCallTimes + 1
    	return
    }
    
    func (s *Product) BeforeUpdate(tx *gorm.DB) (err error) {
    	if s.Code == "dont_update" {
    		err = errors.New("can't update")
    	}
    	s.BeforeUpdateCallTimes = s.BeforeUpdateCallTimes + 1
    	return
    }
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jun 17 03:59:06 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_fr.properties

    errors.plugin_file_is_not_found={0} est introuvable.
    errors.failed_to_install_plugin=Échec de l'installation de {0}.
    errors.failed_to_find_plugins=Impossible de trouver les plugins disponibles.
    errors.failed_to_process_sso_request=Échec du traitement d'une requête : {0}
    
    errors.property_required={0} est requis.
    errors.property_type_integer={0} doit être un entier.
    errors.property_type_long={0} doit être un long.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. 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)
  10. cmd/jwt.go

    )
    
    var (
    	errInvalidAccessKeyID = errors.New("The access key ID you provided does not exist in our records")
    	errAccessKeyDisabled  = errors.New("The access key you provided is disabled")
    	errAuthentication     = errors.New("Authentication failed, check your access credentials")
    	errNoAuthToken        = errors.New("JWT token missing")
    	errSkewedAuthTime     = errors.New("Skewed authentication date/time")
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top