Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,783 for then (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. hack/ginkgo-e2e.sh

      ginkgo_args+=("--silence-skips")
    fi
    
    if [[ "${GINKGO_FORCE_NEWLINES}" == "y" ]]; then
      ginkgo_args+=("--force-newlines")
    fi
    
    if [[ "${GINKGO_NO_COLOR}" == "y" ]]; then
      ginkgo_args+=("--no-color")
    fi
    
    # The --host setting is used only when providing --auth_config
    # If --kubeconfig is used, the host to use is retrieved from the .kubeconfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-kubeapiserver.sh

        params_ref+=" --storage-media-type=${STORAGE_MEDIA_TYPE}"
      fi
    
      if [[ -n "${ETCD_COMPACTION_INTERVAL_SEC:-}" ]]; then
        params_ref+=" --etcd-compaction-interval=${ETCD_COMPACTION_INTERVAL_SEC}s"
      fi
    }
    
    # Starts kubernetes apiserver.
    # It prepares the log file, loads the docker image, calculates variables, sets them
    # in the manifest file, and then copies the manifest file to /etc/kubernetes/manifests.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            assertTaskOutputNotCached(dirTask)
    
            when:
            cleanBuildDir()
            withBuildCache().run(dirTask, fileTask)
            then:
            // Outcome should look the same as if the build was run in the opposite order (fileTask then dirTask)
            fileTaskOutput.assertExists()
            dirTaskOutput.assertExists()
            // fileTask can be from the cache, but the dirTask cannot due to a cache miss
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. hack/make-rules/test-e2e-node.sh

      # Get the compute project
      project=$(gcloud info --format='value(config.project)')
      if [[ ${project} == "" ]]; then
        echo "Could not find gcloud project when running: \`gcloud info --format='value(config.project)'\`"
        exit 1
      fi
    
      # Check if any of the images specified already have running instances.  If so reuse those instances
      # by moving the IMAGE to a HOST
      if [[ ${images} != "" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

                            into "/not-the-root"
                        }
                    }
                }
            """
    
            when:
            succeeds("installDist")
    
            then:
            file('build/install/sample/').allDescendants() == ["not-the-root/bin/sample", "not-the-root/bin/sample.bat", "not-the-root/lib/sample.jar"] as Set
            assert file("build/install/sample/not-the-root/bin/sample").permissions == "rwxr-xr-x"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

                }
            """
    
            when:
            target.createFile()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.delete()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top