Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,125 for catanh (0.06 sec)

  1. src/main/java/jcifs/util/transport/Transport.java

    1. }
    2. catch ( IOException ioe ) {
    3. log.warn("sendrecv failed", ioe);
    4. try {
    5. disconnect(true);
    6. }
    7. catch ( IOException ioe2 ) {
    8. ioe.addSuppressed(ioe2);
    9. log.info("disconnect failed", ioe2);
    10. }
    11. throw ioe;
    12. }
    13. catch ( InterruptedException ie ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/FakeTimeLimiter.java

    1. checkNotNull(callable);
    2. checkNotNull(timeoutUnit);
    3. try {
    4. return callable.call();
    5. } catch (RuntimeException e) {
    6. throw new UncheckedExecutionException(e);
    7. } catch (Exception e) {
    8. restoreInterruptIfIsInterruptedException(e);
    9. throw new ExecutionException(e);
    10. } catch (Error e) {
    11. throw new ExecutionError(e);
    12. }
    13. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

    1. } catch (final Exception e) {
    2. logger.warn("Could not close a process input stream.", e);
    3. }
    4. });
    5. CommonPoolUtil.execute(() -> {
    6. try {
    7. CloseableUtil.closeQuietly(p.getErrorStream());
    8. } catch (final Exception e) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/MapReplaceEntryTester.java

    1. getMap().replace(k0(), v3(), v4());
    2. } catch (UnsupportedOperationException tolerated) {
    3. // the operation would be a no-op, so exceptions are allowed but not required
    4. }
    5. expectUnchanged();
    6. }
    7.  
    8. @MapFeature.Require(absent = SUPPORTS_PUT)
    9. public void testReplaceEntry_unsupportedAbsentKey() {
    10. try {
    11. getMap().replace(k3(), v3(), v4());
    12. } catch (UnsupportedOperationException tolerated) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Internal.java

    1. "Java7ApiChecker",
    2. })
    3. @IgnoreJRERequirement
    4. static long toNanosSaturated(Duration duration) {
    5. // Using a try/catch seems lazy, but the catch block will rarely get invoked (except for
    6. // durations longer than approximately +/- 292 years).
    7. try {
    8. return duration.toNanos();
    9. } catch (ArithmeticException tooBig) {
    10. return duration.isNegative() ? Long.MIN_VALUE : Long.MAX_VALUE;
    11. }
    12. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Jan 11 14:30:06 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

    1. installArtifact(artifact);
    2. saveInfo(messages -> messages.addSuccessInstallPlugin(GLOBAL, artifact.getFileName()));
    3. }
    4. } catch (final ValidationErrorException e) {
    5. throw e;
    6. } catch (final Exception e) {
    7. throwValidationError(messages -> messages.addErrorsFailedToInstallPlugin(GLOBAL, form.id), this::asListHtml);
    8. }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

    1. exitCode = process(options);
    2. } catch (final ContainerNotAvailableException e) {
    3. if (logger.isDebugEnabled()) {
    4. logger.debug("SuggestCreator is stopped.", e);
    5. } else if (logger.isInfoEnabled()) {
    6. logger.info("SuggestCreator is stopped.");
    7. }
    8. exitCode = Constants.EXIT_FAIL;
    9. } catch (final Throwable t) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java

    1. });
    2. return null;
    3. });
    4. try {
    5. badWordService.store(entity);
    6. suggestHelper.addBadWord(entity.getSuggestWord(), false);
    7. } catch (final Exception e) {
    8. logger.warn("Failed to process a request.", e);
    9. throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)));
    10. }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/FinalizableReferenceQueue.java

    1. boolean threadStarted = false;
    2. try {
    3. startFinalizer.invoke(null, FinalizableReference.class, queue, frqRef);
    4. threadStarted = true;
    5. } catch (IllegalAccessException impossible) {
    6. throw new AssertionError(impossible); // startFinalizer() is public
    7. } catch (Throwable t) {
    8. logger.log(
    9. Level.INFO,
    10. "Failed to start reference finalizer thread."
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Jul 11 20:51:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbEnumerationUtil.java

    1. set.add(e);
    2. }
    3. }
    4.  
    5. }
    6. catch ( SmbException e ) {
    7. throw e;
    8. }
    9. catch ( IOException ioe ) {
    10. log.debug("doNetShareEnum failed", ioe);
    11. throw new SmbException(u.toString(), ioe);
    12. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
Back to top