- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 153 for getAttribute (0.05 sec)
-
src/main/java/org/codelibs/fess/opensearch/user/exentity/Group.java
public void setId(final String id) { asDocMeta().id(id); } @Override public String toString() { return "Group [name=" + name + "]"; } public Map<String, String> getAttributes() { return attributes; } public void setAttributes(final Map<String, String> attributes) { this.attributes = attributes; } @Override
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/FileEntry.java
* Gets the type of the entry. * * @return the entry type */ int getType(); /** * Gets the file attributes. * * @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. *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 881 bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy
} return element } protected Element createNode(Object name, Map attributes) { Element element = createNode(name) attributes.each {key, value -> element.setAttribute(key as String, value as String) } return element } protected Element createNode(Object name, Map attributes, Object value) { Element element = createNode(name, attributes)Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
assertEquals(0, response.getFileAttributes()); } @Test @DisplayName("getAttributes should return same as getFileAttributes") void testGetAttributes() { assertEquals(response.getFileAttributes(), response.getAttributes()); } @Test @DisplayName("getFileId should return the file ID passed in constructor")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java
public final int getExtFileAttributes() { return this.extFileAttributes; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getAttributes() */ @Override public int getAttributes() { return getExtFileAttributes(); } /** * Gets the device state. * * @return the deviceState */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java
assertEquals(BasicFileInformation.FILE_STANDARD_INFO, fileStandardInfo.getFileInformationLevel()); } @Test @DisplayName("Test getAttributes returns 0") void testGetAttributes() { assertEquals(0, fileStandardInfo.getAttributes()); } @Test @DisplayName("Test getCreateTime returns 0") void testGetCreateTime() { assertEquals(0L, fileStandardInfo.getCreateTime());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComQueryInformationResponse.java
SmbComQueryInformationResponse(final long serverTimeZoneOffset) { this.serverTimeZoneOffset = serverTimeZoneOffset; command = SMB_COM_QUERY_INFORMATION; } @Override public int getAttributes() { return fileAttributes; } @Override public long getCreateTime() { return lastWriteTime + serverTimeZoneOffset; } @Override public long getLastWriteTime() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockTableRenderer.java
td = document.createElement("td"); tr.appendChild(td); Element link = document.createElement("link"); td.appendChild(link); link.setAttribute("linkend", blockDoc.getId()); Element literal = document.createElement("literal"); link.appendChild(literal); literal.appendChild(document.createTextNode(blockDoc.getName()));Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyTableRenderer.java
td = document.createElement("td"); tr.appendChild(td); Element link = document.createElement("link"); td.appendChild(link); link.setAttribute("linkend", propDoc.getId()); Element literal = document.createElement("literal"); link.appendChild(literal); literal.appendChild(document.createTextNode(propDoc.getName()));Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* with {@code setAttributes()} will be a system file */ public static final int ATTR_SYSTEM = 0x04; /** * A file with this bit on as returned by {@code getAttributes()} is * a volume */ public static final int ATTR_VOLUME = 0x08; /** * A file with this bit on as returned by {@code getAttributes()} is * a directoryRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0)