Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,908 for wren (0.12 sec)

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

                task noOutputs(type: NoOutputs) {}
            """
            when:
            run "cacheable"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "notCacheableByDefault"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "unspecified"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolverTest.groovy

                getRemoteAccess() >> repoRemoteAccess
                getName() >> name
            }
            resolver.add(repo)
            repo
        }
    
        def "uses local dependency when available"() {
            given:
            def repo = addRepo1()
    
            when:
            resolver.resolve(moduleComponentId, componentRequestMetaData, result)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy

     * x
     *   indented
    '''
            when:
            def result = parser.parse(classMetaData, listener)
    
            then:
            format(result.docbook).contains('x\n  indented')
        }
    
        def removesLeadingAsterixFromEachLine() {
            _ * classMetaData.rawCommentText >> ''' * line 1
     * line 2
    '''
            when:
            def result = parser.parse(classMetaData, listener)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 14.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

        def "select question does not prompt user when there is only one option"() {
            when:
            def input = ask { it.selectOption(TEXT, [11], 11) }
    
            then:
            0 * outputEventBroadcaster.onOutput(_)
            0 * userInputHandler._
    
            and:
            input == 11
        }
    
        def "select question returns default when empty input line received"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            file('bar').mkdir()
            file('bar/a').createFile()
    
            when:
            execute("taskWithInputs")
    
            then:
            executedAndNotSkipped(":taskWithInputs")
    
            when:
            cleanWorkspace()
            execute("taskWithInputs")
    
            then:
            reused(":taskWithInputs")
    
            when:
            cleanWorkspace()
            file('foo/c').mkdir()
            file('foo/c/1').mkdir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

                test=true
            """
        }
    
        def "no task is re-executed when inputs are unchanged"() {
            when:
            withBuildCache().run "jar"
            then:
            noneSkipped()
    
            expect:
            withBuildCache().run "clean"
    
            when:
            withBuildCache().run "jar"
            then:
            skipped ":compileJava"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiModelQueryIntegrationTest.groovy

            }
            outputContains("creating model for root project 'root'")
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = fetchModel()
    
            then:
            model2.message == "It works from project :"
    
            and:
            fixture.assertStateLoaded()
            outputDoesNotContain("creating model")
    
            when:
            buildFile << """
                myExtension.message = 'this is the root project'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

            given:
            scope.lock()
    
            when:
            scope.local(classPath("local"))
    
            then:
            thrown IllegalStateException
    
            when:
            scope.export(classPath("local"))
    
            then:
            thrown IllegalStateException
        }
    
        def "child scopes can access exported but not local"() {
            when:
            file("local/local") << "bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            def snapshot = file('libs/projectA-1.0.jar').snapshot()
    
            when:
            server.resetExpectations()
            and:
            run 'retrieve'
    
            then:
            file('libs/projectA-1.0.jar').assertHasNotChangedSince(snapshot)
        }
    
        def "falls back to directory listing when maven-metadata.xml is missing and artifact metadata source is defined"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            given:
            pom()
    
            when:
            run('init')
    
            then:
            pomValuesUsed(rootProjectDslFixtureFor(KOTLIN))
        }
    
        def "pom conversion to #scriptDsl build scripts not triggered when build type is specified"() {
            given:
            pom()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top