- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 160 for getAttributes (0.25 sec)
-
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
public final int getFileAttributes() { return this.fileAttributes; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getAttributes() */ @Override public final int getAttributes() { return getFileAttributes(); } /** * Get the unique file identifier * @return the fileId */ public final byte[] getFileId() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetServerEnum2Response.java
@Override public int getType() { return (this.type & 0x80000000) != 0 ? SmbConstants.TYPE_WORKGROUP : SmbConstants.TYPE_SERVER; } @Override public int getAttributes() { return SmbConstants.ATTR_READONLY | SmbConstants.ATTR_DIRECTORY; } /** * {@inheritDoc} * * @see jcifs.smb.FileEntry#getFileIndex() */Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* <code>setAttributes( getAttributes() & ~ATTR_READONLY )</code>. * * @throws CIFSException if an error occurs modifying the resource */ void setReadWrite() throws CIFSException; /** * Make this file read-only. This is shorthand for <code>setAttributes( * getAttributes() | ATTR_READ_ONLY )</code>. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 28K bytes - Viewed (1) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java
} @Override public int getType() { return (type & 0x80000000) != 0 ? SmbFile.TYPE_WORKGROUP : SmbFile.TYPE_SERVER; } @Override public int getAttributes() { return SmbFile.ATTR_READONLY | SmbFile.ATTR_DIRECTORY; } @Override public long createTime() { return 0L; } @OverrideRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
* DirContext context; * UnknownHostException uhe = null; * * try { * context = new InitialDirContext(); * for ( ;; ) { * try { * Attributes attributes = context.getAttributes( * "dns:/_ldap._tcp.dc._msdcs." + name, * new String[] { "SRV" } * ); * return name; * } catch (NameNotFoundException nnfe) { * uhe = new UnknownHostException(nnfe.getMessage());Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
} /** * Gets the filename. * * @return the filename */ public String getFilename() { return this.filename; } @Override public int getAttributes() { return this.extFileAttributes; } @Override public long createTime() { return this.creationTime; } @Override public long lastModified() {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
private final String nameidSPNameQualifier; /** * Constructor. * @param auth The SAML authentication. */ public SamlCredential(final Auth auth) { attributes = auth.getAttributes(); nameId = auth.getNameId(); nameIdFormat = auth.getNameIdFormat(); sessionIndex = auth.getSessionIndex(); nameidNameQualifier = auth.getNameIdNameQualifier();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java
assertEquals(size, fileInfo.getSize()); assertEquals(lastModified, fileInfo.getLastModified()); assertEquals(isDirectory, fileInfo.isDirectory()); assertEquals(attributes, fileInfo.getAttributes()); assertEquals(creationTime, fileInfo.getCreationTime()); assertEquals(lastAccessTime, fileInfo.getLastAccessTime()); } @Test public void testUpdateExistingChild() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java
public String getName() { return name; } @Override public int getType() { return 0; } @Override public int getAttributes() { return 0; } @Override public long createTime() { return 0; } @Override public long lastModified() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
return filename; } @Override public int getType() { return SmbFile.TYPE_FILESYSTEM; } @Override public int getAttributes() { return extFileAttributes; } @Override public long createTime() { return creationTime; } @OverrideRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0)