Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for listener_manager (0.2 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

        }
    
        @Provides
        protected DaemonHealthCheck createDaemonHealthCheck(ListenerManager listenerManager, HealthExpirationStrategy healthExpirationStrategy) {
            return new DaemonHealthCheck(healthExpirationStrategy, listenerManager);
        }
    
        @Provides
        protected DaemonRunningStats createDaemonRunningStats() {
            return new DaemonRunningStats();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

    
    /**
     * Augments the [DefaultEnvironment] to track access to properties files, environment variables and system properties.
     **/
    class ConfigurationCacheEnvironment(
        private val listenerManager: ListenerManager
    ) : DefaultEnvironment() {
    
        @EventScope(Scope.Build::class)
        interface Listener {
            fun systemPropertiesPrefixedBy(prefix: String, snapshot: Map<String, String?>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildModelControllerServices.kt

                buildModelParameters: BuildModelParameters,
                parameterCarrierFactory: ToolingModelParameterCarrier.Factory,
                listenerManager: ListenerManager
            ): IntermediateToolingModelProvider {
                val projectDependencyListener = listenerManager.getBroadcaster(ToolingModelProjectDependencyListener::class.java)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

            @Provides
            fun createExecutionAccessChecker(
                listenerManager: ListenerManager,
                modelParameters: BuildModelParameters,
                configurationTimeBarrier: ConfigurationTimeBarrier
            ): ExecutionAccessChecker = when {
                modelParameters.isConfigurationCache -> {
                    val broadcaster = listenerManager.getBroadcaster(ExecutionAccessListener::class.java)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

            }
    
        init {
            listenerManager.addListener(buildNameHandler)
            listenerManager.addListener(postBuildHandler)
        }
    
        override fun close() {
            listenerManager.removeListener(buildNameHandler)
            listenerManager.removeListener(postBuildHandler)
        }
    
        fun action(action: ConfigurationCacheAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

    internal
    class InstrumentedInputAccessListener(
        listenerManager: ListenerManager,
        configurationCacheProblemsListener: ConfigurationCacheProblemsListener,
        private val environmentChangeTracker: ConfigurationCacheEnvironmentChangeTracker,
        private val ignoredConfigurationInputs: IgnoredConfigurationInputs
    ) : InstrumentedInputsListener {
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

        }
    
        @Provides
        MemoryManager createMemoryManager(OsMemoryInfo osMemoryInfo, JvmMemoryInfo jvmMemoryInfo, ListenerManager listenerManager, ExecutorFactory executorFactory) {
            return new DefaultMemoryManager(osMemoryInfo, jvmMemoryInfo, listenerManager, executorFactory);
        }
    
        @Provides
        ObjectFactory createObjectFactory(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

    import org.gradle.internal.service.scopes.ServiceScope
    import java.io.Closeable
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class ConfigurationCacheClassLoaderScopeRegistryListener(
        private
        val listenerManager: ClassLoaderScopeRegistryListenerManager
    
    ) : ClassLoaderScopeRegistryListener, ScopeLookup, BuildTreeLifecycleListener, Closeable {
    
        private
        val lock = Any()
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

        private val fileSystemAccess: FileSystemAccess,
        fingerprinterRegistry: FileCollectionFingerprinterRegistry,
        private val buildCommencedTimeProvider: BuildCommencedTimeProvider,
        private val listenerManager: ListenerManager,
        private val fileCollectionFactory: FileCollectionFactory,
        private val directoryFileTreeFactory: DirectoryFileTreeFactory,
        private val report: ConfigurationCacheReport,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestGlobalScopeServices.java

        @Override
        protected BuildOperationProgressEventEmitter createBuildOperationProgressEventEmitter(
            Clock clock,
            CurrentBuildOperationRef currentBuildOperationRef,
            BuildOperationListenerManager listenerManager
        ) {
            return new NoOpBuildOperationProgressEventEmitter();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top