- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for setTimestamp (0.13 sec)
-
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
*/ 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) */ public void setTimestamp(long timestamp) { this.timestamp = timestamp; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java
String version = null; Snapshot snapshot = versioning.getSnapshot(); if (snapshot != null) { if (snapshot.getTimestamp() != null && snapshot.getBuildNumber() > 0) { String newVersion = snapshot.getTimestamp() + "-" + snapshot.getBuildNumber(); version = baseVersion.replace(Artifact.SNAPSHOT_VERSION, newVersion); } else {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessNotification.java
/** * Gets the notification timestamp. * * @return the timestamp */ public long getTimestamp() { return timestamp; } /** * Sets the timestamp. * * @param timestamp the timestamp */ public void setTimestamp(long timestamp) { this.timestamp = timestamp; } /** * Gets the list of new IP addresses.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
// Set event type based on message type WitnessEventType eventType = convertMessageTypeToEventType(message.getType()); notification.setEventType(eventType); notification.setTimestamp(message.getTimestamp()); // Set resource name based on message content if (message.getResourceName() != null) { notification.setResourceName(message.getResourceName());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
Matcher matcher = Artifact.VERSION_FILE_PATTERN.matcher(artifact.getVersion()); if (matcher.matches()) { Snapshot snapshot = new Snapshot(); snapshot.setTimestamp(matcher.group(2)); try { snapshot.setBuildNumber(Integer.parseInt(matcher.group(3)));
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 25K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvTimestampTest.java
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() { long expectedTimestamp = 123456789012345L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessNotificationTest.java
long afterCreation = System.currentTimeMillis(); assertTrue(newNotification.getTimestamp() >= beforeCreation); assertTrue(newNotification.getTimestamp() <= afterCreation); } @Test void testResourceStateConstants() { assertEquals(0x00000000, WitnessNotification.WITNESS_RESOURCE_STATE_UNKNOWN);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/AuthenticationProvider.java
} public String getDomain() { return domain; } public AuthType getAuthType() { return authType; } public long getTimestamp() { return timestamp; } public String getClientAddress() { return clientAddress; } public String getServerAddress() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 3.9K bytes - Viewed (0) -
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)