- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 71 for 0x4506 (0.13 sec)
-
docs/pt/docs/deployment/versions.md
Por exemplo, supondo que você está usando a versão `0.45.0` em sua aplicação. Caso você utilize o arquivo `requirements.txt`, você poderia especificar a versão com: ```txt fastapi==0.45.0 ``` Isso significa que você conseguiria utilizar a versão exata `0.45.0`. Ou, você poderia fixá-la com: ```txt fastapi>=0.45.0,<0.46.0 ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 3.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/SipHashFunctionTest.java
public void testCollisionsDueToIncorrectSignExtension() { byte[] col1 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x80}; byte[] col2 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x81}; byte[] col3 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0xff}; ImmutableSet<HashCode> hashCodes = ImmutableSet.of( SIP_WITH_KEY.hashBytes(col1),
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 6.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/SipHashFunctionTest.java
public void testCollisionsDueToIncorrectSignExtension() { byte[] col1 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x80}; byte[] col2 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x81}; byte[] col3 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0xff}; ImmutableSet<HashCode> hashCodes = ImmutableSet.of( SIP_WITH_KEY.hashBytes(col1),
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 6.6K bytes - Viewed (0) -
docs/es/docs/deployment/versions.md
Por ejemplo, digamos que estás usando la versión `0.45.0` en tu aplicación. Si usas el archivo `requirements.txt` puedes especificar la versión con: ```txt fastapi==0.45.0 ``` esto significa que usarás específicamente la versión `0.45.0`. También puedes fijar las versiones de esta forma: ```txt fastapi>=0.45.0,<0.46.0 ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 19 18:15:21 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/zh/docs/deployment/versions.md
## 固定你的 `fastapi` 版本 你应该做的第一件事是将你正在使用的 **FastAPI** 版本“固定”到你知道适用于你的应用程序的特定最新版本。 例如,假设你在应用程序中使用版本`0.45.0`。 如果你使用`requirements.txt`文件,你可以使用以下命令指定版本: ````txt fastapi==0.45.0 ```` 这意味着你将使用版本`0.45.0`。 或者你也可以将其固定为: ````txt fastapi>=0.45.0,<0.46.0 ```` 这意味着你将使用`0.45.0`或更高版本,但低于`0.46.0`,例如,版本`0.45.2`仍会被接受。 如果你使用任何其他工具来管理你的安装,例如 Poetry、Pipenv 或其他工具,它们都有一种定义包的特定版本的方法。 ## 可用版本
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 3.1K bytes - Viewed (0) -
docs/fr/docs/deployment/versions.md
qu'elle fonctionne correctement pour votre application. Par exemple, disons que vous utilisez la version `0.45.0` dans votre application. Si vous utilisez un fichier `requirements.txt`, vous pouvez spécifier la version avec : ```txt fastapi==0.45.0 ``` ce qui signifierait que vous utiliseriez exactement la version `0.45.0`. Ou vous pourriez aussi l'épingler avec : ```txt fastapi>=0.45.0,<0.46.0 ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 4.1K bytes - Viewed (0) -
cmd/bootstrap-peer-server_gen.go
} } return } // EncodeMsg implements msgp.Encodable func (z *ServerSystemConfig) EncodeMsg(en *msgp.Writer) (err error) { // map header, size 4 // write "NEndpoints" err = en.Append(0x84, 0xaa, 0x4e, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73) if err != nil { return } err = en.WriteInt(z.NEndpoints) if err != nil { err = msgp.WrapError(err, "NEndpoints") return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 21 14:49:49 UTC 2024 - 7K bytes - Viewed (0) -
docs/ko/docs/deployment/versions.md
가장 먼저 해야할 것은 응용 프로그램이 잘 작동하는 가장 최신의 구체적인 **FastAPI** 버전을 표시하는 것입니다. 예를 들어, 응용 프로그램에 `0.45.0` 버전을 사용했다고 가정합니다. 만약에 `requirements.txt` 파일을 사용했다면, 다음과 같이 버전을 명세할 수 있습니다: ```txt fastapi==0.45.0 ``` 이것은 `0.45.0` 버전을 사용했다는 것을 의미합니다. 또는 다음과 같이 표시할 수 있습니다: ```txt fastapi>=0.45.0,<0.46.0 ``` 이것은 `0.45.0` 버전과 같거나 높으면서 `0.46.0` 버전 보다는 낮은 버전을 사용했다는 것을 의미합니다. 예를 들어, `0.45.2` 버전과 같은 경우는 해당 조건을 만족합니다.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 4.1K bytes - Viewed (0) -
docs/ja/docs/deployment/versions.md
## `fastapi` のバージョンを固定 最初にすべきことは、アプリケーションが正しく動作する **FastAPI** のバージョンを固定することです。 例えば、バージョン `0.45.0` を使っているとしましょう。 `requirements.txt` を使っているなら、以下の様にバージョンを指定できます: ```txt fastapi==0.45.0 ``` これは、厳密にバージョン `0.45.0` だけを使うことを意味します。 または、以下の様に固定することもできます: ```txt fastapi>=0.45.0,<0.46.0 ``` これは `0.45.0` 以上、`0.46.0` 未満のバージョンを使うことを意味します。例えば、バージョン `0.45.2` は使用可能です。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 4.3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt
val index = readInt(b, PREFIX_7_BITS) readIndexedHeader(index - 1) } b == 0x40 -> { // 01000000 readLiteralHeaderWithIncrementalIndexingNewName() } b and 0x40 == 0x40 -> { // 01NNNNNN val index = readInt(b, PREFIX_6_BITS)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 22.5K bytes - Viewed (0)