Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 639 for password2 (0.45 seconds)

  1. docs/zh-hant/docs/tutorial/security/first-steps.md

    ///
    
    點擊後會跳出一個小視窗,讓你輸入 `username` 與 `password`(以及其他可選欄位):
    
    <img src="/img/tutorial/security/image02.png">
    
    /// note | 注意
    
    不管你在表單輸入什麼,現在都還不會成功;等等我們會把它完成。
    
    ///
    
    這當然不是給最終使用者用的前端,但它是用來互動式文件化整個 API 的極佳自動化工具。
    
    前端團隊(也可能就是你)可以使用它。
    
    第三方應用或系統也能使用它。
    
    你也能用它來除錯、檢查與測試同一個應用。
    
    ## `password` 流程 { #the-password-flow }
    
    現在回頭理解剛剛那些是什麼。
    
    在 OAuth2 中,`password` 是處理安全與身分驗證的其中一種「流程」(flow)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/profile/ProfileForm.java

         * Default constructor.
         */
        public ProfileForm() {
            // Default constructor
        }
    
        /** The old password. */
        @NotBlank
        public String oldPassword;
    
        /** The new password. */
        @NotBlank
        public String newPassword;
    
        /** The confirm new password. */
        @NotBlank
        public String confirmNewPassword;
    
        /**
         * Clears security information.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/user/exbhv/UserBhv.java

    /**
     * @author FreeGen
     */
    public class UserBhv extends BsUserBhv {
    
        private static final String ROLES = "roles";
        private static final String GROUPS = "groups";
        private static final String PASSWORD = "password";
        private static final String NAME = "name";
    
        private String indexName = null;
    
        @Override
        protected String asEsIndex() {
            if (indexName == null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  4. src/main/resources/fess_message.properties

    errors.blank_password = Password is required.
    errors.password_length = Password must be at least {0} characters long.
    errors.password_no_uppercase = Password must contain at least one uppercase letter.
    errors.password_no_lowercase = Password must contain at least one lowercase letter.
    errors.password_no_digit = Password must contain at least one digit.
    errors.password_no_special_char = Password must contain at least one special character.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  5. src/main/resources/fess_message_en.properties

    errors.blank_password = Password is required.
    errors.password_length = Password must be at least {0} characters long.
    errors.password_no_uppercase = Password must contain at least one uppercase letter.
    errors.password_no_lowercase = Password must contain at least one lowercase letter.
    errors.password_no_digit = Password must contain at least one digit.
    errors.password_no_special_char = Password must contain at least one special character.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  6. internal/config/certs.go

    		return tls.Certificate{}, ErrTLSUnexpectedData(nil).Msgf("The private key is not readable")
    	}
    	if x509.IsEncryptedPEMBlock(key) {
    		password := env.Get(EnvCertPassword, "")
    		if len(password) == 0 {
    			return tls.Certificate{}, ErrTLSNoPassword(nil)
    		}
    		decryptedKey, decErr := x509.DecryptPEMBlock(key, []byte(password))
    		if decErr != nil {
    			return tls.Certificate{}, ErrTLSWrongPassword(decErr)
    		}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Aug 14 17:11:51 GMT 2024
    - 3.8K bytes
    - Click Count (0)
  7. docs/ko/docs/tutorial/security/first-steps.md

    그리고 동일한 애플리케이션을 디버그하고, 확인하고, 테스트하기 위해 본인이 사용할 수도 있습니다.
    
    ## `password` 플로우 { #the-password-flow }
    
    이제 조금 돌아가서 이것들이 무엇인지 이해해 봅시다.
    
    `password` "flow"는 보안과 인증을 처리하기 위해 OAuth2에서 정의한 여러 방식("flows") 중 하나입니다.
    
    OAuth2는 backend 또는 API가 사용자를 인증하는 서버와 독립적일 수 있도록 설계되었습니다.
    
    하지만 이 경우에는 같은 **FastAPI** 애플리케이션이 API와 인증을 모두 처리합니다.
    
    따라서, 단순화된 관점에서 다시 정리해보면:
    
    * 사용자가 frontend에서 `username`과 `password`를 입력하고 `Enter`를 누릅니다.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/extra-models.md

    ```Python
    UserInDB(**user_dict)
    ```
    
    效果等同於:
    
    ```Python
    UserInDB(
        username="john",
        password="secret",
        email="******@****.***",
        full_name=None,
    )
    ```
    
    更精確地說,直接使用 `user_dict`(未來內容可能有所不同)則等同於:
    
    ```Python
    UserInDB(
        username = user_dict["username"],
        password = user_dict["password"],
        email = user_dict["email"],
        full_name = user_dict["full_name"],
    )
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  9. internal/config/errors.go

    		`Root user name (access key) and root password (secret key) are expected to be specified via environment variables MINIO_ROOT_USER and MINIO_ROOT_PASSWORD respectively`,
    	)
    
    	ErrMissingEnvCredentialRootPassword = newErrFn(
    		"Missing credential environment variable, \""+EnvRootPassword+"\"",
    		"Environment variable \""+EnvRootPassword+"\" is missing",
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  10. src/test/java/jcifs/smb/JAASAuthenticatorTest.java

        }
    
        @Test
        @DisplayName("handle: empty user/domain edge yields '@' and null password")
        void testHandleWithEmptyUserAndDomainEdge() throws Exception {
            // Default constructor results in empty strings for user and domain, null for password
            JAASAuthenticator auth = new JAASAuthenticator();
            NameCallback nc = new NameCallback("user:");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 9.9K bytes
    - Click Count (0)
Back to Top