Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 507 for yyerror (0.06 sec)

  1. src/test/java/jcifs/netbios/NbtExceptionTest.java

                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.SRV_ERR, "ERR_NAM_SRVC/Unknown error code: 2"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.IMP_ERR, "ERR_NAM_SRVC/Unknown error code: 4"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.RFS_ERR, "ERR_NAM_SRVC/Unknown error code: 5"),
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.error;
    
    import java.util.HashMap;
    import java.util.Map;
    
    /**
     * Form class for handling error page data and search parameters.
     * This form captures the state of a search request when an error occurs,
     * allowing the error page to display relevant information and preserve search context.
     */
    public class ErrorForm {
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbOperationException.java

                log.debug("Transient SMB error: {} (attempt {}/{})", getMessage(), attemptNumber, retryPolicy.getMaxAttempts());
            } else if (isRetryable()) {
                log.warn("Retryable SMB error: {} in operation '{}' (attempt {}/{})", getMessage(), operationName, attemptNumber,
                        retryPolicy.getMaxAttempts());
            } else {
                log.error("Non-retryable SMB error: {} in operation '{}'", getMessage(), operationName);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TextExtractorEnhancedTest.java

                final String message = e.getMessage();
                assertNotNull("Error message should not be null", message);
                assertFalse("Error message should not be empty", message.trim().isEmpty());
                assertTrue("Error message should start with action verb", message.startsWith("Failed to extract"));
                assertTrue("Error message should contain 'text content'", message.contains("text content"));
            }
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

                    assertEquals(0, bytesWritten, "Failed at iteration " + i);
                }
            }
        }
    
        @Nested
        @DisplayName("Error handling tests")
        class ErrorHandlingTests {
    
            @Test
            @DisplayName("Should provide clear error message for invalid structure size")
            void testClearErrorMessage() {
                // Given
                byte[] buffer = new byte[10];
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/suggest/index/SuggestDeleteResponseTest.java

            errors.add(new Exception("Test error"));
            SuggestDeleteResponse response2 = new SuggestDeleteResponse(errors, 100);
            assertTrue(response2.hasError());
        }
    
        @Test
        public void test_getErrors() throws Exception {
            List<Throwable> errors = new ArrayList<>();
            errors.add(new Exception("Error 1"));
            errors.add(new RuntimeException("Error 2"));
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. 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: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/NotifyResponseTest.java

            public boolean isVerifyFailed() {
                return this.verifyFailed;
            }
    
            @Override
            public boolean isError() {
                return this.error;
            }
    
            @Override
            public void error() {
                this.error = true;
            }
    
            // Setter methods for testing
            public void setGrantedCredits(int grantedCredits) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  9. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/InvalidQueryException.java

        /** Message code for localized error messages */
        private final transient VaMessenger<FessMessages> messageCode;
    
        /**
         * Creates a new InvalidQueryException with message code, message, and cause.
         *
         * @param messageCode the message code for localized error messages
         * @param message the detailed error message
         * @param cause the cause of the exception
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
Back to top