Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,457 for classPath (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/ClassData.java

     */
    
    package org.gradle.internal.classpath;
    
    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry;
    import org.gradle.internal.instrumentation.api.metadata.InstrumentationMetadata;
    import org.gradle.internal.lazy.Lazy;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.tree.ClassNode;
    
    import javax.annotation.Nonnull;
    
    public class ClassData implements InstrumentationMetadata {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            // the entire set of framework implementation dependencies from the distribution in order to ensure that all implementation
            // dependencies on the classpath share a version. This can _still_ lead to duplicates on the classpath, but it is at least
            // avoidable if the user adds junit-platform-launcher to their test runtime classpath, which they should be doing, since
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/DynamicModulesClassPathProvider.java

        }
    
        private ClassPath gradleExtensionsWithout(String... modulesToExclude) {
            Set<Module> coreModules = allRequiredModulesOf(modulesToExclude);
            ClassPath classpath = ClassPath.EMPTY;
            for (String moduleName : GRADLE_EXTENSION_MODULES) {
                Set<Module> extensionModules = allRequiredModulesOf(moduleName);
                classpath = plusExtensionModules(classpath, extensionModules, coreModules);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        }
        ClassPath classPath = ClassPath.from(getClass().getClassLoader());
        // ClassPath may contain resources from the boot class loader; just not from the class path.
        for (ResourceInfo resource : classPath.getResources()) {
          assertThat(resource.getResourceName()).doesNotContain("com/google/common/reflect/");
        }
      }
    
      private static ClassPath.ClassInfo findClass(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

    import org.gradle.internal.classloader.CachingClassLoader
    import org.gradle.internal.classloader.DefaultHashingClassLoaderFactory
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.junit.Rule
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCacheTest.groovy

            def root = classLoader(classPath("root"))
            cache.get(id1, classPath("c1"), root, null) == cache.get(id1, classPath("c1"), root, null)
            cache.get(id1, classPath("c1"), root, null) != cache.get(id1, classPath("c1", "c2"), root, null)
            cache.get(id1, classPath("c1"), root, null, TestHashCodes.hashCodeFrom(100)) == cache.get(id1, classPath("c1"), root, null, TestHashCodes.hashCodeFrom(100))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 19:34:48 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpIntegrationTest.groovy

            def projectModules = parseComponentFile(project: "web")
            assert getHandleFilenames(projectModules) == ["java1", "java2", "groovy"] as Set
            def classpath1 = classpath("web")
            classpath1.libs.size() == 2
            classpath1.lib("myartifact-1.0.jar")
            classpath1.lib("myartifactdep-1.0.jar")
    
            generateEclipseFilesForWebProject("1.2.3")
            def projectModules2 = parseComponentFile(project: "web")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java

        public ClasspathContainer(List<ArtifactMetadata> classpath, ArtifactScopeEnum scope) {
            this(scope);
            this.classpath = classpath;
        }
    
        // -------------------------------------------------------------------------------------------
        public Iterator<ArtifactMetadata> iterator() {
            return classpath == null ? null : classpath.iterator();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.classpath
    
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.internal.installation.GradleInstallation
    import org.gradle.test.fixtures.file.TestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. platforms/jvm/war/src/main/java/org/gradle/api/tasks/bundling/War.java

        public FileCollection getClasspath() {
            return classpath;
        }
    
        /**
         * Sets the classpath to include in the WAR archive.
         *
         * @param classpath The classpath. Must not be null.
         * @since 4.0
         */
        public void setClasspath(FileCollection classpath) {
            setClasspath((Object) classpath);
        }
    
        /**
         * Sets the classpath to include in the WAR archive.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top