Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 502 for REPORT (0.11 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    //  3. Enable each change that the pattern says should be enabled.
    //     The [Matcher.Enable] method answers this question for a given change ID.
    //
    //  4. Report each change that the pattern says should be reported.
    //     The [Matcher.Report] method answers this question for a given change ID.
    //     The report consists of one more lines on standard error or standard output
    //     that contain a “match marker”. [Marker] returns the match marker for a given ID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

            1 * closure.call()
    
            when:
            // rewire a mocked TestReporter as it gets removed by AbstractTestTask#createReporting()
            task.testReporter = Mock(TestReporter)
            task.executeTests()
    
            then:
            e = thrown()
            e.message.startsWith("There were failing tests. See the report at")
            0 * closure.call()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                        if (0 < position) {
                            // ... we can report the line, column, and extent ...
                            spec.lineInFileLocation(resourceName, line, column, end - position);
                        } else {
                            // ... otherwise we can still report the line and column
                            spec.lineInFileLocation(resourceName, line, column);
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

    class TestReportTaskIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        Sample sample = new Sample(temporaryFolder)
    
        @UsesSample("testing/testReport/groovy")
        def "can generate report for subprojects"() {
            given:
            super.sample(sample)
    
            when:
            run "testReport"
    
            then:
            def htmlReport = new HtmlTestExecutionResult(sample.dir, "build/reports/allTests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

                    reportConfigurationOf(getRichReport())
            );
        }
    
        private static RichReport.Configuration reportConfigurationOf(Provider<RichReport> report) {
            if (report.isPresent()) {
                return report.get().toConfiguration();
            }
            return null;
        }
    
        private static File maybeFile(RegularFileProperty property) {
            if (property.isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

         
         See failure report at file:///<path to Gradle checkout>/subprojects/architecture-test/build/reports/binary-compatibility/report.html
    ```
    
    Here are the steps to resolve the issue:
    
    1. Open the failure report mentioned in the output.\
    If you don't see the report link in the output in the IDE, make sure to select the top-level node in the structured output panel.
    The report will explain the errors in detail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                assertTrue("Rich report file doesn't exist", isFile)
            }
    
            return CheckResult(failure, scrapeRichReport(richReportFile), buildResult).apply {
                println(richReport.toText())
                block()
            }
        }
    
        /**
         * Runs the binary compatibility check against two source trees, but fails without generating a rich report.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRendererTest.groovy

            report = Jsoup.parse(currentReportFile, UTF_8.name())
        }
    
        private boolean bodyContains(String text) {
            def node = report.body().select("*").find { norm(it).contains(text) }
            node != null // this is just so that we can put a breakpoint for debugging
        }
    
        private boolean bodyContainsExact(String text) {
            def node = report.body().select("*").find { norm(it) == text }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="http://w3.org/TR/CSP/#content-security-policy-report-only-header-field">
       * {@code Content-Security-Policy-Report-Only}</a> header field name.
       *
       * @since 15.0
       */
      public static final String CONTENT_SECURITY_POLICY_REPORT_ONLY =
          "Content-Security-Policy-Report-Only";
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  10. common/config/.golangci.yml

        - unconvert
        - unparam
        - unused
        - gci
        - gosec
      fast: false
    linters-settings:
      errcheck:
        # report about not checking of errors in type assertions: `a := b.(MyStruct)`;
        # default is false: such cases aren't reported by default.
        check-type-assertions: false
        # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
        # default is false: such cases aren't reported by default.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top