Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 278 for getMessage (0.11 sec)

  1. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

                }
            } catch (final ComponentNotFoundException e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("tikaExtractor is not found: {}", e.getMessage().replace('\n', ' '));
                }
            } catch (final Exception e) {
                logger.warn("Failed to initiaize TikaExtractor.", e);
            }
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

        TimeoutOnStartUp service = new TimeoutOnStartUp();
    
        TimeoutException e =
            assertThrows(
                TimeoutException.class, () -> service.startAsync().awaitRunning(1, MILLISECONDS));
        assertThat(e.getMessage()).contains(Service.State.STARTING.toString());
      }
    
      private class TimeoutOnStartUp extends AbstractExecutionThreadService {
        @Override
        protected Executor executor() {
          return new Executor() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                if (Constants.TRUE.equalsIgnoreCase(ComponentUtil.getFessConfig().getApiJsonResponseExceptionIncluded())) {
                    logger.warn("Failed to access to Web API.", e);
                    message = e.getMessage();
                } else {
                    final String errorCode = UUID.randomUUID().toString();
                    message = "[" + errorCode + "] Failed to access to Web API.";
                    logger.warn(message, e);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Aug 15 08:29:24 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

          actual = e;
        }
        assertNotNull("verify() should be able to cause test failure", actual);
        assertTrue(
            "AssertionError should have info about why test failed",
            actual.getCause().getMessage().contains(message));
      }
    
      public void testMissingException() {
        List<Integer> emptyList = newArrayList();
    
        IteratorTester<Integer> tester =
            new IteratorTester<Integer>(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

        }
        boolean hasCapability( int cap ) throws SmbException {
            try {
                connect( RESPONSE_TIMEOUT );
            } catch( IOException ioe ) {
                throw new SmbException( ioe.getMessage(), ioe );
            }
            return (capabilities & cap) == cap;
        }
        boolean isSignatureSetupRequired( NtlmPasswordAuthentication auth ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/curl/CurlRequest.java

                                try {
                                    return "<<< " + new String(bytes, 0, len, encoding);
                                } catch (final Exception e) {
                                    return "<<< <" + e.getMessage() + ">";
                                }
                            });
                            dfos.write(bytes, 0, length);
                        }
                        length = bis.read(bytes);
                    }
    Registered: Thu Oct 31 02:32:13 UTC 2024
    - Last Modified: Sun Feb 12 12:21:25 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

        Method method;
        try {
          method = extractMethod(test);
        } catch (IllegalArgumentException e) {
          logger.finer(Platform.format("%s: including by default: %s", test, e.getMessage()));
          return true;
        }
        if (suppressedTests.contains(method)) {
          logger.finer(Platform.format("%s: excluding because it was explicitly suppressed.", test));
          return false;
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

                    try {
                        result = interpolator.interpolate(result, recursionInterceptor);
                    } catch (InterpolationException e) {
                        throw new ModelInterpolationException(e.getMessage(), e);
                    }
    
                    if (debug) {
                        List<Object> feedback = interpolator.getFeedback();
                        if (feedback != null && !feedback.isEmpty()) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            }
            return "<pre class=\"" + style + " linenums:" + lineNum + "\">" + content + "</pre>";
        }
    
        public static String getMessage(final String key, final String defaultValue) {
            final Locale locale = LaRequestUtil.getOptionalRequest().map(HttpServletRequest::getLocale).orElse(Locale.ROOT);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java

                ioe = (TransportException)root;
                root = ((TransportException)ioe).getRootCause();
            }
            if (root instanceof InterruptedException) {
                ioe = new InterruptedIOException(root.getMessage());
                ioe.initCause(root);
            }
            return ioe;
        }
    
    /**
     * Closes this input stream and releases any system resources associated with the stream.
     *
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.9K bytes
    - Viewed (0)
Back to top