- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 506 for parses (2.17 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java
private String objectName; /** Cached blob object */ private Blob blob; /** * Constructs a new GcsURLConnection for the specified URL. * This constructor parses the URL to extract bucket and object names. * * @param url The GCS URL to connect to */ protected GcsURLConnection(final URL url) { super(url);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 9.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java
/** Cached object head response */ private HeadObjectResponse headObject; /** * Constructs a new S3URLConnection for the specified URL. * This constructor parses the URL to extract bucket and object names. * * @param url The S3 URL to connect to */ protected S3URLConnection(final URL url) { super(url);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 9.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
accessTimeoutTask.cancel(); } } } } /** * Parses an S3 path into bucket name and object path components. * @param path the S3 path to parse (format: bucket/object/path) * @return an array containing the bucket name and object path * @throws CrawlingAccessException if the path format is invalid */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
/** Cached object statistics response */ private StatObjectResponse statObject; /** * Constructs a new StorageURLConnection for the specified URL. * This constructor parses the URL to extract bucket and object names. * * @param url The storage URL to connect to */ protected StorageURLConnection(final URL url) { super(url);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:52:56 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
if (logger.isDebugEnabled()) { logger.debug("CrawlerClient: class={}", client.getClass().getCanonicalName()); } return client; } /** * Parses client rule configuration string into a list of client name and pattern pairs. * The configuration string format is "clientName:pattern,clientName:pattern,..." * Results are cached to improve performance on subsequent calls.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
params.put("ID", e.getId()); params.put("Query ID", e.getQueryId()); params.put("Doc ID", e.getDocId()); params.put("User Info ID", e.getUserInfoId()); params.put("URL", e.getUrl()); params.put("Created Time", FessFunctions.formatDate(e.getCreatedAt()));
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
this.request = request; } /** * Parses the HTTP request to create a RequestParameter object. * @param request The HTTP servlet request containing the parameters * @return A new RequestParameter object with parsed values */ protected static RequestParameter parse(final HttpServletRequest request) { final String query = request.getParameter("q");Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 55.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
try { final StandardQueryParser parser = new StandardQueryParser(); parser.setDefaultOperator(StandardQueryConfigHandler.Operator.AND); // Parse with the first field if available, otherwise use "default" String defaultField = fields != null && fields.length > 0 ? fields[0] : "default"; termQueryList = getTermQueryList(parser.parse(q, defaultField), fields);Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 11:21:40 UTC 2025 - 17.5K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
params.getPageSize(), 0); } if (availableSearchers.length == 1) { return searchWithMainSearcher(availableSearchers[0], query, params, userBean); } return searchWithMultipleSearchers(availableSearchers, query, params, userBean); } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
* This method parses the query string, processes it, and applies any additional customizations. * * @param queryContext the query context containing the query string * @param context a consumer for additional query context customization * @throws InvalidQueryException if the query string cannot be parsed */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0)