The capacity tag has no wiki summary.
0
votes
0answers
7 views
Fritz Box Internet Capacity distributed on Computer [migrated]
I want to look in the Admin Panel of Fritz Box (version 5.50), which computer is consuming how much internet capacity.
I only found a statistic, where you can look how much internet capacity was used ...
1
vote
1answer
47 views
OutOfmemory error when creating ArrayBlockingQueue with Integer.MAX_VALUE entries
I have been using LinkedBlockingQueue, and recently changed this to ArrayBlockingQueue due to slow insertion performance. I got a significant performance improvement after that. However, my code ...
1
vote
1answer
50 views
Dynamic CRM 2011 Online Capacity for Big Database
We have our own built-in CRM, but we are planning to migrate to Dynamic CRM Online. Functionality wise we have no problems, however, our system will have Millions of Contact Record, each of them can ...
0
votes
1answer
90 views
HDFS capacity mismatch
I'm doing some test on Hadoop and the HDFS is almost full after those tests. So I deleted a lot of test files recursively but the released space is not as much as I expected.
Running "hadoop fs -du ...
1
vote
1answer
49 views
Increase Java's Computational Abilities
So I'm not sure exactly if this is a problem of Eclipse, Java, or my computer. What I'm trying to do is basically 2^57885161-1. But, sadly, all that Eclipse outputs is "Infinity". My deduction is ...
71
votes
10answers
3k views
Why start an ArrayList with an initial capacity?
The usual constructor of ArrayList is:
ArrayList<?> list = new ArrayList<>();
But there is also an overloaded constructor with a parameter for its initial capacity:
ArrayList<?> ...
0
votes
0answers
64 views
LoadRunner TruClient cons
Anyone gone from using regular http protocol scripting to TruClient scripting experienced some issues? I have red that i.e. the controllers and loadgenerators need to be "pimped up" a lot to support ...
1
vote
0answers
50 views
increase string capacity
problem with string capacity when parsing url if the capacity more than 35000bytes
NSString showing null value.
can anyone help me how to resolve this issue.is there any way to increase string ...
1
vote
3answers
322 views
Dynamic Array Functions in C - setting capacity and creating a larger array
I'm building functions for a dynamic array in C. For the most part, they seem to be working fine, until the array's capacity needs to be expanded. I seem to be having two problems with my function ...
0
votes
3answers
83 views
Does Clearing an ArrayList preserve its Capacity
As the title mentions, if I create an ArrayList with initial capacity 500 and then clear it after some time will its capacity still be 500 ? or do I need to re-init it for that ?
0
votes
3answers
173 views
Why HashMap initial capacity is not properly handled by the library?
To create HashMap/HashSet for N elements, we generally donew HashMap((int)(N/0.75F)+1) which is annoying.
Why the library has not taken care of this in the first place and allows initialization ...
1
vote
1answer
60 views
ArrayBlockingQueue exceeds given capacity
I've written program solving bounded producer & consumer problem. While constructing ArrayBlockingQueue I defined capacity 100. I'm using methods take and put inside threads. And I've noticed ...
0
votes
3answers
103 views
java automatically doubling array size
trying to initialize my array at 1 and have it double every time it's input fills up. this is what i have right now
int max = 1;
PhoneRecord[] records = new PhoneRecord[max];
int numRecords = ...
1
vote
1answer
224 views
why hadoop capacity scheduler uses 200% of Capacity
I encountered the same problem on our cluster and returned to my pc to do some simple experiments hoping to figure it out.I configured hadoop in Pseudo-distributed mode and used the default ...
0
votes
0answers
16 views
Is there an application which graphically displays utilization ratio / capacity of various PC buses?
Is there a Win32 or GNU/Linux application which graphically displays current and historical utilization of each PC bus with respect to its capacity/bandwidth? (i.e., AGP, PCI, PCIe, FSB, memory)
If ...
1
vote
1answer
869 views
I/O Disk Drive Calculations
So I am studying for an up and coming exam, one of the questions involves calculating various disk drive properties. I have spent a fair while researching sample questions and formula but because I'm ...
0
votes
0answers
95 views
DVD+RW tools and calculating DVD capacity on Linux
I writing script to burn DVDs using DVD+RW-tools. Version 7.1. I am aware the latest version will let you know about crossing sessions, but I would like to find a way to accurately load a DVD and read ...
0
votes
1answer
121 views
How many remote EJB clients can a single Java EE server handle?
We have a situation where there are around 450 remote EJB clients that need to connect to a Java EE server (OpenEJB 3.1.4 container). No HTTP server is present.
We've noticed that after a number of ...
0
votes
0answers
40 views
Decide on number of JVMs on one machine [closed]
Lets say, CPU and RAM on a production host allows more than one JVM (server instances) to run in parallel.
1) How do you arrive at the number of JVMs?
2) We haven't increased CPU or memory. Still, ...
1
vote
0answers
106 views
Capacity planning for an enterprise software application [closed]
If you had to do capacity planning and hardware sizing "BEFORE" you had a chance to actually code and test the application (typically while you are defining solution architecture), how would you do ...
0
votes
0answers
162 views
How to arrive at CPU recommendation based on concurrent users requirement
As part of capacity planning exercise for an enterprise java web application to suggest CPU types, the starting point is concurrent system users (usually business provides this number). For that I ...
0
votes
4answers
192 views
ArrayList Capacity, what is better? c#
I have an input which is about 450 today, and it might increase in the future. (Sometimes it is run with less than 450, maybe 100 or 20)
Is it better for me to:
not set capacity
set capacity low ...
0
votes
2answers
1k views
Mysql capacity to handle billions of rows
I have this machine: Core 2 CPU 6600, 4GB, 64 bit system, Windows VISTA.
I am designing a system with 10 billion rows, this table has a foreign key to another table, which should contains 10x10 ...
0
votes
3answers
6k views
Request-URI Too Large
Got this error on a big $_GET query in size ~9 000 symbols (they are divided into ~10 variables).
Request-URI Too Large
The requested URL's length exceeds the capacity limit for this server.
What ...
2
votes
2answers
131 views
MAGIC number in Android google io 2011 java source
Below code grabbed from google io open source.
com.google.android.apps.iosched.util.Lists.java
...
-2
votes
3answers
332 views
C# Text-based game project [closed]
I'm creating a text-based game that will allow the player to have a weight capacity. I have an item class (Still setting up) that right now has a default weight value of 1 for every Item. I want some ...
2
votes
4answers
112 views
C# List<GenericClass>(100) Construction Principles
If I do the following:
List<GenericClass> listObj = new List<GenericClass>(100);
// Do I need this part too?
for (int i = 0; i < 100; i++)
{
listObj[i] = new GenericClass();
}
...
1
vote
1answer
287 views
ActiveMQ network of brokers increased latency
I have configured an ActiveMQ network of brokers, which seems to work fine, function wise.
However, the capacity of messages traveling from a producer which is connectes to broker a, to a consumer ...
1
vote
2answers
676 views
By how much does vector::resize increase capacity?
As far as I know the C++ standard does not specify exactly how vector capacity is increased when vector::resize requires an increase. But is there a "typical" implementation?
Specifically: I don't ...
0
votes
1answer
238 views
Why does StringBuilder have a default capacity of 16 characters?
Why does StringBuilder have a default capacity of 16 characters? Is this some kind of optimization?
StringBuilder builder = new StringBuilder();
Console.WriteLine("builder capacity: '{0}'", ...
0
votes
1answer
127 views
iTunes / About This Mac Storage Capacity Bars
I'm trying to find out if it's possible to recreate the capacity bars in Lion, like so...
http://thenextweb.com/files/2011/07/about-this-mac-storage.png
I've seen third party apps (such as Windows ...
0
votes
2answers
117 views
how do I test my ASP.NET website being hosted on shared server for lot of visitors a day?
I have property related website, going to be hosted on shared server. I want to test my site for large number of visitors.
Roughly I just want to get idea about response time by going thru each page ...
1
vote
5answers
103 views
Best List Capacity For a Known Distribution
Is there a best algorithm for defining the capacity of a C# list in the constructor, if the general distribution of eventual sizes is known?
As a concrete example, if the numbers of values to be ...
1
vote
1answer
168 views
Postcript: maxium array size?
Is there a maximum size for a postscript array ?
I wrote a PS document containing containing an array that is displayed in ghostview without any problem.
But when the number of items in this array ...
3
votes
2answers
402 views
How does StringBuilder's capacity change?
When I have an empty StringBuilder with a capacity of 5 and I write "hello, world!" to it, does the C# standard specify the new capacity of the StringBuilder? I have a vague memory that it's twice the ...
0
votes
1answer
8 views
Is it possible to add a capacity to specific form fields?
I'm working on a conference registration form that has check boxes for which events the user would like to attend, but some of those events have capacities. Client wants those options to turn off when ...
3
votes
3answers
515 views
C# List<> should I lower capacity as I remove items?
I have a List container which can potentially have up to 100,000 items in to start with. While the program is running this list will slowly empty, should I alter the capacity as I empty the list?
I ...
7
votes
4answers
422 views
Does clearing a vector affect its capacity?
I instantiate an std::vector foo(1000).
foo.size() is now 1000 and foo.capacity() is also 1000.
If I clear the vector with foo.clear(), the size() is now 0, but what is the capacity()? Does the ...
0
votes
1answer
97 views
Could there be an issue with the max. memory capacity? Or why is this variable partly released?
I'm developing an iPad app and I ran into a really weird issue here. I'll try to explain it as good as possible.
I have a class named TranslationObject which is holding a key and a textual value. I ...
0
votes
1answer
67 views
How many capacity store data in apps iPad?
I'd like store files into application iPad and i'd like some information about how many capacity store data in own apps iPad. Please help me, thanks you !
5
votes
8answers
277 views
Declaring the capacity of a List in Java
I often use Lists in my Android applications. Right now I am creating a Twitter page which lists a maximum of 50 "tweets" of a user.
I have a List defined like this:
List<Tweet> tweets = ...
0
votes
4answers
869 views
How to define the concept of capacity in ArrayLists?
I understand that capacity is the number of elements or available spaces in an ArrayList that may or may not hold a value referencing an object. I am trying to understand more about the concept of ...
1
vote
3answers
529 views
Why does ensureCapacity() in Java ArrayList extend the capacity with a const 1.5 or (oldCapacity * 3)/2 + 1?
Why does ensureCapacity() in Java ArrayList extend the capacity with a const 1.5 or (oldCapacity * 3)/2 + 1?
3
votes
1answer
284 views
How do I show a warning when server is over capacity to avoid server goes down?
Twitter sometimes shows an message: Twitter is over capacity
This is to prevent too much pressure on the servers. Which avoids that the servers go down.
How do I implement this in my application?
...
2
votes
2answers
157 views
How should I implement capacity for C Dymanic Linked List?
I know it is very easy to implement when you are using it as an ADT in OOP languages.
But what should be done in case of structured language like C?
Should I use a global variable?
Should I keep an ...
10
votes
2answers
4k views
NSMutableArray initWithCapacity nuances
Does anyone have advice on how to best initialize an NSMutableArray when it comes to dictating the capacity? The documentation mentions that "...even though you specify a size when you create an ...
0
votes
2answers
669 views
What is the average capacity of a postfix mail server?
I appreciate there is no 'set' answer to this question. I am trying to assess the performance of our dedicated mail server for sending out emails. The server is of the spec below:
2G RAM
CPU Xeon ...
17
votes
8answers
6k views
Capacity of ArrayList [duplicate]
Possible Duplicate:
How to get the capacity of the ArrayList in Java?
How to find the capacity of an ArrayList?
0
votes
2answers
688 views
How can we limit the capacity of an NSMutableDictionary?
Is there any way to create a mutable dictionary with a capacity limit rather than an initial capacity?
Say you want to create a dictionary that will only ever have, at most, 100 entries.
The ...
2
votes
1answer
358 views
NSMutableDictionary with capacity
What happens when you try to add to an NSMutableDictionary once it has already reached its capacity limit of objects? Does this bump one out or is this going to throw an exception? Also is there any ...
