Home
last modified time | relevance | path

Searched refs:limit (Results 126 – 135 of 135) sorted by path

123456

/PHP-5.5/sapi/fpm/fpm/
H A Dfastcgi.c988 int limit, rest; local
999 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
1001 limit -= sizeof(fcgi_header);
1002 if (limit < 0) limit = 0;
1005 if (len < limit) {
1015 if (limit > 0) {
1016 memcpy(req->out_pos, str, limit);
1017 req->out_pos += limit;
1022 if (len > limit) {
1024 memcpy(req->out_pos, str + limit, len - limit);
[all …]
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in66 ; Time limit for child processes to wait for a reaction on signals from master.
75 ; Note: A value of 0 indicates no limit
223 ; This value sets the limit on the number of simultaneous requests that will be
275 ; max children reached - number of times, the process limit has been reached,
493 ; prevent configuration mistakes on the web server side. You should only limit
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c3191 struct rlimit limit = { 0, 0 }; in LSAPI_Init_Env_Parameters() local
3192 setrlimit( RLIMIT_CORE, &limit ); in LSAPI_Init_Env_Parameters()
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch1444 long limit;
2027 iv[1].iov_len = MIN( c->bytes_to_send - c->bytes_sent, c->limit );
/PHP-5.5/tests/basic/
H A D025.phpt14 Warning: Unknown: POST Content-Length of 2050 bytes exceeds the limit of 1024 bytes in Unknown on l…
H A D027.phpt33 string(115) "Unknown: Input variable nesting level exceeded 10. To increase the limit change max_in…
H A Drfc1867_post_max_size.phpt20 Warning: POST Content-Length of %d bytes exceeds the limit of 1 bytes in %s
/PHP-5.5/tests/func/
H A D010.phpt12 $limit = $boundary+42;
32 for($i=0; $i < $limit; ++$i) {
33 $str .= '$v'.dechex($i).($i===($limit-1) ? '' : ',');
41 test($v'.dechex($limit-1).", '".dechex($limit-1).'\'); // last
50 for($i=0; $i< $limit; ++$i) {
51 $str .= "'".dechex($i)."'".($i===($limit-1) ? '' : ',');
/PHP-5.5/win32/
H A Dglob.c448 size_t limit = 0; local
506 if ((err = glob1(patbuf, patbuf+MAXPATHLEN-1, pglob, &limit)) != 0)
519 return(globextend(pattern, pglob, &limit));
H A Dselect.c39 ULONGLONG ms_total, limit; in php_select() local
100 limit = GetTickCount64() + ms_total; in php_select()
152 } while (retcode == 0 && (ms_total == INFINITE || GetTickCount64() < limit)); in php_select()

Completed in 31 milliseconds

123456