Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for paramTypes (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                Class<?>[] parameterTypes = constructor.getParameterTypes();
                List<Type> paramTypes = new ArrayList<>(parameterTypes.length + (addNameParameter ? 1 : 0));
                for (Class<?> paramType : parameterTypes) {
                    paramTypes.add(getType(paramType));
                }
                return paramTypes;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  3. 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)
  4. src/database/sql/sql_test.go

    		// maybe I should flesh out the fakeConn.Exec
    		// implementation so this properly fails.
    		// t.Errorf("expected error inserting nil name with Exec")
    	}
    
    	paramtype := reflect.TypeOf(spec.rows[0].nullParam)
    	bindVal := reflect.New(paramtype).Interface()
    
    	for i := 0; i < 5; i++ {
    		id := i + 1
    		if err := db.QueryRow("SELECT|t|nullf|id=?", id).Scan(bindVal); err != nil {
    			t.Errorf("id=%d Scan: %v", id, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top