- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for getCapacity (0.18 sec)
-
src/main/java/jcifs/internal/fscc/FileFsFullSizeInformation.java
*/ @Override public byte getFileSystemInformationClass () { 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; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/AllocInfo.java
* License along with this library; if not, write to the Free Software * 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/AllocInfo.java
/** * * @author mbechler * */ 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) -
src/main/java/jcifs/internal/fscc/FileFsSizeInformation.java
*/ @Override public byte getFileSystemInformationClass () { 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; }
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/internal/fscc/SmbInfoAllocation.java
*/ @Override public byte getFileSystemInformationClass () { return FileSystemInformation.SMB_INFO_ALLOCATION; } @Override public long getCapacity () { return this.alloc * this.sectPerAlloc * this.bytesPerSect; } @Override public long getFree () { return this.free * this.sectPerAlloc * this.bytesPerSect; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java
class SmbInfoAllocation implements AllocInfo { long alloc; // Also handles SmbQueryFSSizeInfo long free; int sectPerAlloc; int bytesPerSect; public long getCapacity() { return alloc * sectPerAlloc * bytesPerSect; } public long getFree() { return free * sectPerAlloc * bytesPerSect; } public String toString() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java
length = 0; deferred = this; } public int getIndex() { return index; } public void setIndex(int index) { this.index = index; } public int getCapacity() { return buf.length - start; } public int getTailSpace() { return buf.length - index; } public byte[] getBuffer() { return buf; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
} public int getIndex () { return this.index; } public void setIndex ( int index ) { this.index = index; } public int getCapacity () { return this.buf.length - this.start; } public int getTailSpace () { return this.buf.length - this.index; } public byte[] getBuffer () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.6K bytes - Viewed (0) -
common-protos/k8s.io/api/storage/v1alpha1/generated.proto
import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto"; // Package-wide variables from generator "generated". option go_package = "k8s.io/api/storage/v1alpha1"; // CSIStorageCapacity stores the result of one CSI GetCapacity call. // For a given StorageClass, this describes the available capacity in a // particular topology segment. This can be used when considering where to // instantiate new PersistentVolumes. //
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 9.4K bytes - Viewed (0) -
common-protos/k8s.io/api/storage/v1beta1/generated.proto
// +patchMergeKey=name // +patchStrategy=merge repeated CSINodeDriver drivers = 1; } // CSIStorageCapacity stores the result of one CSI GetCapacity call. // For a given StorageClass, this describes the available capacity in a // particular topology segment. This can be used when considering where to // instantiate new PersistentVolumes. //
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24.9K bytes - Viewed (0)