Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,443 for CLASSPATH (0.1 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseModelTest.groovy

            then:
            model.classpath.downloadJavadoc
    
            when: "configure classpath file"
            model.classpath.file({ fcm -> fcm.xmlTransformer } as Action<XmlFileContentMerger>)
    
            then:
            1 * xmlMerger.getXmlTransformer()
    
            when: "configure classpath XML"
            model.classpath.file.withXml(xmlAction)
    
            then:
            1 * xmlTransformer.addAction(xmlAction)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       containers 'containerPath'
                       file {
                           whenMerged { classpath ->
                               classpath.entries.find { it.path == 'containerPath' }.entryAttributes.customKey = 'customValue'
                           }
                       }
                   }
               }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TestWithClassPath.kt

    package org.gradle.kotlin.dsl.accessors
    
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    
    import org.gradle.kotlin.dsl.fixtures.TestWithTempFiles
    import org.gradle.kotlin.dsl.fixtures.classEntriesFor
    import org.gradle.kotlin.dsl.support.bytecode.InternalName
    import org.gradle.kotlin.dsl.support.bytecode.beginClass
    import org.gradle.kotlin.dsl.support.bytecode.endClass
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/DefaultHashingClassLoaderFactory.java

        }
    
        @Override
        protected ClassLoader doCreateClassLoader(String name, ClassLoader parent, ClassPath classPath) {
            ClassLoader classLoader = super.doCreateClassLoader(name, parent, classPath);
            hashCodes.put(classLoader, calculateClassLoaderHash(classPath));
            return classLoader;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/SimpleGeneratedJavaClassCompiler.java

         * @param dstDir where the compiler will output the class files
         * @param classes the classes to compile
         * @param classPath the classpath to use for compilation
         */
        public static void compile(File srcDir, File dstDir, List<ClassSource> classes, ClassPath classPath) throws GeneratedClassCompilationException {
            JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
            if (compiler == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ClassPathExtensions.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.support
    
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    
    import java.io.File
    
    
    fun ClassPath.filter(predicate: (File) -> Boolean): ClassPath =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 00:04:38 UTC 2023
    - 895 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        fun projectAccessorsClassPath(scriptTarget: ExtensionAware, classPath: ClassPath): AccessorsClassPath =
            scriptTarget.getOrCreateProperty("gradleKotlinDsl.accessorsClassPath") {
                buildAccessorsClassPathFor(scriptTarget, classPath)
                    ?: AccessorsClassPath.empty
            }
    
    
        private
        fun buildAccessorsClassPathFor(scriptTarget: Any, classPath: ClassPath): AccessorsClassPath? =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ide/eclipse/kotlin/build.gradle.kts

    
    // tag::module-before-merged[]
    // tag::module-when-merged[]
    
    eclipse.classpath.file {
    // end::module-when-merged[]
        beforeMerged(Action<Classpath> {
            entries.removeAll { entry -> entry.kind == "lib" || entry.kind == "var" }
        })
    // end::module-before-merged[]
    // tag::module-when-merged[]
        whenMerged(Action<Classpath> { ->
            entries.filter { entry -> entry.kind == "lib" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

        }
    
        String wrapClassDirs(String classpath) {
            if (language == CompiledLanguage.GROOVY) {
                if (useJar) {
                    return "api.jar, ${classpath}, main"
                } else {
                    // api/build/classes/java/main and api/build/classes/groovy/main
                    // impl/build/classes/java/main
                    return "main, main, ${classpath}, main"
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultClasspathTransformationTestType.java

            res = transform.transform(graph, ArtifactScopeEnum.compile, false);
    
            assertNotNull(res, "null classpath container after compile transform");
            assertNotNull(res.getClasspath(), "null classpath after compile transform");
            assertEquals(3, res.getClasspath().size(), "compile classpath should have 3 entries");
        }
    
        // ------------------------------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top