- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 188 for dependency1 (0.09 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java
* * @since 4.0.0 */ @Experimental @Immutable public interface Dependency extends Artifact { /** * {@return the type of the dependency}. * A dependency can be a <abbr>JAR</abbr> file, * a modular-<abbr>JAR</abbr> if it is intended to be placed on the module path, * a <abbr>JAR</abbr> containing test classes, <i>etc.</i>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 2.8K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
**FastAPI** will make sure that the "exit code" in each dependency with `yield` is run in the correct order. For example, `dependency_c` can have a dependency on `dependency_b`, and `dependency_b` on `dependency_a`: {* ../../docs_src/dependencies/tutorial008_an_py39.py hl[6,14,22] *} And all of them can use `yield`. In this case `dependency_c`, to execute its exit code, needs the value from `dependency_b` (here named `dep_b`) to still be available.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Type.java
*/ String TEST_JAVA_SOURCE = "test-java-source"; /** * Returns the dependency type id. * The id uniquely identifies this <i>dependency type</i>. * * @return the id of this type, never {@code null}. */ @Nonnull @Override String id(); /** * Returns the dependency type language. * * @return the language of this type, never {@code null}.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.5K bytes - Viewed (0) -
pom.xml
</dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/classes-as-dependencies.md
We can do better... ## What makes a dependency { #what-makes-a-dependency } Up to now you have seen dependencies declared as functions. But that's not the only way to declare dependencies (although it would probably be the more common). The key factor is that a dependency should be a "callable". A "**callable**" in Python is anything that Python can "call" like a function.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java
import org.apache.maven.api.annotations.Nonnull; /** * Indicates when the dependency will be used. * For example, it may be at compile time only, at runtime, or at test time. * For a given dependency, the scope is directly derived from the * {@link org.apache.maven.api.model.Dependency#getScope()} and will be used when using {@link PathScope} * and the {@link org.apache.maven.api.services.DependencyResolver}.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 19 14:33:26 UTC 2025 - 4K bytes - Viewed (0) -
apache-maven/pom.xml
</dependency> <dependency> <groupId>org.jline</groupId> <artifactId>jline-terminal-jni</artifactId> </dependency> <dependency> <groupId>org.jline</groupId> <artifactId>jline-terminal-ffm</artifactId> </dependency> <!-- (legacy) DI annotations --> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Sep 06 21:30:13 UTC 2025 - 12.7K bytes - Viewed (0) -
guava-bom/pom.xml
<dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-gwt</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 26 00:48:38 UTC 2025 - 2.1K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
/// ## Dependencies errors and return values { #dependencies-errors-and-return-values } You can use the same dependency *functions* you use normally. ### Dependency requirements { #dependency-requirements } They can declare request requirements (like headers) or other sub-dependencies: {* ../../docs_src/dependencies/tutorial006_an_py39.py hl[8,13] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
return builder() .session(requireNonNull(session, "session cannot be null")) .groupId(requireNonNull(dependency, "dependency").getGroupId()) .artifactId(dependency.getArtifactId()) .version(dependency.getVersion().toString()) .classifier(dependency.getClassifier())
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0)