Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 619 for Classes (0.41 sec)

  1. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

            1 * artifacts.clear()
            1 * artifacts2.clear()
            1 * outgoing.artifact(artifact1)
            1 * outgoing.artifact(artifact2)
            0 * _
        }
    
        def "can setup a classes directory secondary variant"() {
            def sourceSet = Mock(SourceSet)
            def apiElements = Mock(ConfigurationInternal)
            def outgoing = Mock(ConfigurationPublications)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

            // This is important to get transitive implementation dependencies. PMD may load referenced classes for analysis so it expects the classpath to be "closed" world.
            getJvmPluginServices().configureAsRuntimeClasspath(pmdAuxClasspath);
    
            // We have to explicitly add compileClasspath here because it may contain classes that aren't part of the compileClasspathConfiguration. In particular, compile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            then:
            fails("compileGroovy")
            checkCompileOutput('unable to resolve class')
            failure.assertHasCause(compilationFailureMessage)
    
            file('build/classes/stub/Groovy.java').exists()
            groovyClassFile('Groovy.class').exists()
            groovyGeneratedSourceFile('Groovy$$Generated.java').exists()
            groovyClassFile('Groovy$$Generated.class').exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

            if (file("build/classes/java/test/example/MyTest.class").exists()) {
                // for Gradle 4.0+
                assert file("build/classes/java/test/example/MyTest.class").delete()
            }
            if (file("build/classes/test/example/MyTest.class").exists()) {
                // for Gradle < 4.0
                assert file("build/classes/test/example/MyTest.class").delete()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

                    }
                }
    
                def sneakyTask = tasks.register("sneakyTask", SneakyTask) {}
    
                // Ensure that buildSrc compilation triggers an exec task.
                tasks.named("classes").configure {
                    dependsOn(sneakyTask)
                }
            """
    
            when:
            configurationCacheRun(":help")
    
            then:
            outputContains("Hello")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

                - org.gradle.jvm.version         = 11
                - org.gradle.libraryelements     = classes
                - org.gradle.usage               = java-api
            Artifacts
                - build/classes/java/main (artifactType = java-classes-directory)
    
    --------------------------------------------------
    Variant mainSourceElements (i)
    --------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            given:
            def classesDir = tmpDir.createDir("some-module/out/production/classes")
            def staticResourcesDir = tmpDir.createDir("some-module/out/production/resources")
            def ignoredDir = tmpDir.createDir("some-module/ignore-me-out/production/classes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            testSourceSet.compileClasspath.contains(new File(project.buildDir, 'classes/java/main'))
            testSourceSet.annotationProcessorPath.is(project.configurations.testAnnotationProcessor)
            testSourceSet.java.destinationDirectory.set(new File(project.buildDir, 'classes/java/test'))
            testSourceSet.output.resourcesDir == new File(project.buildDir, 'resources/test')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            def libs = module.component.orderEntry.library
            assert libs.size() == 1
            assert libs.CLASSES.root*.@url*.text().collect { new File(it).name } as Set == [artifact1.name + "!"] as Set
            assert libs.CLASSES.root*.@url*.text().findAll() { it.contains("\$GRADLE_REPO\$") }.size() == 1
            assert libs.CLASSES.root*.@url*.text().collect { it.replace("\$GRADLE_REPO\$", relPath(repoDir)) } as Set == ["jar://${relPath(artifact1)}!/"] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * compilation. Defaults to {@code null}, in which case a temporary directory will be used.
         */
        @Internal
        // TOOD:LPTR Should be just a relative path
        public File getStubDir() {
            return stubDir;
        }
    
        /**
         * Sets the directory where Java stubs for Groovy classes will be stored during Java/Groovy joint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top