Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 297 for stopped_ (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

        }
    
        /**
         * Registers a callback to be called just before the service represented by this provider is stopped.
         * The callback runs even if the service wasn't created.
         * This provider is used as a callback argument.
         * <p>
         * The service will only be stopped after completing all registered callbacks.
         *
         * @param stopAction the callback
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/external/PlayExternalContinuousBuildIntegrationTest.groovy

            file("app/controllers/Application.scala").text = original
    
            then:
            buildTriggeredAndSucceeded()
    
            and:
            appIsRunningAndDeployed()
        }
    
        def "play application is stopped when build is cancelled" () {
            when:
            succeeds("runPlay")
    
            then:
            appIsRunningAndDeployed()
    
            when:
            gradle.cancel()
    
            then:
            cancelsAndExits()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    		return count == 2, nil
    	}); err != nil {
    		t.Fatalf("expected forget() to be called twice, first call from w.add() and then from w.Stop() called from w.processInterval(): %v", err)
    	}
    
    	if !w.stopped {
    		t.Fatal("expected the watcher to be stopped but it wasn't")
    	}
    }
    
    // TestCacheWatcherDrainingNoBookmarkAfterResourceVersionSent checks if the watcher's input
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/runtime/time.go

    	// timerZombie is set when the timer has been stopped
    	// but is still present in some P's heap.
    	// Only set when timerHeaped is also set.
    	// It is possible for timerModified and timerZombie to both
    	// be set, meaning that the timer was modified and then stopped.
    	// A timer sending to a channel may be placed in timerZombie
    	// to take it out of the heap even though the timer is not stopped,
    	// as long as nothing is reading from the channel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. src/runtime/trace.go

    	// coherent. Since the world is stopped and sweeps are non-preemptible, we can never start
    	// the world and see an unpaired sweep 'end' event. Other parts of the tracer rely on this.
    	stw := stopTheWorld(stwStartTrace)
    
    	// Prevent sysmon from running any code that could generate events.
    	lock(&sched.sysmonlock)
    
    	// Grab the minimum page heap address. All Ps are stopped, so it's safe to read this since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

        }
    
        /**
         * Starts the daemon, receiving connections asynchronously (i.e. returns immediately).
         *
         * @throws IllegalStateException if this daemon is already running, or has already been stopped.
         */
        public void start() {
            LOGGER.info("start() called on daemon - {}", daemonContext);
            lifecycleLock.lock();
            try {
                if (stateCoordinator != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a service interface to indicate in which scopes it is defined in.
     * Services are lifecycled with their scope, and stopped/closed when the scope is closed.
     * <p>
     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/GradleUserHomeCleanupServices.java

            registration.add(UsedGradleVersions.class, usedGradleVersions);
    
            // register eagerly so stop() is triggered when services are being stopped
            GradleUserHomeCleanupService gradleUserHomeCleanupService = new GradleUserHomeCleanupService(deleter, gradleUserHomeDirProvider, cacheBuilderFactory, usedGradleVersions, buildOperationRunner, cacheConfigurations);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

    import java.util.List;
    
    /**
     * The entry point for a daemon process.
     *
     * If the daemon hits the specified idle timeout the process will exit with 0. If the daemon encounters an internal error or is explicitly stopped (which can be via receiving a stop command, or
     * unexpected client disconnection) the process will exit with 1.
     */
    public class DaemonMain extends EntryPoint {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/context/context.go

    	a := &afterFuncCtx{
    		f: f,
    	}
    	a.cancelCtx.propagateCancel(ctx, a)
    	return func() bool {
    		stopped := false
    		a.once.Do(func() {
    			stopped = true
    		})
    		if stopped {
    			a.cancel(true, Canceled, nil)
    		}
    		return stopped
    	}
    }
    
    type afterFuncer interface {
    	AfterFunc(func()) func() bool
    }
    
    type afterFuncCtx struct {
    	cancelCtx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top