- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for LastError (0.03 seconds)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
} } } } // All retries failed if (lastError instanceof IOException) { throw (IOException) lastError; } else { throw new IOException("RDMA operation failed after " + (retryCount + 1) + " attempts", lastError); } } /** * Functional interface for RDMA operations that can be retried *Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 10.5K bytes - Click Count (0) -
internal/rest/client.go
} // LastConn returns when the disk was (re-)connected func (c *Client) LastConn() time.Time { return time.Unix(0, atomic.LoadInt64(&c.lastConn)) } // LastError returns previous error func (c *Client) LastError() error { c.RLock() defer c.RUnlock() return fmt.Errorf("[%s] %w", c.lastErrTime.Format(time.RFC3339), c.lastErr) } // computes the exponential backoff duration according to
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 14.7K bytes - Click Count (0)