Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for notimestamp (0.06 sec)

  1. android/pom.xml

            </plugin>
            <plugin>
              <artifactId>maven-javadoc-plugin</artifactId>
              <version>3.11.2</version>
              <configuration>
                <quiet>true</quiet>
                <notimestamp>true</notimestamp>
                <encoding>UTF-8</encoding>
                <docencoding>UTF-8</docencoding>
                <charset>UTF-8</charset>
                <additionalOptions>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  2. pom.xml

            </plugin>
            <plugin>
              <artifactId>maven-javadoc-plugin</artifactId>
              <version>3.11.2</version>
              <configuration>
                <quiet>true</quiet>
                <notimestamp>true</notimestamp>
                <encoding>UTF-8</encoding>
                <docencoding>UTF-8</docencoding>
                <charset>UTF-8</charset>
                <additionalOptions>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

            List<AvPair> pairs = new LinkedList<>();
            AvFlags flags1 = new AvFlags(0x11111111);
            AvFlags flags2 = new AvFlags(0x22222222);
            AvTimestamp timestamp = new AvTimestamp(new byte[8]);
            pairs.add(flags1);
            pairs.add(timestamp);
            pairs.add(flags2);
    
            assertEquals(3, pairs.size(), "Should start with 3 pairs");
    
            AvPairs.remove(pairs, AvPair.MsvAvFlags);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/ntlmssp/Type3MessageTest.java

            Type2Message type2 = new Type2Message(createMockContext(), flags, challenge, "TARGET");
    
            // Create target information with timestamp for NTLMv2
            List<AvPair> pairs = new LinkedList<>();
            pairs.add(new AvTargetName("TARGET"));
            pairs.add(new AvTimestamp(System.currentTimeMillis()));
            pairs.add(new AvFlags(0));
            pairs.add(new AvSingleHost(new byte[48])); // Dummy single host data
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java

            final Timestamp timestamp = toSqlTimestamp("10/9/7 11:49", Locale.JAPAN);
            assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss").format(timestamp), is("2010/09/07 11:49:00"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToTimestamp_MediumStyle() throws Exception {
            final Timestamp timestamp = toSqlTimestamp("2010/9/7 11:49:10", Locale.JAPAN);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

                }
            }
            final Date date = toDate(str, locale);
            if (date != null) {
                return new Timestamp(date.getTime());
            }
            final Timestamp timestamp = toSqlTimestampJdbcEscape(str);
            if (timestamp != null) {
                return timestamp;
            }
            throw new ParseRuntimeException(str);
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            }
    
            /**
             * Get the notification timestamp
             *
             * @return timestamp in milliseconds
             */
            public long getTimestamp() {
                return timestamp;
            }
    
            /**
             * Sets the notification timestamp.
             *
             * @param timestamp the timestamp value in FILETIME format (100-nanosecond intervals since January 1, 1601 UTC)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

        }
    
        public void test_login_ecs() {
            activityHelper.useEcsFormat = true;
            activityHelper.login(OptionalThing.empty());
            assertEquals(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

        protected String path;
    
        /** The timestamp when this dictionary file was created or last modified. */
        protected Date timestamp;
    
        /**
         * Creates a new DictionaryFile with the specified parameters.
         *
         * @param id the unique identifier for this dictionary file
         * @param path the file path of this dictionary
         * @param timestamp the timestamp of the dictionary file
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

                return attributes;
            }
    
            /**
             * Gets the creation timestamp of this cached item
             * @return the creation time
             */
            public long getCreationTime() {
                return creationTime;
            }
    
            /**
             * Gets the last access timestamp of this cached item
             * @return the last access time
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top