- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 2,271 for consent (0.17 seconds)
-
docs/fr/docs/advanced/custom-response.md
Elle accepte les paramètres suivants : - `content` - Une `str` ou des `bytes`. - `status_code` - Un code d'état HTTP de type `int`. - `headers` - Un `dict` de chaînes. - `media_type` - Une `str` donnant le media type. Par exemple « text/html ».
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.3K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_complex_doc/data/en_doc.md
Fixer tool expects comments that follow specific pattern: - For hash-style comments: comment starts with `# ` (hash following by whitespace) in the beginning of the string or after a whitespace. - For slash-style comments: comment starts with `// ` (two slashes following by whitespace) in the beginning of the string or after a whitespace. If comment doesn't follow this pattern, fixer tool will not preserve it. ```python #Function declaration
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 08:08:04 GMT 2026 - 7.6K bytes - Click Count (0) -
docs/es/docs/tutorial/server-sent-events.md
data: {"name": "Plumbus", "price": 32.99} ``` SSE se usa comúnmente para streaming de chat de IA, notificaciones en vivo, logs y observabilidad, y otros casos donde el servidor envía actualizaciones al cliente. /// tip | Consejo Si quieres hacer streaming de datos binarios, por ejemplo video o audio, Revisa la guía avanzada: [Stream Data](../advanced/stream-data.md). /// ## Streaming de SSE con FastAPI { #stream-sse-with-fastapi }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:12:26 GMT 2026 - 5K bytes - Click Count (0) -
docs/en/docs/contributing.md
## Automated Code and AI You are encouraged to use all the tools you want to do your work and contribute as efficiently as possible, this includes AI (LLM) tools, etc. Nevertheless, contributions should have meaningful human intervention, judgement, context, etc.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 13:59:26 GMT 2026 - 10.6K bytes - Click Count (0) -
src/archive/zip/struct.go
Name string // Comment is any arbitrary user-defined string shorter than 64KiB. Comment string // NonUTF8 indicates that Name and Comment are not encoded in UTF-8. // // By specification, the only other encoding permitted should be CP-437, // but historically many ZIP readers interpret Name and Comment as whatever // the system's local character encoding happens to be. //
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue May 28 21:41:09 GMT 2024 - 12.1K bytes - Click Count (0) -
docs/tr/docs/tutorial/request-files.md
Örneğin, bir `async` *path operation function* içinde içeriği şöyle alabilirsiniz: ```Python contents = await myfile.read() ``` Normal bir `def` *path operation function* içindeyseniz `UploadFile.file`’a doğrudan erişebilirsiniz, örneğin: ```Python contents = myfile.file.read() ``` /// note | `async` Teknik Detaylar
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 7.5K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt
} companion object { private const val NO_CHUNK_YET = -1L private const val STATE_IDLE = 0 // Idle connections are ready to write request headers. private const val STATE_OPEN_REQUEST_BODY = 1 private const val STATE_WRITING_REQUEST_BODY = 2 private const val STATE_READ_RESPONSE_HEADERS = 3 private const val STATE_OPEN_RESPONSE_BODY = 4 private const val STATE_READING_RESPONSE_BODY = 5Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 17.6K bytes - Click Count (7) -
src/main/resources/fess_label_en.properties
labels.group_list_name=Name labels.group_name=Name labels.group_title_details=Group labels.related_content_configuration=Related Content labels.related_content_content=Content labels.related_content_list_term=Term labels.related_content_term=Term labels.related_content_title_details=Related Content labels.related_query_configuration=Related Query labels.related_query_list_term=Term labels.related_query_queries=Queries
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
okhttp-sse/src/main/kotlin/okhttp3/sse/internal/RealEventSource.kt
return } val body = response.body if (!body.isEventStream()) { listener.onFailure( this, IllegalStateException("Invalid content-type: ${body.contentType()}"), response, ) return } // This is a long-lived response. Cancel full-call timeouts. call?.timeout()?.cancel()Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Oct 03 07:51:20 GMT 2025 - 3.2K bytes - Click Count (0) -
docs/es/docs/advanced/json-base64-bytes.md
{ "description": "Some data", "data": "aGVsbG8=" } ``` /// tip | Consejo `aGVsbG8=` es la codificación base64 de `hello`. /// Y luego Pydantic decodificará el string base64 y te dará los bytes originales en el campo `data` del modelo. Recibirás una response como: ```json { "description": "Some data", "content": "hello" } ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:12:26 GMT 2026 - 2.6K bytes - Click Count (0)