Questions tagged [capacity]

Questions about resource capacity. Use in conjunction with the applicable tag such as [memory], [disk] or [database] to indicate the type of resource being referred to.

Questions about resource capacity. Use in conjunction with the applicable tag such as , or to indicate the type of resource being referred to.

250 questions
0
votes
1 answer

mac os and canon edsdk [take picture error 36103]

I got Lazarus installed on Mac Os X 10.6.8 and I'm trying to take a picture using Canon EDSDK. The problem I'm facing is that after setting parameter to save a photo into host: saveTo := Integer(EdsSaveTo.kEdsSaveTo_Host); err :=…
0
votes
1 answer

HDFS capacity mismatch

I'm doing some tests 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 -s / command, it reports 876447242289. Means about…
avhacker
  • 667
  • 1
  • 9
  • 20
0
votes
3 answers

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 = 0; int size =…
Evan Lemmons
  • 807
  • 3
  • 11
  • 27
0
votes
1 answer

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 clients are brought on line, the server begins to…
Luis Soeiro
  • 4,262
  • 6
  • 35
  • 45
0
votes
4 answers

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 (100) set capacity sligthly less than 450 set…
Viktor Mellgren
  • 4,318
  • 3
  • 42
  • 75
0
votes
2 answers

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 billion rows. Normally, I just do insert into two…
Frank
  • 7,235
  • 9
  • 46
  • 56
-1
votes
2 answers

How to change "capacityIncrement" value post initialization in Vector?

In vector by default initialCapacity is set at 10 and capacityIncrement is also set at 10. Thus if we do - Vector vector = new Vector<>(); we have initialCapacity and capacityIncrement both set at 10. However, we have the flexibility to set…
Payel Senapati
  • 1,134
  • 1
  • 11
  • 27
-1
votes
1 answer

Trying to print out the elements in the last level of a min heap

I'm trying to print the last level in a min heap. I thought I had code that works, but one of the test cases fail. In terms of the test cases, I only have access to how the output does not match. Here is my code: #include "MinHeap.h" #include…
HughJass24
  • 39
  • 1
  • 4
-1
votes
1 answer

Can a Power BI model uploaded on a premium capacity grow bigger than 12 GB?

Someone in the company I work for claims that a Power BI model loaded on a Premium capacity can grow much bigger than 12 GB when refreshed automatically (as in 'growing out of control if left unchecked'). I could not find any confirmation of this.…
Jérôme Verstrynge
  • 57,710
  • 92
  • 283
  • 453
-1
votes
2 answers

Issue of capacity in push back function

I am facing an issue of trying to get the initial capacity to match with the correct one. I have been trying to get the starting capacity to start at 0 instead of 1 (as shown below). However, I can't seem to do it. I would really appreciate if you…
user10976738
-1
votes
1 answer

What is the capacity of evopdf?

How much volume can the EVO HTML to PDF Converter for .net handle? What specs do you recommend for the server? I am unable to find information regarding this matter on evopdf.com.
-1
votes
1 answer

Best way to do an event registration with capacity system?

I have two tables, user and event. A user can join an event, but only one. Every event has its own capacity. For example: The event #1 has a 20 persons limit. The event #2 has a 13 persons limit. I have an "event" column in user table which stores…
-1
votes
1 answer

increase in vector capacity

i'm just a beginner in c++ . In my program i use vector push_back and go through this process many times .i also print the vector capacity after using push_back. the output shows that the capacity of the vector increases directly from 2 to 4 and…
-1
votes
4 answers

is it possible to create in java hashmap that keeps its initial length?

I want to create hashMap private Map myMap; myMap = new HashMap (initialCapacity); is it possible that myMap capacity will remain the same for the entire program? even if we've reached the full…
tit
  • 1
-1
votes
1 answer

How to get real NAND Storage Space?

The storage shown by PlayStore applications is not the real IC flash memory capacity. It shows the space occupied by system and some internal storage left but the sum is not the full Storage capacity of the IC flash memory. For now i am…
M. A.
  • 424
  • 6
  • 21
1 2 3
16
17