Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for classPath (0.14 sec)

  1. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

     *     public static boolean isApplied()
     * </pre>
     * that returns if the agent is applied, i.e. if one of its {@code premain} or {@code agentmain} entry methods was called.
     * <p>
     * It is possible to have an agent in the classpath without actually applying it, so checking for the availability of the class is not enough.
     */
    class AgentControl {
        private static final String INSTRUMENTATION_AGENT_CLASS_NAME = "org.gradle.instrumentation.agent.Agent";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/build.gradle.kts

        crossVersionTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    tasks.withType<Test>().configureEach {
        if (!javaVersion.isJava9Compatible) {
            classpath += javaLauncher.get().metadata.installationPath.files("lib/tools.jar")
        }
    }
    
    tasks.withType<JavaCompile>().configureEach {
        options.release = null
        sourceCompatibility = "8"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.plugins.ide.eclipse.model.Classpath> extends/implements org.gradle.plugins.ide.internal.generator.XmlPersistableConfigurationObject that is Gradle Internal API in (Classpath.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            }
            """
        }
    
        protected String emptyJavaClasspath() {
            """
                tasks.compileJava {
                    // Avoid resolving the classpath when caching the configuration
                    classpath = files()
                }
            """
        }
    
        // Helpers for writing buildscripts using a common syntax
    
        String renderString(String content) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

                    inputs.files(manifestClasspath)
                    val classpath = manifestClasspath.elements.map { classpathDependency ->
                        classpathDependency.joinToString(" ") {
                            it.asFile.name
                        }
                    }
                    manifest.attributes("Class-Path" to classpath)
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/process/internal/AbstractWorkerProcessIntegrationSpec.groovy

    import org.gradle.api.internal.ClassPathRegistry
    import org.gradle.api.internal.DefaultClassPathProvider
    import org.gradle.api.internal.DefaultClassPathRegistry
    import org.gradle.api.internal.classpath.ModuleRegistry
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.internal.file.temp.TemporaryFileProvider
    import org.gradle.api.logging.LogLevel
    import org.gradle.cache.UnscopedCacheBuilderFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/build.gradle.kts

        into(layout.buildDirectory.dir("generated-resources/tested-versions"))
    }
    
    val generateLanguageAnnotations by tasks.registering(GenerateLanguageAnnotations::class) {
        classpath.from(configurations.integTestDistributionRuntimeClasspath)
        packageName = "org.gradle.integtests.fixtures"
        destDir = layout.buildDirectory.dir("generated/sources/language-annotations/groovy/main")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

            """
        }
    
        @SuppressWarnings('unused')
        // called by string
        def javaExecTask(Map<String, String> args) {
            """
                tasks.register("run", JavaExec) {
                    classpath = project.layout.files(compileJava)
                    mainClass = "Main"
                    ${formatArgument args["extraArg"], { "args '$it'" }}
    
                    ${formatStreamArgument args, "standardInput"}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                    outputClasses = layout.buildDirectory.dir("producerOutput")
                }
    
                abstract class MyTask extends DefaultTask {
                    @Classpath abstract ConfigurableFileCollection getClasses()
                    @Inject abstract ProjectLayout getLayout()
                    @TaskAction void doStuff() {
                        def root = layout.projectDirectory.asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

            file("included/settings.gradle") << "rootProject.name = 'included'"
            buildFile.text = """
                buildscript {
                    dependencies {
                        classpath(files("./included/build/libs/included.jar"))
                    }
                }
                apply plugin: MyPlugin
            """
            settingsFile << """rootProject.name = 'root'"""
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top