Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 411 - 420 of 649 for usernames (0.06 seconds)

  1. android/guava/src/com/google/common/io/TempFileCreator.java

     * the License.
     */
    
    package com.google.common.io;
    
    import static com.google.common.base.StandardSystemProperty.JAVA_IO_TMPDIR;
    import static com.google.common.base.StandardSystemProperty.USER_NAME;
    import static com.google.common.base.Throwables.throwIfUnchecked;
    import static java.nio.file.attribute.AclEntryFlag.DIRECTORY_INHERIT;
    import static java.nio.file.attribute.AclEntryFlag.FILE_INHERIT;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 29 18:50:14 GMT 2025
    - 11.8K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/tutorial/security/oauth2-jwt.md

    為了避免 ID 衝突,在為使用者建立 JWT 權杖時,你可以替 `sub` 的值加上前綴,例如 `username:`。因此在這個例子中,`sub` 的值可以是:`username:johndoe`。
    
    要記住的重要點是:`sub` 必須是在整個應用中唯一的識別子,並且必須是字串。
    
    ## 試試看 { #check-it }
    
    啟動伺服器並前往文件頁:[http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)。
    
    你會看到這樣的介面:
    
    <img src="/img/tutorial/security/image07.png">
    
    用和先前相同的方式授權應用。
    
    使用下列認證資訊:
    
    Username: `johndoe`
    Password: `secret`
    
    /// check | 檢查
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/tutorial/request-form-models.md

    ///
    
    你可以使用 Pydantic 的模型設定來 `forbid` 任何 `extra` 欄位:
    
    {* ../../docs_src/request_form_models/tutorial002_an_py310.py hl[12] *}
    
    如果用戶端嘗試傳送額外資料,將會收到錯誤回應。
    
    例如,用戶端若送出以下表單欄位:
    
    * `username`: `Rick`
    * `password`: `Portal Gun`
    * `extra`: `Mr. Poopybutthole`
    
    他們會收到一個錯誤回應,告知欄位 `extra` 不被允許:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

            super.tearDown(testInfo);
        }
    
        @Test
        public void test_constructor() {
            // Test constructor initializes fields correctly
            LdapUser user = new LdapUser(testEnv, "username");
            assertEquals("username", user.getName());
            assertSame(testEnv, user.getEnvironment());
            assertNull(user.permissions);
        }
    
        @Test
        public void test_getName() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.9K bytes
    - Click Count (0)
  5. docs/ja/docs/tutorial/security/get-current-user.md

    そして、セキュリティ要件のためにどんなモデルやデータでも利用することができます。(この場合は、 Pydanticモデルの `User`)
    
    しかし、特定のデータモデルやクラス、型に制限されることはありません。
    
    モデルを、 `id` と `email` は持つが、 `username` は全く持たないようにしたいですか? わかりました。同じ手段でこうしたこともできます。
    
    ある `str` だけを持ちたい? あるいはある `dict` だけですか? それとも、データベースクラスのモデルインスタンスを直接持ちたいですか? すべて同じやり方で機能します。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 15:24:30 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  6. docs/zh/docs/tutorial/request-form-models.md

    ///
    
    你可以使用 Pydantic 的模型配置来 `forbid` 任何 `extra` 字段:
    
    {* ../../docs_src/request_form_models/tutorial002_an_py310.py hl[12] *}
    
    如果客户端尝试发送一些额外的数据,他们将收到**错误**响应。
    
    例如,客户端尝试发送如下表单字段:
    
    * `username`: `Rick`
    * `password`: `Portal Gun`
    * `extra`: `Mr. Poopybutthole`
    
    他们将收到一条错误响应,表明字段 `extra` 不被允许:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  7. PULL_REQUESTS_ETIQUETTE.md

    3. **Flow**:
       - Review promptly to avoid blocking progress.
       - Balance quality and speed—minor issues can be addressed later via issues, not PR blocks.
       - If unable to complete the review, tag another reviewer (e.g., `@username please take over`).
    
    4. **Shared Responsibility**:
       - All MinIO contributors are reviewers. The first commenter on a PR owns the review unless they delegate.
       - Multiple reviewers are encouraged for complex PRs.
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun May 25 16:32:03 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

        protected String getUserId(final HttpServletRequest request) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            final String username = systemHelper.getUsername();
            if (!org.codelibs.fess.Constants.GUEST_USER.equals(username)) {
                return username;
            }
            // For guest users, use cookie-based userCode for session identification
            return ComponentUtil.getUserInfoHelper().getUserCode();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  9. docs/sts/assume-role.md

    ```
    
    Create new users following the multi-user guide [here](https://docs.min.io/community/minio-object-store/administration/identity-access-management.html)
    
    ### Testing an example with awscli tool
    
    > Use the same username and password created in the previous steps.
    
    ```
    [foobar]
    region = us-east-1
    aws_access_key_id = foobar
    aws_secret_access_key = foo12345
    ```
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  10. internal/logger/help.go

    			Key:         KafkaTopic,
    			Description: "Kafka topic used for bucket notifications",
    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         KafkaSASLUsername,
    			Description: "username for SASL/PLAIN or SASL/SCRAM authentication",
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         KafkaSASLPassword,
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Sep 11 22:20:42 GMT 2024
    - 7.4K bytes
    - Click Count (0)
Back to Top