Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,415 for Reports (0.5 sec)

  1. 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)
  2. Jenkinsfile

                                        // in ITs test we need only reports from test itself
                                        // test projects can contain reports with tested failed builds
                                        junit testResults: '**/core-it-suite/target/surefire-reports/*.xml,**/core-it-support/**/target/surefire-reports/*.xml', allowEmptyResults: true
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/internal/platform/supported.go

    	FirstClass   bool
    	Broken       bool
    }
    
    // CgoSupported reports whether goos/goarch supports cgo.
    func CgoSupported(goos, goarch string) bool {
    	return distInfo[OSArch{goos, goarch}].CgoSupported
    }
    
    // FirstClass reports whether goos/goarch is considered a “first class” port.
    // (See https://go.dev/wiki/PortingPolicy#first-class-ports.)
    func FirstClass(goos, goarch string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginVersionIntegrationTest.groovy

            ["html", "xml", "txt"].each {
                assert report("main", it).exists()
            }
            // HTML report is sortable
            report("main").text.contains("Sort by")
        }
    
        def "reports HTML report over text or XML report in failure message"() {
            badCode()
            buildFile << """
                codenarcTest.reports {
                    xml.required = true
                    text.required = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. subprojects/internal-build-reports/build.gradle.kts

    plugins {
        id("gradlebuild.incubation-report-aggregation")
    }
    
    description = "The project to aggregate incubation reports from all subprojects"
    
    dependencies {
        reports(platform(project(":distributions-full")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 11 11:30:50 UTC 2022
    - 218 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilder.kt

        val locatedExceptions =
            exceptions.findLocationAwareExceptions()
    
        val reports =
            mutableListOf<EditorReport>()
    
        reportExceptionsNotLocatedIn(scriptFile, locatedExceptions, reports)
    
        reportRuntimeExceptionsLocatedIn(scriptFile, locatedExceptions, locationAwareHints, reports)
    
        return reports
    }
    
    
    private
    fun reportExceptionsNotLocatedIn(
        scriptFile: File,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/build.gradle.kts

            errorprone.enabled = false
        }
    }
    
    val reports by configurations.creating
    val flamegraph by configurations.creating
    configurations.compileOnly { extendsFrom(flamegraph) }
    
    repositories {
        googleApisJs()
    }
    
    dependencies {
        reports("jquery:jquery.min:3.5.1@js")
        reports("flot:flot:0.8.1:min@js")
    
        api(project(":base-services"))
        api(project(":core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

    import java.util.SortedSet;
    
    /**
     * A container of {@link Report} objects, that represent potential reports.
     * <p>
     * Things that produce reports (typically tasks) expose a report container that contains {@link Report} objects for each
     * possible report that they can produce. Each report object can be configured individually, including whether or not it should
     * be produced by way of its {@link Report#getRequired()} required} property.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/internal/TaskReportContainerIntegTest.groovy

                    @Nested
                    TaskReportContainer reports = project.services.get(org.gradle.internal.reflect.Instantiator).newInstance(TestTaskReportContainer, this)
    
                    @TaskAction
                    def doStuff() {
                        reports.enabled.each {
                             if (it.outputType == Report.OutputType.FILE) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesFilesMiscIntegrationTest.groovy

            def toArchiveDir = dslDir.file("build/toArchive")
            toArchiveDir.file("reports").isDirectory()
            toArchiveDir.file("reports/my-report.pdf").isFile()
            toArchiveDir.file("reports/numbers.csv").isFile()
            toArchiveDir.file("reports/metrics/scatterPlot.pdf").isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("files/misc")
        @Requires(IntegTestPreconditions.IsConfigCached)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top