Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for paramTypes (0.28 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            // Callable
            Type paramType = constructor.getGenericParameterTypes()[0];
            assertThat(paramType, equalTo(Callable.class));
    
            // Callable<String>
            paramType = constructor.getGenericParameterTypes()[1];
            assertThat(paramType, instanceOf(ParameterizedType.class));
            ParameterizedType parameterizedType = (ParameterizedType) paramType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // remains alive and unchanged throughout the current test.
      static void SetParam(const ParamType* parameter) {
        parameter_ = parameter;
      }
    
      // Static value used for accessing parameter during a test lifetime.
      static const ParamType* parameter_;
    
      // TestClass must be a subclass of WithParamInterface<T> and Test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    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
    - 74.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // remains alive and unchanged throughout the current test.
      static void SetParam(const ParamType* parameter) {
        parameter_ = parameter;
      }
    
      // Static value used for accessing parameter during a test lifetime.
      static const ParamType* parameter_;
    
      // TestClass must be a subclass of WithParamInterface<T> and Test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    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: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    // There is no guarantee about matching memory layout.
    func (c *typeConv) FuncType(dtype *dwarf.FuncType, pos token.Pos) *FuncType {
    	p := make([]*Type, len(dtype.ParamType))
    	gp := make([]*ast.Field, len(dtype.ParamType))
    	for i, f := range dtype.ParamType {
    		// gcc's DWARF generator outputs a single DotDotDotType parameter for
    		// function pointers that specify no parameters (e.g. void
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top