Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for wren (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

        def "does not implicitly create an object when closure parameter is used explicitly"() {
            when:
            container.configure {
                it.obj1
            }
    
            then:
            MissingPropertyException missingProp = thrown()
            missingProp.property == 'obj1'
        }
    
        def "does not implicitly create an object when container is not being configured"() {
            when:
            container.obj1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //     one register with arrangement specifier encoded in the "size:Q" field which can have the following values:
    //       8B when size = 00, Q = 0
    //       16B when size = 00, Q = 1
    //       4H when size = 01, Q = 0
    //       8H when size = 01, Q = 1
    //       2S when size = 10, Q = 0
    //       4S when size = 10, Q = 1
    //       2D when size = 11, Q = 1
    //       The encoding size = 11, Q = 0 is reserved.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            when:
            allowFileSystemAccess(false)
            snapshot = read(someFile)
            then:
            assertIsMissingFileSnapshot(snapshot, someFile)
    
            def missingSubfile = someFile.file("subfile")
            when:
            snapshot = read(missingSubfile)
            then:
            assertIsMissingFileSnapshot(snapshot, missingSubfile)
    
            when:
            allowFileSystemAccess(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                }
            """
    
            when:
            configurationCacheRun "build"
    
            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "build"
    
            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateLoaded()
    
            when:
            configurationCacheRun "build", "-Dci=true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top