- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for createName (0.06 sec)
-
src/main/java/jcifs/internal/fscc/FileBasicInfo.java
dstIndex += 4; dstIndex += 4; return dstIndex - start; } @Override public String toString() { return ("SmbQueryFileBasicInfo[" + "createTime=" + new Date(this.createTime) + ",lastAccessTime=" + new Date(this.lastAccessTime) + ",lastWriteTime=" + new Date(this.lastWriteTime) + ",changeTime=" + new Date(this.changeTime) + ",attributes=0x"
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java
class SmbQueryFileBasicInfo implements Info { long createTime; long lastAccessTime; long lastWriteTime; long changeTime; int attributes; @Override public int getAttributes() { return attributes; } @Override public long getCreateTime() { return createTime; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbBasicFileInfoTest.java
private final int attributes; private final long createTime; private final long lastWriteTime; private final long lastAccessTime; private final long size; TestInfo(int attributes, long createTime, long lastWriteTime, long lastAccessTime, long size) { this.attributes = attributes; this.createTime = createTime; this.lastWriteTime = lastWriteTime;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
this.path = path; this.createGuid = guid; this.fileId = Arrays.copyOf(fileId, 16); this.type = type; this.timeout = timeout; this.createTime = System.currentTimeMillis(); this.lastAccessTime = createTime; this.leaseKey = leaseKey; this.reconnecting = false; } /** * Check if this handle has expired * @return true if expired */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2SetFileInformation.java
private final int fid; private final int attributes; private final long createTime, lastWriteTime; Trans2SetFileInformation(final int fid, final int attributes, final long createTime, final long lastWriteTime) { this.fid = fid; this.attributes = attributes; this.createTime = createTime; this.lastWriteTime = lastWriteTime; command = SMB_COM_TRANSACTION2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/FileEntryTest.java
when(mock.getAttributes()).thenReturn(128); when(mock.createTime()).thenReturn(1_500L); when(mock.lastModified()).thenReturn(1_800L); when(mock.length()).thenReturn(100L); assertEquals("test.txt", mock.getName()); assertEquals(1, mock.getType()); assertEquals(128, mock.getAttributes()); assertEquals(1_500L, mock.createTime()); assertEquals(1_800L, mock.lastModified());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2SetFileInformationTest.java
private final int fid = 123; private final int attributes = 1; private final long createTime = System.currentTimeMillis(); private final long lastWriteTime = System.currentTimeMillis(); @BeforeEach void setUp() { trans2SetFileInformation = new Trans2SetFileInformation(fid, attributes, createTime, lastWriteTime); } @Test void testConstructor() { // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java
* @param attributes the file attributes to set * @param createTime the file creation time * @param lastWriteTime the last write time * @param lastAccessTime the last access time */ public Trans2SetFileInformation(final Configuration config, final int fid, final int attributes, final long createTime, final long lastWriteTime, final long lastAccessTime) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbShareInfoTest.java
assertEquals(expResult, result); } /** * Test of createTime method, of class SmbShareInfo. */ @Test void testCreateTime() { SmbShareInfo instance = new SmbShareInfo(); long expResult = 0L; long result = instance.createTime(); assertEquals(expResult, result); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/FileEntry.java
* * @return the file attributes */ int getAttributes(); /** * Gets the creation time. * * @return the creation time in milliseconds since epoch */ long createTime(); /** * Gets the last modified time. * * @return the last modified time in milliseconds since epoch */ long lastModified(); /** * Gets the file size. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 881 bytes - Viewed (0)