Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,688 for REPORT (0.7 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractReportTask.java

        /**
         * Sets the file which the report will be written to. Set this to {@code null} to write the report to {@code System.out}.
         *
         * @param outputFile The output file. May be null.
         */
        public void setOutputFile(@Nullable File outputFile) {
            this.outputFile = outputFile;
        }
    
        /**
         * Returns the set of project to generate this report for. By default, the report is generated for the task's
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstyleReports.java

         * <p>
         * This report IS enabled by default.
         *
         * @return The checkstyle XML report
         */
        @Internal
        SingleFileReport getXml();
    
        /**
         * The checkstyle SARIF report
         * <p>
         * This report is NOT enabled by default.
         *
         * @return The checkstyle SARIF report
         * @since 8.1
         */
        @Internal
        @Incubating
        SingleFileReport getSarif();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/TaskGeneratedSingleDirectoryReportTest.groovy

            def report = TestUtil.objectFactory(tmpDir.testDirectory).newInstance(TaskGeneratedSingleDirectoryReport, "report", Stub(Task), "entryPoint")
            def output = new File("report.dir")
            def resolvedOutput = tmpDir.file("report.dir")
    
            expect:
            !report.outputLocation.isPresent()
    
            report.conventionMapping.map("destination") { output }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            result.output.assertContains("failed-report-with-leftover/build/tmp/teŝt files/leftover")
            result.output.assertContains("failed-test-with-leftover/build/tmp/teŝt files/leftover")
    
            assertArchivedFilesSeen(
                "report-failed-test-with-leftover-test.zip",
                "report-failed-report-with-leftover-reports.zip",
                "report-failed-test-with-leftover-leftover.zip",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/DefaultReportContainerTest.groovy

    import org.gradle.api.reporting.Report
    import org.gradle.api.reporting.ReportContainer
    import org.gradle.internal.Describables
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class DefaultReportContainerTest extends Specification {
        static class TestReportContainer extends DefaultReportContainer {
            TestReportContainer(Closure c) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ConfigurableReport.java

    import java.io.File;
    
    /**
     * A file based report to be created with a configurable destination.
     *
     * Note this is a legacy type which offers no additional functionality.  Reports
     * should implement {@link Report} directly instead of using this interface.
     */
    public interface ConfigurableReport extends Report {
        /**
         * Sets the destination for the report.
         *
         * @param file The destination for the report.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/reporting/src/main/java/org/gradle/api/reporting/CustomizableHtmlReport.java

    import javax.annotation.Nullable;
    
    /**
     * A HTML Report whose generation can be customized with a XSLT stylesheet.
     */
    public interface CustomizableHtmlReport extends SingleFileReport {
    
        /**
         * The stylesheet to use to generate the HTML report.
         *
         * @return the stylesheet to use to generate the HTML report
         */
        @Nullable
        @Optional
        @Nested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    [[test_report_aggregation_plugin]]
    = The Test Report Aggregation Plugin
    
    The Test Report Aggregation plugin (plugin id: `test-report-aggregation`) provides tasks and configurations used to aggregate the results of multiple link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[Test] task invocations (potentially spanning multiple Gradle projects) into a single HTML report.
    
    [[sec:test_report_aggregation_usage]]
    == Usage
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ConventionReportTask.java

        private final DirectoryProperty reportDir;
        private File outputFile;
    
        /**
         * Returns the project report directory.
         * <p>
         * The {@code project-report} plugin sets the default value for all tasks of this type to {@code buildDir/project}.
         * <p>
         * Note, that if the {@code project-report} plugin is not applied then this property is ignored.
         *
         * @return the directory to store project reports
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 11 10:37:35 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/swift/testReport/groovy/buildSrc/src/main/groovy/myproject.xctest-conventions.gradle

    // tag::test-report[]
    plugins {
        id 'xctest'
    }
    
    xctest {
        binaries.configureEach {
            runTask.get().configure {
                // Disable the test report for the individual test task
                reports.html.required = false
            }
        }
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 772 bytes
    - Viewed (0)
Back to top