Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,272 for Reports (0.15 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

    import org.gradle.util.GradleVersion
    
    @TargetGradleVersion('>=5.1')
    class TaskOriginCrossVersionSpec extends ToolingApiSpecification {
    
        def events = ProgressEvents.create()
    
        def "reports task origin for script plugins"() {
            given:
            file("script.gradle") << """
                task b { dependsOn('a') }
            """
            buildFile << """
                apply from: 'script.gradle'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

                    ivy {
                        url "${ivyHttpRepo.uri}"
                    }
                }
                configurations { compile }
            """
            failedResolve.prepare("compile")
        }
    
        def "reports Ivy descriptor that cannot be parsed"() {
            given:
            buildFile << """
    dependencies {
        compile 'group:projectA:1.2'
    }
    """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typeparams/termlist.go

    	}
    	return buf.String()
    }
    
    // isEmpty reports whether the termlist xl represents the empty set of types.
    func (xl termlist) isEmpty() bool {
    	// If there's a non-nil term, the entire list is not empty.
    	// If the termlist is in normal form, this requires at most
    	// one iteration.
    	for _, x := range xl {
    		if x != nil {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcRelocationIntegrationTest.groovy

                ${mavenCentralRepository()}
    
                task codenarc(type: CodeNarc) {
                    source "src/main/groovy"
                    ignoreFailures = true
                    reports.html.required = false
                    reports.text.required = true
                }
    
                configurations.codenarc {
                    attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. src/internal/testenv/testenv.go

    var origEnv = os.Environ()
    
    // Builder reports the name of the builder running this test
    // (for example, "linux-amd64" or "windows-386-gce").
    // If the test is not running on the build infrastructure,
    // Builder returns the empty string.
    func Builder() string {
    	return os.Getenv("GO_BUILDER_NAME")
    }
    
    // HasGoBuild reports whether the current system can build programs with “go build”
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    [[jacoco_report_aggregation_plugin]]
    = The JaCoCo Report Aggregation Plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/README.adoc

    Running the tests and generate the report:
    
    [listing.terminal.sample-command]
    ----
    $ ./gradlew testCodeCoverageReport
    
    BUILD SUCCESSFUL
    25 actionable tasks: 25 executed
    ----
    
    XML and HTML reports can now be found under `code-coverage-report/build/reports/jacoco/testCodeCoverageReport`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/ReportingExtensionTest.groovy

        }
    
        def "reports dir can be changed lazily"() {
            given:
            def dir = "a"
    
            when:
            extension.baseDir = { dir }
    
            then:
            extension.baseDir == project.file("a")
    
            when:
            dir = "b"
    
            then:
            extension.baseDir == project.file("b")
    
        }
    
        def "defaults to reports directory in build dir"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

    import org.gradle.internal.declarativedsl.plugins.PluginsTopLevelReceiver
    import org.junit.Assert.assertEquals
    import org.junit.Assert.assertTrue
    import org.junit.Test
    
    
    class SettingsBlockCheckTest {
        @Test
        fun `reports all duplicate plugins blocks`() {
            val result = pluginsSchema.runChecks(
                """
                plugins { }
                plugins { }
                rootProject.name = "foo"
                plugins { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

                        assert maxPriority2Violations == 0
                        assert maxPriority3Violations == 0
                        assert reports.enabled*.name == ["html"]
                        assert reports.html.outputLocation.asFile.get() == project.file("build/reports/codenarc/${sourceSet.name}.html")
                        assert ignoreFailures == false
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top