Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 1,820 for erros (0.03 sec)

  1. 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)
  2. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         * best we can do (since logging may overflow the stack) is to let the error propagate. Because
         * it is an Error, it won't be caught and logged by AbstractFuture.executeListener. Instead, it
         * can propagate through many layers of AbstractTransformFuture up to the root call to set().
         *
         * https://github.com/google/guava/issues/2254
         *
         * Other kinds of Errors are possible:
         *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 20 18:03:37 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         * Pre-processes API requests by checking access authorization before executing the action.
         * If access is not allowed, returns an unauthorized error response.
         *
         * @param runtime the action runtime context containing request information
         * @return ActionResponse with unauthorized error if access denied, otherwise delegates to parent
         */
        @Override
        public ActionResponse godHandPrologue(final ActionRuntime runtime) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  4. cmd/config-dir.go

    	return dir.path
    }
    
    // Attempts to create all directories, ignores any permission denied errors.
    func mkdirAllIgnorePerm(path string) error {
    	err := os.MkdirAll(path, 0o700)
    	if err != nil {
    		// It is possible in kubernetes like deployments this directory
    		// is already mounted and is not writable, ignore any write errors.
    		if osIsPermission(err) {
    			err = nil
    		}
    	}
    	return err
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. 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)))
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. cmd/postpolicyform_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    
    			errStr := ""
    			err = checkPostPolicy(tt.fv.Header, postPolicyForm)
    			if err != nil {
    				errStr = err.Error()
    			}
    			if errStr != tt.wantErr {
    				t.Errorf("test: '%s', want error: '%s', got error: '%s'", tt.name, tt.wantErr, errStr)
    			}
    		})
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/curl/CurlException.java

    package org.codelibs.curl;
    
    /**
     * Custom exception class for handling errors related to Curl operations.
     * This class extends {@link RuntimeException} and provides constructors
     * to create an exception instance with a message and an optional cause.
     *
     * <p>Usage examples:</p>
     * <pre>
     *     throw new CurlException("Error message");
     *     throw new CurlException("Error message", cause);
     * </pre>
     *
     * @see RuntimeException
     */
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 2K 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. src/main/java/jcifs/internal/witness/WitnessClient.java

            /**
             * Called when a witness registration fails.
             *
             * @param registration the failed registration
             * @param error the error that occurred
             */
            void onRegistrationFailed(WitnessRegistration registration, Exception error);
    
            /**
             * Called when a witness registration expires.
             *
             * @param registration the expired registration
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
Back to top