Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,496 for Reports (0.17 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageLoggingOutputCaptureIntegrationTest.groovy

        def "can configure logging output inclusion in xml reports"() {
            given:
            buildFile.text = buildFile.text.replace("reports.junitXml.outputPerTestCase = true", """reports.junitXml {
                outputPerTestCase = true
                $includeSystemOutConf
                $includeSystemErrConf
            }""".stripIndent())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

            if (failureCount) {
                def message = "$failureCount PMD rule violations were found."
                def report = reports.isEmpty() ? null : reports.get(0)
                if (report) {
                    def reportUrl = new ConsoleRenderer().asClickableFileUrl(report.outputLocation.asFile.get())
                    message += " See the report at: $reportUrl"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            result.assertTaskExecuted(":core:test")
            result.assertTaskExecuted(":util:test")
    
            and: "an aggregate report is created"
            dslDir.file("build/reports/allTests/index.html").assertExists()
    
            and: "no test reports in the subprojects are created"
            getStandardTestReportDir(dslDir, "core", "").file("index.html").assertDoesNotExist()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/internal/alias/alias_purego.go

    package alias
    
    // This is the Google App Engine standard variant based on reflect
    // because the unsafe package and cgo are disallowed.
    
    import "reflect"
    
    // AnyOverlap reports whether x and y share memory at any (not necessarily
    // corresponding) index. The memory beyond the slice length is ignored.
    func AnyOverlap(x, y []byte) bool {
    	return len(x) > 0 && len(y) > 0 &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/alg.go

    func AlgType(t *Type) AlgKind {
    	CalcSize(t)
    	return t.alg
    }
    
    // TypeHasNoAlg reports whether t does not have any associated hash/eq
    // algorithms because t, or some component of t, is marked Noalg.
    func TypeHasNoAlg(t *Type) bool {
    	return AlgType(t) == ANOALG
    }
    
    // IsComparable reports whether t is a comparable type.
    func IsComparable(t *Type) bool {
    	a := AlgType(t)
    	return a != ANOEQ && a != ANOALG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.quality.CodeNarc.xml

                </tr>
                <tr>
                    <td>reports</td>
                    <td></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>reports</td>
                </tr>
            </table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/stat_unix.go

    //go:build unix
    
    package modload
    
    import (
    	"io/fs"
    	"os"
    	"syscall"
    )
    
    // hasWritePerm reports whether the current user has permission to write to the
    // file with the given info.
    //
    // Although the root user on most Unix systems can write to files even without
    // permission, hasWritePerm reports false if no appropriate permission bit is
    // set even if the current user is root.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 963 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentSelectorParsersTest.groovy

            then:
            thrown(UnsupportedNotationException)
        }
    
        def "reports missing keys for map notation"() {
            when:
            multiParser().parseNotation([name: "bar", version: "1.0"])
    
            then:
            thrown(InvalidUserDataException)
        }
    
        def "reports wrong keys for map notation"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.quality.Checkstyle.xml

                </tr>
                <tr>
                    <td>checkstyleClasspath</td>
                    <td><literal>project.configurations.checkstyle</literal></td>
                </tr>
                <tr>
                    <td>reports</td>
                    <td></td>
                </tr>
                <tr>
                    <td>javaLauncher</td>
                    <td></td>
                </tr>
                <tr>
                    <td>minHeapSize</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ErrorHandlingChangeContainerTest.groovy

        def "accept error reports task path"() {
            when:
            changes.accept(Mock(ChangeVisitor))
            then:
            def ex = thrown GradleException
            ex.message == "Cannot determine changes for task ':test'"
            ex.cause.message == "Error!"
            1 * delegate.accept(_) >> { throw new RuntimeException("Error!") }
        }
    
        def "visitor error reports task path"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top