- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 353 for timestamp (0.18 sec)
-
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.8K bytes - Viewed (0) -
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
internal/s3select/sql/funceval.go
tval1, err := d.Timestamp1.evalNode(r, tableAlias) if err != nil { return nil, err } if err = inferTypeAsTimestamp(tval1); err != nil { return nil, err } ts1, ok := tval1.ToTimestamp() if !ok { return nil, fmt.Errorf("%s() expects two timestamp arguments", sqlFnDateDiff) } tval2, err := d.Timestamp2.evalNode(r, tableAlias) if err != nil { return nil, err
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 13.2K bytes - Viewed (0) -
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: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
} @Test void testFileRename() throws Exception { long timestamp = System.currentTimeMillis(); // Use separate contexts for different operations CIFSContext createContext = createFreshContext(); String sourceFileName = "source_" + timestamp + ".txt"; String targetFileName = "target_" + timestamp + ".txt";Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
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: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 11.4K bytes - Viewed (0) -
compat/maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java
String qualifier = formatDate(timestamp, true) + '-' + buildNumber; version = version.substring(0, version.length() - SNAPSHOT.length()) + qualifier; return addSnapshotVersion(versioning, artifact.getExtension(), timestamp, version, buildNumber); } private static SnapshotVersion addSnapshotVersion( Versioning versioning, String extension, Date timestamp, String version, int buildNumber) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
this.text = text; } /** * Sets the timestamp of the suggest item. * @param timestamp The timestamp to set. */ public void setTimestamp(final ZonedDateTime timestamp) { this.timestamp = timestamp; } /** * Sets the query frequency of the suggest item. * @param queryFreq The query frequency to set. */Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 25.1K bytes - Viewed (0)