Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultInstantiationScheme (0.34 sec)

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

    import org.gradle.internal.service.ServiceLookup;
    
    import java.lang.annotation.Annotation;
    import java.lang.reflect.InvocationTargetException;
    import java.util.Set;
    
    class DefaultInstantiationScheme implements InstantiationScheme {
        private final DependencyInjectingInstantiator instantiator;
        private final ConstructorSelector constructorSelector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DefaultInstantiatorFactory.java

        private final PropertyRoleAnnotationHandler roleHandler;
        private final DefaultInstantiationScheme injectOnlyScheme;
        private final DefaultInstantiationScheme injectOnlyLenientScheme;
        private final DefaultInstantiationScheme decoratingScheme;
        private final DefaultInstantiationScheme decoratingLenientScheme;
        private final ManagedFactory managedFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DefaultInstantiationSchemeTest.groovy

        def cacheFactory = new TestCrossBuildInMemoryCacheFactory()
        def classGenerator = AsmBackedClassGenerator.injectOnly([], Stub(PropertyRoleAnnotationHandler), [], cacheFactory, 123)
        def scheme = new DefaultInstantiationScheme(
            new Jsr330ConstructorSelector(classGenerator, cacheFactory.newClassCache()),
            classGenerator,
            new DefaultServiceRegistry(),
            [] as Set,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top