Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for paramType (0.23 sec)

  1. 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)
  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. 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. 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)
  5. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

        def "array compatibility"() {
            expect:
            def listArray = ModelType.paramType(ModelTypeJavaTest.getDeclaredMethod("m2", List[].class), 0)
            def rawArray = ModelType.of(List[].class)
            def numberListArray = ModelType.paramType(ModelTypeJavaTest.getDeclaredMethod("m4", List[].class), 0)
            def collectionArray = ModelType.paramType(ModelTypeJavaTest.getDeclaredMethod("m5", Collection[].class), 0)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
  6. android/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 Dec 14 20:35:03 UTC 2023
    - 10.3K 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. 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)
  9. 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)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/method/WeaklyTypeReferencingMethod.java

                    .append(name, other.name)
                    .append(paramTypes, other.paramTypes)
                    .isEquals();
        }
    
        @Override
        public String toString() {
            return String.format("%s.%s(%s)",
                declaringType.getDisplayName(),
                name,
                Joiner.on(", ").join(Iterables.transform(paramTypes, new Function<ModelType<?>, String>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top