Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 989 for REPORT (0.91 sec)

  1. platforms/documentation/docs/src/snippets/testing/testReport/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    // tag::test-report[]
    plugins {
        id 'java'
    }
    
    // Disable the test report for the individual test task
    test {
        reports.html.required = false
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            canBeConsumed = true
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/build.gradle.kts

    // tag::enable-checkstyle-sarif-report[]
    checkstyle {
        toolVersion = "10.3.3"
    }
    // end::enable-checkstyle-sarif-report[]
    
    // tag::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
    tasks.withType<Checkstyle>().configureEach {
        reports {
    // end::customize-checkstyle-report[]
            sarif.required = true
    // end::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/BuildDashboardGenerator.java

    public class BuildDashboardGenerator extends ReportRenderer<Collection<Report>, File> {
        private Set<Report> reports;
        private File outputFile;
    
        @Override
        public void render(Collection<Report> reports, final File outputFile) {
            this.reports = new TreeSet<Report>(new Comparator<Report>() {
                @Override
                public int compare(Report o1, Report o2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.cc

      auto module_op = cast<ModuleOp>(op);
      const QuantizationReport report(module_op);
    
      // Print a human-readable report to stdout regardless of whether the report
      // is saved to file.
      report.Print();
    
      // Exit early if the report should not be saved to file.
      if (!ShouldSaveReport(pass, op, file_path_)) return;
    
      SaveReport(report, *file_path_);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/main/java/org/gradle/api/reporting/DirectoryReport.java

    import java.io.File;
    
    /**
     * A directory based report to be created.
     */
    public interface DirectoryReport extends ConfigurableReport {
    
        /**
         * Returns the entry point of a directory based Report
         *
         * This can be the index.html file in a HTML report
         *
         * @return the entry point of the report or
         * {@link DirectoryReport#getOutputLocation()}
         * if no entry point defined
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/ModelReportParserTest.groovy

            ex.message.startsWith message
    
            where:
            text | message
            ''   | 'Report text must not be blank'
            null | 'Report text must not be blank'
            's'  | 'Should have at least 5 lines'
        }
    
        def "fails when missing the success marker"() {
            when:
            ModelReportParser.parse("""-----------
    Report
    --------------
    1
    2
    3
    4
    5
    6
    + model
    BUILD SUCCESSFUsL
    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

    import java.util.SortedSet;
    
    /**
     * A container of {@link Report} objects, that represent potential reports.
     * <p>
     * Things that produce reports (typically tasks) expose a report container that contains {@link Report} objects for each
     * possible report that they can produce. Each report object can be configured individually, including whether or not it should
     * be produced by way of its {@link Report#getRequired()} required} property.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored()
            outputContains(output1)
    
            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateLoaded()
            outputContains(output1)
    
            when: // a file is added
            dir.createFile("file3")
            configurationCacheRun("report")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    <1> Declare dependencies using the `testReportAggregation` configuration
    <2> Define a report of type `AggregateTestReport` which collects test data from unit test suites
    <3> Optional: make aggregate test 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.7K bytes
    - Viewed (0)
  10. 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)
Back to top