- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 94 for metnini (0.09 seconds)
-
docs/tr/docs/how-to/conditional-openapi.md
* request body'leriniz ve response'larınız için iyi tanımlanmış Pydantic model'larına sahip olduğunuzdan emin olun. * dependencies kullanarak gerekli izinleri ve rolleri yapılandırın. * Asla düz metin (plaintext) şifre saklamayın, yalnızca password hash'leri saklayın. * pwdlib ve JWT token'ları gibi, iyi bilinen kriptografik araçları uygulayın ve kullanın. * Gerektiğinde OAuth2 scope'ları ile daha ayrıntılı izin kontrolleri ekleyin.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/tr/docs/tutorial/security/simple-oauth2.md
### Password’ü Kontrol Etme { #check-the-password } Bu noktada veritabanından kullanıcı verisine sahibiz, ancak password’ü henüz kontrol etmedik. Önce bu veriyi Pydantic `UserInDB` modeline koyalım. Asla düz metin (plaintext) password kaydetmemelisiniz; bu yüzden (sahte) password hashing sistemini kullanacağız. Password’ler eşleşmezse, aynı hatayı döndürürüz. #### Password hashing { #password-hashing }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 10.4K bytes - Click Count (0) -
docs/tr/docs/advanced/openapi-webhooks.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 3.3K bytes - Click Count (0) -
docs/tr/docs/tutorial/security/oauth2-jwt.md
Ancak bu anlamsız çıktıdan geri password'e dönüştürme yapılamaz. ### Neden password hashing kullanılır { #why-use-password-hashing } Veritabanınız çalınırsa, hırsız kullanıcılarınızın düz metin (plaintext) password'lerini değil, sadece hash'leri elde eder. Dolayısıyla, o password'ü başka bir sistemde denemek kolay olmaz (pek çok kullanıcı her yerde aynı password'ü kullandığı için bu tehlikeli olurdu).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 12.1K bytes - Click Count (0) -
docs/en/docs/tutorial/dependencies/classes-as-dependencies.md
/// tip Prefer to use the `Annotated` version if possible. /// ```Python commons: CommonQueryParams ... ``` //// ...doesn't have any special meaning for **FastAPI**. FastAPI won't use it for data conversion, validation, etc. (as it is using the `Depends(CommonQueryParams)` for that). You could actually write just: //// tab | Python 3.10+ ```Python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:32:12 GMT 2026 - 6.8K bytes - Click Count (0) -
tests/scanner_valuer_test.go
} func (ExampleStruct) GormDataType() string { return "bytes" } func (s ExampleStruct) Value() (driver.Value, error) { if len(s.Name) == 0 { return nil, nil } // for test, has no practical meaning s.Name = "" return json.Marshal(s) } func (s *ExampleStruct) Scan(src interface{}) error { switch value := src.(type) { case string: return json.Unmarshal([]byte(value), s) case []byte:
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Wed Jun 07 07:02:07 GMT 2023 - 10.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Ordering.java
return UsingToStringOrdering.INSTANCE; } /** * Returns an arbitrary ordering over all objects, for which {@code compare(a, b) == 0} implies * {@code a == b} (identity equality). There is no meaning whatsoever to the order imposed, but it * is constant for the life of the VM. * * <p>Because the ordering is identity-based, it is not "consistent with {@linkCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 39.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
this.andx = andx; andxCommand = andx.command; } } int getBatchLimit(final byte command) { /* the default limit is 0 batched messages before this * one, meaning this message cannot be batched. */ return 0; } /* * We overload this method from ServerMessageBlock because * we want writeAndXWireFormat to write the parameterWordsCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 10.9K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
* both internally supplied passwords are equal. If one {@code NtlmPasswordAuthentication} object has external * hashes (meaning negotiated via NTLM HTTP Authentication) and the other does not they will not be equal. This is * technically not correct however the server 8 byte challenge would be required to compute and compare the passwordCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 9.3K bytes - Click Count (0) -
docs/tr/docs/tutorial/extra-models.md
* **input modeli** bir `password` içerebilmelidir. * **output modeli** `password` içermemelidir. * **database modeli** büyük ihtimalle hash'lenmiş bir `password` tutmalıdır. /// danger | Tehlike Kullanıcının düz metin (plaintext) `password`'ünü asla saklamayın. Her zaman sonradan doğrulayabileceğiniz "güvenli bir hash" saklayın.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 7.4K bytes - Click Count (0)