Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 392 for merror (0.04 seconds)

  1. src/main/webapp/WEB-INF/orig/view/chat/chat.jsp

    						</div>
    					</div>
    					<div class="card-footer">
    						<div id="errorBanner" class="error-banner d-none" role="alert">
    							<div class="error-banner-content">
    								<i class="fa fa-exclamation-triangle me-2" aria-hidden="true"></i>
    								<span class="error-message"></span>
    							</div>
    							<button type="button" class="error-banner-retry btn btn-sm btn-outline-light">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  2. CONTRIBUTING.md

    If you have a large number of messages of different types, filtering by severity to see only `Error`s can be helpful when processing the report.
    Errors are the only type of issues that must be resolved for the `checkBinaryCompatibility` task to succeed.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/exception/WebApiException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown when web API operations encounter errors.
     * This exception includes an HTTP status code to indicate the nature of the error.
     */
    public class WebApiException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            try {
                groovyEngine.evaluate("throw new org.codelibs.fess.exception.JobProcessingException('test error')", params);
                fail("Expected JobProcessingException to be thrown");
            } catch (final JobProcessingException e) {
                assertEquals("test error", e.getMessage());
            }
        }
    
        /**
         * Test that generic exceptions are caught and null is returned
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt

                    .let(transform)
            }
    
        override fun close() {
            val errors = mutableListOf<Exception>()
            openKotlinCompilationUnitsByRoot.values.forEach { unit ->
                try {
                    unit.close()
                } catch (ex: Exception) {
                    errors.add(ex)
                }
            }
            openJavaCompilationUnitsByFile.clear()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Apr 28 14:56:52 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            // Test with VirtualMachineError
            String url = "http://example.com/vm-error";
            String message = "VM error during crawling";
            InternalError error = new InternalError("JVM internal error");
    
            DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, error);
    
            assertEquals(url, exception.getUrl());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

            return BeanUtil.copyBeanToNewBean(src, destClass);
        }
    
        /**
         * Builds a comprehensive error message from a throwable and its causes.
         * This method traverses the cause chain and concatenates all error messages.
         *
         * @param t the throwable to build message from
         * @return a string containing all error messages in the cause chain
         */
        protected String buildThrowableMessage(final Throwable t) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 15K bytes
    - Click Count (0)
  8. src/main/resources/fess_label_it.properties

    labels.csvFileEncoding=Codifica CSV
    labels.defaultLabelValue=Etichetta predefinita
    labels.designFileName=Nome file
    labels.incrementalCrawling=Verifica ultima modifica
    labels.errorCount=Numero di errori
    labels.errorLog=Log errori
    labels.errorName=Nome errore
    labels.expiredTime=Data di scadenza
    labels.expires=Scade
    labels.failureCountThreshold=Soglia di fallimento
    labels.fileConfigName=Nome configurazione scansione file
    labels.fileName=Nome file
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 52K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

                }
            });
    
            assertEquals("errors.password_length", systemHelper.validatePassword("Aa1!"));
            assertEquals("errors.password_no_uppercase", systemHelper.validatePassword("password1!"));
            assertEquals("errors.password_no_lowercase", systemHelper.validatePassword("PASSWORD1!"));
            assertEquals("errors.password_no_digit", systemHelper.validatePassword("Password!"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 44.4K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

        }
    
        @Test
        public void test_destroy() {
            // Initialize without container
            emptyGenerator = new EmptyGenerator();
    
            // Test that destroy method can be called without error
            emptyGenerator.destroy();
            // Call destroy multiple times to ensure it's safe
            emptyGenerator.destroy();
            emptyGenerator.destroy();
        }
    
        @Test
        public void test_isAvailable() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.5K bytes
    - Click Count (0)
Back to Top