- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 222 for depend (0.05 seconds)
-
ci/official/utilities/code_check_full.bats
# it, and print that list for debugging. Not really clear if this is # helpful since the only examples I've seen are enormous. bazel cquery "rdeps(kind(py_test, $(cat $BATS_TEST_TMPDIR/deps)), $dep, 1)" done < $BATS_TEST_TMPDIR/missing_deps exit 1 fi } # The Python package is not allowed to depend on any CUDA packages.Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Fri Dec 19 18:47:57 GMT 2025 - 13.5K bytes - Click Count (0) -
tests/test_dependency_yield_scope_websockets.py
s.open = False global_state = global_context.get() global_state["session_closed"] = True SessionFuncDep = Annotated[Session, Depends(dep_session, scope="function")] SessionRequestDep = Annotated[Session, Depends(dep_session, scope="request")] SessionDefaultDep = Annotated[Session, Depends(dep_session)] class NamedSession: def __init__(self, name: str = "default") -> None: self.name = nameCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 6K bytes - Click Count (0) -
tests/test_dependency_yield_scope.py
yield raise HTTPException(status_code=503, detail="Exception after yield") SessionFuncDep = Annotated[Session, Depends(dep_session, scope="function")] SessionRequestDep = Annotated[Session, Depends(dep_session, scope="request")] SessionDefaultDep = Annotated[Session, Depends(dep_session)] class NamedSession: def __init__(self, name: str = "default") -> None: self.name = nameCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 6.7K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts
/** * A map from artifact name to a set of class name prefixes that should be kept. * Artifacts matched by this map will be minified to only contain the specified * classes and the classes they depend on. The classes are not relocated, they all * remain in their original namespace. This reduces the final Gradle distribution * size and makes us more conscious of which parts of a library we really need. *
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 25 16:18:05 GMT 2025 - 5.6K bytes - Click Count (0) -
docs/en/docs/advanced/openapi-callbacks.md
## Documenting the callback { #documenting-the-callback } The actual callback code will depend heavily on your own API app. And it will probably vary a lot from one app to the next. It could be just one or two lines of code, like: ```Python callback_url = "https://example.com/api/v1/invoices/events/"Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 10 08:55:32 GMT 2025 - 8K bytes - Click Count (0) -
docs/en/docs/virtual-environments.md
At some point, you will probably end up writing many different programs that depend on **different packages**. And some of these projects you work on will depend on **different versions** of the same package. 😱 For example, you could create a project called `philosophers-stone`, this program depends on another package called **`harry`, using the version `1`**. So, you need to install `harry`. ```mermaid
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 02 05:09:25 GMT 2025 - 22.8K bytes - Click Count (0) -
android/pom.xml
<plexus-io.version>3.5.1</plexus-io.version> <!-- We need at least 3.5.1 to avoid https://github.com/codehaus-plexus/plexus-io/issues/109. Once we upgrade maven-jar-plugin itself to a version new enough to depend on 3.5.1 or higher, we can remove this override. --> <toolchains-maven-plugin.version>4.5.0</toolchains-maven-plugin.version> <truth.version>1.4.5</truth.version>
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 05 03:10:05 GMT 2025 - 26.4K bytes - Click Count (0) -
pom.xml
<plexus-io.version>3.5.1</plexus-io.version> <!-- We need at least 3.5.1 to avoid https://github.com/codehaus-plexus/plexus-io/issues/109. Once we upgrade maven-jar-plugin itself to a version new enough to depend on 3.5.1 or higher, we can remove this override. --> <toolchains-maven-plugin.version>4.5.0</toolchains-maven-plugin.version> <truth.version>1.4.5</truth.version>
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 05 03:10:05 GMT 2025 - 26.1K bytes - Click Count (0) -
tensorflow/c/BUILD
], "//conditions:default": [], }) + if_tensorrt([ "//tensorflow/compiler/tf2tensorrt:trt_convert_api", ]), ) # Check that c_api_no_xla does not depend on xla. check_deps( name = "c_api_no_xla_check_deps", disallowed_deps = ["//tensorflow/compiler/jit:xla_kernel_creator"], deps = [":c_api_no_xla"], ) tf_cuda_library(Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sun Dec 07 13:04:09 GMT 2025 - 30.4K bytes - Click Count (0) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
{* ../../docs_src/dependencies/tutorial008e_an_py39.py hl[12,16] *} `Depends()` receives a `scope` parameter that can be:Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 12.9K bytes - Click Count (0)