- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for SetFree (0.1 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java
this.treeRoot = root; } // ---------------------------------------------------------------------------- public MetadataTreeNode getTree() { return treeRoot; } // ---------------------------------------------------------------------------- public void setTree(MetadataTreeNode root) { this.treeRoot = root; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
@Override public long getInitialSize () { return this.initialSize; } /** * {@inheritDoc} * * @see jcifs.SmbFileHandle#getTree() */ @Override public SmbTreeHandleImpl getTree () { return this.tree.acquire(); } /** * {@inheritDoc} * * @see jcifs.SmbFileHandle#isValid() */ @Override
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/jcifs/SmbFileHandle.java
package jcifs; /** * Handle to an open file * * @author mbechler * */ public interface SmbFileHandle extends AutoCloseable { /** * @return the tree */ SmbTreeHandle getTree (); /** * @return whether the file descriptor is valid */ boolean isValid (); /** * @param lastWriteTime * @throws CIFSException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/AllocInfo.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; interface AllocInfo { long getCapacity(); long getFree();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 944 bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileFsFullSizeInformation.java
return FS_FULL_SIZE_INFO; } @Override public long getCapacity () { return this.alloc * this.sectPerAlloc * this.bytesPerSect; } @Override public long getFree () { return this.free * this.sectPerAlloc * this.bytesPerSect; } /** * {@inheritDoc} * * @see jcifs.Decodable#decode(byte[], int, int) */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.7K bytes - Viewed (0) -
docs/sts/client_grants/sts_element.py
# -*- coding: utf-8 -*- from xml.etree import cElementTree from xml.etree.cElementTree import ParseError if hasattr(cElementTree, 'ParseError'): _ETREE_EXCEPTIONS = (ParseError, AttributeError, ValueError, TypeError) else: _ETREE_EXCEPTIONS = (SyntaxError, AttributeError, ValueError, TypeError) _STS_NS = {'sts': 'https://sts.amazonaws.com/doc/2011-06-15/'} class STSElement(object):
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileFsSizeInformation.java
return FS_SIZE_INFO; } @Override public long getCapacity () { return this.alloc * this.sectPerAlloc * this.bytesPerSect; } @Override public long getFree () { return this.free * this.sectPerAlloc * this.bytesPerSect; } /** * {@inheritDoc} * * @see jcifs.Decodable#decode(byte[], int, int) */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
if ( len <= 0 ) { return 0; } long start = this.fp; try ( SmbFileHandleImpl fh = ensureOpen(); SmbTreeHandleImpl th = fh.getTree() ) { int r, n; SmbComReadAndXResponse response = new SmbComReadAndXResponse(th.getConfig(), b, off); do { r = len > this.readSize ? this.readSize : len;
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/main/java/jcifs/internal/AllocInfo.java
public interface AllocInfo extends FileSystemInformation { /** * * @return total capacity */ long getCapacity (); /** * * @return free space */ long getFree ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0)