- Sort Score
- Num 10 results
- Language All
Results 271 - 280 of 1,096 for sltr (0.04 seconds)
-
docs_src/settings/app02_py310/config.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 159 bytes - Click Count (0) -
docs_src/stream_json_lines/tutorial001_py310.py
from collections.abc import AsyncIterable, Iterable from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str description: str | None items = [ Item(name="Plumbus", description="A multi-purpose household device."), Item(name="Portal Gun", description="A portal opening device."), Item(name="Meeseeks Box", description="A box that summons a Meeseeks."), ]
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 27 18:56:47 GMT 2026 - 936 bytes - Click Count (0) -
docs_src/python_types/tutorial013_py310.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 127 bytes - Click Count (0) -
docs/ko/docs/python-types.md
대괄호 안의 내부 타입은 "type parameters"라고 부릅니다. 이 경우 `str`이 `list`에 전달된 타입 매개변수입니다. /// 이는 "변수 `items`는 `list`이고, 이 `list`의 각 아이템은 `str`이다"라는 뜻입니다. 이렇게 하면, 에디터는 리스트의 아이템을 처리하는 동안에도 지원을 제공할 수 있습니다: <img src="/img/python-types/image05.png"> 타입이 없으면, 이는 거의 불가능합니다. 변수 `item`이 리스트 `items`의 요소 중 하나라는 점에 주목하세요. 그리고 에디터는 여전히 이것이 `str`임을 알고, 그에 대한 지원을 제공합니다. #### Tuple과 Set { #tuple-and-set }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 13K bytes - Click Count (0) -
docs_src/settings/app03_an_py310/config.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 235 bytes - Click Count (0) -
docs_src/generate_clients/tutorial003_py310.py
app = FastAPI(generate_unique_id_function=custom_generate_unique_id) class Item(BaseModel): name: str price: float class ResponseMessage(BaseModel): message: str class User(BaseModel): username: str email: str @app.post("/items/", response_model=ResponseMessage, tags=["items"]) async def create_item(item: Item):
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 914 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java
final IntentDetectionResult result = IntentDetectionResult.search("test query", "reasoning"); final String str = result.toString(); assertNotNull(str); assertTrue(str.contains("IntentDetectionResult")); assertTrue(str.contains("SEARCH")); assertTrue(str.contains("test query")); } @Test public void test_reasoning_preserved() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 8.2K bytes - Click Count (0) -
docs/de/docs/advanced/advanced-python-types.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 07:57:30 GMT 2026 - 2.3K bytes - Click Count (0) -
tests/test_get_model_definitions_formfeed_escape.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 14:34:02 GMT 2026 - 6K bytes - Click Count (0) -
tests/test_no_schema_split.py
class MessageEventType(str, Enum): alpha = "alpha" beta = "beta" class MessageEvent(BaseModel): event_type: MessageEventType = Field(default=MessageEventType.alpha) output: str class MessageOutput(BaseModel): body: str = "" events: list[MessageEvent] = [] class Message(BaseModel): input: str output: MessageOutput
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 14:34:02 GMT 2026 - 6.5K bytes - Click Count (0)