Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withInternalView (0.15 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/typeregistration/BaseInstanceFactoryTest.groovy

                .withImplementation(ModelType.of(DefaultThingSpec))
                .withInternalView(ModelType.of(ThingSpecInternal))
            instanceFactory.register(ModelType.of(ManagedThingSpec), new SimpleModelRuleDescriptor("managed"))
                .withInternalView(ModelType.of(ManagedThingSpecInternal))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

            if (implementationType != null) {
                registration.withImplementation(implementationType);
            }
            for (Class<?> internalView : internalViews) {
                registration.withInternalView(ModelType.of(internalView));
            }
        }
    
        /**
         * Registers a factory to use to create all implementation objects of the given type and its subtypes. The most specific match is used.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top