Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for key2 (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            infoAttrs += extraAttributes.collectEntries { key, value -> ["e:$key", value] }
            if (writeGradleMetadataRedirection) {
                ivyFileWriter << "<!-- ${MetaDataParser.GRADLE_6_METADATA_MARKER} -->"
            }
            builder.info(infoAttrs) {
                if (extendsFrom) {
                    "extends"(extendsFrom)
                }
                extraInfo.each { key, value ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // TestProperty object.
      TestProperty(const std::string& a_key, const std::string& a_value) :
        key_(a_key), value_(a_value) {
      }
    
      // Gets the user supplied key.
      const char* key() const {
        return key_.c_str();
      }
    
      // Gets the user supplied value.
      const char* value() const {
        return value_.c_str();
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            0 * _
    
            where:
            description        | key        | expectSideEffect
            "existing key"     | "some key" | 1
            "non-existing key" | "oops key" | 0
        }
    
        def "runs side effect when calling '#getter' on property's 'keySet'"() {
            def sideEffect1 = Mock(ValueSupplier.SideEffect)
            def sideEffect2 = Mock(ValueSupplier.SideEffect)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            then:
            failure.assertHasCause("Could not copy file '${file("src/two/two.a")}' to '${file("dest/two.a")}'.")
            failure.assertHasCause("Missing property (one) for Groovy template expansion. Defined keys [notused].")
        }
    
        def "useful help message when property cannot be expanded in filter chain"() {
            given:
            buildFile << """
                task copy (type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    [[sec:task_output_caching_details]]
    == Cacheable tasks
    
    Since a task describes all of its inputs and outputs, Gradle can compute a _build cache key_ that uniquely defines the task's outputs based on its inputs.
    That build cache key is used to request previous outputs from a build cache or store new outputs in the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top