Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for stoppable (0.28 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

                subscribed.stream()
                    .flatMap(it -> it.getListeners().stream())
                    .forEach(this::unsubscribe);
                CompositeStoppable.stoppable(subscribed).stop();
            } finally {
                subscriptions.clear();
            }
        }
    
        private void unsubscribe(Object listener) {
            listenerManager.removeListener(listener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                    handle.waitForFinish();
                    LOGGER.debug("Gradle daemon process is now detached.");
                } finally {
                    CompositeStoppable.stoppable(execActionFactory).stop();
                }
    
                return daemonGreeter.parseDaemonOutput(outputConsumer.getProcessOutput(), args);
            } catch (GradleException e) {
                throw e;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

            this.classpathElementTransformFactoryForLegacy = classpathElementTransformFactoryForLegacy;
        }
    
        @Override
        public void close() {
            CompositeStoppable.stoppable(executor, cache).stop();
        }
    
        @Override
        public ClassPath transform(ClassPath classPath, StandardTransform transform) {
            if (classPath.isEmpty()) {
                return classPath;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

         */
        fun close() {
            synchronized(this) {
                closestChangingValue?.let {
                    buildScopedSink.write(it)
                }
            }
            CompositeStoppable.stoppable(buildScopedWriter, projectScopedWriter).stop()
        }
    
        override fun scriptSourceObserved(scriptSource: ScriptSource) {
            if (isInputTrackingDisabled()) {
                return
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            def provider3 = registerService("three", StoppableServiceImpl)
    
            when:
            def notStoppable = provider1.get()
            def stoppable1 = provider2.get()
            def stoppable2 = provider3.get()
    
            then:
            ServiceImpl.instances == [notStoppable, stoppable1, stoppable2]
    
            when:
            buildFinished()
    
            then:
            ServiceImpl.instances == [notStoppable]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. CREDITS

          incidental, or consequential damages of any character arising as a
          result of this License or out of the use or inability to use the
          Work (including but not limited to damages for loss of goodwill,
          work stoppage, computer failure or malfunction, or any and all
          other commercial damages or losses), even if such Contributor
          has been advised of the possibility of such damages.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/go-version/LICENSE

       direct, indirect, special, incidental, or consequential damages of any
       character including, without limitation, damages for lost profits, loss of
       goodwill, work stoppage, computer failure or malfunction, or any and all
       other commercial damages or losses, even if such party shall have been
       informed of the possibility of such damages. This limitation of liability
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

       Restart-LogService $LOGGINGAGENT_SERVICE $LOGGINGAGENT_CMDLINE
    }
    
    # Restarts the service, or starts it if it is not currently
    # running. A standard `Restart-Service` may fail because
    # the process is sometimes unstoppable, so this function works around it
    # by killing the processes.
    function Restart-LogService([string]$service, [string]$cmdline) {
      Stop-Service -NoWait -ErrorAction Ignore $service
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top