Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 619 for Classes (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    `output.classesDirs` — (read-only) link:{javadocPath}/org/gradle/api/file/FileCollection.html[FileCollection]::
    _Default value_: `layout.buildDirectory.dir("classes/java/$name")`, e.g. _build/classes/java/main_
    +
    The directories to generate the classes of this source set into. May contain directories for other JVM languages, e.g. _build/classes/kotlin/main_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaProjectOutgoingVariantsIntegrationTest.groovy

                main (project :java) {artifactType=java-classes-directory, org.gradle.category=library, org.gradle.dependency.bundling=external, ${defaultTargetPlatform()}, org.gradle.libraryelements=classes, org.gradle.usage=java-runtime}
                file-dep.jar {artifactType=jar, org.gradle.libraryelements=jar, org.gradle.usage=java-runtime}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

                } else {
                    // api/build/classes/java/main and api/build/classes/groovy/main
                    // impl/build/classes/java/main
                    return "main, main, ${classpath}, main"
                }
            } else {
                if (useJar) {
                    return "api.jar, $classpath"
                } else {
                    // api/build/classes/java/main
                    return "main, ${classpath}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

    import java.util.Set;
    import java.util.function.Supplier;
    
    /**
     * Provides information about a set of classes, e.g. a JAR or a whole classpath.
     * Contains a hash for every class contained in the set, so it can determine which classes have changed compared to another set.
     * Contains a reverse dependency view, so we can determine which classes in this set are affected by a change to a class inside or outside this set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/controller.go

    	c.queue.Run(stop)
    	controllers.ShutdownAll(c.ingress, c.services, c.classes)
    }
    
    func (c *controller) shouldProcessIngress(mesh *meshconfig.MeshConfig, i *knetworking.Ingress) bool {
    	var class *knetworking.IngressClass
    	if i.Spec.IngressClassName != nil {
    		c := c.classes.Get(*i.Spec.IngressClassName, "")
    		if c == nil {
    			return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/HtmlTestExecutionResult.groovy

            def executedTestClasses = html.select("div:has(h2:contains(Classes)).tab a").collect { it.text() }
            executedTestClasses
        }
    
        private void assertHtmlReportForTestClassExists(String... classNames) {
            classNames.each {
                assert new File(htmlReportDirectory, "classes/${FileUtils.toSafeFileName(it)}.html").file
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                containsString('VM START TIME =')).get(0))))
        }
    
        def "tries to execute unparseable test classes"() {
            given:
            file('build/classes/java/test/com/example/Foo.class').text = "invalid class file"
            buildFile << """
                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

                return transactionDir.list()
            }
    
            then:
            directories as Set ==~ ["stash-dir", "backup-dir"]
        }
    
        def "generated classes and resources are deleted and classes in backup dir are restored on a failure"() {
            def destinationDir = spec.getDestinationDir()
            def annotationGeneratedSourcesDir = createNewDirectory(file("generated/annotation-resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    However, it now means that for runtime, the consumer has to choose between two variants:
    
    - `runtimeElements`, the regular variant offered by the `java-library` plugin
    - `instrumentedJars`, the variant we have created
    
    In particular, say we want the instrumented classes on the test runtime classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

        }
    
        def "can fetch buildscript classpath in face of compilation errors"() {
    
            given:
            withEmptyJar("classes.jar")
            withDefaultSettings()
            withBuildScript("""
                buildscript {
                    dependencies {
                        classpath(files("classes.jar"))
                    }
                }
    
                val p =
            """)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top