Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 8,420 for wren (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/AliasedArtifactResolutionIntegrationTest.groovy

            when:
            def projectBModuleRepo1 = mavenRepo1.module('org.name', 'projectB', '1.0').publish()
            projectBModuleRepo1.pom.expectGet()
            projectBModuleRepo1.artifact.expectGet()
    
            then:
            succeedsWith 'mavenRepository1'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnSingleFailureIntegrationTest.groovy

            assertTaskNotExecuted(":buildB", ":succeeds")
            assertTaskNotExecuted(":", ":delegate")
        }
    
        def "attempts all dependencies when run with --continue when one delegated task dependency fails"() {
            when:
            buildA.buildFile << """
        task delegate {
            dependsOn gradle.includedBuild('buildB').task(':fails')
            dependsOn gradle.includedBuild('buildC').task(':succeeds')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/metadata/CompilerMetaDataProviderFactoryTest.groovy

        def "caches result of actual #compiler metadata provider"() {
            def binary = new File("any")
            when:
            def metadata = metadataProvider(compiler).getCompilerMetaData([]) { it.executable(binary) }
    
            then:
            interaction compilerShouldBeExecuted
    
            when:
            def newMetadata = metadataProvider(compiler).getCompilerMetaData([]) { it.executable(binary) }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/CachedScalaCompileIntegrationTest.groovy

            when:
            withBuildCache().run ':compileJava', compilationTask
    
            then:
            compiledJavaClass.exists()
            compiledScalaClass.exists()
    
            when:
            withBuildCache().run ':clean', ':compileJava'
    
            then:
            skipped ':compileJava'
    
            when:
            // This line is crucial to expose the bug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/FilteringProviderTest.groovy

        }
    
        def "does not fail when calling get() after producer task has completed"() {
            given:
            def property = propertyWithCompletedProducer()
            def provider = property.filter { it.contains("1") }
    
            when:
            provider.get()
    
            then:
            noExceptionThrown()
        }
    
        def "fails when calling getOrNull() before producer task has completed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

            def sourceFile = sourcesDir.file("source.txt").createFile()
            def outputFile = file("build/output/output.txt")
    
            when:
            withWatchFs().run ":consumer"
            then:
            executedAndNotSkipped(":sourceTask", ":consumer")
            outputFile.assertExists()
    
            when:
            sourceFile.delete()
            waitForChangesToBePickedUp()
            withWatchFs().run ":consumer"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseModelTest.groovy

            given:
            model.wtp = TestUtil.newInstance(EclipseWtp)
            //for example when wtp+java applied but project is not a dependency to any war/ear.
            assert model.wtp.component == null
    
            when:
            model.pathVariables(one: new File('.'))
    
            then:
            model.classpath.pathVariables == [one: new File('.')]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinApplicationInitIntegrationTest.groovy

        def "creates with gradle.properties when using #scriptDsl build scripts with --incubating"() {
            when:
            run('init', '--type', 'kotlin-application', '--dsl', scriptDsl.id, '--incubating', '--java-version', JavaVersion.current().majorVersion)
    
            then:
            gradlePropertiesGenerated()
    
            when:
            run("build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskDependencyTest.groovy

            given:
            1 * resolver.resolveTask("other") >> otherTask
    
            when:
            dependency.add(input)
    
            then:
            dependency.getDependencies(task) == toSet(otherTask)
        }
    
        def "can depend on a task instance"() {
            when:
            dependency.add(otherTask)
    
            then:
            dependency.getDependencies(task) == toSet(otherTask)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/UndefinedBuildExecutionIntegrationTest.groovy

            textFile << "content"
    
            when:
            fails("tasks")
    
            then:
            testDirectory.assertHasDescendants(".gradle/thing.txt")
            textFile.assertIsFile()
            textFile.text == "content"
        }
    
        def "does not treat build as undefined when root #fileName is present but settings file is not"() {
            when:
            file(fileName) << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top