Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for stoppable (0.86 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/InstrumentedExecutionAccessListenerRegistry.kt

    import org.gradle.internal.classpath.InstrumentedExecutionAccess
    import org.gradle.internal.concurrent.Stoppable
    import org.gradle.internal.service.scopes.ListenerService
    
    
    @ListenerService
    internal
    class InstrumentedExecutionAccessListenerRegistry(
        instrumentedExecutionAccessListener: InstrumentedExecutionAccessListener
    ) : Stoppable {
    
        init {
            InstrumentedExecutionAccess.setListener(instrumentedExecutionAccessListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

                }
            }
        }
    
        override fun stop() {
            val stoppable = CompositeStoppable.stoppable()
            stoppable.addIfInitialized(lazyBuildTreeModelSideEffects)
            stoppable.addIfInitialized(lazyIntermediateModels)
            stoppable.addIfInitialized(lazyProjectMetadata)
            stoppable.add(store)
            stoppable.stop()
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            BuildActionParameters parameters = createBuildActionParameters(startParameter, daemonParameters);
            Stoppable stoppable = new CompositeStoppable().add(stopBeforeSharedServices).add(sharedServices);
            return new RunBuildAction(executor, startParameter, clientMetaData(), getBuildStartTime(), parameters, sharedServices, stoppable);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

    import org.gradle.internal.cc.impl.ConfigurationCacheStateStore.StateFile
    import org.gradle.internal.extensions.stdlib.toDefaultLowerCase
    import org.gradle.internal.extensions.stdlib.unsafeLazy
    import org.gradle.internal.concurrent.Stoppable
    import org.gradle.internal.file.FileAccessTimeJournal
    import org.gradle.internal.file.impl.SingleDepthFileAccessTracker
    import org.gradle.internal.nativeintegration.filesystem.FileSystem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/BuildProcessState.java

        public void close() {
            // Force the user home services to be stopped first, because the dependencies between the user home services and the global services are not preserved currently
            CompositeStoppable.stoppable(services.get(GradleUserHomeScopeServiceRegistry.class), services).stop();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/ForegroundDaemonAction.java

                daemonRegistry.markState(daemon.getAddress(), Idle);
                daemon.stopOnExpiration(expirationStrategy, configuration.getPeriodicCheckIntervalMs());
            } finally {
                CompositeStoppable.stoppable(daemon, daemonProcessState).stop();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/BuildTreeModelSideEffectStore.kt

            context.push(IsolateOwners.OwnerHost(host), codecs.userTypesCodec())
            return context.runReadOperation {
                readNonNull()
            }
        }
    
        override fun close() {
            CompositeStoppable.stoppable(valuesStore).stop()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

    import org.gradle.internal.cc.impl.problems.ConfigurationCacheReport
    import org.gradle.internal.cc.impl.services.RemoteScriptUpToDateChecker
    import org.gradle.internal.concurrent.Stoppable
    import org.gradle.internal.configuration.problems.DocumentationSection
    import org.gradle.internal.configuration.problems.ProblemFactory
    import org.gradle.internal.configuration.problems.PropertyProblem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

            } catch (e: Exception) {
                throw RuntimeException("Could not load entry for $key", e)
            }
        }
    
        override fun close() {
            CompositeStoppable.stoppable(valuesStore).stop()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

                DaemonStopState stopState = daemon.stopOnExpiration(expirationStrategy, parameters.getPeriodicCheckIntervalMs());
                daemonProcessState.stopped(stopState);
            } finally {
                CompositeStoppable.stoppable(daemon, daemonProcessState).stop();
            }
        }
    
        private static void invalidArgs(String message) {
            System.out.println("USAGE: <gradle version>");
            System.out.println(message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top