Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 632 for classPath (0.32 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

            if (classPath instanceof TransformedClassPath) {
                return plusWithTransforms((TransformedClassPath) classPath);
            }
            return new TransformedClassPath(originalClassPath.plus(classPath), transforms);
        }
    
        /**
         * {@inheritDoc}
         * <p>
         * The predicate is applied to the original classpath entries. The returned classpath keeps corresponding transformations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

            final String name;
            final List<URL> classpath;
    
            public String getName() {
                return name;
            }
    
            public Spec(String name, List<URL> classpath) {
                this.name = name;
                this.classpath = classpath;
            }
    
            public List<URL> getClasspath() {
                return classpath;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec.groovy

        def "Source folder defines one classpath attribute"() {
            settingsFile << 'rootProject.name = "root"'
            buildFile <<
                """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       file {
                           whenMerged { classpath ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

            private final EclipseClasspath classpath;
            private final Set<File> files = new LinkedHashSet<>();
    
            private WtpClasspathAttributeDependencyVisitor(EclipseClasspath classpath) {
                this.classpath = classpath;
            }
    
            @Override
            public boolean isOffline() {
                return classpath.isProjectDependenciesOnly();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/DefaultClassPathRegistryTest.groovy

            e.message == 'unknown classpath \'name\' requested.'
        }
    
        def "delegates to providers to find classpath"() {
            def classpath = Mock(ClassPath)
    
            given:
            provider1.findClassPath(_) >> null
            provider2.findClassPath("name") >> classpath
    
            expect:
            registry.getClassPath("name") == classpath
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

    import org.gradle.internal.buildoption.InternalOptions
    import org.gradle.internal.classloader.ClasspathHasher
    import org.gradle.internal.classpath.CachedClasspathTransformer
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactoryForLegacy
    import org.gradle.internal.execution.ExecutionEngine
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

                return modules;
            }
    
            @Override
            public ClassPath getAllRequiredModulesClasspath() {
                ClassPath classPath = ClassPath.EMPTY;
                for (Module module : getAllRequiredModules()) {
                    classPath = classPath.plus(module.getClasspath());
                }
                return classPath;
            }
    
            private void collectRequiredModules(Set<Module> modules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

        }
    
        class ClassDetails {
            final String path
            final String className
            final String classpath
    
            ClassDetails(String path, String className, String classpath) {
                this.path = path
                this.className = className
                this.classpath = classpath
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

               eclipse {
                   classpath {
                       file {
                           whenMerged { classpath ->
                               classpath.entries.removeAll { it.kind == 'output' }
                               classpath.entries.add(new org.gradle.plugins.ide.eclipse.model.Output('$firstPath'))
                               classpath.entries.add(new org.gradle.plugins.ide.eclipse.model.Output('$secondPath'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

            assertThat(
                classPath.collect { it.name } as List<String>,
                hasItems(fileNameSetOf(files))
            )
        }
    
        protected static void assertExcludes(List<File> classPath, File... files) {
            assertThat(
                classPath.collect { it.name } as List<String>,
                not(hasItems(fileNameSetOf(files)))
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top