Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for processed_ (0.23 sec)

  1. src/main/java/org/codelibs/fess/query/QueryProcessor.java

         *
         * @param context the query context containing search parameters and state
         * @param query the Lucene query to be processed
         * @param boost the boost factor to apply to the query
         * @return the processed OpenSearch QueryBuilder
         */
        public QueryBuilder execute(final QueryContext context, final Query query, final float boost) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/AbstractStreamingHasher.java

      private final ByteBuffer buffer;
    
      /** Number of bytes to be filled before process() invocation(s). */
      private final int bufferSize;
    
      /** Number of bytes processed per process() invocation. */
      private final int chunkSize;
    
      /**
       * Constructor for use by subclasses. This hasher instance will process chunks of the specified
       * size.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            return logger;
        }
    
        /**
         * Stores parsed data from response into result data.
         * Processes HTML content using XPath expressions and handles robots tags.
         *
         * @param responseData the response data from crawling
         * @param resultData the result data to store processed information
         */
        @Override
        protected void storeData(final ResponseData responseData, final ResultData resultData) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/score/ScoreBooster.java

            }
            if (bulkRequestBuilder.numberOfActions() > requestCacheSize) {
                flush();
            }
            return (long) ids.length;
        };
    
        /**
         * Processes the score boosting.
         * @return The number of processed documents.
         */
        public abstract long process();
    
        /**
         * Enables this score booster.
         */
        protected void enable() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

            return processResponse(searchResponseOpt);
        }
    
        /**
         * Processes the OpenSearch response and converts it to a SearchResult.
         *
         * @param searchResponseOpt the optional search response from OpenSearch
         * @return the processed search result
         */
        protected SearchResult processResponse(final OptionalEntity<SearchResponse> searchResponseOpt) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        protected LinkedList<String> tagQueue;
    
        /** List to store parsed label types for access control. */
        protected List<LabelType> labelList;
    
        /** Current label type being processed during parsing. */
        protected LabelType labelType;
    
        /** Map to store global configuration parameters. */
        protected Map<String, String> globalParams = new HashMap<>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            /** Indicates that a URL was prepared for crawling. */
            PREPARED,
            /** Indicates that a URL redirect was encountered. */
            REDIRECTED,
            /** Indicates that a URL was processed completely. */
            PROCESSED
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                        indexUpdateCallback.store(paramMap, dataMap);
                        crawlerStatsHelper.record(keyObj, StatsAction.PROCESSED);
                    } else {
                        logger.warn("The response processor is not DefaultResponseProcessor. responseProcessor: {}, Data: {}",
                                responseProcessor, dataMap);
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

            }
            return roleSet;
        }
    
        /**
         * Processes the access token.
         * @param request The HTTP request.
         * @param roleSet The set of roles.
         * @param isApiRequest Whether the request is an API request.
         * @return true if the access token is processed, false otherwise.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

         * @param crawlingInfoId the crawling session ID
         * @param url the URL to process
         * @return a map containing the processed document data
         * @throws CrawlingAccessException if crawling fails or configuration is invalid
         * @throws ChildUrlsException if the URL redirects to another location
         * @throws CrawlerSystemException if data deserialization fails
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top