Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for LastError (0.15 seconds)

  1. 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: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  2. 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 Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 14.7K bytes
    - Click Count (0)
  3. src/main/webapp/js/chat.js

        };
    
        var state = {
            sessionId: null,
            isProcessing: false,
            eventSource: null,
            currentPhase: null,
            completedPhases: [],
            lastMessage: null,
            lastError: null,
            errorHandled: false,
            filters: { labels: [], extraQueries: [] }
        };
    
        var elements = {};
    
        var phaseOrder = ['intent', 'search', 'evaluate', 'fetch', 'answer'];
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
Back to Top