Home
last modified time | relevance | path

Searched defs:OpError (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/net/
Dnet.go462 type OpError struct { struct
465 Op string
469 Net string
474 Source Addr
482 Addr Addr
486 Err error
489 func (e *OpError) Unwrap() error { return e.Err }
491 func (e *OpError) Error() string {
529 func (e *OpError) Timeout() bool {
542 func (e *OpError) Temporary() bool {
/aosp_15_r20/external/tensorflow/tensorflow/core/common_runtime/
H A Dsingle_threaded_executor_test.cc327 TEST_F(ExecutorTest, OpError) { in TEST_F() argument
/aosp_15_r20/external/tensorflow/tensorflow/python/framework/
H A Derrors_impl.py46 class OpError(Exception): class