Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for Chandler (6.46 sec)

  1. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

                    docMeta.primaryTerm(hit.getPrimaryTerm());
                    handler.handle(entity);
                });
    
                return !handler.isBreakCursor();
            });
        }
    
        protected <RESULT extends ENTITY> void delegateSelectBulk(final ConditionBean cb, final EntityRowHandler<List<RESULT>> handler,
                final Class<? extends RESULT> entityType) {
            assertCBStateValid(cb);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/eventbus/EventBus.java

        return executor;
      }
    
      /** Handles the given exception thrown by a subscriber with the given context. */
      void handleSubscriberException(Throwable e, SubscriberExceptionContext context) {
        checkNotNull(e);
        checkNotNull(context);
        try {
          exceptionHandler.handleException(e, context);
        } catch (Throwable e2) {
          // if the handler threw an exception... well, just log it
          logger.log(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

        }
    
        public static ArtifactType newArtifactType(String id, ArtifactHandler handler) {
            return new DefaultArtifactType(
                    id,
                    handler.getExtension(),
                    handler.getClassifier(),
                    handler.getLanguage(),
                    handler.isAddedToClasspath(),
                    handler.isIncludesDependencies());
        }
    
        public static Dependency toDependency(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

         *            ルートディレクトリ。{@literal null}であってはいけません
         * @param handler
         *            クラスを処理するハンドラ。{@literal null}であってはいけません
         */
        public static void forEach(final File rootDir, final ClassHandler handler) {
            assertArgumentNotNull("rootDir", rootDir);
            assertArgumentNotNull("handler", handler);
    
            forEach(rootDir, null, handler);
        }
    
        /**
         * ファイルシステムに含まれるクラスをトラバースします。
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

            }
    
            @Override
            public void parse(final InputStream stream, final ContentHandler handler, final Metadata metadata)
                    throws IOException, SAXException, TikaException {
                final ParseContext context = new ParseContext();
                context.set(Parser.class, this);
                parse(stream, handler, metadata, context);
            }
    
        }
    
        @FunctionalInterface
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                final SAXParser parser = spfactory.newSAXParser();
                disableExternalResources(parser);
                parser.parse(in, handler);
            } catch (final Exception e) {
                throw new SitemapsException("Could not parse XML Sitemaps.", e);
            }
            return handler.getSitemapSet();
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

     */
    @Named
    @Singleton
    public class DefaultExceptionHandler implements ExceptionHandler {
        @Override
        public ExceptionSummary handleException(Throwable exception) {
            return handle("", exception);
        }
    
        private ExceptionSummary handle(String message, Throwable exception) {
            String reference = getReference(Collections.newSetFromMap(new IdentityHashMap<>()), exception);
    
            List<ExceptionSummary> children = null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/curl/CurlRequest.java

                    }
                });
            }
    
            private void writeContent(final Supplier<InputStream> handler) {
                try (BufferedInputStream bis = new BufferedInputStream(handler.get());
                        ContentOutputStream dfos = new ContentOutputStream(threshold, Curl.tmpDir)) {
                    final byte[] bytes = new byte[4096];
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Sun Feb 12 12:21:25 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/IntMath.java

          case (-2):
            if (k < Integer.SIZE) {
              return ((k & 1) == 0) ? (1 << k) : -(1 << k);
            } else {
              return 0;
            }
          default:
            // continue below to handle the general case
        }
        for (int accum = 1; ; k >>= 1) {
          switch (k) {
            case 0:
              return accum;
            case 1:
              return b * accum;
            default:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AggregateFuture.java

        if (futures.isEmpty()) {
          handleAllCompleted();
          return;
        }
    
        // NOTE: If we ever want to use a custom executor here, have a look at CombinedFuture as we'll
        // need to handle RejectedExecutionException
    
        if (allMustSucceed) {
          // We need fail fast, so we have to keep track of which future failed so we can propagate
          // the exception immediately
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top