- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 141 for canRotate (0.2 sec)
-
docs/em/docs/advanced/dataclasses.md
๐ ๐ช ๐ `dataclasses` โฎ๏ธ ๐ ๐ โ โ ๐ฆ ๐ ๐. ๐ผ, ๐ ๐ช โ๏ธ โ๏ธ Pydantic โฌ `dataclasses`. ๐ผ, ๐ฅ ๐ โ๏ธ โ โฎ๏ธ ๐ ๐ ๐ ๏ธ ๐งพ. ๐ ๐ผ, ๐ ๐ช ๐ฏ ๐ฑ ๐ฉ `dataclasses` โฎ๏ธ `pydantic.dataclasses`, โ ๐ง-โป: ```{ .python .annotate hl_lines="1 5 8-11 14-17 23-25 28" } {!../../docs_src/dataclasses/tutorial003.py!} ``` 1๏ธโฃ. ๐ฅ ๐ `field` โช๏ธโก๏ธ ๐ฉ `dataclasses`. 2๏ธโฃ. `pydantic.dataclasses` ๐ง-โป `dataclasses`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.4K bytes - Viewed (0) -
docs/zh/docs/advanced/dataclasses.md
## ๅจๅตๅฅๆฐๆฎ็ปๆไธญไฝฟ็จๆฐๆฎ็ฑป ๆจ่ฟๅฏไปฅๆ `dataclasses` ไธๅ ถๅฎ็ฑปๅๆณจ่งฃ็ปๅๅจไธ่ตท๏ผๅๅปบๅตๅฅๆฐๆฎ็ปๆใ ่ฟๆไธไบๆ ๅตไนๅฏไปฅไฝฟ็จ Pydantic ็ `dataclasses`ใไพๅฆ๏ผๅจ API ๆๆกฃไธญๆพ็คบ้่ฏฏใ ๆฌไพๆๆ ๅ็ `dataclasses` ็ดๆฅๆฟๆขไธบ `pydantic.dataclasses`๏ผ ```{ .python .annotate hl_lines="1 5 8-11 14-17 23-25 28" } {!../../docs_src/dataclasses/tutorial003.py!} ``` 1. ๆฌไพไพ็ถ่ฆไปๆ ๅ็ `dataclasses` ไธญๅฏผๅ ฅ `field`๏ผ 2. ไฝฟ็จ `pydantic.dataclasses` ็ดๆฅๆฟๆข `dataclasses`๏ผ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java
* a little different from those of other Collection-related features such as {@link * CollectionFeature} or {@link SetFeature}. * * <p>However, when {@link CollectionSize.Require} is used to annotate a test it behaves normally * (i.e. it requires the collection instance under test to be a certain size for the test to run). * Note that this means a test should not require more than one CollectionSize, since a particular
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.4K bytes - Viewed (0) -
okhttp/build.gradle.kts
} } } project.applyOsgi( "Export-Package: okhttp3,okhttp3.internal.*;okhttpinternal=true;mandatory:=okhttpinternal", "Import-Package: " + "android.*;resolution:=optional," + "com.oracle.svm.core.annotate;resolution:=optional," + "com.oracle.svm.core.configure;resolution:=optional," + "dalvik.system;resolution:=optional," + "org.conscrypt;resolution:=optional," + "org.bouncycastle.*;resolution:=optional," +
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/em/docs/deployment/docker.md
@app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` ### ๐ ๐ ๐ ๐ ๐ โ ๐ `Dockerfile` โฎ๏ธ: ```{ .dockerfile .annotate } # (1) FROM python:3.9 # (2) WORKDIR /code # (3) COPY ./requirements.txt /code/requirements.txt # (4) RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (5)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 27.9K bytes - Viewed (0) -
docs/de/docs/advanced/dataclasses.md
In diesem Fall kรถnnen Sie einfach die Standard-`dataclasses` durch `pydantic.dataclasses` ersetzen, was einen direkten Ersatz darstellt: ```{ .python .annotate hl_lines="1 5 8-11 14-17 23-25 28" } {!../../docs_src/dataclasses/tutorial003.py!} ``` 1. Wir importieren `field` weiterhin von Standard-`dataclasses`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EnumBiMap.java
* could use null, but that messes with our nullness checking, including under J2KT. We could * probably work around it by changing how we annotate the J2CL EnumMap, but that's probably more * trouble than just using Object.class.) * * Then we declare the getters for these fields as @GwtIncompatible so that no one can try to use
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Aug 24 01:40:03 UTC 2023 - 6.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/EnumBiMap.java
* could use null, but that messes with our nullness checking, including under J2KT. We could * probably work around it by changing how we annotate the J2CL EnumMap, but that's probably more * trouble than just using Object.class.) * * Then we declare the getters for these fields as @GwtIncompatible so that no one can try to use
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Aug 24 01:40:03 UTC 2023 - 6.3K bytes - Viewed (0) -
docs/em/docs/advanced/custom-response.md
๐ ๐, ๐ ๐ซ โ๏ธ โ โซ๏ธ ๐ ๐ฅ ๐พ, & ๐ ๐ช ๐ถโโ๏ธ ๐ ๐ ๐ข `StreamingResponse`, & ๐จ โซ๏ธ. ๐ ๐ ๐ ๐ ๐ โฎ๏ธ โ ๐พ, ๐น ๐ญ, & ๐. ```{ .python .annotate hl_lines="2 10-12 14" } {!../../docs_src/custom_response/tutorial008.py!} ``` 1๏ธโฃ. ๐ ๐ ๐ข. โซ๏ธ "๐ ๐ข" โฉ๏ธ โซ๏ธ ๐ `yield` ๐ ๐. 2๏ธโฃ. โ๏ธ `with` ๐ซ, ๐ฅ โ ๐ญ ๐ ๐-๐ ๐ ๐ช โฎ๏ธ ๐ ๐ข ๐จ. , โฎ๏ธ โซ๏ธ ๐ ๐จ ๐จ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.7K bytes - Viewed (0) -
docs/en/mkdocs.yml
scheme: slate primary: teal accent: amber toggle: icon: material/lightbulb-outline name: Switch to system preference features: - content.code.annotate - content.code.copy # - content.code.select - content.footnote.tooltips - content.tabs.link - content.tooltips - navigation.footer - navigation.indexes - navigation.instant
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 22 20:28:02 UTC 2024 - 10.4K bytes - Viewed (0)