Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for sendto (0.41 sec)

  1. src/database/sql/sql.go

    	numOpen      int // number of opened and pending open connections
    	// Used to signal the need for new connections
    	// a goroutine running connectionOpener() reads on this chan and
    	// maybeOpenNewConnections sends on the chan (one send per needed connection)
    	// It is closed during db.Close(). The close tells the connectionOpener
    	// goroutine to exit.
    	openerCh          chan struct{}
    	closed            bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/reflect/value.go

    		val = Value{}
    	}
    	return
    }
    
    // Send sends x on the channel v.
    // It panics if v's kind is not [Chan] or if x's type is not the same type as v's element type.
    // As in Go, x's value must be assignable to the channel's element type.
    func (v Value) Send(x Value) {
    	v.mustBe(Chan)
    	v.mustBeExported()
    	v.send(x, false)
    }
    
    // internal send, possibly non-blocking.
    // v is known to be a channel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. RELEASE.md

    RajeshT, Renato Golin, riestere, Roger Iyengar, Rohit Santhanam, Rsanthanam-Amd,
    Sadeed Pv, Samuel Marks, Shimokawa, Naoaki, Siddhesh Kothadi, Simengliu-Nv,
    Sindre Seppola, snadampal, Srinivasan Narayanamoorthy, sushreebarsa,
    syedshahbaaz, Tamas Bela Feher, Tatwai Chong, Thibaut Goetghebuer-Planchon,
    tilakrayal, Tom Anderson, Tomohiro Endo, Trevor Morris, vibhutisawant,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top