- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 1,705 for nonce (0.03 seconds)
-
CHANGELOG/CHANGELOG-1.27.md
- The API server now re-uses data encryption keys while the kms v2 plugin key ID is stable. Data encryption keys are still randomly generated on server start but an atomic counter is used to prevent nonce collisions. ([#116155](https://github.com/kubernetes/kubernetes/pull/116155), [@enj](https://github.com/enj))
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Wed Jul 17 07:48:22 GMT 2024 - 466.3K bytes - Click Count (2) -
CHANGELOG/CHANGELOG-1.8.md
* Add secretbox and AES-CBC encryption modes to at rest encryption. AES-CBC is considered superior to AES-GCM because it is resistant to nonce-reuse attacks, and secretbox uses Poly1305 and XSalsa20. ([#46916](https://github.com/kubernetes/kubernetes/pull/46916), [@smarterclayton](https://github.com/smarterclayton))
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Tue Feb 20 15:45:02 GMT 2024 - 312.2K bytes - Click Count (0) -
fastapi/_compat/shared.py
) -> TypeGuard[type[_T]]: try: return isinstance(cls, type) and issubclass(cls, class_or_tuple) # type: ignore[arg-type] except TypeError: # pragma: no cover if isinstance(cls, WithArgsTypes): return False raise # pragma: no cover def _annotation_is_sequence(annotation: type[Any] | None) -> bool:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:32:12 GMT 2026 - 6.9K bytes - Click Count (0) -
docs/tr/docs/tutorial/body.md
/// note | Not FastAPI, `q` değerinin zorunlu olmadığını `= None` default değerinden anlayacaktır. `str | None`, FastAPI tarafından bu değerin zorunlu olmadığını belirlemek için kullanılmaz; FastAPI bunun zorunlu olmadığını `= None` default değeri olduğu için bilir.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 6.9K bytes - Click Count (0) -
docs/tr/docs/tutorial/sql-databases.md
## `SQLModel` Kurulumu { #install-sqlmodel } Önce [virtual environment](../virtual-environments.md) oluşturduğunuzdan emin olun, aktive edin ve ardından `sqlmodel`’i yükleyin: <div class="termy"> ```console $ pip install sqlmodel ---> 100% ``` </div> ## Tek Model ile Uygulamayı Oluşturma { #create-the-app-with-a-single-model }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 16.8K bytes - Click Count (0) -
docs/tr/docs/tutorial/query-params-str-validations.md
Şimdi bunu FastAPI ile kullanmanın zamanı. 🚀 Şu tip anotasyonuna sahiptik: ```Python q: str | None = None ``` Şimdi bunu `Annotated` ile saracağız; şöyle olacak: ```Python q: Annotated[str | None] = None ``` Bu iki sürüm de aynı anlama gelir: `q`, `str` veya `None` olabilen bir parametredir ve varsayılan olarak `None`’dır. Şimdi işin eğlenceli kısmına geçelim. 🎉
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 17.3K bytes - Click Count (0) -
apache-maven/src/assembly/maven/conf/maven-user.properties
# DefaultVersionResolverRequest - Version resolution results (session/soft, less critical than artifacts) # RgavCacheKey - BOM import caching (session/soft, typically resolved once) # DefaultModelBuilderRequest - Model building operations (none, ensures fresh dynamic builds) # * - Fallback for all other requests (request/soft for temporary child request caching) # maven.cache.config = \
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 2.8K bytes - Click Count (0) -
docs/tr/docs/tutorial/body-updates.md
### Değiştirerek güncelleme uyarısı { #warning-about-replacing } Bu, `bar` öğesini `PUT` ile, body içinde şu verilerle güncellemek isterseniz: ```Python { "name": "Barz", "price": 3, "description": None, } ``` zaten kayıtlı olan `"tax": 20.2` alanını içermediği için, input model `"tax": 10.5` varsayılan değerini kullanacaktır. Ve veri, bu "yeni" `tax` değeri olan `10.5` ile kaydedilecektir.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.5K bytes - Click Count (0) -
tests/test_schema_extra_examples.py
@app.get("/query_example/") def query_example( data: str | None = Query( default=None, example="query1", ), ): return data @app.get("/query_examples/") def query_examples( data: str | None = Query( default=None, examples=["query1", "query2"], ), ): return dataCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 34.7K bytes - Click Count (0) -
fastapi/param_functions.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 68K bytes - Click Count (0)