Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for paramTypes (0.15 sec)

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

            if (type.isAssignableFrom(Property.class)) {
                return attachOwner(getObjectFactory().property(paramType), owner, propertyName);
            }
            if (type.isAssignableFrom(ListProperty.class)) {
                return attachOwner(getObjectFactory().listProperty(paramType), owner, propertyName);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 7.4K 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/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    				return sum(
    					func() ref.Val {
    						return zeroValuesOfSummableTypes[name]
    					})(list)
    			}))
    	}),
    	"max": templatedOverloads(comparableTypes, func(name string, paramType *cel.Type) cel.FunctionOpt {
    		return cel.MemberOverload(fmt.Sprintf("list_%s_max_%s", name, name),
    			[]*cel.Type{cel.ListType(paramType)}, paramType, cel.UnaryBinding(max()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/walk/compare.go

    			var fn string
    			var paramType *types.Type
    			switch t.Size() {
    			case 1:
    				fn = "libfuzzerTraceCmp1"
    				if constcmp {
    					fn = "libfuzzerTraceConstCmp1"
    				}
    				paramType = types.Types[types.TUINT8]
    			case 2:
    				fn = "libfuzzerTraceCmp2"
    				if constcmp {
    					fn = "libfuzzerTraceConstCmp2"
    				}
    				paramType = types.Types[types.TUINT16]
    			case 4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiator.java

            }
            return parameters;
        }
    
        private void nullPrimitiveType(int index, Class<?> paramType) {
            TreeFormatter formatter = new TreeFormatter();
            formatter.node("Unable to determine constructor argument #" + (index + 1) + ": null value is not assignable to type ");
            formatter.appendType(paramType);
            formatter.append(".");
            throw new IllegalArgumentException(formatter.toString());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. 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)
Back to top