Home
last modified time | relevance | path

Searched refs:requests (Results 1 – 25 of 40) sorted by last modified time

12

/PHP-7.4/
H A DNEWS1082 http requests). (Miguel Xavier Penha Neto)
1494 requests (cgi-fcgi)). (Nikita)
1925 requests (cgi-fcgi)). (Nikita)
H A Dphp.ini-development329 ; the request. Consider enabling it if executing long requests, which may end up
686 ; to proxy requests or to process the POST data in a memory efficient fashion.
1213 ; Timeout for network requests in seconds.
1246 ; for all pooled server requests with Oracle 11g Database Resident
1830 ; Check the cache checksum each N requests.
H A Dphp.ini-production329 ; the request. Consider enabling it if executing long requests, which may end up
686 ; to proxy requests or to process the POST data in a memory efficient fashion.
1213 ; Timeout for network requests in seconds.
1246 ; for all pooled server requests with Oracle 11g Database Resident
1830 ; Check the cache checksum each N requests.
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
H A DREADME.md117 Pull requests are not merged directly on GitHub. All PRs will be pulled and
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_request.c88 proc->requests++; in fpm_request_reading_headers()
H A Dfpm_scoreboard.c72 void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children… in fpm_scoreboard_update() argument
102 if (requests >= 0) { in fpm_scoreboard_update()
103 scoreboard->requests = requests; in fpm_scoreboard_update()
125 if (scoreboard->requests + requests > 0) { in fpm_scoreboard_update()
126 scoreboard->requests += requests; in fpm_scoreboard_update()
128 scoreboard->requests = 0; in fpm_scoreboard_update()
H A Dfpm_scoreboard.h26 unsigned long requests; member
58 unsigned long int requests; member
72 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()
120 add_assoc_long(&fpm_proc_stat, "requests", procs[i].requests); in fpm_status_export_to_zval()
461 scoreboard.requests, in fpm_status_handle_request()
545 proc.requests, in fpm_status_handle_request()
H A Dfpm_main.c1550 int requests = 0; in main() local
1972 requests++; in main()
1973 if (UNEXPECTED(max_requests && (requests == max_requests))) { in main()
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc620 * Execute multiple requests in parallel.
622 * @param array|int $requests
631 $requests,
641 if (is_numeric($requests)) {
642 $requests = array_fill(0, $requests, []);
643 } elseif (!is_array($requests)) {
659 }, $requests);
H A Dstatus.inc36 'slow requests' => '\d+',
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
H A Dfcgi.inc543 // Broken pipe, tear down so future requests might succeed
H A Dfpm_get_status_basic.phpt69 ["slow-requests"]=>
83 ["requests"]=>
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c1763 int requests = 0; local
2646 requests++;
2647 if (max_requests && (requests == max_requests)) {
/PHP-7.4/ext/soap/
H A Dphp_sdl.c1138 if (ctx.sdl->requests == NULL) { in load_wsdl()
2359 if (sdl->requests) { in add_sdl_to_cache()
2360 i = zend_hash_num_elements(sdl->requests); in add_sdl_to_cache()
3087 if (sdl->requests) { in make_persistent_sdl()
3093 zend_hash_init(psdl->requests, zend_hash_num_elements(sdl->requests), NULL, NULL, 1); in make_persistent_sdl()
3151 if (tmp->requests) { in delete_psdl_int()
3152 zend_hash_destroy(tmp->requests); in delete_psdl_int()
3153 free(tmp->requests); in delete_psdl_int()
3417 if (tmp->requests) { in delete_sdl_impl()
3418 zend_hash_destroy(tmp->requests); in delete_sdl_impl()
[all …]
H A Dsoap.c4516 …} else if (sdl->requests != NULL && (tmp = zend_hash_str_find_ptr(sdl->requests, str, len)) != NUL…
H A Dphp_sdl.h59 HashTable *requests; /* array of sdlFunction (references) */ member
/PHP-7.4/ext/mysqli/tests/
H A Dconnect.inc24 …/* Development setting: test experimal features and/or feature requests that never worked before? …
/PHP-7.4/sapi/cli/tests/
H A Dbug68745.phpt2 Bug #68745 (Invalid HTTP requests make web server segfault)
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in26 ; The address on which to accept FastCGI requests.
97 ; new requests will connect. The following parameter are used:
107 ; This value sets the limit on the number of simultaneous requests that will be
136 ; The number of requests each child process should execute before respawning.
151 ; max listen queue - the maximum number of requests in the queue
198 ; requests - the number of requests the process has served;
199 ; request duration - the duration in µs of the requests;
222 ; requests: 12808
321 ; The log file for slow requests
/PHP-7.4/ext/standard/tests/http/
H A Dbug79265.phpt2 Bug #79265 (Improper injection of Host header when using fopen for http requests)
/PHP-7.4/sapi/litespeed/
H A DREADME.md112 There are two ways to let PHP handle multiple requests concurrently, Server
149 This controls how many requests each child process will handle before it exits

Completed in 73 milliseconds

12