Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,415 for Reports (0.35 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/BadPomFileResolveIntegrationTest.groovy

            expect:
            succeeds ":checkDeps"
            resolve.expectGraph {
                root(":", ":test:") {
                    module("group:artifact:1.0")
                }
            }
        }
    
        def "reports POM that cannot be parsed"() {
            given:
            buildFile << """
    repositories {
        maven {
            url "${mavenHttpRepo.uri}"
        }
    }
    configurations { compile }
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:31:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/commons/src/main/groovy/com.example.jacoco.gradle

    plugins {
        id('java')
        id('jacoco')
    }
    
    // Do not generate reports for individual projects
    tasks.jacocoTestReport.configure {
        enabled = false
    }
    
    // Share sources folder with other projects for aggregated JaCoCo reports
    configurations.create('transitiveSourcesElements') {
        visible = false
        canBeResolved = false
        extendsFrom(configurations.implementation)
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.GenerateBuildDashboard.xml

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

    		}
    		return fi < fj
    	})
    }
    
    // ModIsValid reports whether vers is a valid version syntax for the module with the given path.
    func ModIsValid(path, vers string) bool {
    	if IsToolchain(path) {
    		if path == "toolchain" {
    			return IsValid(FromToolchain(vers))
    		}
    		return IsValid(vers)
    	}
    	return semver.IsValid(vers)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskEventsErrorIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    
    @UnsupportedWithConfigurationCache(because = "uses task event listener")
    class TaskEventsErrorIntegrationTest extends AbstractIntegrationSpec {
        def "reports task as failed when beforeTask closure fails"() {
            when:
            buildFile << """
        gradle.taskGraph.beforeTask {
            throw new RuntimeException("beforeTask failure")
        }
        task test
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 03 03:20:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		}
    	}
    
    	return false
    }
    
    // hasBasicType reports whether x's type is a types.Basic with the given kind.
    func hasBasicType(info *types.Info, x ast.Expr, kind types.BasicKind) bool {
    	t := info.Types[x].Type
    	if t != nil {
    		t = t.Underlying()
    	}
    	b, ok := t.(*types.Basic)
    	return ok && b.Kind() == kind
    }
    
    // isReflectHeader reports whether t is reflect.SliceHeader or reflect.StringHeader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

            }
        }
    
        def "does not report transform progress events when TRANSFORM operations are not requested"() {
            given:
            withFileSizerTransform()
    
            when:
            runBuild("resolve", EnumSet.complementOf(EnumSet.of(OperationType.TRANSFORM)))
    
            then:
            events.operations.findAll { it.transform }.empty
        }
    
        def "reports dependencies of transform operations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/testing/cover.go

    	CoveredPackages string
    }
    
    // Coverage reports the current code coverage as a fraction in the range [0, 1].
    // If coverage is not enabled, Coverage returns 0.
    //
    // When running a large set of sequential test cases, checking Coverage after each one
    // can be useful for identifying which test cases exercise new code paths.
    // It is not a replacement for the reports generated by 'go test -cover' and
    // 'go tool cover'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. build-logic/uber-plugins/src/main/kotlin/gradlebuild.java-library.gradle.kts

        id("gradlebuild.distribution-testing")
        id("gradlebuild.incubation-report")
        id("gradlebuild.strict-compile")
        id("gradlebuild.code-quality")
        id("gradlebuild.arch-test")
        id("gradlebuild.integration-tests")
        id("gradlebuild.cross-version-tests")
        id("gradlebuild.ci-lifecycle")
        id("gradlebuild.ci-reporting") // CI: Prepare reports to be uploaded to TeamCity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 17:16:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.testing.AbstractTestTask.xml

                </tr>
                <tr>
                    <td>ignoreFailures</td>
                    <td/>
                </tr>
                <tr>
                    <td>reports</td>
                    <td/>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top