Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for key2 (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-api-keys.png

    plugin-portal-api-keys.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 71K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Verify if the key is listed at the official site.
    For example, Apache projects typically provide a KEYS.txt file that you can trust.
    --
    
    [[sec:ignoring-keys]]
    === Specifying key servers and ignoring keys
    
    Gradle will automatically download the public keys required to verify a signature.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    class ThreadLocal {
     public:
      ThreadLocal() : key_(CreateKey()),
                      default_() {}
      explicit ThreadLocal(const T& value) : key_(CreateKey()),
                                             default_(value) {}
    
      ~ThreadLocal() {
        // Destroys the managed object for the current thread, if any.
        DeleteThreadLocalValue(pthread_getspecific(key_));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
Back to top