- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 462 for Attributes (0.1 sec)
-
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java
/** * Sets the attributes of the XML node. * <p> * The provided map will be copied to ensure immutability. * * @param attributes the map of attribute names to values * @return this builder instance */ public Builder attributes(Map<String, String> attributes) { this.attributes = attributes; return this; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jul 19 11:09:56 UTC 2025 - 18.2K bytes - Viewed (0) -
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/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java
}, this::asListHtml); } } /** * Validates group attributes using LDAP manager. * * @param attributes the attributes to validate * @param throwError the error handler */ public static void validateAttributes(final Map<String, String> attributes, final Consumer<VaMessenger<FessMessages>> throwError) { ComponentUtil.getLdapManager()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.2K 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)