- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 106 for Gettid (0.08 sec)
-
src/main/java/jcifs/smb/SmbTreeImpl.java
*/ public SmbSessionImpl getSession () { return this.session.acquire(); } /** * @return the tid */ public int getTid () { return this.tid; } /** * @return the tree_num (monotonically increasing counter to track reconnects) */ public long getTreeNum () { return this.treeNum;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
this.andx.setFlags(getFlags()); this.andx.setFlags2(getFlags2()); this.andx.setTid(getTid()); this.andx.setPid(getPid()); this.andx.setUid(getUid()); this.andx.setMid(getMid()); this.andx.setUseUnicode(this.isUseUnicode()); if ( this.andx instanceof AndXServerMessageBlock ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Nov 28 10:56:27 UTC 2022 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
*/ @Override public final long getMid () { return this.mid; } /** * @param mid * the mid to set */ @Override public final void setMid ( long mid ) { this.mid = (int) mid; } /** * @return the tid */ public final int getTid () { return this.tid; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 32.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
for (final ACE ace : aces) { if (logger.isDebugEnabled()) { logger.debug("ACE:{}", ace); } processAllowedSIDs(file, ace.getSID(), ace.isAllow() ? sidAllowSet : sidDenySet); } responseData.addMetaData(SMB_ALLOWED_SID_ENTRIES, sidAllowSet.toArray(new SID[sidAllowSet.size()]));
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 23 01:54:36 UTC 2024 - 17.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
throw e; } } } else { SmbComReadAndX request = new SmbComReadAndX(th.getConfig(), fh.getFid(), this.fp, r, null); if ( this.largeReadX ) { request.setMaxCount(r & 0xFFFF); request.setOpenTimeout( ( r >> 16 ) & 0xFFFF); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 12:01:33 UTC 2020 - 18.5K bytes - Viewed (0) -
lib/wasm/wasm_exec.js
unlink(path, callback) { callback(enosys()); }, utimes(path, atime, mtime, callback) { callback(enosys()); }, }; } if (!globalThis.process) { globalThis.process = { getuid() { return -1; }, getgid() { return -1; }, geteuid() { return -1; }, getegid() { return -1; }, getgroups() { throw enosys(); }, pid: -1, ppid: -1, umask() { throw enosys(); }, cwd() { throw enosys(); },
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Aug 30 19:15:21 UTC 2024 - 16.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:14:04 UTC 2021 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
} /** * Get the RID * * This is the last subauthority identifier * * @return the RID */ @Override public int getRid () { if ( getType() == SID_TYPE_DOMAIN ) throw new IllegalArgumentException("This SID is a domain sid"); return this.sub_authority[ this.sub_authority_count - 1 ]; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
internal/grid/connection.go
} // A Connection is a remote connection. // There is no distinction externally whether the connection was initiated from // this server or from the remote. type Connection struct { // NextID is the next ID that can be used (atomic). NextID uint64 // LastPong is last pong time (atomic) // Only valid when StateConnected. LastPong int64 // State of the connection (atomic) state State // Non-atomic
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 46.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
return INGEST; } if (name.startsWith(SCRIPT.getId())) { return SCRIPT; } if (name.startsWith(WEBAPP.getId())) { return WEBAPP; } if (name.startsWith(THUMBNAIL.getId())) { return THUMBNAIL; } if (name.startsWith(CRAWLER.getId())) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0)