Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,443 for CLASSPATH (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/process/internal/JavaExecHandleBuilderTest.groovy

        }
    
        def "can append to classpath"() {
            given:
            File jar1 = new File("file1.jar").canonicalFile
            File jar2 = new File("file2.jar").canonicalFile
    
            builder.classpath(jar1)
    
            when:
            builder.classpath(jar2)
    
            then:
            builder.classpath.contains(jar1)
            builder.classpath.contains(jar2)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 15 17:11:21 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TypeAccessibilityProviderTest.kt

                assertThat(leaves, hasItems("java.util.List", "java.util.Set"))
            }
        }
    
        private
        fun accessibilityFor(type: SchemaType, classPath: ClassPath) =
            TypeAccessibilityProvider(classPath).use {
                it.accessibilityForType(type)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/Cleanup.java

    import org.gradle.internal.classloader.ClassLoaderUtils;
    import org.gradle.internal.classpath.ClassPath;
    
    import java.lang.ref.PhantomReference;
    import java.lang.ref.ReferenceQueue;
    
    class Cleanup extends PhantomReference<CachedClassLoader> {
        enum Mode {
            DONT_CLOSE_CLASSLOADER,
            CLOSE_CLASSLOADER
        }
    
        private final ClassPath key;
        private final ClassLoader classLoader;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 09 13:21:30 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

        def "creates manifest classpath with relative urls"() {
            when:
            def classpathFiles = [tmpDir.file('mydir/jar1.jar'), tmpDir.file('mydir/nested/jar2.jar')]
    
            then:
            ManifestUtil.createManifestClasspath(jarFile, classpathFiles) == "jar1.jar nested/jar2.jar";
        }
    
        def "creates manifest classpath with absolute urls"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r41/KotlinBuildScriptTemplateModelCrossVersionSpec.groovy

        }
    
        private static void loadClassesFrom(List<File> classPath, String... classNames) {
            classLoaderFor(classPath).withCloseable { loader ->
                classNames.each {
                    loader.loadClass(it)
                }
            }
        }
    
        private static URLClassLoader classLoaderFor(List<File> classPath) {
            new URLClassLoader(classPath.collect { it.toURI().toURL() } as URL[])
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithExternalDependenciesIntegrationTest.groovy

                    maven { url "${mavenRepo.uri}" }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies in main source set dependency configurations are not marked with test classpath attribute"() {
            given:
            buildFile << """
                dependencies {
                    implementation 'org:lib:1.0'
                }
            """
    
            when:
            run 'eclipse'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyDynamicDispatchInterceptors.java

     */
    
    package org.gradle.internal.classpath.declarations;
    
    import groovy.lang.GroovyObject;
    import org.codehaus.groovy.runtime.ScriptBytecodeAdapter;
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.classpath.InstrumentedClosuresHelper;
    import org.gradle.internal.classpath.intercept.AbstractInvocation;
    import org.gradle.internal.classpath.intercept.CallInterceptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. build.gradle.kts

    buildscript {
      dependencies {
        classpath(libs.gradlePlugin.dokka)
        classpath(libs.gradlePlugin.kotlin)
        classpath(libs.gradlePlugin.kotlinSerialization)
        classpath(libs.gradlePlugin.androidJunit5)
        classpath(libs.gradlePlugin.android)
        classpath(libs.gradlePlugin.graal)
        classpath(libs.gradlePlugin.bnd)
        classpath(libs.gradlePlugin.shadow)
        classpath(libs.gradlePlugin.animalsniffer)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:32:42 UTC 2024
    - 8.9K bytes
    - Viewed (1)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/DaemonBuildActionExecuter.java

     * limitations under the License.
     */
    package org.gradle.tooling.internal.provider;
    
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.DefaultClassPath;
    import org.gradle.internal.daemon.client.execution.ClientBuildRequestContext;
    import org.gradle.internal.invocation.BuildAction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelCrossVersionSpec.groovy

               repositories { $localMaven }
               dependencies { ${implementationConfiguration} 'org.example:example-lib:1.0' }
    
               eclipse {
                   classpath {
                       file {
                           whenMerged { classpath ->
                               classpath.entries.find { it.kind == "lib" }.entryAttributes['customkey'] = 'whenMerged'
                           }
                       }
                   }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top