Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 791 for immediatetly (0.73 sec)

  1. src/os/wait_wait6.go

    //go:build dragonfly || freebsd || netbsd
    
    package os
    
    import (
    	"runtime"
    	"syscall"
    )
    
    // blockUntilWaitable attempts to block until a call to p.Wait will
    // succeed immediately, and reports whether it has done so.
    // It does not actually call p.Wait.
    func (p *Process) blockUntilWaitable() (bool, error) {
    	var errno syscall.Errno
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 781 bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/generator/XmlPersistableConfigurationObject.java

        }
    
        public Node getXml() {
            return xml;
        }
    
        /**
         * Called immediately after the XML file has been read.
         */
        protected void load(Node xml) {
            // no-op
        }
    
        /**
         * Called immediately before the XML file is to be written.
         */
        protected void store(Node xml) {
            // no-op
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue43190.go

    import .; // ERROR "missing import path"
    import 'x' // ERROR "import path must be a string"
    var _ int
    import /* ERROR "imports must appear before other declarations" */ _ "math"
    
    // Don't repeat previous error for each immediately following import ...
    import ()
    import (.) // ERROR "missing import path"
    import (
    	"fmt"
    	.
    ) // ERROR "missing import path"
    
    // ... but remind with error again if we start a new import section after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 997 bytes
    - Viewed (0)
  4. src/os/wait_unimp.go

    // waitid/wait6.
    
    //go:build aix || darwin || (js && wasm) || openbsd || solaris || wasip1
    
    package os
    
    // blockUntilWaitable attempts to block until a call to p.Wait will
    // succeed immediately, and reports whether it has done so.
    // It does not actually call p.Wait.
    // This version is used on systems that do not implement waitid,
    // or where we have not implemented it yet. Note that this is racy:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 13:16:52 UTC 2023
    - 831 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/collections/EventSubscriptionVerifier.java

     */
    
    package org.gradle.api.internal.collections;
    
    import javax.annotation.Nullable;
    
    /**
     * Tracks which types are subscribed to by eager event listeners. Lazy elements of a
     * subscribed type should be immediately realized when added to a container.
     */
    public interface EventSubscriptionVerifier<T> {
    
        /**
         * Determines whether events should be emitted for elements of the given type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:16:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/go/parser/error_test.go

    // .src rather than .go so that they are not disturbed by gofmt runs.
    //
    // Expected errors are indicated in the test files by putting a comment
    // of the form /* ERROR "rx" */ immediately following an offending token.
    // The harness will verify that an error matching the regular expression
    // rx is reported at that source position.
    //
    // For instance, the following test file indicates that a "not declared"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/WebSocketEcho.java

        Request request = new Request.Builder()
            .url("ws://echo.websocket.org")
            .build();
        client.newWebSocket(request, this);
    
        // Trigger shutdown of the dispatcher's executor so this process exits immediately.
        client.dispatcher().executorService().shutdown();
      }
    
      @Override public void onOpen(WebSocket webSocket, Response response) {
        webSocket.send("Hello...");
        webSocket.send("...World!");
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 04 11:40:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

         *
         * ## The file
         *
         * In this case we copy bytes from the file to the [sink].
         *
         * ## The buffer
         *
         * In this case the bytes are immediately copied into [sink] and the number of bytes copied is
         * returned.
         *
         * If upstream would be selected but another thread is already reading upstream this will
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerControl.java

        /**
         * Requests that the worker complete all work and stop. Blocks until the worker process has stopped.
         */
        ExecResult stop();
    
        /**
         * Requests that the worker stop immediately, without waiting for it to complete its work.
         */
        void stopNow();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/nettest/conntest.go

    	if _, err := c1.Write(make([]byte, 8)); err != nil {
    		t.Errorf("unexpected c1.Write error: %v", err)
    	}
    }
    
    // testRacyRead tests that it is safe to mutate the input Read buffer
    // immediately after cancelation has occurred.
    func testRacyRead(t *testing.T, c1, c2 net.Conn) {
    	go chunkedCopy(c2, rand.New(rand.NewSource(0)))
    
    	var wg sync.WaitGroup
    	defer wg.Wait()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top