- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 61 for Plaintext (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/zh/docs/virtual-environments.md
激活虚拟环境后,`PATH` 变量会变成这样: //// tab | Linux, macOS ```plaintext /home/user/code/awesome-project/.venv/bin:/usr/bin:/bin:/usr/sbin:/sbin ``` 这意味着系统现在会首先在以下目录中查找程序: ```plaintext /home/user/code/awesome-project/.venv/bin ``` 然后再在其他目录中查找。 因此,当你在终端中输入 `python` 时,系统会在以下目录中找到 Python 程序: ```plaintext /home/user/code/awesome-project/.venv/bin/python ``` 并使用这个。 ////
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Nov 08 19:23:26 GMT 2024 - 21K bytes - Click Count (0) -
docs/ja/docs/environment-variables.md
例えば、`PATH`環境変数は次のような文字列かもしれません: //// tab | Linux, macOS ```plaintext /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin ``` これは、OSはプログラムを見つけるために以下のディレクトリを探す、ということを意味します: * `/usr/local/bin` * `/usr/bin` * `/bin` * `/usr/sbin` * `/sbin` //// //// tab | Windows ```plaintext C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32 ```
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Mon Jan 27 15:39:04 GMT 2025 - 9.4K bytes - Click Count (0) -
docs/ko/docs/virtual-environments.md
//// tab | Linux, macOS ```plaintext /home/user/code/awesome-project/.venv/bin:/usr/bin:/bin:/usr/sbin:/sbin ``` 시스템은 가장 먼저 다음 경로에서 프로그램을 찾기 시작합니다: ```plaintext /home/user/code/awesome-project/.venv/bin ``` 그 후에 다른 디렉터리들을 탐색합니다. 따라서 터미널에 `python`을 입력하면, 시스템은 다음 위치에 있는 Python 프로그램을 찾게 됩니다: ```plaintext /home/user/code/awesome-project/.venv/bin/python ```
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri May 30 13:10:41 GMT 2025 - 25.8K bytes - Click Count (0) -
docs/security/README.md
##### Figure 1 - Secure Channel construction ``` plaintext := chunk_0 || chunk_1 || chunk_2 || ...
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Feb 26 09:25:50 GMT 2025 - 13.8K bytes - Click Count (0) -
docs/en/docs/tutorial/security/simple-oauth2.md
At this point we have the user data from our database, but we haven't checked the password. Let's put that data in the Pydantic `UserInDB` model first. You should never save plaintext passwords, so, we'll use the (fake) password hashing system. If the passwords don't match, we return the same error. #### Password hashing { #password-hashing }
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sun Aug 31 09:15:41 GMT 2025 - 9.4K bytes - Click Count (0) -
docs/en/docs/tutorial/extra-models.md
* The **input model** needs to be able to have a password. * The **output model** should not have a password. * The **database model** would probably need to have a hashed password. /// danger Never store user's plaintext passwords. Always store a "secure hash" that you can then verify. If you don't know, you will learn what a "password hash" is in the [security chapters](security/simple-oauth2.md#password-hashing){.internal-link target=_blank}.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 20 15:55:38 GMT 2025 - 6.9K bytes - Click Count (0) -
docs/ja/docs/virtual-environments.md
仮想環境を有効にすると、 `PATH` 変数は次のようになります。 //// tab | Linux, macOS ```plaintext /home/user/code/awesome-project/.venv/bin:/usr/bin:/bin:/usr/sbin:/sbin ``` これは、OSが他のディレクトリを探すより前に、最初に以下のディレクトリ中でプログラムを探し始めることを意味します: ```plaintext /home/user/code/awesome-project/.venv/bin ``` そのため、ターミナルで `python` と入力した際に、OSはPythonプログラムを以下のパスで発見し、使用します。 ```plaintext /home/user/code/awesome-project/.venv/bin/python ``` ////
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Mar 19 12:22:33 GMT 2025 - 27.8K bytes - Click Count (0) -
samples/compare/src/test/kotlin/okhttp3/compare/JavaHttpClientTest.kt
assertThat(recorded.headers["Content-Length"]).isEqualTo("0") } assertThat(recorded.headers["HTTP2-Settings"]).isNotNull() assertThat(recorded.headers["Upgrade"]).isEqualTo("h2c") // HTTP/2 over plaintext! assertThat(recorded.headers["User-Agent"]!!).matches(Regex("Java-http-client/.*")) }
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Jun 18 12:28:21 GMT 2025 - 2.8K bytes - Click Count (0) -
cmd/encryption-v1.go
AssociatedData: kms.Context{bucket: path.Join(bucket, object)}, }) if err != nil { return crypto.ObjectKey{}, err } objectKey := crypto.GenerateKey(key.Plaintext, rand.Reader) sealedKey = objectKey.Seal(key.Plaintext, crypto.GenerateIV(rand.Reader), crypto.S3.String(), bucket, object) crypto.S3.CreateMetadata(metadata, key.KeyID, key.Ciphertext, sealedKey) return objectKey, nil case crypto.S3KMS:Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 38K bytes - Click Count (0) -
internal/kms/stub.go
func (s StubKMS) GenerateKey(_ context.Context, req *GenerateKeyRequest) (DEK, error) { if !s.containsKeyName(req.Name) { return DEK{}, ErrKeyNotFound } return DEK{ KeyID: req.Name, Version: 0, Plaintext: []byte("stubplaincharswhichare32bytelong"), Ciphertext: []byte("stubplaincharswhichare32bytelong"), }, nil } // Decrypt is a non-functional stub.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Aug 18 06:43:03 GMT 2024 - 3.6K bytes - Click Count (0)