Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for setTimestamp (0.08 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

         */
        public void store(final DictionaryFile<? extends DictionaryItem> dictFile, final File file) {
            getDictionaryFile(dictFile.getId()).ifPresent(currentFile -> {
                if (currentFile.getTimestamp().getTime() > dictFile.getTimestamp().getTime()) {
                    throw new DictionaryException(dictFile.getPath() + " was updated.");
                }
    
                // TODO use stream
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/av/AvTimestamp.java

            SMBUtil.writeInt8(ts, data, 0);
            return data;
        }
    
        /**
         * Gets the timestamp value from this AV pair
         *
         * @return the timestamp
         */
        public long getTimestamp() {
            return SMBUtil.readInt8(getRaw(), 0);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbException.java

        public Object getContextValue(String key) {
            return context.get(key);
        }
    
        /**
         * Gets the error timestamp
         *
         * @return the timestamp
         */
        public long getTimestamp() {
            return timestamp;
        }
    
        /**
         * Gets the recovery hint
         *
         * @return the recovery hint or null
         */
        public String getRecoveryHint() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            return path;
        }
    
        /**
         * Returns the timestamp of this dictionary file.
         *
         * @return the timestamp when this dictionary was created or last modified
         */
        public Date getTimestamp() {
            return timestamp;
        }
    
        /**
         * Sets the dictionary manager for this file and returns this instance.
         *
         * @param dictionaryManager the dictionary manager to set
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  5. docs/smb3-features/06-witness-protocol-design.md

        }
        
        // Getters...
        public WitnessEventType getEventType() { return eventType; }
        public String getResourceName() { return resourceName; }
        public long getTimestamp() { return timestamp; }
        public List<WitnessIPAddress> getNewIPAddresses() { return newIPAddresses; }
        public List<WitnessIPAddress> getOldIPAddresses() { return oldIPAddresses; }
    }
    ```
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/Type3Message.java

                long ts = (System.currentTimeMillis() + SmbConstants.MILLISECONDS_BETWEEN_1970_AND_1601) * 10000;
                if (haveTimestamp) {
                    ts = ((AvTimestamp) AvPairs.get(avPairs, AvPair.MsvAvTimestamp)).getTimestamp();
                }
    
                setNTResponse(getNTLMv2Response(tc, type2, responseKeyNT, ntlmClientChallenge,
                        makeAvPairs(tc, targetName, avPairs, haveTimestamp, ts), ts));
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top