Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for key2 (0.03 sec)

  1. 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)
  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)
Back to top