Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,595 for stops (0.1 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnection.java

         * sending incoming messages.
         */
        @Override
        void requestStop();
    
        /**
         * Performs a graceful stop of this connection. Stops accepting outgoing messages. Blocks until all incoming messages
         * have been handled, and all outgoing messages have been forwarded to the peer.
         */
        @Override
        void stop();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/go/doc/testdata/testing.0.golden

    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    	// Fatal is equivalent to Log() followed by FailNow(). 
    	func (c *B) Fatal(args ...any)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  3. src/runtime/heap_test.go

    	_ "unsafe"
    )
    
    //go:linkname heapObjectsCanMove runtime.heapObjectsCanMove
    func heapObjectsCanMove() bool
    
    func TestHeapObjectsCanMove(t *testing.T) {
    	if heapObjectsCanMove() {
    		// If this happens (or this test stops building),
    		// it will break go4.org/unsafe/assume-no-moving-gc.
    		t.Fatalf("heap objects can move!")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 18:35:49 UTC 2023
    - 529 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/ClientShutdownCrossVersionSpec.groovy

            }
            toolingApi.daemons.daemon.assertIdle()
    
            when:
            toolingApi.close()
    
            then:
            toolingApi.daemons.daemon.stops()
        }
    
        def "cleans up busy daemons once they become idle when tooling API session is shutdown"() {
            given:
            server.start()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentHandle.java

        boolean isRunning();
    
        /**
         * Starts the given deployment.
         * @param deployment the deployment to be started
         */
        void start(Deployment deployment);
    
        /**
         * Stops the deployment.
         */
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/Timeout.java

     */
    
    package org.gradle.internal.execution.timeout;
    
    /**
     * Represents a timeout for some piece of work.
     */
    public interface Timeout {
        /**
         * Stops the timeout and returns whether the work did time out.
         */
        boolean stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 854 bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonStopClientTest.groovy

            1 * connection.receive() >> new Success(null)
            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
            1 * connection2.dispatch({it instanceof Stop})
            1 * connection2.receive() >> new Success(null)
            1 * connection2.dispatch({it instanceof Finished})
            1 * connection2.stop()
            0 * _
        }
    
        def "stops each connection at most once"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. src/testing/iotest/writer.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package iotest
    
    import "io"
    
    // TruncateWriter returns a Writer that writes to w
    // but stops silently after n bytes.
    func TruncateWriter(w io.Writer, n int64) io.Writer {
    	return &truncateWriter{w, n}
    }
    
    type truncateWriter struct {
    	w io.Writer
    	n int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 674 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonFixture.java

         */
        DaemonFixture becomesIdle();
    
        /**
         * Asserts that this daemon stops and is no longer visible to any clients within a short timeout. Blocks until this has happened.
         */
        DaemonFixture stops();
    
        /**
         * Asserts that this daemon is currently idle.
         */
        void assertIdle();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcshared/testdata/libgo5/libgo5.go

    // CatchSIGIO starts catching SIGIO signals.
    //
    //export CatchSIGIO
    func CatchSIGIO() {
    	sigioChan = make(chan os.Signal, 1)
    	signal.Notify(sigioChan, syscall.SIGIO)
    }
    
    // ResetSIGIO stops catching SIGIO signals.
    //
    //export ResetSIGIO
    func ResetSIGIO() {
    	signal.Reset(syscall.SIGIO)
    }
    
    // AwaitSIGIO blocks indefinitely until a SIGIO is reported.
    //
    //export AwaitSIGIO
    func AwaitSIGIO() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 986 bytes
    - Viewed (0)
Back to top