Home
last modified time | relevance | path

Searched refs:max (Results 101 – 125 of 271) sorted by relevance

1234567891011

/PHP-8.3/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()
/PHP-8.3/ext/pdo_odbc/tests/
H A Dmax_columns.phpt2 PDO ODBC varying character with max/no length
16 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data varchar(max))')) {
/PHP-8.3/Zend/tests/
H A Dbug78356.phpt17 var_dump(max(...$object[0]));
H A Dbug30394.phpt26 $c->a += max( 0, 1 );
H A Dbug34062.phpt11 max(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/PHP-8.3/ext/json/tests/
H A Djson_validate_003.phpt2 json_validate() - Error handling for max depth
/PHP-8.3/tests/lang/
H A DforeachLoopIteratorAggregate.004.phpt19 $more = $this->num < $this->obj->max;
46 public $max = 3;
/PHP-8.3/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 Dsetsofib.phpt32 $tester->expectLogError('Invalid routing table id 68000, max is 1');
/PHP-8.3/ext/oci8/tests/
H A Darray_bind_012.phpt27 Warning: oci_bind_array_by_name(): Invalid max length value (-10) in %s on line %d
H A Dcoll_003.phpt20 var_dump($coll1->max());
/PHP-8.3/ext/random/tests/01_functions/
H A Drand_inverted_order.phpt2 Test rand function when min and max are in proper or inverted order
H A Drandom_int_error.phpt29 random_int(): Argument #1 ($min) must be less than or equal to argument #2 ($max)
/PHP-8.3/tests/classes/
H A Diterators_002.phpt19 $more = $this->num < $this->obj->max;
47 public $max = 3;
H A Diterators_003.phpt18 $more = $this->num < $this->obj->max;
37 public $max = 4;
/PHP-8.3/ext/standard/tests/general_functions/
H A Dis_float.phpt14 -0x80000001, // float value, beyond max negative int
15 0x800000001, // float value, beyond max positive int
16 020000000001, // float value, beyond max positive int
17 -020000000001, // float value, beyond max negative int
H A Dis_float_64bit.phpt16 -0x80000001, // float value, beyond max negative int
17 0x800000001, // float value, beyond max positive int
18 020000000001, // float value, beyond max positive int
19 -020000000001, // float value, beyond max negative int
/PHP-8.3/Zend/
H A Dzend_stack.h24 int size, top, max; member
/PHP-8.3/Zend/tests/attributes/
H A D009_doctrine_annotations_example.phpt50 * max = 180,
55 …#[Assert\Range(["min" => 120, "max" => 180, "minMessage" => "You must be at least {{ limit }}cm ta…
125 ["max"]=>
/PHP-8.3/ext/odbc/tests/
H A Dbug69975.phpt2 Bug #69975 (PHP segfaults when accessing nvarchar(max) defined columns)
/PHP-8.3/ext/reflection/tests/
H A DReflectionFiber_bug_gh11121_1.phpt16 $f = new Fiber(function() { f(); max(...[1,2,3,4,5,6,7,8,9,10,11,12]); g(); });
/PHP-8.3/ext/filter/tests/
H A Dbug77221.phpt36 list($min, $max) = $range;
39 var_dump(filter_var($max, FILTER_VALIDATE_IP, FILTER_FLAG_GLOBAL_RANGE));
/PHP-8.3/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);
/PHP-8.3/ext/standard/tests/file/
H A Dbug37158.phpt2 Bug #37158 (if userspace stream is present, fread() reads in 8192 max, otherwise it works)
/PHP-8.3/ext/random/
H A Dengine_pcgoneseq128xslrr64.c58 static zend_long range(php_random_status *status, zend_long min, zend_long max) in range() argument
60 return php_random_range(&php_random_algo_pcgoneseq128xslrr64, status, min, max); in range()

Completed in 41 milliseconds

1234567891011