- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for dependabot (0.18 sec)
-
.github/dependabot.yml
# Configures Depdendabot to PR go security updates only version: 2 updates: # Go configuration for master branch - package-ecosystem: "gomod" directory: "/" schedule: interval: "daily" # Limit number of open PRs to 0 so that we only get security updates # See https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates open-pull-requests-limit: 0
Others - Registered: 2023-11-29 22:53 - Last Modified: 2023-06-22 13:41 - 844 bytes - Viewed (0) -
.github/dependabot.yml
Sebastián Ramírez <******@****.***> 1657818260 +0200
Others - Registered: 2023-12-03 07:19 - Last Modified: 2022-07-14 17:04 - 309 bytes - Viewed (0) -
.github/dependabot.yml
Matthieu MOREL <******@****.***> 1628486185 +0200
Others - Registered: 2023-12-03 09:35 - Last Modified: 2021-08-09 05:16 - 287 bytes - Viewed (0) -
.github/dependabot.yml
Colin Decker <******@****.***> 1617040651 -0700
Others - Registered: 2023-12-01 12:43 - Last Modified: 2021-03-29 17:59 - 440 bytes - Viewed (0) -
docs/en/docs/release-notes.md
* ⬆ Bump dawidd6/action-download-artifact from 2.9.0 to 2.21.1. PR [#5130](https://github.com/tiangolo/fastapi/pull/5130) by [@dependabot[bot]](https://github.com/apps/dependabot). * ⬆ Bump actions/setup-python from 2 to 4. PR [#5129](https://github.com/tiangolo/fastapi/pull/5129) by [@dependabot[bot]](https://github.com/apps/dependabot).
Plain Text - Registered: 2023-12-03 07:19 - Last Modified: 2023-11-30 20:48 - 301.5K bytes - Viewed (1) -
.github/actions/people/app/main.py
Python - Registered: 2023-12-03 07:19 - Last Modified: 2023-08-02 15:57 - 19.4K bytes - Viewed (1) -
docs/en/docs/tutorial/dependencies/sub-dependencies.md
This is quite simple (not very useful), but will help us focus on how the sub-dependencies work. ## Second dependency, "dependable" and "dependant" Then you can create another dependency function (a "dependable") that at the same time declares a dependency of its own (so it is a "dependant" too): === "Python 3.10+" ```Python hl_lines="13" {!> ../../../docs_src/dependencies/tutorial005_an_py310.py!} ```
Plain Text - Registered: 2023-12-03 07:19 - Last Modified: 2023-10-17 05:59 - 5.6K bytes - Viewed (0) -
fastapi/dependencies/models.py
self.security_scopes_param_name = security_scopes_param_name self.name = name self.call = call self.use_cache = use_cache # Store the path to be able to re-generate a dependable from it in overrides self.path = path # Save the cache key at creation to optimize performance
Python - Registered: 2023-12-03 07:19 - Last Modified: 2023-07-07 17:12 - 2.4K bytes - Viewed (0) -
fastapi/dependencies/utils.py
dependency_cache = dependency_cache or {} sub_dependant: Dependant for sub_dependant in dependant.dependencies: sub_dependant.call = cast(Callable[..., Any], sub_dependant.call) sub_dependant.cache_key = cast( Tuple[Callable[..., Any], Tuple[str]], sub_dependant.cache_key ) call = sub_dependant.call use_sub_dependant = sub_dependant if (
Python - Registered: 2023-12-03 07:19 - Last Modified: 2023-10-18 12:36 - 29.2K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/index.md
## First Steps Let's see a very simple example. It will be so simple that it is not very useful, for now. But this way we can focus on how the **Dependency Injection** system works. ### Create a dependency, or "dependable" Let's first focus on the dependency. It is just a function that can take all the same parameters that a *path operation function* can take: === "Python 3.10+" ```Python hl_lines="8-9"
Plain Text - Registered: 2023-12-03 07:19 - Last Modified: 2023-10-17 05:59 - 11.6K bytes - Viewed (0)