- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 128 for fsid (0.2 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComLockingAndX.java
return new LockingAndXRange(this.largeFile); } @Override public String toString () { return new String( "SmbComLockingAndX[" + super.toString() + ",fid=" + this.fid + ",typeOfLock=" + this.typeOfLock + ",newOplockLevel=" + this.newOpLockLevel + "]"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
} }); sambaHelper.init(); assertEquals("1test user", sambaHelper.getAccountId(USER_SID)); } private static final SID USER_SID = new SID() { @Override public SID getDomainSid() { return null; } @Override public int getRid() { return 0; } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:55:43 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComClose.java
private int fid; private long lastWriteTime; /** * * @param config * @param fid * @param lastWriteTime */ public SmbComClose ( Configuration config, int fid, long lastWriteTime ) { super(config, SMB_COM_CLOSE); this.fid = fid; this.lastWriteTime = lastWriteTime; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComWrite.java
class SmbComWrite extends ServerMessageBlock { private int fid, count, offset, remaining, off; private byte[] b; SmbComWrite() { super(); command = SMB_COM_WRITE; } SmbComWrite( int fid, int offset, int remaining, byte[] b, int off, int len ) { this.fid = fid; this.count = len; this.offset = offset;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
private long initialSize; /** * @param cfg * @param fid * @param tree * @param unc * @param options * @param attrs * @param access * @param flags * @param initialSize */ public SmbFileHandleImpl ( Configuration cfg, byte[] fid, SmbTreeHandleImpl tree, String unc, int flags, int access, int attrs, int options, long initialSize ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (1) -
src/main/java/jcifs/internal/dtyp/ACE.java
* "The .NET Developer's Guide to Windows Security" (which is also * available online). * <p> * Direct ACEs are evaluated first in order. The SID of the user performing * the operation and the desired access bits are compared to the SID * and access mask of each ACE. If the SID matches, the allow/deny flags * and access mask are considered. If the ACE is a "deny" * ACE and <i>any</i> of the desired access bits match bits in the access
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
import jcifs.internal.util.SMBUtil; import jcifs.smb.SID; /** * Internal use only * * @internal */ public class SecurityDescriptor implements SecurityInfo { /** * Descriptor type */ private int type; /** * ACEs */ private ACE[] aces; private SID ownerUserSid, ownerGroupSid; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/SidResolver.java
/** * @param tc * @param authorityServerName * @param domsid * @param rid * @param flags * @return the SIDs of the group members * @throws CIFSException */ SID[] getGroupMemberSids ( CIFSContext tc, String authorityServerName, SID domsid, int rid, int flags ) throws CIFSException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComClose.java
class SmbComClose extends ServerMessageBlock { private int fid; private long lastWriteTime; SmbComClose( int fid, long lastWriteTime ) { this.fid = fid; this.lastWriteTime = lastWriteTime; command = SMB_COM_CLOSE; } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { writeInt2( fid, dst, dstIndex ); dstIndex += 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipe.java
private int fid; /** * * @param config * @param pipeName * @param fid */ public TransPeekNamedPipe ( Configuration config, String pipeName, int fid ) { super(config, SMB_COM_TRANSACTION, TRANS_PEEK_NAMED_PIPE); this.name = pipeName; this.fid = fid; this.timeout = 0xFFFFFFFF;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0)