- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 381 for over (0.13 sec)
-
docs/pt/docs/how-to/separate-openapi-schemas.md
Inclusive, em alguns casos, ele terá até **dois JSON Schemas** no OpenAPI para o mesmo modelo Pydantic, para entrada e saída, dependendo se eles possuem **valores padrão**. Vamos ver como isso funciona e como alterar se for necessário. ## Modelos Pydantic para Entrada e Saída Digamos que você tenha um modelo Pydantic com valores padrão, como este: //// tab | Python 3.10+ ```Python hl_lines="7"
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Thu Oct 24 18:52:36 UTC 2024 - 6.8K bytes - Viewed (0) -
tensorflow/c/eager/c_api_unified_experimental_graph.cc
return absl::OkStatus(); } tensorflow::FullTypeDef FullType() const override { const FullTypeDef* ft; mutex_lock l(graph_->mu); graph_->graph.NodeType(output_.oper->node.name(), &ft); if (ft == nullptr) { return FullTypeDef(); } else { return *ft; } } TF_Output output_; // For LLVM style RTTI.
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 15.7K bytes - Viewed (0) -
fastapi/openapi/models.py
try: import email_validator assert email_validator # make autoflake ignore the unused import from pydantic import EmailStr except ImportError: # pragma: no cover class EmailStr(str): # type: ignore @classmethod def __get_validators__(cls) -> Iterable[Callable[..., Any]]: yield cls.validate @classmethod
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 22:49:33 UTC 2024 - 15K bytes - Viewed (1) -
ci/official/utilities/code_check_full.bats
//tensorflow/python/kernel_tests/signal //tensorflow/examples //tensorflow/tools/android //tensorflow/python/eager/benchmarks EOF # grep patterns for files and targets which don't need to be in the pip # package, ever. cat > $BATS_TEST_TMPDIR/ignore_these_deps <<EOF benchmark _test$ _test.py$ _test_cpu$ _test_cpu.py$ _test_gpu$ _test_gpu.py$ _test_lib$ //tensorflow/cc/saved_model:saved_model_test_files
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Wed Oct 23 18:48:35 UTC 2024 - 13.6K bytes - Viewed (0) -
docs/pt/docs/deployment/concepts.md
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:04:50 UTC 2024 - 19.7K bytes - Viewed (0) -
docs/pt/docs/deployment/server-workers.md
<font color="#A6E22E">INFO</font>: Application startup complete. ``` </div> //// A única opção nova aqui é `--workers` informando ao Uvicorn para iniciar 4 processos de trabalho. Você também pode ver que ele mostra o **PID** de cada processo, `27365` para o processo pai (este é o **gerenciador de processos**) e um para cada processo de trabalho: `27368`, `27369`, `27370` e `27367`. ## Conceitos de Implantação
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Fri Sep 20 11:01:03 UTC 2024 - 9K bytes - Viewed (0) -
cmd/bucket-metadata.go
if err != nil && !errors.Is(err, errConfigNotFound) { return b, err } if err == nil { b.defaultTimestamps() } // If bucket metadata is missing look for legacy files, // since we only ever had b.Created as non-zero when // migration was complete in 2020-May release. So this // a check to avoid migrating for buckets that already // have this field set. if b.Created.IsZero() {
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Wed Aug 28 15:32:18 UTC 2024 - 18.2K bytes - Viewed (0) -
docs/pt/docs/tutorial/dependencies/classes-as-dependencies.md
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.6K bytes - Viewed (0) -
docs/tr/docs/async.md
Sonra sıra size geldiğinde gerçekten "üretken" işler yapabilirsiniz 🤓, menüyü oku, ne istediğine larar ver, aşkının seçimini al 😍, öde 💸, doğru kartı çıkart, ödemeyi kontrol et, faturayı kontrol et, siparişin doğru olup olmadığını kontrol et, vb.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 21.9K bytes - Viewed (0) -
fastapi/_compat.py
try: from pydantic_core.core_schema import ( with_info_plain_validator_function as with_info_plain_validator_function, ) except ImportError: # pragma: no cover from pydantic_core.core_schema import ( general_plain_validator_function as with_info_plain_validator_function, # noqa: F401 ) RequiredParam = PydanticUndefined
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 09:36:32 UTC 2024 - 23.4K bytes - Viewed (0)