- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for ClassPathTest (0.1 sec)
-
guava-tests/test/com/google/common/reflect/ClassPathTest.java
/** Functional tests of {@link ClassPath}. */ public class ClassPathTest extends TestCase { private static final Logger log = Logger.getLogger(ClassPathTest.class.getName()); private static final File FILE = new File("."); public void testEquals() { new EqualsTester() .addEqualityGroup(classInfo(ClassPathTest.class), classInfo(ClassPathTest.class))
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 22:09:38 UTC 2024 - 27.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
/** Functional tests of {@link ClassPath}. */ public class ClassPathTest extends TestCase { private static final Logger log = Logger.getLogger(ClassPathTest.class.getName()); private static final File FILE = new File("."); public void testEquals() { new EqualsTester() .addEqualityGroup(classInfo(ClassPathTest.class), classInfo(ClassPathTest.class))
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 22:09:38 UTC 2024 - 25K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionRequestTypeEnum.java
package org.apache.maven.repository.metadata; /** * MetadataResolutionRequestTypeEnum */ @Deprecated public enum MetadataResolutionRequestTypeEnum { tree(1), graph(2), classpathCompile(3), classpathTest(4), classpathRuntime(5), versionedGraph(6), scopedGraph(7); private int id; // Constructor MetadataResolutionRequestTypeEnum(int id) { this.id = id; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java
return conflictResolver.resolveConflicts(getGraph(), ArtifactScopeEnum.runtime); } else if (requestType.equals(MetadataResolutionRequestTypeEnum.classpathTest)) { return conflictResolver.resolveConflicts(getGraph(), ArtifactScopeEnum.test); } else if (requestType.equals(MetadataResolutionRequestTypeEnum.graph)) { return getGraph();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0)