Home
last modified time | relevance | path

Searched refs:limit (Results 1 – 25 of 135) sorted by last modified time

123456

/PHP-5.5/win32/
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()
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));
/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/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/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/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/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/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/cli/tests/
H A D006.phpt83 Parameter #3 [ <optional> $limit ]
93 Parameter #3 [ <optional> $limit ]
103 Parameter #3 [ <optional> $limit ]
112 Parameter #2 [ <optional> $limit ]
/PHP-5.5/sapi/caudium/
H A DTODO4 - configurable limit of number of concurrent PHP executions
/PHP-5.5/sapi/cgi/
H A Dfastcgi.c1344 int limit, rest; local
1368 if (rest < limit) {
1374 req->out_pos += limit;
1375 rest -= limit;
1376 str += limit;
1387 if (limit < 0) limit = 0;
1390 if (len < limit) {
1400 if (limit > 0) {
1402 req->out_pos += limit;
1407 if (len > limit) {
[all …]
/PHP-5.5/
H A Dphp.ini-development392 ; http://php.net/memory-limit
951 ;PCRE library backtracking limit.
952 ; http://php.net/pcre.backtrack-limit
955 ;PCRE library recursion limit.
958 ;stack size limit imposed by the Operating System).
959 ; http://php.net/pcre.recursion-limit
1043 ; Maximum number of persistent links. -1 means no limit.
1068 ; Maximum number of persistent links. -1 means no limit.
1108 ; Maximum number of persistent links. -1 means no limit.
1167 ; Maximum number of links. -1 means no limit.
[all …]
H A Dphp.ini-production392 ; http://php.net/memory-limit
951 ;PCRE library backtracking limit.
952 ; http://php.net/pcre.backtrack-limit
955 ;PCRE library recursion limit.
958 ;stack size limit imposed by the Operating System).
959 ; http://php.net/pcre.recursion-limit
1043 ; Maximum number of persistent links. -1 means no limit.
1068 ; Maximum number of persistent links. -1 means no limit.
1108 ; Maximum number of persistent links. -1 means no limit.
1167 ; Maximum number of links. -1 means no limit.
[all …]
/PHP-5.5/ext/standard/
H A Dvar_unserializer.c241 #define YYLIMIT limit
471 const unsigned char *cursor, *limit, *marker, *start; in php_var_unserialize() local
474 limit = max; in php_var_unserialize()
H A Dvar_unserializer.re239 #define YYLIMIT limit
475 const unsigned char *cursor, *limit, *marker, *start;
478 limit = max;
/PHP-5.5/ext/standard/tests/strings/
H A Dexplode_variation1.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
74 $limit = 5;
77 var_dump( explode($delimiter, $string, $limit) );
H A Dexplode_variation2.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
74 $limit = 5;
77 var_dump( explode($delimiter, $string, $limit) );
H A Dexplode_variation3.phpt2 Test explode() function : usage variations - test values for $limit argument
6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
11 echo "*** Testing explode() function: with unexpected inputs for 'limit' argument ***\n";
75 foreach($limits as $limit) {
77 var_dump( explode($delimiter, $string, $limit) );
86 *** Testing explode() function: with unexpected inputs for 'limit' argument ***
H A Dexplode_variation4.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
H A Dexplode_variation5.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
14 echo "\n-- positive limit --\n";
17 echo "\n-- negative limit (since PHP 5.1) --\n";
20 echo "\n-- negative limit (since PHP 5.1) with null string -- \n";
27 -- positive limit --
35 -- negative limit (since PHP 5.1) --
45 -- negative limit (since PHP 5.1) with null string --
H A Dexplode_variation6.phpt15 echo "\n-- positive limit with null separator --\n";
24 echo "\n-- limit = 0 --\n";
27 echo "\n-- limit = -1 --\n";
30 echo "\n-- large limit = -100 --\n";
33 function test_explode($delim, $string, $limit)
35 $e = explode($delim, $string, $limit);
46 -- positive limit with null separator --
50 -- negative limit (since PHP 5.1) with null separator --
57 -- limit = 0 --
60 -- limit = -1 --
[all …]
H A Dexplode1.phpt8 /* Prototype: array explode ( string $delimiter, string $string [, int $limit] );
11 If limit is set, the returned array will contain a maximum of limit
50 echo "\n-- Passing limit values 0 and 1 to explode() --\n";
54 /* to check the maximum limit of string that can be given with limit<=0,
56 echo "\n*** Testing explode() for maximum limit of string with Limit = -1 ***\n";
329 -- Passing limit values 0 and 1 to explode() --
339 *** Testing explode() for maximum limit of string with Limit = -1 ***
H A Dexplode_error.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
19 $limit = 5;
21 var_dump( explode($delimiter, $string, $limit, $extra_arg) );

Completed in 76 milliseconds

123456