/PHP-8.3/Zend/tests/ |
H A D | bug64720.phpt | 6 private static $requests; 8 if (!isset(self::$requests[1])) { 9 self::$requests[1] = new self(); 11 return self::$requests[1]; 15 unset(self::$requests[1]);
|
/PHP-8.3/sapi/fpm/fpm/ |
H A D | fpm_systemd.c | 18 unsigned long int requests=0, slow_req=0; in fpm_systemd() local 26 requests += wp->scoreboard->requests; in fpm_systemd() 40 …active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_in… in fpm_systemd() 44 last = requests; in fpm_systemd()
|
H A D | fpm_scoreboard.c | 101 int idle, int active, int lq, int lq_len, int requests, int max_children_reached, in fpm_scoreboard_update_commit() argument 127 if (requests >= 0) { in fpm_scoreboard_update_commit() 128 scoreboard->requests = requests; in fpm_scoreboard_update_commit() 150 if (scoreboard->requests + requests > 0) { in fpm_scoreboard_update_commit() 151 scoreboard->requests += requests; in fpm_scoreboard_update_commit() 153 scoreboard->requests = 0; in fpm_scoreboard_update_commit() 179 int idle, int active, int lq, int lq_len, int requests, int max_children_reached, in fpm_scoreboard_update() argument 184 idle, active, lq, lq_len, requests, max_children_reached, slow_rq, action, scoreboard); in fpm_scoreboard_update()
|
H A D | fpm_scoreboard.h | 29 unsigned long requests; member 61 unsigned long int requests; member 77 void fpm_scoreboard_update_commit(int idle, int active, int lq, int lq_len, int requests, int max_c… 78 void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children…
|
H A D | fpm_status.c | 88 add_assoc_long(status, "accepted-conn", scoreboard.requests); in fpm_status_export_to_zval() 117 add_assoc_long(&fpm_proc_stat, "requests", procs[i].requests); in fpm_status_export_to_zval() 493 scoreboard_p->requests, in fpm_status_handle_request() 508 scoreboard_p->requests, in fpm_status_handle_request() 600 proc->requests, in fpm_status_handle_request()
|
/PHP-8.3/ext/standard/tests/http/ |
H A D | bug48929.phpt | 33 echo "-- Test: requests with 'header' as array --\n"; 37 echo "-- Test: requests with 'header' as string --\n"; 43 -- Test: requests with 'header' as array -- 52 -- Test: requests with 'header' as string --
|
H A D | ignore_errors.phpt | 42 echo "-- Test: requests without ignore_errors --\n"; 46 echo "-- Test: requests with ignore_errors --\n"; 50 echo "-- Test: requests with ignore_errors (2) --\n"; 56 -- Test: requests without ignore_errors -- 79 -- Test: requests with ignore_errors -- 106 -- Test: requests with ignore_errors (2) --
|
H A D | server.inc | 42 * containing N responses for N expected requests. Server dies after N requests.
|
H A D | bug79265.phpt | 2 Bug #79265 (Improper injection of Host header when using fopen for http requests)
|
/PHP-8.3/.github/workflows/ |
H A D | close-stale-feature-requests.yml | 1 name: Close stale feature requests 16 pull-requests: write 29 to understand why we auto-close stale feature requests.
|
H A D | labeler.yml | 11 pull-requests: write
|
H A D | remove-needs-feedback.yml | 17 pull-requests: write
|
H A D | close-stale-prs.yml | 16 pull-requests: write
|
H A D | close-needs-feedback.yml | 16 pull-requests: write
|
/PHP-8.3/ext/snmp/tests/ |
H A D | snmp_include.inc | 5 requests and 'private' community for write requests.
|
/PHP-8.3/sapi/fpm/tests/ |
H A D | fpm_get_status_basic.phpt | 69 ["slow-requests"]=> 83 ["requests"]=>
|
H A D | status.inc | 37 'slow requests' => '\d+', 239 "# HELP phpfpm_accepted_connections The number of requests accepted by the pool\.\n" . 242 … "# HELP phpfpm_listen_queue The number of requests in the queue of pending connections\.\n" . 245 …"# HELP phpfpm_max_listen_queue The maximum number of requests in the queue of pending connections… 266 …"# HELP phpfpm_slow_requests The number of requests that exceeded your 'request_slowlog_timeout' v… 268 "phpfpm_slow_requests " . $fields['slow requests'] . "\n" .
|
H A D | status-basic.phpt | 30 'slow requests' => 0,
|
H A D | status-listen.phpt | 31 'slow requests' => 0,
|
/PHP-8.3/ext/gettext/tests/ |
H A D | bug53251.phpt | 7 if (getenv('SKIP_REPEAT')) die('skip gettext leaks global state across requests');
|
H A D | gettext_bindtextdomain-cwd.phpt | 12 die('skip gettext leaks global state across requests');
|
/PHP-8.3/sapi/cli/tests/ |
H A D | bug68745.phpt | 2 Bug #68745 (Invalid HTTP requests make web server segfault)
|
/PHP-8.3/ext/ftp/tests/ |
H A D | gh10562.phpt | 18 // This requests more data, but we don't do the loop to fetch it.
|
/PHP-8.3/ |
H A D | CONTRIBUTING.md | 14 * [Pull requests](#pull-requests) 16 * [Feature requests](#feature-requests) 30 ## Pull requests 32 PHP welcomes pull requests to [add tests](#writing-tests), fix bugs and to 43 Pull requests implementing RFCs should be submitted against `master`. 45 Pull requests should *never* be submitted against `PHP-x.y.z` branches, as these 54 You can also add pull requests to [bug reports](https://github.com/php/php-src/issues) 70 ## Feature requests 72 Feature requests are generally submitted in the form of 74 accompanied by [pull requests](#pull-requests). You can find the extremely large
|
/PHP-8.3/sapi/fpm/ |
H A D | www.conf.in | 31 ; The address on which to accept FastCGI requests. 110 ; new requests will connect. The following parameter are used: 120 ; This value sets the limit on the number of simultaneous requests that will be 155 ; The number of requests each child process should execute before respawning. 170 ; max listen queue - the maximum number of requests in the queue 217 ; requests - the number of requests the process has served; 218 ; request duration - the duration in µs of the requests; 241 ; requests: 12808 261 ; invisible pool that can handle requests independently. This is useful 263 ; to get the status before finishing the long running requests. [all …]
|