Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for paramTypes (0.15 sec)

  1. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

      public void testWithMutualRecursiveBoundInTypeVariable() throws Exception {
        ParameterizedType paramType =
            (ParameterizedType)
                new WithGenericBound<String>() {}.getTargetType("withMutualRecursiveBound");
        TypeVariable<?> k = (TypeVariable<?>) paramType.getActualTypeArguments()[0];
        TypeVariable<?> v = (TypeVariable<?>) paramType.getActualTypeArguments()[1];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

      public void testWithMutualRecursiveBoundInTypeVariable() throws Exception {
        ParameterizedType paramType =
            (ParameterizedType)
                new WithGenericBound<String>() {}.getTargetType("withMutualRecursiveBound");
        TypeVariable<?> k = (TypeVariable<?>) paramType.getActualTypeArguments()[0];
        TypeVariable<?> v = (TypeVariable<?>) paramType.getActualTypeArguments()[1];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. src/debug/dwarf/type.go

    			goto Error
    		}
    		t.ParamType = make([]Type, 0, 8)
    		for kid := next(); kid != nil; kid = next() {
    			var tkid Type
    			switch kid.Tag {
    			default:
    				continue
    			case TagFormalParameter:
    				if tkid = typeOf(kid); err != nil {
    					goto Error
    				}
    			case TagUnspecifiedParameters:
    				tkid = &DotDotDotType{}
    			}
    			t.ParamType = append(t.ParamType, tkid)
    		}
    
    	case TagTypedef:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	return analysisutil.IsNamedType(ptr.Elem(), "testing", testingType)
    }
    
    // Validate that fuzz target function's arguments are of accepted types.
    func isAcceptedFuzzType(paramType types.Type) bool {
    	for _, typ := range acceptedFuzzTypes {
    		if types.Identical(typ, paramType) {
    			return true
    		}
    	}
    	return false
    }
    
    func formatAcceptedFuzzType() string {
    	var acceptedFuzzTypesStrings []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

        }
    
        public static <T> ModelType<T> declaringType(Method method) {
            return new Simple<T>(method.getDeclaringClass());
        }
    
        @Nullable
        public static <T> ModelType<T> paramType(Method method, int i) {
            Type[] parameterTypes = method.getGenericParameterTypes();
            if (i < parameterTypes.length) {
                return new Simple<T>(parameterTypes[i]);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    		}
    		publicKeyBytes = elliptic.Marshal(pub.Curve, pub.X, pub.Y)
    		publicKeyAlgorithm.Algorithm = oidPublicKeyECDSA
    		var paramBytes []byte
    		paramBytes, err = asn1.Marshal(oid)
    		if err != nil {
    			return
    		}
    		publicKeyAlgorithm.Parameters.FullBytes = paramBytes
    	case ed25519.PublicKey:
    		publicKeyBytes = pub
    		publicKeyAlgorithm.Algorithm = oidPublicKeyEd25519
    	case *ecdh.PublicKey:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

          for (int i = 0; i < params.size(); i++) {
            TypeToken<?> paramType = type.resolveType(typeVars[i]);
            // We require all @Generates methods to either be parameter-less or accept non-null
            // values for their generic parameter types.
            Object argValue = generate(paramType);
            if (argValue == null) {
              // When a parameter of a @Generates method cannot be created,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

        ::testing::ValuesIn<MatMulTestCase>({
            {"BatchMatMul"},
            {"BatchMatMulV2"},
            {"BatchMatMulV3"},
        }),
        [](const ::testing::TestParamInfo<BatchMatMulTest::ParamType>& info) {
          return info.param.mat_mul_method;
        });
    
    TEST(LegalizeTFTest, DumpsProducedHLO) {
      Env* env = Env::Default();
      std::string test_dir = testing::TmpDir();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/expr.go

    	r.Args = args
    	r1 := typecheck.Expr(r)
    	r1 = walkExpr(r1, init)
    	r1.SetType(n.Type())
    
    	return r1
    }
    
    type hookInfo struct {
    	paramType   types.Kind
    	argsNum     int
    	runtimeFunc string
    }
    
    var hooks = map[string]hookInfo{
    	"strings.EqualFold": {paramType: types.TSTRING, argsNum: 2, runtimeFunc: "libfuzzerHookEqualFold"},
    }
    
    // walkCall walks an OCALLFUNC or OCALLINTER node.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

          for (int i = 0; i < params.size(); i++) {
            TypeToken<?> paramType = type.resolveType(typeVars[i]);
            // We require all @Generates methods to either be parameter-less or accept non-null
            // values for their generic parameter types.
            Object argValue = generate(paramType);
            if (argValue == null) {
              // When a parameter of a @Generates method cannot be created,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top