- Sort Score
- Result 10 results
- Languages All
Results 11 - 19 of 19 for setCreateTime (0.76 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java
*/ Long getCreateTime(); /** * Sets the creation time of the URL queue. * * @param createTime the creation time to set, represented as a Long value. */ void setCreateTime(Long createTime); /** * Retrieves the weight of the URL queue. * * @return the weight as a float value. */ float getWeight(); /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
.map(d -> { final UrlQueue<?> uq = crawlerContainer.getComponent("urlQueue"); uq.setCreateTime(SystemUtil.currentTimeMillis()); uq.setDepth(depth); uq.setMethod(Constants.GET_METHOD); uq.setParentUrl(url);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java
* @param resultData The result data from content processing. */ @Override public void init(final ResponseData responseData, final ResultData resultData) { setCreateTime(System.currentTimeMillis()); if (responseData != null) { BeanUtil.copyBeanToBean(responseData, this); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
target.setHttpStatusCode(getFieldValue(fields.get("httpStatusCode"), Integer.class)); target.setStatus(getFieldValue(fields.get("status"), Integer.class)); target.setCreateTime(getFieldValue(fields.get("createTime"), Long.class)); target.setLastModified(getFieldValue(fields.get("lastModified"), Long.class)); setId(target, searchHit.getId());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java
public void setWeight(float weight) { } @Override public float getWeight() { return 0.0f; } @Override public void setCreateTime(Long createTime) { } @Override public void setLastModified(Long lastModified) { } @Override public void setDepth(Integer depth) { }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* <code>createTime()</code>, <code>lastModified()</code>, <code>lastAccess()</code> methods. * <br> * This method does not apply to workgroups, servers, or shares. * * @see #setCreateTime * @see #setLastAccess * @see #setLastModified * * @param createTime * the create time as milliseconds since Jan 1, 1970 * @param lastModified
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 28K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
} @Override public void setExecutionTime(Integer executionTime) { // Do nothing in test } @Override public void setCreateTime(Long createTime) { // Do nothing in test } @Override public void setMimeType(String mimeType) { // Do nothing in test } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
} catch (final CIFSException e) { throw SmbException.wrap(e); } } @Override public void setCreateTime(final long time) throws SmbException { if (this.fileLocator.isRootOrShare()) { throw new SmbException("Invalid operation for workgroups, servers, or shares"); } try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* * @param time the create time as milliseconds since Jan 1, 1970 * @throws SmbException if an error occurs while setting the create time */ public void setCreateTime(final long time) throws SmbException { if (getUncPath0().length() == 1) { throw new SmbException("Invalid operation for workgroups, servers, or shares"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0)