Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for then (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiatorTest.groovy

            then:
            result != null
        }
    
        def "class can be private and have public constructor"() {
            when:
            def result = instantiator.newInstance(PrivateWithValidConstructor, "param")
    
            then:
            result != null
        }
    
        def "wraps constructor failure"() {
            when:
            instantiator.newInstance(HasBrokenConstructor)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 04:41:06 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. src/make.bash

    # build directive, in the build. Set it to 0 to ignore them.
    #
    # GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building
    # packages that use cgo.  Set to 0 to do all linking internally.  This
    # controls the default behavior of the linker's -linkmode option.  The
    # default value depends on the system.
    #
    # GO_LDSO: Sets the default dynamic linker/loader (ld.so) to be used
    # by the internal linker.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/GroupingProgressLogEventGeneratorTest.groovy

            when:
            listener.onOutput(taskStartEvent)
            listener.onOutput(warningMessage)
    
            then:
            0 * downstreamListener._
    
            when:
            listener.onOutput(taskCompleteEvent)
    
            then:
            1 * downstreamListener.onOutput({ it.toString() == "[LIFECYCLE] [category] " })
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/IoActionsTest.groovy

            when:
            uncheckedClose(null)
    
            then:
            noExceptionThrown()
    
            when:
            closeQuietly(null)
    
            then:
            noExceptionThrown()
        }
    
        def "can close a valid resource"() {
            def resource = Mock(Closeable)
    
            when:
            uncheckedClose(resource)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

            when:
            configurationCacheRun "a"
    
            then:
            result.assertTasksExecutedAndNotSkipped(":a")
            outputFile.assertIsFile()
    
            when:
            configurationCacheRun "a"
    
            then:
            result.assertTasksSkipped(":a")
    
            when:
            outputFile.delete()
            configurationCacheRun "a"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskInputsTest.groovy

            when:
            inputs.property('a', 'value')
    
            then:
            inputs.hasInputs
            !inputs.hasSourceFiles
        }
    
        def hasInputsWhenEmptySourceFilesRegistered() {
            when:
            inputs.files([]).skipWhenEmpty()
    
            then:
            inputs.hasInputs
            inputs.hasSourceFiles
        }
    
        def hasInputsWhenSourceFilesRegistered() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. common/scripts/setup_env.sh

    if [[ ${TARGET_ARCH} ]]; then
        # Target explicitly set
        :
    elif [[ ${LOCAL_ARCH} == x86_64 ]]; then
        TARGET_ARCH=amd64
    elif [[ ${LOCAL_ARCH} == armv8* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == arm64* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == aarch64* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == armv* ]]; then
        TARGET_ARCH=arm
    elif [[ ${LOCAL_ARCH} == s390x ]]; then
        TARGET_ARCH=s390x
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            then:
            def verificationFile = file("gradle/verification-metadata.xml")
            verificationFile.isFile()
    
            // TODO - get a false cache miss here because the content of the metadata file changes during the previous build
            when:
            configurationCacheRun("resolve1")
    
            then:
            configurationCache.assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            then:
            succeeds("build")
        }
    
        def "after compilation failure, fixing file retriggers build"() {
            when:
            def sourceFile = file("src/main/java/Thing.java") << "class Thing {} /* broken compile "
    
            then:
            fails("build")
    
            when:
            sourceFile << "*/"
    
            then:
            buildTriggeredAndSucceeded()
        }
    
        def "can run tests"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/TestMainActionTest.groovy

        }
    
        def 'fires end events when end processing fails'() {
            given:
            def failure = new RuntimeException()
    
            when:
            action.run()
    
            then:
            1 * resultProcessor.started(!null, !null)
            then:
            1 * processor.startProcessing(!null)
            then:
            1 * detector.run()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top