Home
last modified time | relevance | path

Searched refs:max (Results 76 – 100 of 258) sorted by last modified time

1234567891011

/php-src/ext/mbstring/tests/
H A Dmb_strcut.phpt202 print "Good JISX 0208 sequence, but it won't fit in max number of bytes: [" . bin2hex(mb_strcut("\x…
423 Good JISX 0208 sequence, but it won't fit in max number of bytes: []
/php-src/sapi/fpm/tests/
H A Dstatus.inc30 'max listen queue' => '\d+',
35 'max active processes' => '\d+',
36 'max children reached' => '\d+',
247 "phpfpm_max_listen_queue " . $fields['max listen queue'] . "\n" .
262 "phpfpm_max_active_processes " . $fields['max active processes'] . "\n" .
265 "phpfpm_max_children_reached " . $fields['max children reached'] . "\n" .
H A Dfcgi.inc664 * @param int $readLimit max content size
776 // Pick random number between 1 and max 16 bit unsigned int 65535
/php-src/ext/date/lib/
H A Dparse_date.re1993 /*!max:re2c */
/php-src/sapi/fpm/fpm/
H A Dfpm_events.c328 int max; in fpm_event_init_main() local
341 max = 1; /* only one FD is necessary at startup for the master process signal pipe */ in fpm_event_init_main()
345 max += (wp->config->pm_max_children * 2); in fpm_event_init_main()
349 if (module->init(max) < 0) { in fpm_event_init_main()
354 zlog(ZLOG_DEBUG, "event module is %s and %d fds have been reserved", module->name, max); in fpm_event_init_main()
H A Dfpm_children.c414 int max; in fpm_children_make() local
419 max = wp->config->pm_start_servers; in fpm_children_make()
421 max = wp->running_children + nb_to_spawn; in fpm_children_make()
425 max = 0; /* do not create any child at startup */ in fpm_children_make()
427 max = wp->running_children + nb_to_spawn; in fpm_children_make()
430 max = wp->config->pm_max_children; in fpm_children_make()
440 …while (fpm_pctl_can_spawn_children() && wp->running_children < max && (fpm_global_config.process_m… in fpm_children_make()
485 if (wp->running_children < max) { in fpm_children_make()
/php-src/ext/standard/tests/strings/
H A Dstrcspn_variation12.phpt43 2147483647, // max positive integer
53 2147483647, // max positive integer
H A Dstrcspn_variation11.phpt54 2147483647, // max positive integer
/php-src/ext/pdo_pgsql/tests/
H A Dbug69752.phpt31 $max = 1000;
34 for($i = 0; $i < $max; $i++) {
/php-src/ext/pdo_odbc/tests/
H A Dmax_columns.phpt2 PDO ODBC varying character with max/no length
16 … === $db->exec('CREATE TABLE test_max_columns (id INT NOT NULL PRIMARY KEY, data varchar(max))')) {
/php-src/ext/random/tests/03_randomizer/methods/
H A DgetFloat_equal_steps.phpt13 function run_test(Randomizer $r, float $min, float $max, int $count) {
14 printf("[%.17g, %.17g]\n", $min, $max);
18 $float = $r->getFloat($min, $max, IntervalBoundary::ClosedClosed);
H A DgetFloat_opposite_signs.phpt28 $max = 1;
30 printf("%.17g\n\n", $max);
34 $float = $r->getFloat($min, $max);
H A DgetFloat_extreme_range.phpt26 $max = 1.6e308;
28 printf("%.17g\n\n", $max);
30 printf("%.17g\n", $r->getFloat($min, $max));
31 printf("%.17g\n", $r->getFloat($min, $max));
32 printf("%.17g\n", $r->getFloat($min, $max));
H A DgetFloat.phpt24 $max = getenv("SKIP_SLOW_TESTS") ? 3_000.0 : 10_000.0;
32 for ($i = 0.0; $i < $max; $i += 1.2345) {
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます8519 >8 byte 2 \b, max compression
8520 >8 byte 4 \b, max speed
30626 !:mime model/x-autodesk-max
30628 !:ext max
30630 #!:ext max/chr
31753 >>>13 byte >1 \b, max fanout %d
31759 >>>10 byte >1 \b, max fanout %d
31765 >>>13 byte >1 \b, max fanout %d
31771 >>>10 byte >1 \b, max fanout %d
37919 # int32_t block_max; /* 24: 1000 == max. # of blocks */
[all …]
H A Dmagic8519 >8 byte 2 \b, max compression
8520 >8 byte 4 \b, max speed
30626 !:mime model/x-autodesk-max
30628 !:ext max
30630 #!:ext max/chr
31753 >>>13 byte >1 \b, max fanout %d
31759 >>>10 byte >1 \b, max fanout %d
31765 >>>13 byte >1 \b, max fanout %d
31771 >>>10 byte >1 \b, max fanout %d
37919 # int32_t block_max; /* 24: 1000 == max. # of blocks */
[all …]
/php-src/sapi/fpm/
H A Dwww.conf.in170 ; max listen queue - the maximum number of requests in the queue
176 ; max active processes - the maximum number of active processes since FPM
178 ; max children reached - number of times, the process limit has been reached,
189 ; max listen queue: 1
194 ; max active processes: 12
195 ; max children reached: 0
228 ; last request memory - the max amount of memory the last request consumed
406 ; Set max core size rlimit.
/php-src/ext/odbc/tests/
H A Dbug69975.phpt2 Bug #69975 (PHP segfaults when accessing nvarchar(max) defined columns)
H A Dbug73725.phpt2 Bug #73725 Unable to retrieve value of varchar(max) type
14 odbc_do($conn, "CREATE TABLE bug73725(i int, txt varchar(max), k int)");
/php-src/ext/exif/
H A Dexif.c59 #ifndef max
60 # define max(a,b) ((a)>(b) ? (a) : (b)) macro
2800 value_ptr = safe_emalloc(max(byte_count, 4), 1, 0); in exif_ifd_make_value()
/php-src/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result.phpt178 …func_mysqli_stmt_bind_result($link, $engine, "i", "INTEGER", (defined("PHP_INT_MAX")) ? max(-1 * P…
H A Dmysqli_stmt_bind_result_format.phpt15 function create_table($link, $column, $min, $max, $engine, $offset) {
35 $col1 = mt_rand($min, $max);
H A Dbug42378.phpt15 function create_table($link, $column, $min, $max, $engine, $offset) {
36 $col1 = mt_rand($min, $max);
/php-src/Zend/tests/in-de-crement/
H A Dincrement_001.phpt2 Incrementing max int values 32bit
H A Dincrement_001_64bit.phpt2 Incrementing max int values 64bit

Completed in 205 milliseconds

1234567891011