- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 166 for Attributes (0.14 sec)
-
src/test/java/jcifs/smb/DosFileFilterTest.java
* Parameterized test for the {@link DosFileFilter#accept(SmbFile)} method. * This test covers various combinations of file attributes and filter attributes * to ensure the bitwise logic is correctly implemented. * * @param filterAttributes The attributes set for the filter. * @param fileAttributes The attributes of the mock file. * @param expectedResult The expected outcome of the accept method.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSidAttributes.java
this.id = id; this.attributes = attributes; } /** * Gets the Security Identifier. * * @return the SID associated with this instance */ public SID getId() { return this.id; } /** * Gets the attribute flags associated with the SID. * * @return the attribute flags */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/DosFileFilter.java
this.wildcard = wildcard; this.attributes = attributes; } /** * This returns true if the file's attributes contain any of the attributes * specified for this filter. The wildcard has no influence on this * method as the server should have performed that filtering already. The * attributes are asserted here only because server file systems may not
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
this.attributes = attributes; this.creationTime = creationTime; this.lastAccessTime = lastAccessTime; } /** * Check if this file info matches the given attributes * * @param otherSize size to compare * @param otherLastModified last modified time to compare * @param otherAttributes attributes to compare
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacGroupTest.java
// Verify that the constructor correctly sets the id and attributes assertEquals(mockSid, pacGroup.getId(), "The SID should be correctly set in the constructor."); assertEquals(attributes, pacGroup.getAttributes(), "The attributes should be correctly set in the constructor."); } /** * Test method for {@link jcifs.pac.PacGroup#getId()}. */ @Test void testGetId() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacGroup.java
* Contains a group SID and associated attributes. */ public class PacGroup { private final SID id; private final int attributes; /** * Constructs a PAC group entry. * @param id the group's Security Identifier (SID) * @param attributes the group membership attributes */ public PacGroup(final SID id, final int attributes) { this.id = id;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBasicInfo.java
* @param change last change time * @param attributes file attributes */ public FileBasicInfo(final long create, final long lastAccess, final long lastWrite, final long change, final int attributes) { this.createTime = create; this.lastAccessTime = lastAccess; this.lastWriteTime = lastWrite; this.changeTime = change; this.attributes = attributes; } /** * {@inheritDoc}
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/DosFileFilter.java
this.wildcard = wildcard; this.attributes = attributes; } /* This returns true if the file's attributes contain any of the attributes * specified for this filter. The wildcard has no influence on this * method as the server should have performed that filtering already. The * attributes are asserted here only because server file systems may not
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacSidAttributesTest.java
*/ @Test void testConstructor() { // Verify that the id and attributes are correctly set by the constructor assertEquals(sidMock, pacSidAttributes.getId(), "The SID should match the one provided in the constructor."); assertEquals(attributes, pacSidAttributes.getAttributes(), "The attributes should match the ones provided in the constructor."); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.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;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0)