- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 74 for getAttributes (0.54 sec)
-
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java
class SmbQueryFileBasicInfo implements Info { long createTime; long lastAccessTime; long lastWriteTime; long changeTime; int attributes; public int getAttributes() { return attributes; } public long getCreateTime() { return createTime; } public long getLastWriteTime() { return lastWriteTime; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
final Node attr = node.getAttributes().getNamedItem(attrName); if (attr == null || !attrValue.equals(attr.getNodeValue())) { return false; } } if (id == null) { if (css == null) { return true; } final Node classAttr = node.getAttributes().getNamedItem("class");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
public final int getFileAttributes () { return this.fileAttributes; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getAttributes() */ @Override public int getAttributes () { return getFileAttributes(); } /** * @return the fileType */ public final int getFileType () { return this.fileType;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Info.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; interface Info { int getAttributes(); long getCreateTime(); long getLastWriteTime(); long getSize();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 995 bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbBasicFileInfo.java
*/ package jcifs.internal; /** * * @author mbechler * */ public interface SmbBasicFileInfo { /** * * @return file attributes */ int getAttributes (); /** * * @return file create time */ long getCreateTime (); /** * * @return file last write time */ long getLastWriteTime ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacGroup.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
return this.fileAttributes; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getAttributes() */ @Override public final int getAttributes () { return getFileAttributes(); } /** * @return the fileId */ public final byte[] getFileId () { return this.fileId;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exentity/Group.java
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 public Map<String, Object> toSource() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/FileEntry.java
package jcifs.smb1.smb1; public interface FileEntry { String getName(); int getType(); int getAttributes(); long createTime(); long lastModified(); long length();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 191 bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComQueryInformationResponse.java
SmbComQueryInformationResponse( long serverTimeZoneOffset ) { this.serverTimeZoneOffset = serverTimeZoneOffset; command = SMB_COM_QUERY_INFORMATION; } public int getAttributes() { return fileAttributes; } public long getCreateTime() { return lastWriteTime + serverTimeZoneOffset; } public long getLastWriteTime() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.6K bytes - Viewed (0)