- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 543 for dependency (0.07 sec)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelResolver.java
} } @Override public ModelSource resolveModel(final Dependency dependency, AtomicReference<Dependency> modified) throws UnresolvableModelException { try { final Artifact artifact = new DefaultArtifact( dependency.getGroupId(), dependency.getArtifactId(), "", "pom", dependency.getVersion());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.5K bytes - Viewed (0) -
docs/en/docs/advanced/testing-dependencies.md
There are some scenarios where you might want to override a dependency during testing. You don't want the original dependency to run (nor any of the sub-dependencies it might have). Instead, you want to provide a different dependency that will be used only during tests (possibly only some specific tests), and will provide a value that can be used where the value of the original dependency was used. ### Use cases: external service
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t08/p0/pom.xml
<dependencyManagement> <dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>t08-a</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t08-b</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>maven-test</groupId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 992 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t05/p0/p1/pom.xml
</scm> <dependencyManagement> <dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>t05-b</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t05-d</artifactId> <version>1.0</version> </dependency> </dependencies> </dependencyManagement> <dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t07/p0/p1/pom.xml
<dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>t07-b</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t07-d</artifactId> <version>1.0</version> <scope>test</scope> <optional>false</optional> </dependency> </dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-spi/pom.xml
<description>Maven 4 API - Maven SPI.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-meta</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-model</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-core</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Oct 19 18:11:20 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/en/docs/advanced/advanced-dependencies.md
And that way we are able to "parameterize" our dependency, that now has `"bar"` inside of it, as the attribute `checker.fixed_content`. ## Use the instance as a dependency Then, we could use this `checker` in a `Depends(checker)`, instead of `Depends(FixedContentQueryChecker)`, because the dependency is the instance, `checker`, not the class itself. And when solving the dependency, **FastAPI** will call this `checker` like: ```Python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:10:15 UTC 2024 - 2.4K bytes - Viewed (0) -
docs/en/docs/advanced/security/oauth2-scopes.md
* Required scopes `["items"]` with the dependency: * `get_current_active_user`: * The dependency function `get_current_active_user` has: * Required scopes `["me"]` with the dependency: * `get_current_user`: * The dependency function `get_current_user` has: * No scopes required by itself. * A dependency using `oauth2_scheme`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 29 11:02:16 UTC 2024 - 13.1K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t05/maven-test/poms/t05-b-2.0.pom
<artifactId>t05-b</artifactId> <packaging>jar</packaging> <version>2.0</version> <dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>t05-c</artifactId> <version>1.0</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t05-d</artifactId> <version>1.1</version>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 622 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-b-1.0.pom
<artifactId>t08-b</artifactId> <packaging>jar</packaging> <version>1.0</version> <dependencies> <dependency> <groupId>maven-test</groupId> <artifactId>t08-c</artifactId> <version>1.0</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>t08-d</artifactId> <version>1.1</version>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 622 bytes - Viewed (0)