Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,198 for then (0.11 sec)

  1. cluster/gce/gci/configure-helper.sh

        # version only if the downloaded version is the same as the built-in
        # version. This allows GCI to run some of the e2e tests to qualify the
        # built-in kubelet.
        if [[ -x "${builtin_kubelet}" ]]; then
          local -r builtin_version="$("${builtin_kubelet}"  --version=true | cut -f2 -d " ")"
          if [[ "${builtin_version}" == "${version}" ]]; then
            kubelet_bin="${builtin_kubelet}"
          fi
        fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            access.open()
            access.close()
    
            then:
            1 * cleanupExecutor.cleanup()
            0 * _
        }
    
        def "does not clean up on close when clean up has already occurred"() {
            def access = newAccess(OnDemand)
    
            when:
            access.open()
            access.cleanup()
    
            then:
            1 * cleanupExecutor.cleanup()
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

            when: copy.force("org.utils:api:1.3")
            then: 0 * validator.validateMutation(_)
    
            when: copy.forcedModules = ["org.utils:api:1.4"]
            then: 0 * validator.validateMutation(_)
    
            when: copy.componentSelection.all(Actions.doNothing())
            then: 0 * validator.validateMutation(_)
    
            when: copy.componentSelection(new Action<ComponentSelectionRules>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.finalizeValue()
    
            then:
            1 * function.call() >> null
            0 * _
    
            when:
            def present = property.present
    
            then:
            !present
            0 * _
    
            when:
            property.get()
    
            then:
            def e = thrown(MissingValueException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            expect:
            notStopped
    
            when: "stopped first time"
            coordinator.stop()
    
            then: "stops"
            stopped
    
            when: "requested again"
            coordinator.stop()
    
            then:
            stopped
            0 * _._
        }
    
        def "await idle timeout does nothing when already stopped"() {
            given:
            coordinator.stop()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top