Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SettingsScopeServices (0.48 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)
  3. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/internal/PluginUseServices.java

            registration.addProvider(new SettingsScopeServices());
        }
    
        @NonNullApi
        private static class GlobalScopeServices implements ServiceRegistrationProvider {
            @Provides
            SoftwareTypeAnnotationHandler createSoftwareTypeAnnotationHandler() {
                return new SoftwareTypeAnnotationHandler();
            }
        }
    
        private static class SettingsScopeServices implements ServiceRegistrationProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.plugin.internal.PluginUseServices$BuildScopeServices> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PluginUseServices.java:0)
    Class <org.gradle.plugin.internal.PluginUseServices$SettingsScopeServices> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PluginUseServices.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top