Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 453 for typeName (0.36 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/types_test.go

    	if !mp.IsMap() {
    		t.Error("map type not identifiable as map")
    	}
    	if mp.TypeName() != "map" {
    		t.Errorf("got %s, wanted map", mp.TypeName())
    	}
    	if mp.DefaultValue() == nil {
    		t.Error("got nil zero value for map type")
    	}
    	if mp.KeyType.TypeName() != "string" {
    		t.Errorf("got %s, wanted key type of string", mp.KeyType.TypeName())
    	}
    	if mp.ElemType.TypeName() != "int" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    }
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8, typename T9, typename T10,
        typename T11, typename T12, typename T13, typename T14, typename T15,
        typename T16, typename T17, typename T18, typename T19, typename T20,
        typename T21>
    internal::ValueArray21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

        typename T11, typename T12, typename T13, typename T14>
    struct Types14 {
      typedef T1 Head;
      typedef Types13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Tail;
    };
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8, typename T9, typename T10,
        typename T11, typename T12, typename T13, typename T14, typename T15>
    struct Types15 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

        typename T11, typename T12, typename T13, typename T14>
    struct Types14 {
      typedef T1 Head;
      typedef Types13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Tail;
    };
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8, typename T9, typename T10,
        typename T11, typename T12, typename T13, typename T14, typename T15>
    struct Types15 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    
    
    // Helper function for implementing {EXPECT|ASSERT}_PRED5.  Don't use
    // this in your code.
    template <typename Pred,
              typename T1,
              typename T2,
              typename T3,
              typename T4,
              typename T5>
    AssertionResult AssertPred5Helper(const char* pred_text,
                                      const char* e1,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    
    
    // Helper function for implementing {EXPECT|ASSERT}_PRED5.  Don't use
    // this in your code.
    template <typename Pred,
              typename T1,
              typename T2,
              typename T3,
              typename T4,
              typename T5>
    AssertionResult AssertPred5Helper(const char* pred_text,
                                      const char* e1,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

                        });
                    }
    
                    public static abstract class Extension {
                        private $typeName value;
                        public $typeName getInputProperty() { return value; }
                        public void setInputProperty($typeName value) { this.value = value; }
                    }
    
                    public static abstract class SomeTask extends ${ConventionTask.name} {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradient_checker.cc

    template <typename T, typename JAC_T>
    typename std::enable_if<std::is_floating_point<T>::value>::type SetJacobian(
        typename TTypes<JAC_T>::Matrix* jacobian, const int row, const int col,
        const T& value, const bool expand_by_row) {
      (*jacobian)(row, col) = JAC_T{value};
    }
    
    template <typename T, typename JAC_T>
    typename std::enable_if<is_complex<T>::value>::type SetJacobian(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/types.go

    		return BoolType
    	case BytesType.TypeName():
    		return BytesType
    	case DoubleType.TypeName():
    		return DoubleType
    	case DurationType.TypeName():
    		return DurationType
    	case IntType.TypeName():
    		return IntType
    	case NullType.TypeName():
    		return NullType
    	case StringType.TypeName():
    		return StringType
    	case TimestampType.TypeName():
    		return TimestampType
    	case UintType.TypeName():
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    template <typename T, typename U>
    bool ArrayEq(const T* lhs, size_t size, const U* rhs);
    
    // This generic version is used when k is 0.
    template <typename T, typename U>
    inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
    
    // This overload is used when k >= 1.
    template <typename T, typename U, size_t N>
    inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top