Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,496 for Reports (0.21 sec)

  1. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstyleTest.groovy

                configProperties == [:]
                !reports.xml.required.get()
                !reports.xml.outputLocation.isPresent()
                reports.xml.outputType == Report.OutputType.FILE
                !reports.html.required.get()
                !reports.html.outputLocation.isPresent()
                reports.html.outputType == Report.OutputType.FILE
                !reports.sarif.required.get()
                !reports.sarif.outputLocation.isPresent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/main/java/org/gradle/api/reporting/GenerateBuildDashboard.java

        }
    
        /**
         * The reports to be generated by this task.
         *
         * @return The reports container
         */
        @Nested
        @Override
        public BuildDashboardReports getReports() {
            return reports;
        }
    
        /**
         * Configures the reports to be generated by this task.
         *
         * The contained reports can be configured by name and closures.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:30:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            task.ruleSetFiles.singleFile == project.file("my-ruleset.xml")
            task.reports.xml.outputLocation.asFile.get() == project.file("pmd-reports/custom.xml")
            task.reports.html.outputLocation.asFile.get() == project.file("pmd-reports/custom.html")
            task.outputs.files.files == task.reports.enabled*.outputLocation.collect { it.get().asFile } as Set
            task.ignoreFailures == true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/plugins/ProjectReportsPluginIntegrationSpec.groovy

            buildFile << """
            plugins {
                id 'project-report'
            }
            """
        }
    
        def "produces report files"() {
            when:
            succeeds("projectReport")
    
            then:
            file("build/reports/project/dependencies.txt").assertExists()
            file("build/reports/project/properties.txt").assertExists()
            file("build/reports/project/tasks.txt").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesCodeQualityIntegrationTest.groovy

            buildDir.file('reports/codenarc/main.html').assertIsFile()
            buildDir.file('reports/codenarc/test.html').assertIsFile()
            buildDir.file('reports/pmd/main.html').assertIsFile()
            buildDir.file('reports/pmd/main.xml').assertIsFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/project-with-source/build.xml

                </batchtest>
                <formatter type="xml"/>
            </junit>
            <!--<junitreport toDir="\${build.dir}">-->
                <!--<fileset dir="\${test.reports.dir}" includes="*.xml"/>-->
                <!--<report todir="\${test.reports.dir}"/>-->
            <!--</junitreport>-->
        </target>
    
        <target name="jar" depends="compile">
            <jar destfile="\${build.dir}/production.jar">
                <fileset dir="\${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/groovy/build.gradle

        forkEvery = 100
    // end::fork-every[]
    
    // tag::disable-reports[]
        reports.html.required = false
        reports.junitXml.required = false
    // end::disable-reports[]
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    }
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    
    // tag::fork-java[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 976 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/project_report_plugin.adoc

    We plan to add much more to the existing reports and create additional ones in future releases of Gradle.
    
    
    [[sec:project_reports_usage]]
    == Usage
    
    To use the Project report plugin, include the following in your build script:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/kotlin/build.gradle.kts

        forkEvery = 100
    // end::fork-every[]
    
    // tag::disable-reports[]
        reports.html.required = false
        reports.junitXml.required = false
    // end::disable-reports[]
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    }
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    
    // tag::fork-java[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 995 bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            file("application/build/reports/jacoco/testCodeCoverageReport/html/index.html").assertExists()
    
            def report = new JacocoReportXmlFixture(file("application/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml"))
            report.assertHasClassCoverage("application.Adder")
            report.assertHasClassCoverage("direct.Multiplier")
            report.assertHasClassCoverage("transitive.Powerize")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
Back to top