Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Dtype (0.06 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyTest.kt

            }
        }
    
        private
        fun testPropertyContributor(name: String, type: KType) = object : PropertyExtractor {
            override fun extractProperties(kClass: KClass<*>, propertyNamePredicate: (String) -> Boolean): Iterable<CollectedPropertyInformation> =
                listOf(CollectedPropertyInformation(name, type, type.toDataTypeRefOrError(), DefaultDataProperty.DefaultPropertyMode.DefaultReadWrite, false, false, false, emptyList()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

          T41, T42, T43, T44, T45, T46, T47, T48, T49> type;
    };
    
    namespace internal {
    
    # define GTEST_TEMPLATE_ template <typename T> class
    
    // The template "selector" struct TemplateSel<Tmpl> is used to
    // represent Tmpl, which must be a class template with one type
    // parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined
    // as the type Tmpl<T>.  This allows us to actually instantiate the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaBuildingUtils.kt

            else -> error("unexpected type")
        }
    
    
    internal
    fun checkInScope(
        type: KType,
        typeScope: DataSchemaBuilder.PreIndex
    ) {
        if (type.classifier?.isInScope(typeScope) != true) {
            error("type $type used in a function is not in schema scope")
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

      typedef internal::Types$i<$for j, [[T$j]]> type;
    };
    
    ]]
    
    namespace internal {
    
    # define GTEST_TEMPLATE_ template <typename T> class
    
    // The template "selector" struct TemplateSel<Tmpl> is used to
    // represent Tmpl, which must be a class template with one type
    // parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined
    // as the type Tmpl<T>.  This allows us to actually instantiate the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/HiddenInDslTest.kt

        @Test
        fun `handles the hidden properties correctly`() {
            val aType = schema.dataClassesByFqName.getValue(DefaultFqName.parse(HasHiddenProperty::class.qualifiedName!!))
            assertTrue { aType.properties.single { it.name == "y" }.isHiddenInDsl }
    
            val result = schema.resolve(
                """
                x = 1
                y = 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/DataSchemaBuilder.kt

                fun visit(type: KClass<*>) {
                    if (add(type)) {
                        typeDiscovery.getClassesToVisitFrom(type).forEach(::visit)
                    }
                }
                types.forEach(::visit)
            }
    
            return PreIndex().apply {
                allTypesToVisit.forEach { type ->
                    addType(type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/PropertyExtractor.kt

                val type = getter.returnType.toDataTypeRefOrError()
                val isHidden = getter.annotations.any { it is HiddenInDeclarativeDsl }
                val isDirectAccessOnly = getter.annotations.any { it is AccessFromCurrentReceiverOnly }
                val setter = functionsByName["set$nameAfterGet"]?.find { fn -> fn.parameters.singleOrNull { it != fn.instanceParameter }?.type == getter.returnType }
                val mode = run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

            Type returnType = Type.getReturnType(standardDescriptor);
            Type[] argumentTypes = Type.getArgumentTypes(standardDescriptor);
            Type[] argumentTypesWithDefault = Stream.concat(
                Arrays.stream(argumentTypes),
                Stream.of(Type.getType(int.class), Type.getType(Object.class))
            ).toArray(Type[]::new);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_ASSIGN_(type)\
      void operator=(type const &)
    
    // A macro to disallow copy constructor and operator=
    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\
      type(type const &);\
      GTEST_DISALLOW_ASSIGN_(type)
    
    // Tell the compiler to warn about unused return values for functions declared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    };
    #endif
    
    // A handy wrapper around RemoveConst that works when the argument
    // T depends on template parameters.
    #define GTEST_REMOVE_CONST_(T) \
        typename ::testing::internal::RemoveConst<T>::type
    
    // Turns const U&, U&, const U, and U all into U.
    #define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \
        GTEST_REMOVE_CONST_(GTEST_REMOVE_REFERENCE_(T))
    
    // Adds reference to a type if it is not a reference type,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top