Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for wren (0.09 sec)

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

    """
        }
    
        def "incremental task is informed that all input files are 'out-of-date' when run for the first time"() {
            expect:
            executesNonIncrementally()
        }
    
        def "incremental task is skipped when run with no changes since last execution"() {
            given:
            previousExecution()
    
            when:
            run "incremental"
    
            then:
            skipped(":incremental")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

            gmmDependency.module == "kotlinx-coroutines-core"
            gmmDependency.version == "1.7.2"
    
            when:
            def result = mavenResolver.resolveDependency("org", "root", "1.0")
    
            then:
            result.firstLevelDependencies == ["org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:jar:1.7.2"]
    
            when:
            succeeds "printRuntimeClasspath"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRulesTest.groovy

            rules.setMutationValidator(checker)
    
            when: rules.all(Actions.doNothing())
            then: 1 * checker.validateMutation(STRATEGY)
    
            when: rules.all(Closure.IDENTITY)
            then: 1 * checker.validateMutation(STRATEGY)
    
            when: rules.all(ruleSource)
            then: 1 * checker.validateMutation(STRATEGY)
    
            when: rules.withModule("something:else", Actions.doNothing())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            when:
            descriptor.excludeGroupByRegex(null)
    
            then:
            IllegalArgumentException ex = thrown()
            ex.message == "Group regex cannot be null"
    
            when:
            descriptor.excludeModuleByRegex("foo", null)
    
            then:
            ex = thrown()
            ex.message == "Module name regex cannot be null"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableComponentResolveResultTest.groovy

            result.graphState == graphState
        }
    
        def "cannot get id when no result has been specified"() {
            when:
            result.moduleVersionId
    
            then:
            IllegalStateException e = thrown()
            e.message == 'No result has been specified.'
        }
    
        def "cannot get state when no result has been specified"() {
            when:
            result.state
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectionUsingLenientConstructorSelectorTest.groovy

        }
    
        def "fails on non-static inner class when outer type not provided as first parameter when type takes constructor params"() {
            given:
            services.find(Number) >> 12
    
            when:
            def inst = instantiator.newInstance(NonStaticWithParams, this, "param")
    
            then:
            inst.owner == this
    
            when:
            instantiator.newInstance(NonStaticWithParams, "param")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            def notIgnoredResource = project[notIgnoredResourceName]
    
            when:
            succeeds project.customTask
            then:
            executedAndNotSkipped(project.customTask)
    
            when:
            succeeds project.customTask
            then:
            skipped(project.customTask)
    
            when:
            ignoredResource.changeContents()
            succeeds project.customTask
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            task aTask
            """
            when:
            fails "help", "--task", "bTask"
            then:
            failure.assertHasCause("Task 'bTask' not found in root project '${testDirectory.getName()}'. Some candidates are: 'aTask', 'tasks'")
    
            when:
            run "help", "--task", "aTask"
            then:
            output.contains "Detailed task information for aTask"
    
            when:
            fails "help", "--task", "bTask"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskInputsTest.groovy

            inputs.sourceFiles.empty
        }
    
        def "can register input file"() {
            when:
            inputs.file("a")
            then:
            inputFileProperties() == ['$1': "a"]
            inputs.files.files == files("a")
        }
    
        def "can register input file with property name"() {
            when:
            inputs.file("a").withPropertyName("prop")
            then:
            inputFileProperties() == ['prop': "a"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

            when:
            rootLogger.level = Level.OFF
            loggingManager.levelInternal = LogLevel.WARN
    
            then:
            rootLogger.level == Level.OFF
            logger.level == null
    
            when:
            loggingManager.start()
    
            then:
            rootLogger.level != Level.OFF
            logger.level == null
    
            when:
            loggingManager.stop()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
Back to top