Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 510 for Reports (0.22 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

            assertSingleEditorReport()
            reports.single().let { report ->
                assertThat(report.severity, equalTo(severity))
                assertThat(report.position, nullValue())
                assertThat(report.message, equalTo(message))
            }
        }
    
        fun assertSingleLineWarningReport(message: String, line: Int) {
            assertSingleEditorReport()
            reports.single().let { report ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginAuxclasspathIntegrationTest.groovy

            given:
            setupRuleUsingProject(classExtendingAssertj(), ASSERTJ_IMPL_DEPENDENCY)
    
            expect:
            fails ":rule-using:pmdMain"
    
            file("rule-using/build/reports/pmd/main.xml").
                assertContents(containsClass("org.gradle.ruleusing.Class1")).
                assertContents(containsText("auxclasspath configured"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

            expect:
            succeeds()
        }
    
        def "reports read unknown property from configure closure"() {
            buildFile << """
    tasks.help {
        println unknown
    }
    """
    
            expect:
            fails()
            failure.assertHasCause("Could not get unknown property 'unknown' for task ':help' of type org.gradle.configuration.Help.")
        }
    
        def "reports set unknown property from configure closure"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/go/types/api.go

    }
    
    // IsType reports whether the corresponding expression specifies a type.
    func (tv TypeAndValue) IsType() bool {
    	return tv.mode == typexpr
    }
    
    // IsBuiltin reports whether the corresponding expression denotes
    // a (possibly parenthesized) built-in function.
    func (tv TypeAndValue) IsBuiltin() bool {
    	return tv.mode == builtin
    }
    
    // IsValue reports whether the corresponding expression is a value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K 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. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            then:
            def ex = thrown IOException
            ex.message == "Unable to delete file '$target'"
            ex.suppressed.collect { it.message } == ["ROOT CAUSE"]
        }
    
        def "reports failed to delete child files and reports a reasonable number of retries after failure to delete directory"() {
    
            given:
            def targetDir = tmpDir.createDir("target")
            def deletable = targetDir.createFile("delete.yes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            assertHasNoProblems()
        }
    
        /**
         * Asserts that the cache entry was written with no problems.
         *
         * Also asserts that the appropriate console logging, reports and build operations are generated.
         */
        void assertStateStored(@DelegatesTo(StateStoreDetails) Closure closure = {}) {
            def details = new StateStoreDetails()
            closure.delegate = details
            closure()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

        /**
         * Asserts that the cache entry was written with no problems.
         *
         * Also asserts that the expected set of projects is configured, the expected models are queried
         * and the appropriate console logging, reports and build operations are generated.
         */
        void assertStateStored(@DelegatesTo(StoreDetails) Closure closure) {
            def details = new StoreDetails()
            closure.delegate = details
            closure()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

        abstract void buildLogicApplication(BuildInputRead read)
    
        abstract String getLocation()
    
        boolean isRestrictedDsl() {
            return false
        }
    
        def "reports undeclared system property read using #propertyRead.groovyExpression prior to task execution from plugin"() {
            buildLogicApplication(propertyRead)
            def configurationCache = newConfigurationCacheFixture()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':resolvableConfigurations'
            reportsCompleteAbsenceOfResolvableConfigurations()
        }
    
        def "if only consumable configurations present, task reports complete absence"() {
            given:
            buildFile << """
                configurations.create("custom") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top