Tagged Questions
The limits tag has no wiki summary.
26
votes
5answers
13k views
What is the maximum possible length of a .NET string?
What is the longest string that can be created in .NET? The docs for the String class are silent on this question as far as I can see, so an authoritative answer might require some knowledge of ...
16
votes
2answers
255 views
Why is the max size of byte[] 2 GB - 57 B?
On my 64-bit machine, this C# code works:
new byte[2L * 1024 * 1024 * 1024 - 57]
but this one throws an OutOfMemoryException:
new byte[2L * 1024 * 1024 * 1024 - 56]
Why?
I understand that the ...
11
votes
2answers
325 views
C++ equivalent of java.lang.Integer.MIN_VALUE
How can I get an equivalent of java.lang.Integer.MIN_VALUE on C++?
9
votes
2answers
426 views
Why is there a limit of max 20 parameters to a clojure function
there seems to be a limit to the number of parameters a clojure function can take.
When defining a function with more than 20 parameters I receive the following:
#<CompilerException ...
8
votes
4answers
2k views
Maximum number of parameters in function declaration
I know that minimum number of parameters in function definition is zero, but what is the maximum number of parameters in function definition? I am asking the question just for the sake of knowledge ...
8
votes
4answers
10k views
Maximum size for a SQL Server Query? IN clause? Is there a Better Approach [closed]
Possible Duplicate:
T-SQL WHERE col IN (…)
What is the maximum size for a SQL Server query? (# of characters)
Max size for an IN clause? I think I saw something about Oracle having a ...
8
votes
12answers
2k views
How many times a file be compressed?
I was thinking about compression, and it seems like there would have to be some sort of limit to the compression that could be applied to it, otherwise it'd be a single byte.
So my question is, how ...
6
votes
3answers
102 views
C++ limit of unsigned int through template
I'm using a template to convert integral types into a string representation of their binary values. I used the following:
template<typename T>
std::string ToBinary(const T& value)
{
...
6
votes
3answers
109 views
Floating point limits
First, this is homework.
I've been given these two questions, and I can't wrap my head around floating point properly, so if someone could offer some pointers as to how I should work these questions ...
5
votes
2answers
77 views
How to programmatically check if a variable is approaching x?
Is it possible to check if a variable (the variable can be a float, double, or int) is approaching a certain number. I have done some google search but it comes up nothing.
For example as n^x as x ...
5
votes
1answer
52 views
Verifying ctypes type precision in Python
If an API expects a 64 bit type, how can I check that a ctypes type has that many bits if sizeof returns the number of bytes?
How do I know how many bits are in each byte on the current platform?
...
5
votes
4answers
1k views
C++ variable types limits
here is a quite simple question(I think), is there a STL library method that provides the limit of a variable type (e.g integer) ? I know these limits differ on different computers but there must be a ...
5
votes
8answers
966 views
Is there any difference between parameters in a URL and <form method=“get”>?
The question title says it all.
Now, I know a difference between parameters in a URL and a POST parameter: some browsers may misbehave if the URL is too long, so it is not a good idea to stuff ...
5
votes
6answers
1k views
What happen in SQL 2005 when it run out of number for an autonumber column?
What happen when SQL Server 2005 happen to reach the maximum for an IDENTITY column? Does it start from the beginning and start refilling the gap?
What is the behavior of SQL Server 2005 when it ...
4
votes
1answer
733 views
Practical Limits of ElasticSearch + Cassandra
I am planing on using ElasticSearch to index my Cassandra database. I am wondering if anyone has seen the practical limits of ElasticSearch. Do things get slow in the petabyte range? Also, has anyone ...
4
votes
2answers
948 views
Resident Set Size (RSS) limit has no effect
The following problem occurs on a machine running Ubuntu 10.04 with the 2.6.32-22-generic kernel: Setting a limit for the Resident Set Size (RSS) of a process does not seem to have any effect. I ...
4
votes
2answers
298 views
How to give users a file storage limit?
I'm working on a web application right now using Rails and wanted to see if anyone knew of a good way to keep track of file storage limits? We want to give users a specific amount of room that they ...
4
votes
3answers
2k views
Why is ARG_MAX not defined via limits.h?
On Fedora Core 7, I'm writing some code that relies on ARG_MAX. However, even if I #include <limits.h>, the constant is still not defined. My investigations show that it's present in ...
3
votes
1answer
162 views
Relative positioning of geom_text in ggplot2?
I am using geom_text to annotate plots in gglot2 and I want use relative positioning rather than absolute. That is, I want a position of (0.5, 0.5) to be dead center regardless of the x and y axis ...
3
votes
2answers
338 views
Delphi EOutOfResources (GDIError)
I have written an application in which I find ocasionally EOutofResources errors
raised by GDIError method of Graphics unit when saving TBitmap32 to a stream.
As far as I know it can come from gdi ...
3
votes
1answer
114 views
Auto VCS tagging on Teamcity build - Limitations?
There have been concerns that automatically tagging builds with build systems (TeamCity/CruiseControl) will create so many tags that Perforce will be bogged down.
The only references I've managed to ...
3
votes
2answers
881 views
Where are the limits for Qt types?
Regularly, I could reference limits.h to see what the max is for a certain type, like an int or long.
In Qt, there are types like qlonglong. Is there a header file and/or documentation that can be ...
3
votes
4answers
386 views
CSS: Is there a limit on how many classes an HTML can have?
CSS allows an HTML element to have multiple classes:
<div class="cat persian happy big"> Nibbles </div>
But is there a limit on how many classes are allowed per item?
3
votes
1answer
772 views
PATH_MAX not declared when compiling on Ubuntu 10.04
I am trying to compile a C program in Ubuntu 10.04 made for 8.04. It fails because we have used PATH_MAX and other constants that should be defined in limits.h. According to various resources, it ...
3
votes
4answers
550 views
How can I use Google's Geocoding to normalize addresses without violating the terms of service?
I'm working on a API that will accept addresses in searches. We would like to use Google's geocoding service to normalize the addresses before submitting the search criteria to our search engine.
...
3
votes
3answers
2k views
What is the maximum memory limits per application for Android 2.2?
What is the maximum memory limits per application for Android 2.2?
3
votes
3answers
163 views
C++: defining maximum/minimum limits for a class
Basically what the title says... I have created a class that models time slots in a variable-granularity daily schedule (where for example the first time slot is 30 minutes, but the second time slot ...
3
votes
1answer
331 views
Explaining verity index and document search limits
As present, we currently have a CF8 standard edition server which have some limitations around verity indexing.
According to Adobe
Verity Server has the following document search limits (limits are ...
3
votes
4answers
583 views
What is the maximum number of controls that a VBA form can hold?
I'm currently building an Excel 2003 app that requires a horribly complex form and am worried about limitations on the number of controls. It currently has 154 controls (counted using ...
3
votes
2answers
3k views
maximum value of int
is there any code to find the maximum value of integer (which is acccording to the compiler) in c/c++ like Integer.MaxValue function in java
3
votes
8answers
680 views
How big can a Sourcesafe DB be before “problems” arise?
We use SourceSafe 6.0d and have a DB that is about 1.6GB. We haven't had any problems yet, and there is no plan to change source control programs right now, but how big can the SourceSafe database be ...
3
votes
5answers
1k views
What is the data type for length property for Java arrays?
I want to find out if length property for Java arrays is an int/long or something else.
3
votes
6answers
2k views
How do I increase the /proc/pid/cmdline 4096 byte limit?
For my Java apps with very long classpaths, I cannot see the main class specified near the end of the arg list when using ps. I think this stems from my Ubuntu system's size limit on ...
2
votes
1answer
31 views
Count wikipedia results
I'd like to get the number of Wikipedia pages matching a condition.
e.g.
"house" --> 1,200 pages
"man" --> 13,000 pages
"university college" --> 360 pages
Among many other ways, I can do this by ...
2
votes
1answer
208 views
R: {ggplot2}: How / Can I independently adjust the x-axis limits on a facet_grid plot?
I created a faceted set of three univariate densities -- comparing MCMC methods. Shown below
For the moment, I don't care about the tails. So how can I change the x-axis limits on the plots above ...
2
votes
2answers
603 views
Do public Twitter RSS feeds have access limits?
Example RSS feed link: http://twitter.com/statuses/user_timeline/twitter.rss
Does anyone know if Twitter limits calls to a public RSS feed? This is not using an API but a simple call to a URL.
I am ...
2
votes
3answers
661 views
What is the best way to integrate Solr as an index with Oracle as a storage DB?
I have an Oracle database with all the "data", and a Solr index where all this data is indexed. Ideally, I want to be able to run queries like this:
select * from data_table where id in ([solr query ...
2
votes
1answer
238 views
What is the relation between PATH_MAX and NAME_MAX, and how do I obtain?
In limits.h, and in various places in the POSIX manpages, there are references to PATH_MAX and NAME_MAX.
How do these relate to one another?
Where is the official documentation for them?
How can I ...
2
votes
4answers
672 views
How to use C defines in ARM assembler
How can I use external defines such as LONG_MIN and LONG_MAX in ARM assembler code?
Let's say my_arm.h looks like this:
int my_arm(int foo);
Let's say I have a my_main.c as follows:
...
#include ...
2
votes
1answer
226 views
How big is too big (for NTFS)
I have a program and as it's done now, it has a data directory with something like 10-30K files in it and it's starting to cause problems. Should I expect that to cause problems and my only solution ...
2
votes
8answers
998 views
How would you set a variable to the largest number possible in C?
How would you set a variable to equal infinity (or any guaranteed largest number value) in C?
2
votes
8answers
387 views
Good limits for code refactoring
What are your preferred limits for,
Lines per file
Lines per function
Nesting
Are there other effective guidelines for limiting / settings (i.e. large font size)?
FYI, I code mostly in Python ...
2
votes
1answer
3k views
Is there a size limit on a text file? [closed]
Duplicate of: Is there an upper limit on .txt file size?
What is the limit to how much you can write to a text file? Any help would be appreciated.
2
votes
7answers
3k views
Print really big numbers
I have this code
#include <iostream>
using namespace std;
int main(int argc,char **argv) {
unsigned long long num1 = ...
1
vote
1answer
53 views
using python urllib how to avoid non HTML content
I am using urllib (note not urllib2) and getting title of pages from user supplied urls. Unfortunately sometimes the url is not an HTML but some huge file or some very long running process on the ...
1
vote
1answer
71 views
how do i set hard and soft file limits for a non-root user at boot?
I have a xen HVM vps and I'm trying to raise the hard and soft file limits for nobody at boot time. I'm using Ubuntu 10.04.3 and inside /etc/security/limits.conf I have:
nobody soft nofile ...
1
vote
2answers
138 views
Matlab: how to calculate the definite integral of a function over multiple limits?
Assume:
z = [0.4 0.5 0.75]'
function y = myfunct(x)
y = quad(@sin, 0, x)
I'd like to calculate the definite integral of sin(x) from 0 to 0.4, to 0.5, and 0.75, using:
myfunct(z)
However, ...
1
vote
1answer
57 views
What is default integer limit in PostrgreSQL database for Rails 3?
What is default integer limit in PostrgreSQL database for Rails 3?
That's the question.
1
vote
1answer
16 views
What is the best way to update a big number of accounts
I need your expert advice on this one.
I have been asked to analyse a potential Facebook application.
This application is a parental monitoring for kids accounts. Basically it will search a kid ...
1
vote
1answer
59 views
php imagesetpixel limits
I wrote a code that pick all the pixels with a specific color from an image and set them in a blank image. But at a certain amount of pixels imagesetpixel() stops.
Can someone tell me why?
<?php
...