Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 147 for Investigate (0.19 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractExecutionResultExecTaskIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    abstract class AbstractExecutionResultExecTaskIntegrationTest extends AbstractIntegrationSpec {
        protected abstract void makeExecProject()
        protected abstract void writeSucceedingExec()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/resource/TextResourceIntegrationTest.groovy

    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.util.internal.GUtil
    import org.junit.Rule
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    @TestReproducibleArchives
    class TextResourceIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        TestResources resource = new TestResources(temporaryFolder)
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ExtraPropertiesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.build.BuildTestFile
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class ExtraPropertiesIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def 'extra properties are inherited to child and grandchild projects'() {
            given:
            extraPropertiesMultiBuild()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractMutatingDomainObjectContainerInHookIntegrationTest.groovy

    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    abstract class AbstractMutatingDomainObjectContainerInHookIntegrationTest extends AbstractDomainObjectContainerIntegrationTest {
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can mutate containers inside Project hooks"() {
            createDirs("nested")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectCollectionSchemaIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class NamedDomainObjectCollectionSchemaIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            buildFile """
                def extractSchema(container) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/AntBuilderLoggingIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class AntBuilderLoggingIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireIsolatedDaemons()
            buildFile """
                ant.saveStreams = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/BuildResultLoggerIntegrationTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class BuildResultLoggerIntegrationTest extends AbstractIntegrationSpec implements DirectoryBuildCacheFixture, ValidationMessageChecker {
        def setup() {
    
            file("input.txt") << "data"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/GroovyClasspathIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    
    class GroovyClasspathIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "script can use io extensions"() {
            buildFile << """
    tasks.register('show') {
      outputs.dir('build/test')
      doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedPathSensitivityIntegrationTest.groovy

    import org.gradle.integtests.fixtures.DirectoryBuildCacheFixture
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class CachedPathSensitivityIntegrationTest extends AbstractPathSensitivityIntegrationSpec implements DirectoryBuildCacheFixture {
        def setup() {
            buildFile << """
                apply plugin: 'base'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/PropertiesLoaderIntegrationTest.groovy

    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class PropertiesLoaderIntegrationTest extends AbstractIntegrationSpec {
        @Rule SetSystemProperties systemProperties = new SetSystemProperties()
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "build property set on command line takes precedence over properties file"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top