- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for OpError (0.09 sec)
-
internal/config/errors-utils.go
if errors.Is(err, syscall.EADDRINUSE) { return ErrPortAlreadyInUse(err).Msg("Specified port is already in use") } else if errors.Is(err, syscall.EACCES) || errors.Is(err, syscall.EPERM) { if netErr, ok := err.(*net.OpError); ok { return ErrPortAccess(netErr).Msg("Insufficient permissions to use specified port") } } // Failed to identify what type of error this, return a simple UI error return Err{msg: err.Error()} }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 3.8K bytes - Viewed (0) -
internal/event/target/amqp.go
var err error var conn *amqp091.Connection var ch *amqp091.Channel isAMQPClosedErr := func(err error) bool { if err == amqp091.ErrClosed { return true } if nerr, ok := err.(*net.OpError); ok { return (nerr.Err.Error() == "use of closed network connection") } return false } target.connMutex.Lock() defer target.connMutex.Unlock() if target.conn != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 10K bytes - Viewed (0) -
api/go1.5.txt
pkg mime/quotedprintable, type Reader struct pkg mime/quotedprintable, type Writer struct pkg mime/quotedprintable, type Writer struct, Binary bool pkg net, type Dialer struct, FallbackDelay time.Duration pkg net, type OpError struct, Source Addr pkg net/http, type Request struct, Cancel <-chan struct pkg net/http/fcgi, var ErrConnClosed error pkg net/http/fcgi, var ErrRequestAborted error
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 30 21:14:09 UTC 2015 - 46.6K bytes - Viewed (0) -
api/go1.txt
pkg net, type MX struct pkg net, type MX struct, Host string pkg net, type MX struct, Pref uint16 pkg net, type OpError struct pkg net, type OpError struct, Addr Addr pkg net, type OpError struct, Err error pkg net, type OpError struct, Net string pkg net, type OpError struct, Op string pkg net, type PacketConn interface { Close, LocalAddr, ReadFrom, SetDeadline, SetReadDeadline, SetWriteDeadline, WriteTo }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
api/go1.13.txt
pkg net/http, type Transport struct, ReadBufferSize int pkg net/http, type Transport struct, WriteBufferSize int pkg net, method (*DNSConfigError) Unwrap() error pkg net, method (*OpError) Unwrap() error pkg net, type DNSError struct, IsNotFound bool pkg net, type ListenConfig struct, KeepAlive time.Duration pkg net/url, method (*Error) Unwrap() error pkg os/exec, method (*Cmd) String() string
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
RELEASE.md
* Extended `tf.config.experimental.enable_tensor_float_32_execution` to control Tensor-Float-32 evaluation in RNNs. * Added a 'experimental_payloads' field to tf.errors.OpError and its subclasses to support more detailed error reporting. This is inspired from Abseil Status payloads: https://github.com/abseil/abseil-cpp/blob/master/absl/status/status.h
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Oct 22 14:33:53 UTC 2024 - 735.3K bytes - Viewed (0)