Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,688 for REPORT (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. .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)
  7. 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)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/plugins/ProjectReportsPluginIntegrationSpec.groovy

            """
    
            when:
            succeeds(task)
    
            then:
            !result.getOutput().contains("See the report at:")
    
            where:
            task << ["taskReport", "propertyReport", "dependencyReport"]
        }
    
        def "given no HTML report, does not print link to default HTML dependency report"() {
            given:
            buildFile << """
                htmlDependencyReport {
                    reports.html.required = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/software/reporting/src/main/java/org/gradle/api/reporting/GenerateBuildDashboard.java

            for (Report report : getEnabledInputReports()) {
                if (getReports().contains(report)) {
                    // A report to be generated, ignore
                    continue;
                }
                File outputLocation = report.getOutputLocation().get().getAsFile();
                inputs.add(new ReportState(report.getDisplayName(), outputLocation, outputLocation.exists()));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:30:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportBase.java

         * included in the report.
         *
         * @param sourceSets one or more source sets to report on
         */
        public void sourceSets(final SourceSet... sourceSets) {
            for (final SourceSet sourceSet : sourceSets) {
                sourceDirectories.from(new Callable<Set<File>>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top