- Sort Score
- Result 10 results
- Languages All
Results 521 - 530 of 784 for itemId (0.04 sec)
-
src/main/resources/fess_message_ru.properties
constraints.URL.message = {item} - неверный URL-адрес. constraints.Required.message = {item} обязательно. constraints.TypeInteger.message = {item} должно быть числом. constraints.TypeLong.message = {item} должно быть числом. constraints.TypeFloat.message = {item} должно быть числом. constraints.TypeDouble.message = {item} должно быть числом. constraints.TypeAny.message = {item} не может быть преобразовано в {propertyType}.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 15.8K bytes - Viewed (0) -
docs_src/cookie_param_models/tutorial001_py310.py
from pydantic import BaseModel app = FastAPI() class Cookies(BaseModel): session_id: str fatebook_tracker: str | None = None googall_tracker: str | None = None @app.get("/items/") async def read_items(cookies: Cookies = Cookie()):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 303 bytes - Viewed (0) -
docs_src/query_params_str_validations/tutorial014_an_py39.py
from typing import Annotated, Union from fastapi import FastAPI, Query app = FastAPI() @app.get("/items/") async def read_items( hidden_query: Annotated[Union[str, None], Query(include_in_schema=False)] = None, ): if hidden_query: return {"hidden_query": hidden_query} else:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Mar 26 16:56:53 UTC 2024 - 344 bytes - Viewed (0) -
docs_src/pydantic_v1_in_v2/tutorial002_an_py39.py
from typing import Union from fastapi import FastAPI from pydantic.v1 import BaseModel class Item(BaseModel): name: str description: Union[str, None] = None size: float app = FastAPI() @app.post("/items/") async def create_item(item: Item) -> Item:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 284 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestBulkFileWriter.java
import org.opensearch.transport.client.Client; /** * SuggestBulkFileWriter is an implementation of the SuggestWriter interface. * This class is responsible for writing and deleting suggest items in bulk. * * <p>Currently, the methods in this class throw UnsupportedOperationException * as they are not yet implemented.</p> * * @see SuggestWriter */
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 2.1K bytes - Viewed (0) -
tests/test_arbitrary_types.py
"custom_field": [1.0, 2.0, 3.0] } assert ta.json_schema() == snapshot( { "properties": { "custom_field": { "items": {"type": "number"}, "title": "Custom Field", "type": "array", } }, "required": ["custom_field"], "title": "MyModel",
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/resources/fess_message_it.properties
constraints.URL.message = {item} non è un URL valido. constraints.Required.message = {item} è richiesto. constraints.TypeInteger.message = {item} deve essere un numero. constraints.TypeLong.message = {item} deve essere un numero. constraints.TypeFloat.message = {item} deve essere un numero. constraints.TypeDouble.message = {item} deve essere un numero. constraints.TypeAny.message = {item} non può essere convertito in {propertyType}.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.3K bytes - Viewed (0) -
docs_src/header_param_models/tutorial001_an_py310.py
app = FastAPI() class CommonHeaders(BaseModel): host: str save_data: bool if_modified_since: str | None = None traceparent: str | None = None x_tag: list[str] = [] @app.get("/items/") async def read_items(headers: Annotated[CommonHeaders, Header()]):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 392 bytes - Viewed (0) -
docs_src/path_operation_configuration/tutorial001_py310.py
from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str description: str | None = None price: float tax: float | None = None tags: set[str] = set() @app.post("/items/", response_model=Item, status_code=status.HTTP_201_CREATED) async def create_item(item: Item):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Jan 07 14:11:31 UTC 2022 - 363 bytes - Viewed (0) -
docs_src/header_param_models/tutorial001_py39.py
class CommonHeaders(BaseModel): host: str save_data: bool if_modified_since: Union[str, None] = None traceparent: Union[str, None] = None x_tag: list[str] = [] @app.get("/items/") async def read_items(headers: CommonHeaders = Header()):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 390 bytes - Viewed (0)