Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 371 - 380 of 2,138 for erros (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/object-api-putobject_test.go

    			if testCase.expectedError.Error() != actualErr.Error() {
    				t.Errorf("Test %d: %s: Expected to fail with error \"%s\", but instead failed with error \"%s\" instead.", i+1,
    					instanceType, testCase.expectedError.Error(), actualErr.Error())
    			}
    		}
    		// Test passes as expected, but the output values are verified for correctness here.
    		if actualErr == nil && testCase.shouldPass {
    			// Asserting whether the md5 output is correct.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 25.8K bytes
    - Click Count (0)
  2. cmd/admin-handlers.go

    			usage = madmin.Usage{Size: dataUsageInfo.ObjectsTotalSize}
    		} else {
    			buckets = madmin.Buckets{Error: err.Error()}
    			objects = madmin.Objects{Error: err.Error()}
    			deleteMarkers = madmin.DeleteMarkers{Error: err.Error()}
    			usage = madmin.Usage{Error: err.Error()}
    		}
    
    		// Fetching the backend information
    		backendInfo := objectAPI.BackendInfo()
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 99.7K bytes
    - Click Count (0)
  3. cmd/bucket-handlers_test.go

    	// if object upload fails stop the test.
    	if err != nil {
    		t.Fatalf("Error uploading object: <ERROR> %v", err)
    	}
    
    	// initialize httptest Recorder, this records any mutations to response writer inside the handler.
    	rec := httptest.NewRecorder()
    	// construct HTTP request for DELETE bucket.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 39.8K bytes
    - Click Count (0)
  4. docs/en/docs/deployment/concepts.md

    ### Small Errors Automatically Handled { #small-errors-automatically-handled }
    
    When building web APIs with FastAPI, if there's an error in our code, FastAPI will normally contain it to the single request that triggered the error. ๐Ÿ›ก
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Aug 31 09:15:41 GMT 2025
    - 18.6K bytes
    - Click Count (1)
  5. 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.
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 10 04:56:21 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  6. src/main/resources/fess_message_ko.properties

    errors.could_not_delete_logged_in_user=๋กœ๊ทธ์ธํ•œ ์‚ฌ์šฉ์ž๋Š” ์‚ญ์ œํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.
    errors.unauthorized_request=๊ถŒํ•œ์ด ์—†๋Š” ์š”์ฒญ์ž…๋‹ˆ๋‹ค.
    errors.failed_to_print_thread_dump=์Šค๋ ˆ๋“œ ๋คํ”„๋ฅผ ์ธ์‡„ํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค.
    errors.file_is_not_supported={0}์€(๋Š”) ์ง€์›๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค.
    errors.plugin_file_is_not_found={0}์„(๋ฅผ) ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.
    errors.failed_to_install_plugin={0}์„(๋ฅผ) ์„ค์น˜ํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค.
    errors.failed_to_find_plugins=์‚ฌ์šฉ ๊ฐ€๋Šฅํ•œ ํ”Œ๋Ÿฌ๊ทธ์ธ์„ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.
    errors.failed_to_process_sso_request=์š”์ฒญ์„ ์ฒ˜๋ฆฌํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค: {0}
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Jul 05 02:36:47 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  7. generics.go

    func (g execG[T]) First(ctx context.Context) (T, error) {
    	var r T
    	err := g.g.apply(ctx).First(&r).Error
    	return r, err
    }
    
    func (g execG[T]) Scan(ctx context.Context, result interface{}) error {
    	var r T
    	err := g.g.apply(ctx).Model(r).Find(result).Error
    	return err
    }
    
    func (g execG[T]) Last(ctx context.Context) (T, error) {
    	var r T
    	err := g.g.apply(ctx).Last(&r).Error
    	return r, err
    }
    
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Sun Nov 02 14:09:18 GMT 2025
    - 25.9K bytes
    - Click Count (0)
  8. src/archive/zip/zip_test.go

    	var buf bytes.Buffer
    	z := NewWriter(&buf)
    
    	f, err := z.CreateHeader(h)
    	if err != nil {
    		t.Fatalf("error creating header: %v", err)
    	}
    	if _, err := f.Write([]byte("hi")); err != nil {
    		t.Fatalf("error writing content: %v", err)
    	}
    	if err := z.Close(); err != nil {
    		t.Fatalf("error closing zip writer: %v", err)
    	}
    
    	b := buf.Bytes()
    	zf, err := NewReader(bytes.NewReader(b), int64(len(b)))
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu May 23 01:00:11 GMT 2024
    - 19.6K bytes
    - Click Count (0)
  9. 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.
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Jul 05 02:36:47 GMT 2025
    - 13.1K bytes
    - Click Count (0)
  10. 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} ๅคฑ่ดฅใ€‚
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 10 04:56:21 GMT 2025
    - 11.1K bytes
    - Click Count (0)
Back to Top