Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,433 for stops (0.06 sec)

  1. subprojects/core/src/test/groovy/org/gradle/deployment/internal/DefaultDeploymentRegistryTest.groovy

            when:
            registry.stop()
            then:
            3 * testHandle.stop()
        }
    
        def "cannot get a handle once the registry is stopped" () {
            objectFactory.newInstance(TestDeploymentHandle) >> new TestDeploymentHandle()
            given:
            registry.start("id", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
            registry.stop()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

         * @return The proxy.
         */
        <T> T getProxy(Class<T> type);
    
        /**
         * Stops accepting new method calls, and blocks until all method calls have been executed by the target object.
         *
         * @throws DispatchException When there were any failures dispatching method calls to the target object.
         */
        @Override
        void stop() throws DispatchException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/backoff/exponential.go

    	return Option{
    		InitialInterval: defaultInitialInterval,
    		MaxInterval:     defaultMaxInterval,
    	}
    }
    
    // NewExponentialBackOff creates an istio wrapped ExponentialBackOff.
    // By default, it never stops.
    func NewExponentialBackOff(o Option) BackOff {
    	b := ExponentialBackOff{}
    	b.exponentialBackOff = backoff.NewExponentialBackOff()
    	b.exponentialBackOff.InitialInterval = o.InitialInterval
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 01:53:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    # Test that when the coordinator experiences an I/O error communicating
    # with a worker, the coordinator stops the worker and reports the error.
    # The coordinator should not record a crasher.
    #
    # We simulate an I/O error in the test by writing garbage to fuzz_out.
    # This is unlikely, but possible. It's difficult to simulate interruptions
    # due to ^C and EOF errors which are more common. We don't report those.
    [short] skip
    [!fuzz] skip
    env GOCACHE=$WORK/cache
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

        long getLogLineCount() {
            return daemonLog.lines().withCloseable { lines -> lines.count() }
        }
    
        DaemonFixture becomesIdle() {
            waitForState(Idle)
            this
        }
    
        DaemonFixture stops() {
            waitForState(Stopped)
            this
        }
    
        @Override
        void assertIdle() {
            assertHasState(Idle)
        }
    
        @Override
        void assertBusy() {
            assertHasState(Busy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/html/template/template.go

    //		If printed, the result of the index operation is the string
    //		"<no value>".
    //	"missingkey=zero"
    //		The operation returns the zero value for the map type's element.
    //	"missingkey=error"
    //		Execution stops immediately with an error.
    func (t *Template) Option(opt ...string) *Template {
    	t.text.Option(opt...)
    	return t
    }
    
    // checkCanParse checks whether it is OK to parse templates.
    // If not, it returns an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            when:
            addSnapshot(snapshotRegularFile(fileInWatchableHierarchy))
            then:
            1 * watcher.startWatching({ equalIgnoringOrder(it, [watchableHierarchy]) })
        }
    
        def "starts and stops watching hierarchies to watch"() {
            def watchableHierarchies = ["first", "second", "third"].collect { file(it).createDir() }
    
            when:
            registerWatchableHierarchies(watchableHierarchies)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    }
    
    // ResultChan returns a channel which will receive filtered events.
    func (fw *filteredWatch) ResultChan() <-chan Event {
    	return fw.result
    }
    
    // Stop stops the upstream watch, which will eventually stop this watch.
    func (fw *filteredWatch) Stop() {
    	fw.incoming.Stop()
    }
    
    // loop waits for new values, filters them, and resends them.
    func (fw *filteredWatch) loop() {
    	defer close(fw.result)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

            watchingVirtualFileSystem.afterBuildFinished()
            then:
            0 * _
    
            watchingVirtualFileSystem.root == emptySnapshotHierarchy
        }
    
        def "stops the watchers before the build when watching is disabled"() {
            when:
            watchingVirtualFileSystem.afterBuildStarted(WatchMode.ENABLED, VfsLogging.NORMAL, WatchLogging.NORMAL, buildOperationRunner)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStopClient.java

                    LOGGER.debug("Requesting daemon {} stop when idle", daemon);
                    stopDispatcher.dispatch(connection, new StopWhenIdle(idGenerator.generateId(), connection.getDaemon().getToken()));
                    LOGGER.lifecycle("Gradle daemon stopped.");
                } finally {
                    connection.stop();
                }
            }
        }
    
        /**
         * Stops all daemons, blocking until all have completed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top