Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,908 for wren (0.4 sec)

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

        }
    
        def "all callback called when items added to component of composite"() {
            given:
            def component1 = collection("a")
            def component2 = collection("b")
            def composite = composite(component1, component2)
    
            when:
            def calledFor = []
            composite.all { calledFor << it }
    
            then:
            calledFor == ["a", "b"]
    
            when:
            component1.add("c")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K 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