Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for domainObject (0.11 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

        data class DomainObject(var foo: String? = null, var bar: Boolean? = null)
    
        @Test
        fun `can use monomorphic container api`() {
    
            val alice = DomainObject()
            val bob = DomainObject()
            val john = DomainObject()
            val marty = mockDomainObjectProviderFor(DomainObject())
            val doc = mockDomainObjectProviderFor(DomainObject())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectLifecycleController.java

                ServiceRegistryFactory serviceRegistryFactory = domainObject -> {
                    final Factory<LoggingManagerInternal> loggingManagerFactory = buildServices.getFactory(LoggingManagerInternal.class);
                    projectScopeServices = new ProjectScopeServices(buildServices, (ProjectInternal) domainObject, loggingManagerFactory);
                    return projectScopeServices;
                };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

                lateinit var services: SettingsScopeServices
                val serviceRegistryFactory = object : ServiceRegistryFactory {
                    override fun createFor(domainObject: Any): ServiceRegistry {
                        services = SettingsScopeServices(service<ServiceRegistry>(), domainObject as SettingsInternal)
                        return services
                    }
                }
                val settings = service<Instantiator>().newInstance(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top