Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for paramType (0.13 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

      typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType;
    
      CartesianProductGenerator$i($for j, [[const ParamGenerator<T$j>& g$j]])
          : $for j, [[g$(j)_(g$j)]] {}
      virtual ~CartesianProductGenerator$i() {}
    
      virtual ParamIteratorInterface<ParamType>* Begin() const {
        return new Iterator(this, $for j, [[g$(j)_, g$(j)_.begin()]]);
      }
      virtual ParamIteratorInterface<ParamType>* End() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    class ParameterizedTestFactory : public TestFactoryBase {
     public:
      typedef typename TestClass::ParamType ParamType;
      explicit ParameterizedTestFactory(ParamType parameter) :
          parameter_(parameter) {}
      virtual Test* CreateTest() {
        TestClass::SetParam(&parameter_);
        return new TestClass();
      }
    
     private:
      const ParamType parameter_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory);
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

            val paramTypes: Array<Type> = getArgumentTypes(signature)
    
            // Treat all parameters equally, regardless of whether they are implicit captured parameters or the lambda signature ones.
            // If any of them is of an unsupported type, a build that runs from the serialized state won't be able to provide an instance anyway.
            paramTypes.forEach { paramType ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

        return new Iterator(this, g1_, g1_.end(), g2_, g2_.end());
      }
    
     private:
      class Iterator : public ParamIteratorInterface<ParamType> {
       public:
        Iterator(const ParamGeneratorInterface<ParamType>* base,
          const ParamGenerator<T1>& g1,
          const typename ParamGenerator<T1>::iterator& current1,
          const ParamGenerator<T2>& g2,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

        Class<?>[] paramTypes = constructor.getParameterTypes();
        Object[] params = new Object[paramTypes.length];
        for (int i = 0; i < paramTypes.length; i++) {
          Class<?> paramType = paramTypes[i];
          if (paramType.equals(String.class)) {
            params[i] = cause.toString();
          } else if (paramType.equals(Throwable.class)) {
            params[i] = cause;
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            for (int i = 0; i < method.getParameterTypes().length; i++) {
                Type paramType = method.getParameterTypes()[i];
                if (paramType.equals(ServiceRegistration.class)) {
                    params[i] = newRegistration();
                } else {
                    Service paramProvider = find(paramType, allServices);
                    if (paramProvider == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

            preIndex: DataSchemaBuilder.PreIndex
        ): DataParameter {
            val paramType = fnParam.type
            checkInScope(paramType, preIndex)
            val paramSemantics = getParameterSemantics(functionSemantics, function, fnParam, returnClass, preIndex)
            return DefaultDataParameter(fnParam.name, paramType.toDataTypeRefOrError(), fnParam.isOptional, paramSemantics)
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java

        FreshValueGenerator paramValues = new FreshValueGenerator();
        List<@Nullable Object> passedArgs = Lists.newArrayList();
        for (Class<?> paramType : method.getParameterTypes()) {
          passedArgs.add(paramValues.generateFresh(paramType));
        }
        return passedArgs.toArray();
      }
    
      /** Tests a single interaction against a method. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 08 17:31:55 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java

        FreshValueGenerator paramValues = new FreshValueGenerator();
        List<@Nullable Object> passedArgs = Lists.newArrayList();
        for (Class<?> paramType : method.getParameterTypes()) {
          passedArgs.add(paramValues.generateFresh(paramType));
        }
        return passedArgs.toArray();
      }
    
      /** Tests a single interaction against a method. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 08 17:31:55 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    ValuesIn(ForwardIterator begin, ForwardIterator end) {
      typedef typename ::testing::internal::IteratorTraits<ForwardIterator>
          ::value_type ParamType;
      return internal::ParamGenerator<ParamType>(
          new internal::ValuesInIteratorRangeGenerator<ParamType>(begin, end));
    }
    
    template <typename T, size_t N>
    internal::ParamGenerator<T> ValuesIn(const T (&array)[N]) {
      return ValuesIn(array, array + N);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top