Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 205 for user21 (0.06 seconds)

  1. ci/official/envs/rbe

        # A local firewall rule for the container is added in
        # ci/official/utilities/setup_docker.sh.
      fi
    else
      # The volume mapping flag below shares the user's gcloud credentials, if any,
      # with the container, in case the user has credentials stored there.
      # This would allow Bazel to authenticate for RBE.
      # Note: TF's CI does not have any credentials stored there.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Mar 28 04:33:01 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  2. docs/ko/docs/tutorial/response-model.md

    ### 타입 어노테이션과 도구 지원 { #type-annotations-and-tooling }
    
    먼저 에디터, mypy 및 기타 도구가 이를 어떻게 보는지 살펴봅시다.
    
    `BaseUser`는 기본 필드를 가집니다. 그리고 `UserIn`은 `BaseUser`를 상속하고 `password` 필드를 추가하므로, 두 모델의 모든 필드를 포함하게 됩니다.
    
    함수 반환 타입을 `BaseUser`로 어노테이션하지만, 실제로는 `UserIn` 인스턴스를 반환합니다.
    
    에디터, mypy 및 기타 도구는 이에 대해 불평하지 않습니다. 타이핑 관점에서 `UserIn`은 `BaseUser`의 서브클래스이므로, `BaseUser`인 어떤 것이 기대되는 곳에서는 *유효한* 타입이기 때문입니다.
    
    ### FastAPI 데이터 필터링 { #fastapi-data-filtering }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

            // Normal input should not be escaped
            assertEquals("normaluser", ldapManager.escapeLDAPSearchFilter("normaluser"));
            assertEquals("user123", ldapManager.escapeLDAPSearchFilter("user123"));
            assertEquals("user.name", ldapManager.escapeLDAPSearchFilter("user.name"));
        }
    
        @Test
        public void test_escapeLDAPSearchFilter_withBackslash() {
            LdapManager ldapManager = new LdapManager();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/security/first-steps.md

    But in this case, the same **FastAPI** application will handle the API and the authentication.
    
    So, let's review it from that simplified point of view:
    
    * The user types the `username` and `password` in the frontend, and hits `Enter`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  5. src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.smb;
    
    import org.bouncycastle.util.encoders.Hex;
    
    /**
     * Authenticator directly specifing the user's NT hash
     *
     * @author mbechler
     *
     */
    public class NtlmNtHashAuthenticator extends NtlmPasswordAuthenticator {
    
        private static final long serialVersionUID = 4328214169536360351L;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  6. internal/config/identity/openid/provider/provider.go

    )
    
    // Provider implements identity provider specific admin operations, such as
    // looking up users, fetching additional attributes etc.
    type Provider interface {
    	LoginWithUser(username, password string) error
    	LoginWithClientID(clientID, clientSecret string) error
    	LookupUser(userid string) (User, error)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 2.7K bytes
    - Click Count (0)
  7. docs/ru/docs/tutorial/extra-models.md

    ### Про `**user_in.model_dump()` { #about-user-in-model-dump }
    
    #### `.model_dump()` из Pydantic { #pydantics-model-dump }
    
    `user_in` — это Pydantic-модель класса `UserIn`.
    
    У Pydantic-моделей есть метод `.model_dump()`, который возвращает `dict` с данными модели.
    
    Поэтому, если мы создадим Pydantic-объект `user_in` таким способом:
    
    ```Python
    user_in = UserIn(username="john", password="secret", email="******@****.***")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  8. docs/pt/docs/tutorial/extra-models.md

    ### Sobre `**user_in.model_dump()` { #about-user-in-model-dump }
    
    #### O `.model_dump()` do Pydantic { #pydantics-model-dump }
    
    `user_in` é um modelo Pydantic da classe `UserIn`.
    
    Os modelos Pydantic possuem um método `.model_dump()` que retorna um `dict` com os dados do modelo.
    
    Então, se criarmos um objeto Pydantic `user_in` como:
    
    ```Python
    user_in = UserIn(username="john", password="secret", email="******@****.***")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/response-model.md

    這是怎麼運作的?來看一下。🤓
    
    ### 型別註解與工具支援 { #type-annotations-and-tooling }
    
    先看看編輯器、mypy 與其他工具會怎麼看這件事。
    
    `BaseUser` 有基礎欄位。然後 `UserIn` 繼承自 `BaseUser` 並新增 `password` 欄位,因此它會包含兩個模型的所有欄位。
    
    我們把函式回傳型別註解為 `BaseUser`,但實際上回傳的是 `UserIn` 實例。
    
    編輯器、mypy 與其他工具不會抱怨,因為就型別學而言,`UserIn` 是 `BaseUser` 的子類別,這代表當預期任何 `BaseUser` 時,`UserIn` 是一個有效的型別。
    
    ### FastAPI 的資料過濾 { #fastapi-data-filtering }
    
    對 FastAPI 而言,它會查看回傳型別,並確保你回傳的內容只包含該型別中宣告的欄位。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.5K bytes
    - Click Count (0)
  10. src/main/java/jcifs/smb/NtlmUtil.java

        /**
         * Creates the LMv2 response for the supplied information.
         *
         * @param domain
         *            The domain in which the username exists.
         * @param user
         *            The username.
         * @param password
         *            The user's password.
         * @param challenge
         *            The server challenge.
         * @param clientChallenge
         *            The client challenge (nonce).
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 15.1K bytes
    - Click Count (0)
Back to Top