Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,227 for Reports (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/ParsedCommandLineOptionSpec.groovy

    class ParsedCommandLineOptionSpec extends Specification {
    
        final option = new ParsedCommandLineOption();
    
        def "reports no value"() {
            when:
            option.getValue()
    
            then:
            thrown(IllegalStateException)
            !option.hasValue()
        }
    
        def "reports single value"() {
            when:
            option.addArgument("foo")
    
            then:
            option.hasValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. api/pom.xml

                    </tag>
                  </tags>
                </configuration>
                <reportSets>
                  <reportSet>
                    <id>aggregate</id>
                    <reports>
                      <report>aggregate</report>
                    </reports>
                    <inherited>false</inherited>
                  </reportSet>
                </reportSets>
              </plugin>
              <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top