- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for accessResult (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java
*/ package org.codelibs.fess.crawler.entity; /** * Represents the result of accessing a resource. * * @param <IDTYPE> the type of the identifier for the access result */ public interface AccessResult<IDTYPE> { /** * Initializes the access result with the given response and result data. * * @param responseData the response data * @param resultData the result data */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataServiceTest.java
accessResult2.setExecutionTime(10); accessResult2.setHttpStatusCode(200); accessResult2.setLastModified(System.currentTimeMillis()); accessResult2.setMethod("GET"); accessResult2.setMimeType("text/plain"); accessResult2.setParentUrl("http://www.parent.com/"); accessResult2.setRuleId("htmlRule"); accessResult2.setSessionId("id2");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 6.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/DataServiceImplTest.java
accessResult1.setParentUrl("http://www.parent.com/"); accessResult1.setRuleId("htmlRule"); accessResult1.setSessionId("id1"); accessResult1.setStatus(200); accessResult1.setUrl("http://www.id1.com/"); dataService.store(accessResult1); final AccessResult accessResult2 = dataService.getAccessResult("id1", "http://www.id1.com/"); assertNotNull(accessResult2);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java
import org.codelibs.core.beans.util.BeanUtil; import org.codelibs.fess.crawler.Constants; /** * Implementation of the {@link AccessResult} interface. * * @param <IDTYPE> the type of the identifier for the access result */ public class AccessResultImpl<IDTYPE> implements AccessResult<IDTYPE> { /** * Creates a new instance of AccessResultImpl. */ public AccessResultImpl() { // NOP }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/AccessResultCallback.java
import org.codelibs.fess.crawler.entity.AccessResult; /** * A callback interface for processing access results. * * @param <RESULT> the type of access result that extends {@link AccessResult} */ public interface AccessResultCallback<RESULT extends AccessResult<?>> { /** * Processes the given access result. * * @param accessResult the result of the access operation to be processed */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
final Map<String, AccessResultImpl<Long>> arMap = dataHelper.getAccessResultMap(accessResult.getSessionId()); if (arMap.containsKey(accessResult.getUrl())) { throw new CrawlerSystemException(accessResult.getUrl() + " already exists."); } arMap.put(accessResult.getUrl(), accessResult); } } /** * Gets the count of access results for the specified session.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.7K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java
final OpenSearchAccessResult accessResult = dataService.getAccessResult(getSessionId(), getUrl()); if (accessResult != null && accessResult.accessResultData != null) { setAccessResultData(accessResult.accessResultData); } else { setAccessResultData(null); } }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
* * @param target the document data to process * @param accessResult the access result from crawling * @return the processed document data */ public Map<String, Object> process(final Map<String, Object> target, final AccessResult<String> accessResult) { return process(target); } /** * Processes a document map for datastore operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java
} } /** * Retrieves the current thread-local instance of the DataService for AccessResult. * * @return the DataService instance associated with the current thread, or null if none is set. */ public static DataService<AccessResult<?>> getDataService() { return DATA_SERVICE_THREAD_LOCAL.get(); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 6.4K bytes - Viewed (0)