- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 200 for sendMsg (0.05 seconds)
-
internal/grid/connection.go
return err } if msg.Flags&FlagCRCxxh3 != 0 { h := xxh3.Hash(dst) dst = binary.LittleEndian.AppendUint32(dst, uint32(h)) } return c.send(c.ctx, dst) } // sendMsg will send func (c *Connection) sendMsg(conn net.Conn, msg message, payload msgp.MarshalSizer) error { if payload != nil { if sz := payload.Msgsize(); cap(msg.Payload) < sz { PutByteBuffer(msg.Payload)
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 46.9K bytes - Click Count (0) -
api/go1.2.txt
pkg syscall (freebsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error pkg syscall (freebsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error) pkg syscall (freebsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error pkg syscall (freebsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error pkg syscall (freebsd-386-cgo), func SetBpf(int, []BpfInsn) error
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Oct 18 04:36:59 GMT 2013 - 1.9M bytes - Click Count (1) -
internal/logger/logger.go
entry := errToEntry(ctx, subsystem, err, errKind...) sendLog(ctx, entry) } func sendLog(ctx context.Context, entry log.Entry) { systemTgts := SystemTargets() if len(systemTgts) == 0 { return } // Iterate over all logger targets to send the log entry for _, t := range systemTgts { if err := t.Send(ctx, entry); err != nil { if consoleTgt != nil { // Sending to the console never fails
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 12.4K bytes - Click Count (0) -
architecture/build-execution-model.md
2. The client connects to the idle daemon and sends it a request to do some work. If the daemon is no longer running, the client starts again. 3. If the daemon is not able to run the request, for example it is already running a request or is shutting down, it rejects the request. The client starts again. 4. The daemon runs the request, sending back data such as logging output or tooling API events and intermediate models while doing so.
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Jun 12 09:50:57 GMT 2025 - 907 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.mail.CardView; import org.dbflute.mail.send.supplement.SMailPostingDiscloser; /** * Helper class for sending notifications to various platforms. */ public class NotificationHelper { /** * Default constructor. */ public NotificationHelper() { // Default constructor }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTreeInternal.java
@Deprecated void connectLogon(CIFSContext tf) throws SmbException; /** * Sends an SMB request and returns the response * @param <T> the response type * @param request the request to send * @param params optional request parameters * @return response message * @throws CIFSException if an error occurs sending the request */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.9K bytes - Click Count (0) -
api/go1.txt
pkg syscall (darwin-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error pkg syscall (darwin-386), func Sendfile(int, int, *int64, int) (int, error) pkg syscall (darwin-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error pkg syscall (darwin-386), func Sendto(int, []uint8, int, Sockaddr) error pkg syscall (darwin-386), func SetBpf(int, []BpfInsn) error
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Aug 14 18:58:28 GMT 2013 - 1.7M bytes - Click Count (0) -
docs/en/docs/advanced/openapi-callbacks.md
The process that happens when your API app calls the *external API* is named a "callback". Because the software that the external developer wrote sends a request to your API and then your API *calls back*, sending a request to an *external API* (that was probably created by the same developer).
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 10 08:55:32 GMT 2025 - 8K bytes - Click Count (0) -
internal/grid/muxclient.go
func (m *muxClient) sendLocked(msg message) error { dst := GetByteBufferCap(msg.Msgsize()) msg.Seq = m.SendSeq msg.MuxID = m.MuxID msg.Flags |= m.BaseFlags if debugPrint { fmt.Println("Client sending", &msg, "to", m.parent.Remote) } m.SendSeq++ dst, err := msg.MarshalMsg(dst) if err != nil { return err } if msg.Flags&FlagSubroute != 0 { if m.subroute == nil {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 15.9K bytes - Click Count (0) -
docs/en/docs/advanced/advanced-dependencies.md
{* ../../docs_src/dependencies/tutorial013_an_py310.py ln[19:21] *} ...would be run after the the response finishes sending the slow data: {* ../../docs_src/dependencies/tutorial013_an_py310.py ln[30:38] hl[31:33] *} But as `generate_stream()` doesn't use the database session, it is not really necessary to keep the session open while sending the response.Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Nov 13 07:37:15 GMT 2025 - 9.1K bytes - Click Count (0)