- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 175 for getDir (0.11 sec)
-
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) -
src/main/java/jcifs/smb/Kerb5Context.java
* * @see jcifs.smb.SSPContext#calculateMIC(byte[]) */ @Override public byte[] calculateMIC ( byte[] data ) throws CIFSException { try { return this.gssContext.getMIC(data, 0, data.length, new MessageProp(false)); } catch ( GSSException e ) { throw new CIFSException("Failed to calculate MIC", e); } } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Aug 02 08:22:42 UTC 2018 - 13.9K 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) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataGraph.java
} MetadataGraphNode node = new MetadataGraphNode(md); addNode(node); return node; } /** * getter */ public MetadataGraphNode getEntry() { return entry; } /** * getter */ public Collection<MetadataGraphNode> getNodes() { return nodes; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LayeredOptions.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java
public int getMaximalAccess () { return this.maximalAccess; } /** * {@inheritDoc} * * @see jcifs.internal.TreeConnectResponse#getTid() */ @Override public final int getTid () { return getTreeId(); } @Override public boolean isValidTid () { return getTreeId() != -1; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon May 23 14:35:20 UTC 2022 - 6.1K 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) -
src/test/java/jcifs/tests/OplockTests.java
tree.send(new SmbComClose(sess.getConfig(), resp2.getFid(), 0L)); } } } finally { if ( resp != null && !trans.isDisconnected() ) { tree.send(new SmbComClose(sess.getConfig(), resp.getFid(), 0L)); } } } else {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 6.1K bytes - Viewed (0) -
docs/tr/docs/deployment/index.md
# Deployment (Yayınlama) **FastAPI** uygulamasını deploy etmek oldukça kolaydır. ## Deployment Ne Anlama Gelir? Bir uygulamayı **deploy** etmek (yayınlamak), uygulamayı **kullanıcılara erişilebilir hale getirmek** için gerekli adımları gerçekleştirmek anlamına gelir.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu May 23 22:46:42 UTC 2024 - 1.4K bytes - Viewed (0) -
docs/tr/docs/tutorial/static-files.md
**FastAPI**, geliştiricilere kolaylık sağlamak amacıyla `starlette.staticfiles`'ı `fastapi.staticfiles` olarak sağlar. Ancak `StaticFiles` sınıfı aslında doğrudan Starlette'den gelir. /// ### Bağlama (Mounting) Nedir? "Bağlamak", belirli bir yola tamamen "bağımsız" bir uygulama eklemek anlamına gelir ve ardından tüm alt yollara gelen istekler bu uygulama tarafından işlenir.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.8K bytes - Viewed (0)