- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 36 for submodule (0.06 seconds)
-
docs/de/docs/tutorial/bigger-applications.md
* Das Gleiche gilt für `app/routers/users.py`, es ist ein weiteres Submodul: `app.routers.users`. * Es gibt auch ein Unterverzeichnis `app/internal/` mit einer weiteren Datei `__init__.py`, es handelt sich also um ein weiteres „Python-Subpackage“: `app.internal`. * Und die Datei `app/internal/admin.py` ist ein weiteres Submodul: `app.internal.admin`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 21.9K bytes - Click Count (0) -
docs/ko/docs/tutorial/bigger-applications.md
### 이름 충돌 피하기 { #avoid-name-collisions } submodule `items`를 직접 import하고, 그 안의 `router` 변수만 import하지는 않습니다. 이는 submodule `users`에도 `router`라는 이름의 변수가 있기 때문입니다. 만약 다음처럼 순서대로 import했다면: ```Python from .routers.items import router from .routers.users import router ``` `users`의 `router`가 `items`의 `router`를 덮어써서 동시에 사용할 수 없게 됩니다. 따라서 같은 파일에서 둘 다 사용할 수 있도록 submodule들을 직접 import합니다:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 21.5K bytes - Click Count (0) -
docs/tr/docs/tutorial/bigger-applications.md
│ │ ├── items.py # "items" submodule'ü, örn. import app.routers.items │ │ └── users.py # "users" submodule'ü, örn. import app.routers.users │ └── internal # "internal" bir "Python subpackage"idir │ ├── __init__.py # "internal"ı bir "Python subpackage" yapar │ └── admin.py # "admin" submodule'ü, örn. import app.internal.admin ``` ## `APIRouter` { #apirouter }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 20.3K bytes - Click Count (0) -
docs/es/docs/tutorial/body-nested-models.md
Todo eso, de manera arbitraria. ### Definir un submodelo { #define-a-submodel } Por ejemplo, podemos definir un modelo `Image`: {* ../../docs_src/body_nested_models/tutorial004_py310.py hl[7:9] *} ### Usar el submodelo como tipo { #use-the-submodel-as-a-type } Y luego podemos usarlo como el tipo de un atributo:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 7.2K bytes - Click Count (0) -
docs/es/docs/tutorial/bigger-applications.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 20.2K bytes - Click Count (0) -
docs/pt/docs/tutorial/bigger-applications.md
* O arquivo `app/routers/items.py` está dentro de um pacote, `app/routers/`, portanto é um submódulo: `app.routers.items`. * O mesmo com `app/routers/users.py`, ele é outro submódulo: `app.routers.users`. * Há também um subdiretório `app/internal/` com outro arquivo `__init__.py`, então ele é outro "subpacote Python": `app.internal`. * E o arquivo `app/internal/admin.py` é outro submódulo: `app.internal.admin`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 20.3K bytes - Click Count (0) -
RELEASE.md
`TF_Run`, `TF_SessionRun`, `TF_SetAttrTensor` etc. * Renamed `tf.image.per_image_whitening()` to `tf.image.per_image_standardization()` * Move Summary protobuf constructors to `tf.summary` submodule. * Deprecate `histogram_summary`, `audio_summary`, `scalar_summary`, `image_summary`, `merge_summary`, and `merge_all_summaries`. * Combined `batch_*` and regular version of linear algebra and FFT ops. The
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Mar 30 18:31:38 GMT 2026 - 746.5K bytes - Click Count (3) -
docs/en/docs/tutorial/body-nested-models.md
All that, arbitrarily nested. ### Define a submodel { #define-a-submodel } For example, we can define an `Image` model: {* ../../docs_src/body_nested_models/tutorial004_py310.py hl[7:9] *} ### Use the submodel as a type { #use-the-submodel-as-a-type } And then we can use it as the type of an attribute:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 6.6K bytes - Click Count (0) -
docs/de/docs/tutorial/body-nested-models.md
Alles das beliebig tief verschachtelt. ### Ein Kindmodell definieren { #define-a-submodel } Für ein Beispiel können wir ein `Image`-Modell definieren. {* ../../docs_src/body_nested_models/tutorial004_py310.py hl[7:9] *} ### Das Kindmodell als Typ verwenden { #use-the-submodel-as-a-type } Und dann können wir es als Typ eines Attributes verwenden:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 7.5K bytes - Click Count (0) -
docs/tr/docs/tutorial/body-nested-models.md
Hem de istediğiniz kadar iç içe. ### Bir alt model tanımlayın { #define-a-submodel } Örneğin bir `Image` modeli tanımlayabiliriz: {* ../../docs_src/body_nested_models/tutorial004_py310.py hl[7:9] *} ### Alt modeli tip olarak kullanın { #use-the-submodel-as-a-type } Ardından bunu bir attribute’un tipi olarak kullanabiliriz:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 7.5K bytes - Click Count (0)