Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 701 - 710 of 793 for bhash (0.29 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/reflect/TypeResolver.java

        private final TypeVariable<?> var;
    
        TypeVariableKey(TypeVariable<?> var) {
          this.var = checkNotNull(var);
        }
    
        @Override
        public int hashCode() {
          return Objects.hash(var.getGenericDeclaration(), var.getName());
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
          if (obj instanceof TypeVariableKey) {
            TypeVariableKey that = (TypeVariableKey) obj;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 22:30:05 GMT 2025
    - 25.3K bytes
    - Click Count (0)
  2. docs/ja/docs/advanced/settings.md

    /// tip | 豆知識
    
    これを機能させるには、`pip install python-dotenv` が必要です。
    
    ///
    
    ### `.env` ファイル { #the-env-file }
    
    次のような `.env` ファイルを用意できます:
    
    ```bash
    ADMIN_EMAIL="******@****.***"
    APP_NAME="ChimichangApp"
    ```
    
    ### `.env` から設定を読む { #read-settings-from-env }
    
    そして、`config.py` を次のように更新します:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 12.7K bytes
    - Click Count (0)
  3. docs/pt/docs/advanced/security/oauth2-scopes.md

    Para o OAuth2, eles são apenas strings.
    
    ///
    
    ## Visão global { #global-view }
    
    Primeiro, vamos olhar rapidamente as partes que mudam dos exemplos do **Tutorial - Guia de Usuário** para [OAuth2 com Senha (e hash), Bearer com tokens JWT](../../tutorial/security/oauth2-jwt.md). Agora utilizando escopos OAuth2:
    
    {* ../../docs_src/security/tutorial005_an_py310.py hl[5,9,13,47,65,106,108:116,122:126,130:136,141,157] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 14.9K bytes
    - Click Count (0)
  4. docs/zh/docs/advanced/settings.md

    /// tip | 提示
    
    要使其工作,你需要执行 `pip install python-dotenv`。
    
    ///
    
    ### `.env` 文件 { #the-env-file }
    
    你可以有一个 `.env` 文件,内容如下:
    
    ```bash
    ADMIN_EMAIL="******@****.***"
    APP_NAME="ChimichangApp"
    ```
    
    ### 从 `.env` 中读取设置 { #read-settings-from-env }
    
    然后更新 `config.py`:
    
    {* ../../docs_src/settings/app03_an_py310/config.py hl[9] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  5. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            // MS-SMB2 3.2.4.1.6: Alternative Channel Creation
            // Channel binding requires SMB2_SESSION_FLAG_BINDING (0x01) in session setup
    
            // Calculate channel binding hash per MS-SMB2 3.2.5.3.1
            byte[] bindingInfo = calculateBindingInfo(channel);
            byte[] bindingHash = calculateBindingHash(bindingInfo);
            channel.setBindingHash(bindingHash);
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 21 11:13:46 GMT 2025
    - 20K bytes
    - Click Count (0)
  6. docs/site-replication/run-multi-site-minio-idp.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	cat /tmp/minio1_2.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Sep 24 08:03:58 GMT 2024
    - 12.1K bytes
    - Click Count (0)
  7. api/go1.txt

    pkg hash/crc64, const ISO ideal-int
    pkg hash/crc64, const Size ideal-int
    pkg hash/crc64, func Checksum([]uint8, *Table) uint64
    pkg hash/crc64, func MakeTable(uint64) *Table
    pkg hash/crc64, func New(*Table) hash.Hash64
    pkg hash/crc64, func Update(uint64, *Table, []uint8) uint64
    pkg hash/crc64, type Table [256]uint64
    pkg hash/fnv, func New32() hash.Hash32
    pkg hash/fnv, func New32a() hash.Hash32
    pkg hash/fnv, func New64() hash.Hash64
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Click Count (0)
  8. guava/src/com/google/common/collect/ImmutableCollection.java

     *   <li>The performance of using the associated {@code Builder} class can be assumed to be no
     *       worse, and possibly better, than creating a mutable collection and copying it.
     *   <li>Implementations generally do not cache hash codes. If your element or key type has a slow
     *       {@code hashCode} implementation, it should cache it itself.
     * </ul>
     *
     * <h4>Example usage</h4>
     *
     * {@snippet :
     * class Foo {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/security/oauth2-jwt.md

    使用 `pwdlib`,你甚至可以把它設定為能讀取由 **Django**、**Flask** 的安全外掛或其他許多系統所建立的密碼。
    
    例如,你可以讓 Django 應用與 FastAPI 應用共用同一個資料庫中的資料。或者逐步遷移一個 Django 應用,同樣使用該資料庫。
    
    而你的使用者可以同時從 Django 應用或 **FastAPI** 應用登入。
    
    ///
    
    ## 雜湊與驗證密碼 { #hash-and-verify-the-passwords }
    
    從 `pwdlib` 匯入我們需要的工具。
    
    用建議設定建立一個 PasswordHash 執行個體——它會用於雜湊與驗證密碼。
    
    /// tip | 提示
    
    pwdlib 也支援 bcrypt 雜湊演算法,但不包含傳統(legacy)演算法——若需要處理過時的雜湊,建議使用 passlib 函式庫。
    
    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)
  10. docs/zh/docs/tutorial/security/oauth2-jwt.md

    例如,你可以在数据库中让一个 Django 应用和一个 FastAPI 应用共享同一份数据。或者在使用同一个数据库的前提下,逐步迁移一个 Django 应用到 FastAPI。
    
    同时,你的用户既可以从 Django 应用登录,也可以从 **FastAPI** 应用登录。
    
    ///
    
    ## 哈希并校验密码 { #hash-and-verify-the-passwords }
    
    从 `pwdlib` 导入所需工具。
    
    用推荐设置创建一个 PasswordHash 实例——它将用于哈希与校验密码。
    
    /// tip | 提示
    
    pwdlib 也支持 bcrypt 哈希算法,但不包含遗留算法——如果需要处理过时的哈希,建议使用 passlib 库。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.1K bytes
    - Click Count (0)
Back to Top