- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 507 for slope (0.13 sec)
-
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilter.java
private final String scope; public ScopeArtifactFilter(String scope) { this.scope = scope; addScopeInternal(scope); } public String getScope() { return scope; } @Override public int hashCode() { int hash = 17; hash = hash * 31 + (scope != null ? scope.hashCode() : 0); return hash; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.9K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t05/maven-test/poms/t05-b-1.1.pom
<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> <type>jar</type> <scope>compile</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 - 622 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/local-repo/maven-test/poms/maven-test-b-1.0.pom
<artifactId>maven-test-c</artifactId> <version>1.0</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>maven-test</groupId> <artifactId>maven-test-d</artifactId> <version>1.1</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 610 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/factory/ArtifactFactory.java
Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier); Artifact createDependencyArtifact( String groupId, String artifactId, VersionRange versionRange, String type, String classifier, String scope); Artifact createDependencyArtifact(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-model-builder/pom.xml
<artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-matchers</artifactId> <scope>test</scope> </dependency> <dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.4K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/projects/scope/transitive-provided-dep.xml
</dependency> <dependency> <groupId>maven-test-provided</groupId> <artifactId>scope-runtime</artifactId> <version>1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>maven-test-provided</groupId> <artifactId>scope-compile</artifactId> <version>1.0</version> <scope>compile</scope> </dependency> </dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/projects/scope/transitive-runtime-dep.xml
</dependency> <dependency> <groupId>maven-test-runtime</groupId> <artifactId>scope-runtime</artifactId> <version>1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>maven-test-runtime</groupId> <artifactId>scope-compile</artifactId> <version>1.0</version> <scope>compile</scope> </dependency> </dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
Project prj = nonNull(project, "project"); if (nonNull(scope, "scope") == ProjectScope.MAIN) { return prj.getBuild().getResources(); } else if (scope == ProjectScope.TEST) { return prj.getBuild().getTestResources(); } else { throw new IllegalArgumentException("Unsupported scope " + scope); } } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java
return scope; } public void setScope(ArtifactScopeEnum scope) { this.scope = scope; } // ------------------------------------------------------------------------------------------- @Override public String toString() { StringBuilder sb = new StringBuilder(256); sb.append("[scope=").append(scope.getScope()); if (classpath != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0)