Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for notimestamp (0.05 sec)

  1. src/main/java/jcifs/ntlmssp/av/AvTimestamp.java

    /**
     * NTLMSSP AV pair representing timestamp information in NTLM authentication.
     * Contains time-based data used to prevent replay attacks and ensure message freshness.
     *
     * @author mbechler
     */
    public class AvTimestamp extends AvPair {
    
        /**
         * Constructs an AvTimestamp from raw byte data
         *
         * @param raw the raw byte data for the timestamp AV pair
         */
        public AvTimestamp(final byte[] raw) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/ntlmssp/av/AvTimestampTest.java

            long timestamp = 9876543210L;
            AvTimestamp avTimestamp = new AvTimestamp(timestamp);
    
            assertNotNull(avTimestamp);
            assertEquals(AvPair.MsvAvTimestamp, avTimestamp.getType());
            assertEquals(timestamp, avTimestamp.getTimestamp()); // Verify encoding and decoding
        }
    
        /**
         * Test getTimestamp method with a positive timestamp.
         */
        @Test
        public void testGetTimestampPositive() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/DictionaryCreator.java

         * Creates a dictionary file for the given path and timestamp if it matches this creator's pattern.
         *
         * @param path the file path to create a dictionary file for
         * @param timestamp the timestamp of the dictionary file
         * @return a DictionaryFile instance if the path matches, null otherwise
         */
        public DictionaryFile<? extends DictionaryItem> create(final String path, final Date timestamp) {
            if (!isTarget(path)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/commonColumnMap.dfprop

    #
    # The variable '$$AccessContext$$' means allcommon.AccessContext.
    #
    # Example:
    # map:{
    #     ; commonColumnMap = map:{
    #         ; REGISTER_DATETIME=TIMESTAMP ; REGISTER_USER=VARCHAR
    #         ; UPDATE_DATETIME=TIMESTAMP   ; UPDATE_USER=VARCHAR
    #     }
    #     ; beforeInsertMap = map:{
    #         ; REGISTER_DATETIME = $$AccessContext$$.getAccessLocalDateTimeOnThread()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java

         * @param timestamp The last modified timestamp of the file.
         * @return A new {@link StopwordsFile} associated with the dictionary manager.
         */
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new StopwordsFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiCreator.java

         * @param path The path of the dictionary file.
         * @param timestamp The timestamp of the dictionary file.
         * @return A new dictionary file.
         */
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new KuromojiFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java

         * @param timestamp The last modified timestamp of the file.
         * @return A new {@link StemmerOverrideFile} associated with the dictionary manager.
         */
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new StemmerOverrideFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/jcifs/smb/AuthenticationProvider.java

         */
        class AuthenticationMetadata {
            private final String username;
            private final String domain;
            private final AuthType authType;
            private final long timestamp;
            private final String clientAddress;
            private final String serverAddress;
    
            public AuthenticationMetadata(String username, String domain, AuthType authType, String clientAddress, String serverAddress) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/beans/converter/TimestampConverterTest.java

         */
        @Test
        public void testGetAsObjectAndGetAsString() throws Exception {
            final TimestampConverter converter = new TimestampConverter("yyyy/MM/dd HH:mm:ss");
            final java.sql.Timestamp result = (java.sql.Timestamp) converter.getAsObject("2008/12/31 12:34:56");
            System.out.println(result);
            assertThat(converter.getAsString(result), is("2008/12/31 12:34:56"));
        }
    
        /**
         * @throws Exception
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top