- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for setTimestamp (0.33 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) -
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) -
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) -
src/main/java/jcifs/ntlmssp/av/AvTimestamp.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
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)