- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 55 for lastAccessTime (0.06 sec)
-
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
private final Smb2LeaseKey leaseKey; private volatile int leaseState; private volatile int epoch; private final long createTime; private volatile long lastAccessTime; private final String path; private volatile boolean breaking; /** * Create a new lease entry * * @param key lease key * @param path file path
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
*/ @Override public final long getCreateTime() { return getCreationTime(); } /** * @return the lastAccessTime */ @Override public final long getLastAccessTime() { return this.lastAccessTime; } /** * @return the lastWriteTime */ @Override public final long getLastWriteTime() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
/** * The timestamp of the last access attempt for this URL. * This is a required field indicating when the failure last occurred. */ @Required public String lastAccessTime; /** * The configuration ID associated with this failure URL. * Links the failure to a specific crawling configuration. */ @Size(max = 1000) public String configId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.failure_url/failure_url.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 417 bytes - Viewed (0) -
src/main/config/es/fess_config_failure_url.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 963 bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp
key="labels.failure_url_last_access_time"/></th> <td>${f:h(lastAccessTime)}<la:hidden property="lastAccessTime"/></td> </tr> </tbody> </table>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
public String threadName; /** Number of errors encountered for this URL. */ public String errorCount; /** Last time this URL was accessed. */ public String lastAccessTime; /** * Clears all pager data and resets to default values. * This method resets pagination state and search filters. */ public void clear() { allRecordCount = 0;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
this.createTime = System.currentTimeMillis(); this.lastAccessTime = createTime; this.epoch = 1; this.breaking = false; } public synchronized void updateState(int newState) { this.leaseState = newState; this.lastAccessTime = System.currentTimeMillis(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
} long elapsed = System.currentTimeMillis() - lastAccessTime; return elapsed > timeout; } public void updateAccessTime() { this.lastAccessTime = System.currentTimeMillis(); } } public HandleGuid requestDurableHandle(String path, HandleType type,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFailureUrlBhv.java
result.setErrorLog(DfTypeUtil.toString(source.get("errorLog"))); result.setErrorName(DfTypeUtil.toString(source.get("errorName"))); result.setLastAccessTime(DfTypeUtil.toLong(source.get("lastAccessTime"))); result.setThreadName(DfTypeUtil.toString(source.get("threadName"))); result.setUrl(DfTypeUtil.toString(source.get("url"))); return updateEntity(source, result);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.7K bytes - Viewed (0)