- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 23 for fileAttributes (0.08 seconds)
-
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
this.desiredAccess = desiredAccess; } /** * Set the file attributes for the created file * @param fileAttributes the fileAttributes to set */ public void setFileAttributes(final int fileAttributes) { this.fileAttributes = fileAttributes; } /** * Set the share access mode for the file * @param shareAccess the shareAccess to set */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 22.9K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.5K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
*/ @Override public final long getSize() { return getEndOfFile(); } /** * Get the file attributes * @return the fileAttributes */ public final int getFileAttributes() { return this.fileAttributes; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getAttributes() */ @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 15.4K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/InfoTest.java
SmbComQueryInformationResponse resp = new SmbComQueryInformationResponse(1000L) { }; java.lang.reflect.Field fileAttr = SmbComQueryInformationResponse.class.getDeclaredField("fileAttributes"); fileAttr.setAccessible(true); fileAttr.setInt(resp, 0xABCD); java.lang.reflect.Field lastWrite = SmbComQueryInformationResponse.class.getDeclaredField("lastWriteTime");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
i += 8; SMBUtil.writeInt8(allocSize, body, i); // AllocationSize i += 8; SMBUtil.writeInt8(eof, body, i); // EndOfFile i += 8; SMBUtil.writeInt4(attrs, body, i); // FileAttributes i += 4; i += 4; // Reserved2 System.arraycopy(fileId, 0, body, i, 16); // FileId i += 16; SMBUtil.writeInt4(0, body, i); // CreateContextsOffset i += 4;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
endOfFileField.setAccessible(true); assertEquals(512L, endOfFileField.get(response)); Field fileAttributesField = Smb2CloseResponse.class.getDeclaredField("fileAttributes"); fileAttributesField.setAccessible(true); assertEquals(0x01, fileAttributesField.get(response)); } } @Nested @DisplayName("Edge Cases and Boundary Tests")
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 26.9K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComOpenAndXResponseTest.java
void testSetFid() { response.fid = 123; assertEquals(123, response.fid); } @Test void testSetFileAttributes() { response.fileAttributes = 0x20; // ATTR_ARCHIVE assertEquals(0x20, response.fileAttributes); } @Test void testSetLastWriteTime() { long time = System.currentTimeMillis(); response.lastWriteTime = time;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.2K bytes - Click Count (0) -
cmd/os_windows.go
} name := syscall.UTF16ToString(data.FileName[0:]) if name == "" || name == "." || name == ".." { // Useless names continue } var typ os.FileMode // regular file switch { case data.FileAttributes&syscall.FILE_ATTRIBUTE_REPARSE_POINT != 0: // Reparse point is a symlink fi, err := os.Stat(pathJoin(dirPath, name)) if err != nil { // It got deleted in the meantime, not found
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 5K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFile.java
* * @param <T> the response type * @param th the tree handle * @param createDisposition the create disposition * @param createOptions the create options * @param fileAttributes the file attributes * @param desiredAccess the desired access flags * @param shareAccess the share access flags * @param first the first request to executeCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0) -
api/go1.txt
pkg syscall (windows-386), type ByHandleFileInformation struct pkg syscall (windows-386), type ByHandleFileInformation struct, CreationTime Filetime pkg syscall (windows-386), type ByHandleFileInformation struct, FileAttributes uint32 pkg syscall (windows-386), type ByHandleFileInformation struct, FileIndexHigh uint32 pkg syscall (windows-386), type ByHandleFileInformation struct, FileIndexLow uint32
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Aug 14 18:58:28 GMT 2013 - 1.7M bytes - Click Count (0)