Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
10answers
3k views

Max square size for unknown number inside rectangle

If I have a set of tiles (squares) which can be any number and they are to fill a container (rectangle) of an unknown size how do I work out the maximum size of the tiles without having any of them ...
4
votes
7answers
135 views

C++ vector of pointer to object - max_size()

I have a class apples class apples { private: double x; double y; double z; public: //some methods }; I want to store the pointer to apples objects in a vector. I am ...
2
votes
3answers
277 views

Multiprocessing Queue maxsize limit is 32767

I'm trying to write a Python 2.6 (OSX) program using multiprocessing, and I want to populate a Queue with more than the default of 32767 items. from multiprocessing import Queue Queue(2**15) # raises ...
2
votes
1answer
394 views

What is the maximum size we can give for nvarchar in sqlite?

In SqlServer we can use NVarchar(MAX) but this is not possible in sqlite. What is the maximum size I can give for Nvarchar(?)?
2
votes
3answers
399 views

C++ vector max_size();

On 32 bit System. std::vector<char>::max_size() returns 232-1, size of char — 1 byte std::vector<int>::max_size() returns 230-1, size of int — 4 byte ...
0
votes
1answer
62 views

Android layout weight / max-size / advice

After driving myself mad for the past couple of days I have seen many different pages on StackOverflow, but not the answear I was looking for :( I want to create a puzzle for an Android phone, or ...
0
votes
0answers
151 views

log4j.Logger maximum String length

Is there any maximum String length with can be passed to the Logger.info(String)? I had this problem when a generated String was passed to Logger.info(String): at ...
0
votes
2answers
366 views

$_FILES['file']['size'] echoing 0(zero) for files over upload_max_filesize

The problem is that I want to check if the file is too large to upload so that I can display a relevant error message, but when the file is larger than upload_max_filesize in php.ini it seems to be ...
-1
votes
1answer
508 views

reached max size for compiled sql statement cache for database

I have the following error: reached max size for compiled sql statement cache for database no space for this sql statement in cache select number code status time id from contacts number please ...