- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 6,429 for importOf (0.07 sec)
-
tensorflow/c/c_api_test.cc
TF_Operation* feed = TF_GraphOperationByName(graph, "imported/feed"); TF_Operation* neg = TF_GraphOperationByName(graph, "imported/neg"); ASSERT_TRUE(scalar != nullptr); ASSERT_TRUE(feed != nullptr); ASSERT_TRUE(neg != nullptr); // Test basic structure of the imported graph. EXPECT_EQ(0, TF_OperationNumInputs(scalar)); EXPECT_EQ(0, TF_OperationNumInputs(feed));
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java
*/ package org.apache.maven.model.composition; import javax.inject.Named; import javax.inject.Singleton; import java.util.Collection; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.Set; import org.apache.maven.api.model.Dependency; import org.apache.maven.api.model.DependencyManagement;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.1K bytes - Viewed (0) -
docs/pt/docs/advanced/templates.md
## Instalação de dependências Para instalar o `jinja2`, siga o código abaixo: <div class="termy"> ```console $ pip install jinja2 ``` </div> ## Usando `Jinja2Templates` * Importe `Jinja2Templates`. * Crie um `templates` que você possa reutilizar posteriormente. * Declare um parâmetro `Request` no *path operation* que retornará um template.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.3K bytes - Viewed (0) -
docs/en/docs/tutorial/background-tasks.md
## Technical Details The class `BackgroundTasks` comes directly from <a href="https://www.starlette.io/background/" class="external-link" target="_blank">`starlette.background`</a>. It is imported/included directly into FastAPI so that you can import it from `fastapi` and avoid accidentally importing the alternative `BackgroundTask` (without the `s` at the end) from `starlette.background`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 15:22:48 UTC 2024 - 4.8K bytes - Viewed (0) -
docs/pt/docs/tutorial/cors.md
Então, para que tudo funcione corretamente, é melhor especificar explicitamente as origens permitidas. ## Usar `CORSMiddleware` Você pode configurá-lo em sua aplicação **FastAPI** usando o `CORSMiddleware`. * Importe `CORSMiddleware`. * Crie uma lista de origens permitidas (como strings). * Adicione-a como um "middleware" à sua aplicação **FastAPI**. Você também pode especificar se o seu backend permite:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/pt/docs/advanced/custom-response.md
Por exemplo, se você precisa bastante de performance, você pode instalar e utilizar o <a href="https://github.com/ijl/orjson" class="external-link" target="_blank">`orjson`</a> e definir a resposta para ser uma `ORJSONResponse`. Importe a classe, ou subclasse, de `Response` que você deseja utilizar e declare ela no *decorador de operação de rota*. Para respostas grandes, retornar uma `Response` diretamente é muito mais rápido que retornar um dicionário.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 29 11:47:10 UTC 2024 - 13.5K bytes - Viewed (0) -
docs/de/docs/tutorial/testing.md
``` hl_lines="5" . ├── app │ ├── __init__.py │ ├── main.py │ └── test_main.py ``` Da sich diese Datei im selben Package befindet, können Sie relative Importe verwenden, um das Objekt `app` aus dem `main`-Modul (`main.py`) zu importieren: ```Python hl_lines="3" {!../../docs_src/app_testing/test_main.py!} ``` ... und haben den Code für die Tests wie zuvor.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.9K bytes - Viewed (0) -
docs/pt/docs/advanced/security/http-basic-auth.md
Isso sinaliza ao navegador para mostrar o prompt integrado para um usuário e senha. Então, quando você digitar o usuário e senha, o navegador os envia automaticamente no cabeçalho. ## HTTP Basic Auth Simples * Importe `HTTPBasic` e `HTTPBasicCredentials`. * Crie um "esquema `security`" utilizando `HTTPBasic`. * Utilize o `security` com uma dependência em sua *operação de rota*. * Isso retorna um objeto do tipo `HTTPBasicCredentials`:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.2K bytes - Viewed (0) -
docs/fr/README.md
## Informations de Développement ### Récupérer le Code Source 1. Clonez le dépôt Fess : ``` $ cd ~/workspace $ git clone https://github.com/codelibs/fess.git ``` 2. Importez le dépôt cloné en tant que projet [Maven](https://maven.apache.org/) sur [Eclipse](https://www.eclipse.org/eclipseide/) ou un autre IDE. ### Configuration pour les Plugins OpenSearch
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.9K bytes - Viewed (0) -
src/cmd/cgo/doc.go
syscall package when bootstrapping a new target. -importpath string The import path for the Go package. Optional; used for nicer comments in the generated files. -import_runtime_cgo If set (which it is by default) import runtime/cgo in generated output. -import_syscall If set (which it is by default) import syscall in generated output. -ldflags flags
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Oct 01 22:52:54 UTC 2024 - 44K bytes - Viewed (0)