- Sort Score
- Num 10 results
- Language All
Results 1621 - 1630 of 1,922 for djson (0.02 seconds)
-
docs/ja/docs/tutorial/extra-data-types.md
* `frozenset`: * リクエストとレスポンスでは`set`と同じように扱われます: * リクエストでは、リストが読み込まれ、重複を排除して`set`に変換されます。 * レスポンスでは`set`が`list`に変換されます。 * 生成されたスキーマは`set`の値が一意であることを指定します(JSON Schemaの`uniqueItems`を使用します)。 * `bytes`: * Pythonの標準的な`bytes`です。 * リクエストとレスポンスでは`str`として扱われます。 * 生成されたスキーマは`str`で`binary`の「フォーマット」を持つことを指定します。 * `Decimal`: * Pythonの標準的な`Decimal`です。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 3.2K bytes - Click Count (0) -
docs/uk/docs/advanced/websockets.md
У вашому маршруті WebSocket ви можете `await` повідомлення і надсилати повідомлення. {* ../../docs_src/websockets_/tutorial001_py310.py hl[48:52] *} Ви можете отримувати та надсилати бінарні, текстові та JSON-дані. ## Спробуйте { #try-it } Розмістіть код у файлі `main.py`, а потім запустіть ваш застосунок: <div class="termy"> ```console $ fastapi devCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 7.9K bytes - Click Count (0) -
docs/fr/docs/tutorial/cookie-param-models.md
```json { "detail": [ { "type": "extra_forbidden", "loc": ["cookie", "santa_tracker"], "msg": "Extra inputs are not permitted", "input": "good-list-please",Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 3.6K bytes - Click Count (0) -
buildscripts/minio-iam-ldap-upgrade-import-test.sh
echo "AFTER IMPORT mappings:" mc idp ldap policy entities new-minio set +x # mc admin service stop new-minio } verify_iam_content_in_new_minio() { output=$(mc idp ldap policy entities new-minio --json) groups=$(echo "$output" | jq -r '.result.policyMappings[] | select(.policy == "readwrite") | .groups[]') if [ "$groups" != "cn=project.c,ou=groups,ou=swengg,dc=min,dc=io" ]; then echo "Failed to verify groups: $groups"
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Nov 11 15:01:29 GMT 2024 - 3.4K bytes - Click Count (0) -
internal/s3select/sql/jsonpath.go
errWildcardArrayLookup = errors.New("Array wildcard used on non-array value") errWildcardObjectUsageInvalid = errors.New("Invalid usage of object wildcard") ) // jsonpathEval evaluates a JSON path and returns the value at the path. // If the value should be considered flat (from wildcards) any array returned should be considered individual values. func jsonpathEval(p []*JSONPathElement, v any) (r any, flat bool, err error) {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 3.4K bytes - Click Count (0) -
gradle/libs.versions.toml
kotlinx-serialization-core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-core", version.ref = "serialization" } kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "serialization" } mockserver = { module = "org.testcontainers:mockserver", version.ref = "testcontainers" }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 31 22:01:48 GMT 2026 - 12K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/SnippetsTask.groovy
} } catch (JsonParseException e) { throw new InvalidUserDataException("Invalid json in " + snippet.toString() + ". The error is:\n" + e.getMessage() + ".\n" + "After substitutions and munging, the json looks like:\n" + quoted, e); } } perSnippet(snippet) snippet = nullCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 20 10:08:26 GMT 2021 - 17.8K bytes - Click Count (0) -
docs/pt/docs/advanced/websockets.md
Em sua rota WebSocket você pode esperar (`await`) por mensagens e enviar mensagens. {* ../../docs_src/websockets_/tutorial001_py310.py hl[48:52] *} Você pode receber e enviar dados binários, de texto e JSON. ## Tente { #try-it } Coloque seu código em um arquivo `main.py` e então execute sua aplicação: <div class="termy"> ```console $ fastapi dev
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 5.6K bytes - Click Count (0) -
docs/zh/docs/advanced/dataclasses.md
4. `Author` 数据类被用作 `response_model` 参数。 5. 你可以将其它标准类型注解与数据类一起用作请求体。 在本例中,它是一个 `Item` 数据类列表。 6. 这里我们返回一个字典,里面的 `items` 是一个数据类列表。 FastAPI 仍然能够将数据<dfn title="把数据转换为可以传输的格式">序列化</dfn>为 JSON。 7. 这里的 `response_model` 使用了 “`Author` 数据类列表” 的类型注解。 同样,你可以将 `dataclasses` 与标准类型注解组合使用。 8. 注意,这个 *路径操作函数* 使用的是常规的 `def` 而不是 `async def`。 一如既往,在 FastAPI 中你可以按需组合 `def` 和 `async def`。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import io.restassured.RestAssured; import io.restassured.path.json.JsonPath; import io.restassured.response.Response; /** * Integration Tests which need an execution of crawler * - /api/v1/documents * */ @Tag("it") public class SearchApiTests extends CrawlTestBase {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:29:45 GMT 2025 - 19K bytes - Click Count (0)