Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,558 for REPORT (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/snippets/testing/testReport/kotlin/buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts

    // tag::test-report[]
    plugins {
        id("java")
    }
    
    // Disable the test report for the individual test task
    tasks.named<Test>("test") {
        reports.html.required = false
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations.create("binaryTestResultsElements") {
        isCanBeResolved = false
        isCanBeConsumed = true
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 690 bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPlugin.java

            reportTask.getReports().all(action(report ->
                report.getRequired().convention(report.getName().equals("html"))
            ));
            DirectoryProperty reportsDir = extension.getReportsDirectory();
            reportTask.getReports().all(action(report -> {
                if (report.getOutputType().equals(Report.OutputType.DIRECTORY)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 21:09:25 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcReports.java

        /**
         * The codenarc XML report
         *
         * @return The codenarc XML report
         */
        @Internal
        SingleFileReport getXml();
    
        /**
         * The codenarc HTML report
         *
         * @return The codenarc HTML report
         */
        @Internal
        SingleFileReport getHtml();
    
        /**
         * The codenarc text report
         *
         * @return The codenarc text report
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                                <report>index</report>
                                <report>dependency-info</report>
                                <report>modules</report>
                                <report>license</report>
                                <report>project-team</report>
                                <report>scm</report>
                                <report>issue-tracking</report>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemReporter.java

         *
         * @param problem The problem to report.
         */
        @Override
        public void report(Problem problem) {
            RuntimeException exception = problem.getException();
            if(exception != null) {
                problems.put(exception, problem);
            }
            OperationIdentifier id = currentBuildOperationRef.getId();
            if (id != null) {
                report(problem, id);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/bug_report.yml

    name: Bug report
    description: Report a bug to help us improve Istio
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for taking the time to fill out this bug report!
      - type: checkboxes
        id: security-check
        attributes:
          label: Is this the right place to submit this?
          description: |-
            This is used to report product bugs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.h

    namespace mlir::quant::stablehlo {
    
    // A `PassInstrumentation` that saves quantization report to file after
    // `QuantizeCompositeFunctionsPass` is run. It inspects the `ModuleOp` after
    // quantization and analyzes the quantizable units and quantization methods
    // used. The report file will be saved at the `file_path`. The report file
    // contains textproto of `QuantizationResults`. `file_path`'s base directories
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top