- Sort Score
- Result 10 results
- Languages All
Results 21 - 25 of 25 for getExpiration (0.05 sec)
-
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
* {@inheritDoc} * * @see jcifs.util.transport.Response#getExpiration() */ @Override public Long getExpiration() { return this.expiration; } /** * {@inheritDoc} * * @see jcifs.util.transport.Response#setExpiration(java.lang.Long) */ @Override public void setExpiration(final Long exp) { this.expiration = exp; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); states.entrySet() .stream() .filter(e -> (now - e.getValue().getExpiration()) / 1000L > getStateTtl()) .map(Map.Entry::getKey) .collect(Collectors.toList()) .forEach(s -> { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
* @return this session's UID */ public int getUid() { return this.uid; } /** * @return this session's expiration time */ public Long getExpiration() { return this.expiration > 0 ? this.expiration : null; } /** * @return this session's credentials */ public CredentialsInternal getCredentials() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0)