Skip to main content

Questions tagged [limit]

Relates to any sort of limit applied to data or resources, e.g. limiting the size or value of a variable, limiting the rate of incoming traffic or CPU usage. [tag:sql-limit] should be used to refer to the LIMIT keyword in SQL.

0 votes
0 answers
12 views

How do I get the surface plot and color bar values to be the same in two differnt plots?

I have two original plots, #1: original data And #2: Fitted data I would like the colors in the two plots to correspond. Meaning, the flat zero-value regions outside of the peaks are the same color, ...
dcpetit's user avatar
0 votes
1 answer
56 views

Why doesn't the function curves in R plot correctly when they exceed a functions boundry?

Let's say I have probability distribution function from some sort of function within a given boundry. Its total area is of course 1 within this boundry. It's defined as zero outside this boundry. f &...
arezaie's user avatar
  • 335
1 vote
1 answer
36 views

limit iOS bluetooth connection to one device being used

Is there a way to limit bluetooth to one device connection so people cannot create unwanted connections on the iPhone in IOS. Some people just want the music.app and not kali linux connections...
AEGIS's user avatar
  • 180
-6 votes
0 answers
33 views

Instagram request limit

I developed a tool for Instagram. To ensure I don't have any account restricted or blocked for excessive requests, I would like to know the limits of requests or actions made on the account The tool ...
Giuseppe Totire's user avatar
-1 votes
0 answers
34 views

API Quota limit 250 Query

I want to know API limit of 250 per user per second means 250 is concerned to the developer account of company or 250 is the limit to user's email that we integrate like we are x company and we have a,...
Varun Deepak Kotwani's user avatar
0 votes
1 answer
29 views

Nginx keeps hitting connection limit although I only use one connection

I configured nginx as followed (shortened): http { limit_conn_zone $binary_remote_addr zone=conn_zone:10m; server { limit_conn conn_zone 50; limit_conn_log_level error; ...
Philipp S's user avatar
0 votes
0 answers
22 views

Is there a way to stop a user from typing numbers bigger than a maximum?

Currently my code has a maximum value but it is only applied when using the increase and decrease (by 1) arrows, and when they type into the box they can go as high as they want. Here is an example of ...
Albert Pace's user avatar
0 votes
1 answer
56 views

SharePoint metadata column limitations - how to understand them

I am not sure if I correctly understand those limits: https://learn.microsoft.com/en-us/office365/servicedescriptions/sharepoint-online-service-description/sharepoint-online-limits#managed-metadata ...
krypru's user avatar
  • 1,712
0 votes
0 answers
32 views

Sending long JWT tokens in a HTTP request in sim7600

I am using sim7600 module to make a GET request to a HTTPs site. The endpoint requires Tokens for authentication. The token is sent via HTTP parameters with the following AT command. AT+HTTPPARA="...
user1175197's user avatar
0 votes
1 answer
33 views

Maple equation problem : Limit and Sum at the same time

I need to evaluate using the Maple Software. I did manage to make my equation look like the given by using "Limit(Sum(1/(i^(9/5)), i=1..n),i = infinity);" However, I could not proceed any ...
Parker's user avatar
  • 3
0 votes
1 answer
56 views

Calculate symbolic limit in sympy error message

I´ve tried to calculate symbolic limit in sympy but got an error message. import sympy as smp from sympy import * n,x=smp.symbols('n x') limit(simplify(integrate(exp(-x)*exp(-smp.I*n*x),x).args[0][0]),...
hello447's user avatar
0 votes
0 answers
64 views

Caught signal 11 (Segmentation fault: address not mapped to object at address 0x35)

Is this error a result of MPI or memory limit? I tried different different number of cores and different directories. However, I can not change the version of MPI because the software asks for lastest ...
MathJacky's user avatar
0 votes
2 answers
55 views

MySQL Performace on pagination with limit

If going to some very end of the pages, it will still fully scan all the previous records (on Disk). One of the solution is to get the ID of the last previous record and then use where to filter (...
Wong Yat Cheong Jacky's user avatar
1 vote
1 answer
101 views

How is it possible to create float variable in C++ that is less than min float value? [duplicate]

#include <iostream> #include <limits> int main() { float x = std::numeric_limits<float>().min(); // x = 1.17549e-38 float y = 1.17549e-39f; // I created a variable that is ...
Vadim Kiselev's user avatar
0 votes
0 answers
45 views

Limit data read from a table in Athena?

Is it possible to limit the number of rows read from a table with an Athena query, and if so how? I looked at the LIMIT statement, but it seems LIMIT doesn't affect how many rows are scanned, but ...
StatsStudent's user avatar
  • 1,509

15 30 50 per page
1
2 3 4 5
294