Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 341 - 350 of 649 for usernames (0.28 seconds)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticator.kt

              )
            }
    
          if (auth != null) {
            val credentialHeader = if (proxyAuthorization) "Proxy-Authorization" else "Authorization"
            val credential =
              Credentials.basic(
                auth.userName,
                String(auth.password),
                challenge.charset,
              )
            return request
              .newBuilder()
              .header(credentialHeader, credential)
              .build()
          }
        }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  2. .github/workflows/update-perf-test-buckets.yml

          - name: Update performance-test-durations.json
            run: |
              ./gradlew performance:writePerformanceTimes -Porg.gradle.performance.db.url=${{ env.PERFORMANCE_DB_URL }} -Porg.gradle.performance.db.username=${{ env.PERFORMANCE_DB_USERNAME }}
          - name: Create Pull Request
            uses: peter-evans/create-pull-request@v8
            with:
              commit-message: Update performance test durations
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 24 22:05:21 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/body-multiple-params.md

    ```JSON
    {
        "item": {
            "name": "Foo",
            "description": "The pretender",
            "price": 42.0,
            "tax": 3.2
        },
        "user": {
            "username": "dave",
            "full_name": "Dave Grohl"
        }
    }
    ```
    
    /// note | Not
    
    `item` daha öncekiyle aynı şekilde tanımlanmış olsa bile, artık body içinde `item` anahtarı altında gelmesi beklenir.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  4. docs_src/generate_clients/tutorial003_py310.py

    
    class Item(BaseModel):
        name: str
        price: float
    
    
    class ResponseMessage(BaseModel):
        message: str
    
    
    class User(BaseModel):
        username: str
        email: str
    
    
    @app.post("/items/", response_model=ResponseMessage, tags=["items"])
    async def create_item(item: Item):
        return {"message": "Item received"}
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 914 bytes
    - Click Count (0)
  5. docs/ja/docs/advanced/security/oauth2-scopes.md

    ## `username` とデータ構造の検証 { #verify-the-username-and-data-shape }
    
    `username` を取得できていることを確認し、スコープを取り出します。
    
    そして、そのデータを Pydantic モデルで検証します(`ValidationError` 例外を捕捉)。JWT トークンの読み取りや Pydantic によるデータ検証でエラーが発生した場合は、先ほど作成した `HTTPException` を送出します。
    
    そのために、Pydantic モデル `TokenData` に新しいプロパティ `scopes` を追加します。
    
    Pydantic でデータを検証することで、例えばスコープは `str` の `list`、`username` は `str` といった、正確な型になっていることを保証できます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

         * The sort order for displaying this scheduled job.
         */
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer sortOrder;
    
        /**
         * The username of who created this scheduled job.
         */
        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when this scheduled job was created.
         */
        @ValidateTypeFailure
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/EditForm.java

     */
    public class EditForm extends CreateForm {
    
        /** Unique identifier for the related query entry */
        @Required
        @Size(max = 1000)
        public String id;
    
        /** Username of the user who last updated this entry */
        @Size(max = 1000)
        public String updatedBy;
    
        /** Timestamp when this entry was last updated */
        @ValidateTypeFailure
        public Long updatedTime;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/security/get-current-user.md

    ///
    
    ## 其他模型 { #other-models }
    
    現在你可以在*路徑操作函式*中直接取得目前使用者,並在**依賴注入**層處理安全機制,使用 `Depends`。
    
    而且你可以為安全需求使用任意模型或資料(本例中是 Pydantic 模型 `User`)。
    
    但你不受限於某個特定的資料模型、類別或型別。
    
    想在模型中只有 `id` 與 `email` 而沒有任何 `username`?當然可以。你可以用同樣的工具達成。
    
    想只用一個 `str`?或只用一個 `dict`?或直接使用資料庫類別的模型實例?都可以,一樣運作。
    
    你的應用其實沒有真人使用者登入,而是機器人、bot,或其他系統,只持有 access token?同樣沒有問題。
    
    只要用任何你的應用需要的模型、類別或資料庫即可。**FastAPI** 的依賴注入系統都支援。
    
    ## 程式碼大小 { #code-size }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java

        public Integer crudMode;
    
        /**
         * The bad word to be filtered from search suggestions.
         */
        @Required
        @Pattern(regexp = "[^\\s]+")
        public String suggestWord;
    
        /**
         * The username of the user who created this bad word entry.
         */
        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when this bad word entry was created.
         */
        @ValidateTypeFailure
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  10. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

                param("env.JDK21", javaHome(OpenJdk21, Os.LINUX))
                param("env.JDK25", javaHome(OpenJdk25, Os.LINUX))
                param("env.ORG_GRADLE_PROJECT_artifactoryUserName", "%gradle.internal.repository.build-tool.publish.username%")
                password("env.ORG_GRADLE_PROJECT_infrastructureEmailPwd", "%infrastructureEmailPwd%")
                param("env.ORG_GRADLE_PROJECT_sdkmanKey", "8ed1a771bc236c287ad93c699bfdd2d7")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 15 19:30:24 GMT 2026
    - 3.1K bytes
    - Click Count (0)
Back to Top