Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,496 for Reports (0.26 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemReporter.java

     */
    
    package org.gradle.api.problems;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    /**
     * Defines different ways to report problems.
     *
     * @since 8.6
     */
    @Incubating
    public interface ProblemReporter {
    
        /**
         * Configures and reports a new problem.
         * <p>
         * The spec must specify the problem label and the category. Any additional configuration is optional.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 10:28:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

            reports.filter { it.isFile && it.toPath().startsWith(projectBuildDirPath) }
                .map { projectBuildDirPath.relativize(it.toPath()).toString() to it }
                .apply { zip(rootBuildDir.resolve("report$projectPathName.zip"), this) }
    
            reports.filter { it.isFile && !it.toPath().startsWith(projectBuildDirPath) }
                .forEach { report ->
                    fileSystemOperations.copy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/junit-xml-results/kotlin/build.gradle.kts

    // tag::configure-location-task[]
    tasks.test {
        reports {
            junitXml.outputLocation = layout.buildDirectory.dir("test-junit-xml")
        }
    }
    // end::configure-location-task[]
    
    // tag::configure-location-convention[]
    java.testResultsDir = layout.buildDirectory.dir("junit-xml")
    // end::configure-location-convention[]
    
    // tag::configure-content[]
    tasks.test {
        reports {
            junitXml.apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:56 UTC 2024
    - 802 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiUnsupportedVersionIntegrationTest.groovy

        def setup() {
            toolingApi.withConnector { connector -> connector.useDistribution(distroZip) }
            settingsFile.touch()
        }
    
        def "tooling api reports an error when requesting a model using a gradle version that does not implement the tooling api"() {
            when:
            toolingApi.withConnection { ProjectConnection connection -> connection.getModel(GradleProject.class) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

    import org.gradle.api.provider.Property
    import org.gradle.util.internal.ToBeImplemented
    import spock.lang.Issue
    
    class IsolatedProjectsAccessFromGroovyDslIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
        def "reports problem when build script uses #block block to apply plugins to another project"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
                include("b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. src/go/doc/testdata/testing.2.golden

    	// 
    	func RunExamples(examples []InternalExample) (ok bool)
    
    	// 
    	func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool)
    
    	// Short reports whether the -test.short flag is set. 
    	func Short() bool
    
    
    TYPES
    	// B is a type passed to Benchmark functions to manage benchmark ...
    	type B struct {
    		N int
    		// contains filtered or unexported fields
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4LoggingOutputCaptureIntegrationTest.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:05 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CodeNarcInvoker.groovy

                    def message = "CodeNarc rule violations were found."
    
                    // Find all reports that produced a file
                    def reportsWithFiles = reports.findAll { it.name.get() != 'console' }
                    // a report file was generated
                    if (!reportsWithFiles.isEmpty()) {
                        def humanReadableReport = reportsWithFiles.find { it.name.get() == 'html' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 14:00:06 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    uploads reports. There will be only one report, named YYYY-MM-DD.json,
    for a given day.
    
    First phase. Look at the localdir (os.UserConfigdir()/go/telemetry/local)
    and find all .count and .json files. Find the count files that are no
    longer active by looking at their metadata.
    
    Second phase. Group the inactive count files by their expiry date, and
    for each date generate the local report and the upload report. (The upload
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/sysdll/sysdll.go

    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    // Package sysdll is an internal leaf package that records and reports
    // which Windows DLL names are used by Go itself. These DLLs are then
    // only loaded from the System32 directory. See Issue 14959.
    package sysdll
    
    // IsSystemDLL reports whether the named dll key (a base name, like
    // "foo.dll") is a system DLL which should only be loaded from the
    // Windows SYSTEM32 directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 22:38:00 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top