Home
last modified time | relevance | path

Searched refs:requests (Results 1 – 25 of 43) sorted by relevance

12

/PHP-8.1/Zend/tests/
H A Dbug64720.phpt6 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.1/sapi/fpm/fpm/
H A Dfpm_systemd.c18 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 Dfpm_scoreboard.c101 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 Dfpm_scoreboard.h29 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 Dfpm_status.c87 add_assoc_long(status, "accepted-conn", scoreboard.requests); in fpm_status_export_to_zval()
116 add_assoc_long(&fpm_proc_stat, "requests", procs[i].requests); in fpm_status_export_to_zval()
489 scoreboard_p->requests, in fpm_status_handle_request()
504 scoreboard_p->requests, in fpm_status_handle_request()
596 proc->requests, in fpm_status_handle_request()
/PHP-8.1/ext/standard/tests/http/
H A Dbug48929.phpt33 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 Dignore_errors.phpt42 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 Dserver.inc42 * containing N responses for N expected requests. Server dies after N requests.
H A Dbug79265.phpt2 Bug #79265 (Improper injection of Host header when using fopen for http requests)
/PHP-8.1/ext/snmp/tests/
H A Dsnmp_include.inc5 requests and 'private' community for write requests.
/PHP-8.1/sapi/fpm/tests/
H A Dstatus.inc37 'slow requests' => '\d+',
215 "# HELP phpfpm_accepted_connections The number of requests accepted by the pool\.\n" .
218 … "# HELP phpfpm_listen_queue The number of requests in the queue of pending connections\.\n" .
221 …"# HELP phpfpm_max_listen_queue The maximum number of requests in the queue of pending connections…
242 …"# HELP phpfpm_slow_requests The number of requests that exceeded your 'request_slowlog_timeout' v…
244 "phpfpm_slow_requests " . $fields['slow requests'] . "\n" .
H A Dfpm_get_status_basic.phpt69 ["slow-requests"]=>
83 ["requests"]=>
H A Dstatus-basic.phpt30 'slow requests' => 0,
H A Dstatus-listen.phpt31 'slow requests' => 0,
H A Dbug74083-concurrent-reload.phpt39 /* Vary interval between concurrent reload requests
H A Dbug76601-reload-child-signals.phpt50 /* Vary interval between concurrent reload requests
/PHP-8.1/ext/gettext/tests/
H A Dbug53251.phpt7 if (getenv('SKIP_REPEAT')) die('skip gettext leaks global state across requests');
H A Dgettext_bindtextdomain-cwd.phpt12 die('skip gettext leaks global state across requests');
/PHP-8.1/sapi/cli/tests/
H A Dbug68745.phpt2 Bug #68745 (Invalid HTTP requests make web server segfault)
/PHP-8.1/
H A DCONTRIBUTING.md14 * [Pull requests](#pull-requests)
16 * [Feature requests](#feature-requests)
29 ## Pull requests
31 PHP welcomes pull requests to [add tests](#writing-tests), fix bugs and to
41 Pull requests implementing RFCs should be submitted against `master`.
43 Pull requests should *never* be submitted against `PHP-x.y.z` branches, as these
52 You can also add pull requests to [bug reports](https://bugs.php.net/).
67 ## Feature requests
69 Feature requests are generally submitted in the form of
71 accompanied by [pull requests](#pull-requests). You can find the extremely large
/PHP-8.1/ext/ftp/tests/
H A Dgh10562.phpt18 // This requests more data, but we don't do the loop to fetch it.
/PHP-8.1/sapi/fpm/
H A Dwww.conf.in31 ; The address on which to accept FastCGI requests.
105 ; new requests will connect. The following parameter are used:
115 ; This value sets the limit on the number of simultaneous requests that will be
150 ; The number of requests each child process should execute before respawning.
165 ; max listen queue - the maximum number of requests in the queue
212 ; requests - the number of requests the process has served;
213 ; request duration - the duration in µs of the requests;
236 ; requests: 12808
256 ; invisible pool that can handle requests independently. This is useful
258 ; to get the status before finishing the long running requests.
[all …]
/PHP-8.1/ext/soap/
H A Dphp_sdl.c1138 if (ctx.sdl->requests == NULL) { in load_wsdl()
2360 if (sdl->requests) { in add_sdl_to_cache()
2361 i = zend_hash_num_elements(sdl->requests); in add_sdl_to_cache()
3096 if (sdl->requests) { in make_persistent_sdl()
3102 zend_hash_init(psdl->requests, zend_hash_num_elements(sdl->requests), NULL, NULL, 1); in make_persistent_sdl()
3160 if (tmp->requests) { in delete_psdl_int()
3161 zend_hash_destroy(tmp->requests); in delete_psdl_int()
3162 free(tmp->requests); in delete_psdl_int()
3432 if (tmp->requests) { in delete_sdl_impl()
3433 zend_hash_destroy(tmp->requests); in delete_sdl_impl()
[all …]
H A Dphp_sdl.h57 HashTable *requests; /* array of sdlFunction (references) */ member
/PHP-8.1/ext/soap/tests/bugs/
H A Dbug30045.phpt2 Bug #30045 (Cannot pass big integers (> 2147483647) in SOAP requests)

Completed in 61 milliseconds

12