Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for sendto (0.18 sec)

  1. src/cmd/compile/internal/syntax/testdata/map.go

    func (m *Map[K, V]) InOrder() *Iterator[K, V] {
    	sender, receiver := chans.Ranger[keyValue[K, V]]()
    	var f func(*node[K, V]) bool
    	f = func(n *node[K, V]) bool {
    		if n == nil {
    			return true
    		}
    		// Stop sending values if sender.Send returns false,
    		// meaning that nothing is listening at the receiver end.
    		return f(n.left) &&
                            sender.Send(keyValue[K, V]{n.key, n.val}) &&
    			f(n.right)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

            while (count >= 0 && !output.contains("modified: ")) {
                println "Waiting for 'Thing.java' modification detection ($count)..."
                Thread.sleep(100)
                count--
            }
            sendEOT()
    
            then:
            cancelsAndExits()
    
            when:
            def classloader = new URLClassLoader([javaClassFile("").toURI().toURL()] as URL[])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CrashingRemoteProcess.java

        public void execute(WorkerProcessContext workerProcessContext) {
            TestListenerInterface sender = workerProcessContext.getServerConnection().addOutgoing(TestListenerInterface.class);
            workerProcessContext.getServerConnection().connect();
            sender.send("message 1", 1);
            sender.send("message 2", 2);
            // crash
            Runtime.getRuntime().halt(1234);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 21 14:14:00 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/map0.go

    func (m *Map[K, V]) InOrder() *Iterator[K, V] {
    	sender, receiver := chans.Ranger[keyValue[K, V]]()
    	var f func(*node[K, V]) bool
    	f = func(n *node[K, V]) bool {
    		if n == nil {
    			return true
    		}
    		// Stop sending values if sender.Send returns false,
    		// meaning that nothing is listening at the receiver end.
    		return f(n.left) &&
                            sender.Send(keyValue[K, V]{n.key, n.val}) &&
    			f(n.right)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/websockets.md

    ## Nachrichten erwarten und Nachrichten senden
    
    In Ihrer WebSocket-Route können Sie Nachrichten `await`en und Nachrichten senden.
    
    ```Python hl_lines="48-52"
    {!../../../docs_src/websockets/tutorial001.py!}
    ```
    
    Sie können Binär-, Text- und JSON-Daten empfangen und senden.
    
    ## Es ausprobieren
    
    Wenn Ihre Datei `main.py` heißt, führen Sie Ihre Anwendung so aus:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/pt-br/stopwords.txt

    outro
    outros
    pelas
    pelas
    pelo
    pelos
    perante
    pois
    por
    porque
    portanto
    proprio
    propios
    quais
    qual
    qualquer
    quando
    quanto
    que
    quem
    quer
    se
    seja
    sem
    sendo
    seu
    seus
    sob
    sobre
    sua
    suas
    tal
    tambem
    teu
    teus
    toda
    todas
    todo
    todos
    tua
    tuas
    tudo
    um
    uma
    umas
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 820 bytes
    - Viewed (0)
  7. test/chan/doubleselect.go

    package main
    
    import (
    	"flag"
    	"runtime"
    )
    
    var iterations *int = flag.Int("n", 100000, "number of iterations")
    
    // sender sends a counter to one of four different channels. If two
    // cases both end up running in the same iteration, the same value will be sent
    // to two different channels.
    func sender(n int, c1, c2, c3, c4 chan<- int) {
    	defer close(c1)
    	defer close(c2)
    	defer close(c3)
    	defer close(c4)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 01:34:14 UTC 2017
    - 2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/testdata/map2.go

    func (m *Map[K, V]) InOrder() *Iterator[K, V] {
    	sender, receiver := chans_Ranger[keyValue[K, V]]()
    	var f func(*node[K, V]) bool
    	f = func(n *node[K, V]) bool {
    		if n == nil {
    			return true
    		}
    		// Stop sending values if sender.Send returns false,
    		// meaning that nothing is listening at the receiver end.
    		return f(n.left) &&
    			sender.Send(keyValue[K, V]{n.key, n.val}) &&
    			f(n.right)
    	}
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 12:49:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/map1.go

    func (m *Map[K, V]) InOrder() *Iterator[K, V] {
    	sender, receiver := chans_Ranger[keyValue[K, V]]()
    	var f func(*node[K, V]) bool
    	f = func(n *node[K, V]) bool {
    		if n == nil {
    			return true
    		}
    		// Stop sending values if sender.Send returns false,
    		// meaning that nothing is listening at the receiver end.
    		return f(n.left) &&
                            sender.Send(keyValue[K, V]{n.key, n.val}) &&
    			f(n.right)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/parallelize/error_channel.go

    import "context"
    
    // ErrorChannel supports non-blocking send and receive operation to capture error.
    // A maximum of one error is kept in the channel and the rest of the errors sent
    // are ignored, unless the existing error is received and the channel becomes empty
    // again.
    type ErrorChannel struct {
    	errCh chan error
    }
    
    // SendError sends an error without blocking the sender.
    func (e *ErrorChannel) SendError(err error) {
    	select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 17:39:23 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top