Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 989 for REPORT (0.16 sec)

  1. platforms/documentation/docs/src/snippets/swift/testReport/groovy/build.gradle

    // tag::test-report[]
    // A resolvable configuration to collect test reports data
    plugins {
        id 'reporting-base'
    }
    
    configurations {
        testReportData {
            canBeConsumed = false
            attributes {
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
                attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, 'test-report-data'))
            }
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 757 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/testReport/kotlin/build.gradle.kts

        java
    }
    
    // tag::test-report[]
    val testReportData by configurations.creating {
        isCanBeConsumed = false
        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.DOCUMENTATION))
            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named("test-report-data"))
        }
    }
    
    dependencies {
        testReportData(project(":core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 756 bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/DependentComponentsReport.java

        }
    
        /**
         * Should this include both non-buildable and test suites in the report?
         */
        @Console
        public boolean getShowAll() {
            return showNonBuildable && showTestSuites;
        }
    
        /**
         * Set this to include both non buildable components and test suites in the report.
         */
        @Option(option = "all", description = "Show all components (non-buildable and test suites).")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/types_alias.go

    type UploadConfig = telemetry.UploadConfig
    
    type ProgramConfig = telemetry.ProgramConfig
    
    type CounterConfig = telemetry.CounterConfig
    
    // A Report is what's uploaded (or saved locally)
    type Report = telemetry.Report
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 605 bytes
    - Viewed (0)
  5. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/TaskReportContainerTest.groovy

            @Nested
            TaskReportContainer<Report> reports
        }
    
        static class TestReportContainer extends TaskReportContainer<Report> {
            TestReportContainer(Task task, Closure c) {
                super(Report, task, CollectionCallbackActionDecorator.NOOP)
    
                c.delegate = new Object() {
                    Report file(String name) {
                        add(TaskGeneratedSingleFileReport, name, task)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportsContainer.java

        /**
         * The JaCoCo HTML report
         *
         * @return The JaCoCo HTML report
         */
        @Internal
        DirectoryReport getHtml();
    
        /**
         * The JaCoCo (single file) XML report
         *
         * @return The JaCoCo (single file) XML report
         */
        @Internal
        SingleFileReport getXml();
    
        /**
         * The JaCoCo (single file) CSV report
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

    import static org.gradle.performance.results.report.Tag.FixedTag.FAILED;
    import static org.gradle.performance.results.report.Tag.FixedTag.FROM_CACHE;
    import static org.gradle.performance.results.report.Tag.FixedTag.IMPROVED;
    import static org.gradle.performance.results.report.Tag.FixedTag.NEARLY_FAILED;
    import static org.gradle.performance.results.report.Tag.FixedTag.REGRESSED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-test-report-aggregation/src/main/java/org/gradle/api/plugins/TestReportAggregationPlugin.java

            testResultsConf.setDescription("Graph needed for the aggregated test results report.");
            testResultsConf.setVisible(false);
    
            // Iterate and configure each user-specified report.
            reporting.getReports().withType(AggregateTestReport.class).all(report -> {
                report.getReportTask().configure(task -> {
                    Callable<FileCollection> testResults = () ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 20:53:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

    /**
     * Generates an HTML dependency report. This report
     * combines the features of the ASCII dependency report and those of the ASCII
     * dependency insight report. For a given project, it generates a tree of the dependencies
     * of every configuration, and each dependency can be clicked to show the insight of
     * this dependency.
     * <p>
     * This task generates a report for the task's containing project by default. But it can also generate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportConfigurationExpander.java

    /**
     * Handles expansion of general report plugin configuration into individual report sets.
     *
     */
    public interface ReportConfigurationExpander {
    
        /**
         * Merges values from general report plugin configuration into the individual reports sets of the given model.
         *
         * @param model The model whose report plugin configuration should be expanded, must not be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top