Examples of ByteSizeValue


Examples of org.elasticsearch.common.unit.ByteSizeValue

    public int getDeletedDocs() {
        return this.delDocCount;
    }

    public ByteSizeValue size() {
        return new ByteSizeValue(sizeInBytes);
    }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        public int getCoresPerSocket() {
            return coresPerSocket();
        }

        public ByteSizeValue cacheSize() {
            return new ByteSizeValue(cacheSize);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        Mem() {
        }

        public ByteSizeValue heapInit() {
            return new ByteSizeValue(heapInit);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        public ByteSizeValue getHeapInit() {
            return heapInit();
        }

        public ByteSizeValue heapMax() {
            return new ByteSizeValue(heapMax);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        public ByteSizeValue getHeapMax() {
            return heapMax();
        }

        public ByteSizeValue nonHeapInit() {
            return new ByteSizeValue(nonHeapInit);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        public ByteSizeValue getNonHeapInit() {
            return nonHeapInit();
        }

        public ByteSizeValue nonHeapMax() {
            return new ByteSizeValue(nonHeapMax);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

            out.writeLong(resident);
            out.writeLong(share);
        }

        public ByteSizeValue totalVirtual() {
            return new ByteSizeValue(totalVirtual);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        public ByteSizeValue getTotalVirtual() {
            return totalVirtual();
        }

        public ByteSizeValue resident() {
            return new ByteSizeValue(resident);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        public ByteSizeValue getResident() {
            return resident();
        }

        public ByteSizeValue share() {
            return new ByteSizeValue(share);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        long free = -1;
        long used = -1;

        public ByteSizeValue free() {
            return new ByteSizeValue(free);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.