- Sort Score
- Num 10 results
- Language All
Results 231 - 240 of 620 for jsconf (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/ru/docs/advanced/json-base64-bytes.md
# JSON с байтами в Base64 { #json-with-bytes-as-base64 } Если вашему приложению нужно принимать и отправлять JSON-данные, но при этом необходимо включать в них бинарные данные, вы можете кодировать их в base64. ## Base64 и файлы { #base64-vs-files }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 3.8K bytes - Click Count (0) -
.github/workflows/mint/nginx-4-node.conf
'"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; keepalive_timeout 65; # include /etc/nginx/conf.d/*.conf; upstream minio { server minio1:9000 max_fails=1 fail_timeout=10s; server minio2:9000 max_fails=1 fail_timeout=10s; server minio3:9000 max_fails=1 fail_timeout=10s; }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed May 15 16:52:29 GMT 2024 - 3.1K bytes - Click Count (0) -
.github/workflows/mint/nginx-8-node.conf
'"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; keepalive_timeout 65; # include /etc/nginx/conf.d/*.conf; upstream minio { server minio1:9000 max_fails=1 fail_timeout=10s; server minio2:9000 max_fails=1 fail_timeout=10s; server minio3:9000 max_fails=1 fail_timeout=10s;Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed May 15 16:52:29 GMT 2024 - 3.4K bytes - Click Count (0) -
docs/es/docs/advanced/json-base64-bytes.md
# JSON con Bytes como Base64 { #json-with-bytes-as-base64 } Si tu app necesita recibir y enviar datos JSON, pero necesitas incluir datos binarios en él, puedes codificarlos como base64. ## Base64 vs Archivos { #base64-vs-files }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) -
docs/fr/docs/advanced/json-base64-bytes.md
# JSON avec des octets en Base64 { #json-with-bytes-as-base64 } Si votre application doit recevoir et envoyer des données JSON, mais que vous devez y inclure des données binaires, vous pouvez les encoder en base64. ## Base64 vs fichiers { #base64-vs-files }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:33:45 GMT 2026 - 2.8K bytes - Click Count (0) -
docs/zh/docs/advanced/json-base64-bytes.md
# 在 JSON 中使用 Base64 表示字节 { #json-with-bytes-as-base64 } 如果你的应用需要接收和发送 JSON 数据,但其中需要包含二进制数据,可以将其编码为 base64。 ## Base64 与文件 { #base64-vs-files } 请先考虑是否可以使用 [请求文件](../tutorial/request-files.md) 来上传二进制数据,并使用 [自定义响应 - FileResponse](./custom-response.md#fileresponse--fileresponse-) 来发送二进制数据,而不是把它编码进 JSON。 JSON 只能包含 UTF-8 编码的字符串,因此无法直接包含原始字节。 Base64 可以把二进制数据编码为字符串,但为此会使用比原始二进制更多的字符,因此通常比直接使用文件的效率更低。 仅当你确实需要在 JSON 中包含二进制数据且无法使用文件时,才使用 base64。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:29:48 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json
Johannes Horn <******@****.***> 1754272009 +0200
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Aug 04 01:46:49 GMT 2025 - 71.2K bytes - Click Count (0) -
docs/metrics/prometheus/grafana/replication/minio-replication-node.json
Johannes Horn <******@****.***> 1754272009 +0200
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Aug 04 01:46:49 GMT 2025 - 57.5K bytes - Click Count (0) -
docs/sts/rw-ldap-username.json
Harshavardhana <******@****.***> 1622223187 -0700
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri May 28 17:33:07 GMT 2021 - 201 bytes - Click Count (0) -
docs/ko/docs/tutorial/body-multiple-params.md
기본적으로 **FastAPI**는 그 본문을 직접 예상합니다. 하지만 추가 본문 매개변수를 선언할 때처럼, `item` 키를 가지고 그 안에 모델 내용이 들어 있는 JSON을 예상하게 하려면, `Body`의 특별한 매개변수 `embed`를 사용할 수 있습니다: ```Python item: Item = Body(embed=True) ``` 다음과 같이요: {* ../../docs_src/body_multiple_params/tutorial005_an_py310.py hl[17] *} 이 경우 **FastAPI**는 다음과 같은 본문을 예상합니다: ```JSON hl_lines="2" { "item": { "name": "Foo",
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 5.5K bytes - Click Count (0)