Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,482 for REPORT (0.1 sec)

  1. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/SimpleReport.java

        }
    
        @Override
        public String toString() {
            return "Report " + getName();
        }
    
        @Override
        public abstract FileSystemLocationProperty<? extends FileSystemLocation> getOutputLocation();
    
        @Deprecated
        @Override
        public void setDestination(File file) {
            DeprecationLogger.deprecateProperty(Report.class, "destination")
                    .replaceWith("outputLocation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:05:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoReportAggregationPlugin.java

            reporting.getReports().registerBinding(JacocoCoverageReport.class, DefaultJacocoCoverageReport.class);
    
            // Iterate and configure each user-specified report.
            reporting.getReports().withType(JacocoCoverageReport.class).all(report -> {
                report.getReportTask().configure(task -> {
                    ArtifactView executionData = codeCoverageResultsConf.getIncoming().artifactView(view -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:25:42 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

            reports.single().let { report ->
                assertThat(report.severity, equalTo(severity))
                assertThat(report.position, nullValue())
                assertThat(report.message, equalTo(message))
            }
        }
    
        fun assertSingleLineWarningReport(message: String, line: Int) {
            assertSingleEditorReport()
            reports.single().let { report ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    ====
    
    The `application` project requires no additional configuration if the `jvm-test-suite` plugin is present.
    
    <1> Apply the `jacoco-report-aggregation` plugin
    <2> Optional: make JaCoCo aggregate report generation part of the 'check' lifecycle phase
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	match := dateRE.FindStringSubmatch(fname)
    	if match == nil || len(match) < 2 {
    		u.logger.Printf("Report name %q missing date", filepath.Base(fname))
    	} else if match[1] > today {
    		u.logger.Printf("Report date for %q is later than today (%s)", filepath.Base(fname), today)
    		return // report is in the future, which shouldn't happen
    	}
    	buf, err := os.ReadFile(fname)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/groovy/build.gradle

        }
    }
    // end::testtask-configuration[]
    
    // tag::testtask-dependency[]
    test {
        finalizedBy jacocoTestReport // report is always generated after tests run
    }
    jacocoTestReport {
        dependsOn test // tests are required to run before generating the report
    }
    // end::testtask-dependency[]
    
    // tag::report-configuration[]
    jacocoTestReport {
        reports {
            xml.required = false
            csv.required = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestTaskReports.java

    import org.gradle.api.reporting.Report;
    import org.gradle.api.reporting.ReportContainer;
    import org.gradle.api.tasks.Internal;
    
    /**
     * The reports produced by the {@link Test} task.
     */
    public interface TestTaskReports extends ReportContainer<Report> {
    
        /**
         * A HTML report indicate the results of the test execution.
         *
         * @return The HTML report
         */
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    * `reporters/model-builder-plugin` shows how to use the Problems API to report problems when reading project configuration via the Tooling API.
    * `reporters/script-plugin` shows how to use the Problems API in a precompiled script plugin.
    
    
    ## Emitting a problem
    
    Problems can be emitted via an injected `Problems` service.
    Here's an example on how to report a problem from a plugin.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    include::sample[dir="snippets/codeQuality/codeQuality/groovy",files="build.gradle[tags=customize-checkstyle-report]"]
    ====
    
    https://github.com/checkstyle/contribution/tree/master/xsl[View a sample Checkstyle stylesheet.]
    
    [[sec:enable_checkstyle_sarif]]
    == Generate SARIF report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/go/types/errors.go

    			}
    		}
    		buf.WriteString(p.msg)
    	}
    	return buf.String()
    }
    
    // report reports the error err, setting check.firstError if necessary.
    func (err *error_) report() {
    	if err.empty() {
    		panic("no error")
    	}
    
    	// Cheap trick: Don't report errors with messages containing
    	// "invalid operand" or "invalid type" as those tend to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top