- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 1,097 for onerror (0.14 sec)
-
src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java
// Create a root cause exception String rootCauseMessage = "Root cause error"; Exception rootCause = new Exception(rootCauseMessage); // Create a ServletException with the root cause String servletErrorMessage = "Servlet error with cause"; ServletException servletException = new ServletException(servletErrorMessage, rootCause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
LdapConfigurationException exception2 = new LdapConfigurationException("Error 2"); LdapConfigurationException exception3 = new LdapConfigurationException("Error 3"); assertEquals("Error 1", exception1.getMessage()); assertEquals("Error 2", exception2.getMessage()); assertEquals("Error 3", exception3.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleInternal.java
* @throws SmbException if an SMB-specific error occurs * @throws CIFSException if a general CIFS error occurs */ void ensureDFSResolved() throws CIFSException; /** * Checks if the server has the specified capability * @param cap the capability flag to check * @return whether the capability is present * @throws CIFSException if an error occurs checking capabilities */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
tests/generics_test.go
} _, err = db.Joins(clause.Has("Company"), func(db gorm.JoinBuilder, joinTable clause.Table, curTable clause.Table) error { return errors.New("join error") }).First(ctx) if err == nil { t.Fatalf("Joins should got error, but got nil") } } func TestGenericsNestedJoins(t *testing.T) { users := []User{ { Name: "generics-nested-joins-1", Manager: &User{
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 28K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcError.java
/** * NDR encoding error fault code */ int DCERPC_FAULT_NDR = 0x000006F7; /** * Invalid tag fault code */ int DCERPC_FAULT_INVALID_TAG = 0x1C000006; /** * Context mismatch fault code */ int DCERPC_FAULT_CONTEXT_MISMATCH = 0x1C00001A; /** * Operation range error fault code */ int DCERPC_FAULT_OP_RNG_ERROR = 0x1C010002;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java
if (data == null) { log.error("Data buffer is null in verify"); return false; } if (offset < 0 || length < 0) { log.error("Invalid offset or length in verify: offset={}, length={}", offset, length); return false; } if (offset + length > data.length) { log.error("Offset + length exceeds data buffer size in verify");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoForm.java
*/ public Integer order; // for error page /** * Query string parameter for error page fallback. * Contains the original search query if redirection fails. */ public String q; /** * Number of results parameter for error page fallback. * Specifies how many results to display if redirection fails. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
callbacks.go
func (p *processor) Register(name string, fn func(*DB)) error { return (&callback{processor: p}).Register(name, fn) } func (p *processor) Remove(name string) error { return (&callback{processor: p}).Remove(name) } func (p *processor) Replace(name string, fn func(*DB)) error { return (&callback{processor: p}).Replace(name, fn) } func (p *processor) compile() (err error) { var callbacks []*callback
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Aug 26 06:24:29 UTC 2025 - 8.8K bytes - Viewed (0) -
tests/tests_test.go
) func init() { var err error if DB, err = OpenTestConnection(&gorm.Config{}); err != nil { log.Printf("failed to connect database, got error %v", err) os.Exit(1) } else { sqlDB, err := DB.DB() if err != nil { log.Printf("failed to connect database, got error %v", err) os.Exit(1) } err = sqlDB.Ping() if err != nil {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 3.7K bytes - Viewed (0) -
tests/preload_suits_test.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Jun 05 11:34:13 UTC 2025 - 30.4K bytes - Viewed (0)