Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,558 for REPORT (0.1 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptDependenciesResolver.kt

    
    private
    typealias Report = (ReportSeverity, String, Position?) -> Unit
    
    
    private
    fun Report.warning(message: String, position: Position? = null) =
        invoke(ReportSeverity.WARNING, message, position)
    
    
    private
    fun Report.error(message: String, position: Position? = null) =
        invoke(ReportSeverity.ERROR, message, position)
    
    
    private
    fun Report.fatal(message: String, position: Position? = null) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    // limitations under the License.
    
    [[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)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            index.assertHasNoNavLinks()
        }
    
        def "generates report with aggregated index page for build with no failures - #numThreads parallel thread(s)"() {
            given:
            report = reportWithMaxThreads(numThreads)
            def testTestResults = passingBuildResults()
    
            when:
            report.generateReport(testTestResults, reportDir)
    
            then:
            def index = results(indexFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top