Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for setExpiration (0.07 sec)

  1. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        @Override
        public String getContentEncoding() {
            handshake();
            return this.connection.getContentEncoding();
        }
    
        @Override
        public long getExpiration() {
            handshake();
            return this.connection.getExpiration();
        }
    
        @Override
        public long getDate() {
            handshake();
            return this.connection.getDate();
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

                // Test some inherited methods
                assertFalse(response.isReceived());
                assertFalse(response.isError());
                assertNull(response.getExpiration());
            }
    
            @Test
            @DisplayName("Should handle multiple configurations")
            void testMultipleConfigurations() throws SMBProtocolDecodingException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/smb/DfsImpl.java

                        }
                        break;
                    }
                    link = link.substring(0, nextSep);
                }
            }
    
            if (dr != null && now > dr.getExpiration()) {
                if (log.isTraceEnabled()) {
                    log.trace("Expiring links " + link);
                }
                links.map.remove(link);
                dr = null;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
  5. 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)
Back to top