Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SettingsScopeServices (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/SettingsScopeServices.java

    import org.gradle.plugin.software.internal.PluginScheme;
    import org.gradle.plugin.software.internal.SoftwareTypeRegistry;
    
    public class SettingsScopeServices extends DefaultServiceRegistry {
        private final SettingsInternal settings;
    
        public SettingsScopeServices(final ServiceRegistry parent, final SettingsInternal settings) {
            super(parent);
            this.settings = settings;
            register(registration -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. 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
                    }
    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