- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 230 for dependentes (0.11 sec)
-
doc/go1.17_spec.html
which has no dependencies on uninitialized variables. </p> <p> More precisely, a package-level variable is considered <i>ready for initialization</i> if it is not yet initialized and either has no <a href="#Variable_declarations">initialization expression</a> or its initialization expression has no <i>dependencies</i> on uninitialized variables.
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
docs/pt/docs/contributing.md
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 14.8K bytes - Viewed (0) -
tensorflow/BUILD
"//tensorflow/cc:scope", "//tensorflow/core:tensorflow", "//tensorflow/core/data:standalone", # Exports for pywrap_tensorflow_internal. Many of these are transitive # dependencies of the above, but must be explicitly listed for # cc_shared_library to work. "//tensorflow/c/eager:c_api_experimental", "//tensorflow/c/eager:c_api_internal",
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Wed Oct 16 05:28:35 UTC 2024 - 53.5K bytes - Viewed (0) -
docs/en/docs/tutorial/sql-databases.md
Using `check_same_thread=False` allows FastAPI to use the same SQLite database in different threads. This is necessary as **one single request** could use **more than one thread** (for example in dependencies). Don't worry, with the way the code is structured, we'll make sure we use **a single SQLModel *session* per request** later, this is actually what the `check_same_thread` is trying to achieve. ### Create the Tables
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Wed Oct 09 19:44:42 UTC 2024 - 14.7K bytes - Viewed (0) -
docs/en/docs/contributing.md
After activating the environment, install the required packages: <div class="termy"> ```console $ pip install -r requirements.txt ---> 100% ``` </div> It will install all the dependencies and your local FastAPI in your local environment. ### Using your local FastAPI
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 12.7K bytes - Viewed (1) -
docs/nl/docs/python-types.md
* **Editor ondersteuning**. * **Type checks**. ...en **FastAPI** gebruikt dezelfde declaraties om: * **Vereisten te definïeren **: van request pad parameters, query parameters, headers, bodies, dependencies, enz. * **Data te converteren**: van de request naar het vereiste type. * **Data te valideren**: afkomstig van elke request:
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.3K bytes - Viewed (0) -
docs/es/docs/async.md
--- Ejemplos típicos de operaciones dependientes de CPU son cosas que requieren un procesamiento matemático complejo. Por ejemplo: * **Audio** o **procesamiento de imágenes**.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Mon Aug 19 18:15:21 UTC 2024 - 24.9K bytes - Viewed (0) -
migrator/migrator.go
func (m Migrator) CurrentDatabase() (name string) { m.DB.Raw("SELECT DATABASE()").Row().Scan(&name) return } // ReorderModels reorder models according to constraint dependencies func (m Migrator) ReorderModels(values []interface{}, autoAdd bool) (results []interface{}) { type Dependency struct { *gorm.Statement Depends []*schema.Schema } var (
Registered: Sun Oct 27 09:35:08 UTC 2024 - Last Modified: Fri Apr 26 07:15:49 UTC 2024 - 29K bytes - Viewed (0) -
docs/fr/docs/index.md
Pour en savoir plus, consultez la section <a href="https://fastapi.tiangolo.com/fr/benchmarks/" class="internal-link" target="_blank">Benchmarks</a>. ## Dépendances facultatives Utilisées par Pydantic: * <a href="https://github.com/JoshData/python-email-validator" target="_blank"><code>email-validator</code></a> - pour la validation des adresses email.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 22K bytes - Viewed (0) -
docs/en/docs/python-types.md
* **Editor support**. * **Type checks**. ...and **FastAPI** uses the same declarations to: * **Define requirements**: from request path parameters, query parameters, headers, bodies, dependencies, etc. * **Convert data**: from the request to the required type. * **Validate data**: coming from each request: * Generating **automatic errors** returned to the client when the data is invalid.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:47:53 UTC 2024 - 16.7K bytes - Viewed (0)