Home
last modified time | relevance | path

Searched refs:config (Results 26 – 50 of 394) sorted by relevance

12345678910>>...16

/php-src/ext/opcache/tests/jit/
H A Dfetch_dim_func_args_001.phpt14 public function change(array $config) {
15 $config['keys'] = array_keys($config["a"]);;
/php-src/scripts/
H A Dphpize.m414 AC_CONFIG_SRCDIR([config.m4])
18 PHP_CONFIG_NICE([config.nice])
47 dnl Find php-config script.
48 PHP_ARG_WITH([php-config],,
49 [AS_HELP_STRING([--with-php-config=PATH],
50 [Path to php-config [php-config]])],
51 [php-config],
63 [AC_MSG_ERROR([Cannot find php-config. Please use --with-php-config=PATH])])
133 sinclude(config.m4)
196 AC_CONFIG_HEADERS([config.h])
[all …]
H A DMakefile.frag23 build/config.guess \
24 build/config.sub
26 bin_SCRIPTS = phpize php-config
27 man_PAGES = phpize php-config
/php-src/ext/openssl/tests/
H A Dopenssl_csr_new_with_attribs.phpt17 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl_csr_attribs.cnf';
19 $config_arg = array('config' => $config);
26 "config" => $config,
H A Dopenssl_csr_sign_with_serial_hex.phpt7 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
8 $config_arg = array('config' => $config);
23 "config" => $config
H A Dopenssl_csr_get_public_key_basic.phpt11 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
34 "config" => $config,
H A Dopenssl_csr_sign_basic.phpt15 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
16 $config_arg = array('config' => $config);
31 "config" => $config
H A Dbug50293.phpt9 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
24 "config" => $config
/php-src/ext/pdo_odbc/tests/
H A Dpdoodbc_001.phpt14 $config = PDOTest::get_config(__DIR__ . "/common.phpt");
15 $db = new Pdo\Odbc($config['ENV']['PDOTEST_DSN'], $config['ENV']['PDOTEST_USER'], $config['ENV']['P…
H A Dpdoodbc_002.phpt14 $config = PDOTest::get_config(__DIR__ . "/common.phpt");
15 $db = Pdo\Odbc::connect($config['ENV']['PDOTEST_DSN'], $config['ENV']['PDOTEST_USER'], $config['ENV…
/php-src/ext/pdo_pgsql/tests/
H A Dgh12423.phpt8 require __DIR__ . '/config.inc';
9 if (strpos($config['ENV']['PDOTEST_DSN'], 'password=') === false && !isset($config['ENV']['PDOTEST_…
16 require __DIR__ . '/config.inc';
18 $dsnWithCredentials = $config['ENV']['PDOTEST_DSN'];
19 $user = $config['ENV']['PDOTEST_USER'] ?? null;
20 $password = $config['ENV']['PDOTEST_PASS'] ?? null;
H A Dpdopgsql_003.phpt7 require __DIR__ . '/config.inc';
14 require_once __DIR__ . "/config.inc";
16 $db = Pdo::connect($config['ENV']['PDOTEST_DSN']);
H A Dpdopgsql_001.phpt7 require __DIR__ . '/config.inc';
14 require_once __DIR__ . "/config.inc";
16 $db = new Pdo\Pgsql($config['ENV']['PDOTEST_DSN']);
/php-src/sapi/fpm/fpm/
H A Dfpm_scoreboard.c46 if (wp->config->pm_max_children < 1) { in fpm_scoreboard_init_main()
47 …RROR, "[pool %s] Unable to create scoreboard SHM because max_client is not set", wp->config->name); in fpm_scoreboard_init_main()
52 …OG_ERROR, "[pool %s] Unable to create scoreboard SHM because it already exists", wp->config->name); in fpm_scoreboard_init_main()
56 scoreboard_procs_size = sizeof(struct fpm_scoreboard_proc_s) * wp->config->pm_max_children; in fpm_scoreboard_init_main()
63 wp->scoreboard->pm = wp->config->pm; in fpm_scoreboard_init_main()
64 wp->scoreboard->nprocs = wp->config->pm_max_children; in fpm_scoreboard_init_main()
66 strlcpy(wp->scoreboard->pool, wp->config->name, sizeof(wp->scoreboard->pool)); in fpm_scoreboard_init_main()
229 unsigned int nprocs = wp->config->pm_max_children; in fpm_scoreboard_proc_get_from_child()
355 scoreboard_procs_size = sizeof(struct fpm_scoreboard_proc_s) * wp->config->pm_max_children; in fpm_scoreboard_free()
385 if (child_index < 0 || child_index >= wp->config->pm_max_children) { in fpm_scoreboard_proc_free()
[all …]
H A Dfpm_worker_pool.c31 if (wp->config) { in fpm_worker_pool_free()
32 free(wp->config); in fpm_worker_pool_free()
57 fpm_worker_pool_config_free(wp->config); in fpm_worker_pool_cleanup()
H A Dfpm_children.c190 fpm_globals.max_requests = wp->config->pm_max_requests; in fpm_child_init()
202 zlog(ZLOG_ERROR, "[pool %s] child failed to initialize", wp->config->name); in fpm_child_init()
300 …zlog(severity, "[pool %s] child %d exited %s after %ld.%06d seconds from start", wp->config->name,… in fpm_children_bury()
357 zlog(ZLOG_ERROR, "[pool %s] unable to malloc new child", wp->config->name); in fpm_resources_prepare()
417 if (wp->config->pm == PM_STYLE_DYNAMIC) { in fpm_children_make()
419 max = wp->config->pm_start_servers; in fpm_children_make()
423 } else if (wp->config->pm == PM_STYLE_ONDEMAND) { in fpm_children_make()
430 max = wp->config->pm_max_children; in fpm_children_make()
479 …zlog(is_debug ? ZLOG_DEBUG : ZLOG_NOTICE, "[pool %s] child %d started", wp->config->name, (int) pi… in fpm_children_make()
497 if (wp->config->pm == PM_STYLE_ONDEMAND) { in fpm_children_create_initial()
[all …]
/php-src/ext/pdo_dblib/tests/
H A Dpdodblib_001.phpt7 require __DIR__ . '/config.inc';
13 require __DIR__ . '/config.inc';
27 require __DIR__ . '/config.inc';
H A Dpdodblib_002.phpt7 require __DIR__ . '/config.inc';
13 require __DIR__ . '/config.inc';
31 require __DIR__ . '/config.inc';
H A Ddbversion.phpt7 require __DIR__ . '/config.inc';
12 require __DIR__ . '/config.inc';
H A Dbug_47588.phpt7 require __DIR__ . '/config.inc';
12 require __DIR__ . '/config.inc';
23 require __DIR__ . '/config.inc';
H A Ddbtds.phpt7 require __DIR__ . '/config.inc';
12 require __DIR__ . '/config.inc';
/php-src/ext/snmp/
H A Dconfig.m46 customize where to look for the net-snmp-config utility of the NET-SNMP
16 [AC_PATH_PROG([SNMP_CONFIG], [net-snmp-config],, [/usr/local/bin:$PATH])],
17 [SNMP_CONFIG="$PHP_SNMP/bin/net-snmp-config"])
21 Could not find net-snmp-config binary. Please check your net-snmp
72 #include <net-snmp/net-snmp-config.h>
82 #include <net-snmp/net-snmp-config.h>
/php-src/ext/tidy/tests/
H A D031.phpt10 $config = array('doctype' => 'php');
12 $tidy = tidy_parse_string($buffer, $config);
H A D034.phpt10 $config = array(
13 $tidy = tidy_parse_string($buffer, $config);
/php-src/ext/standard/tests/streams/
H A Dgh15937.phpt7 $config = [
12 $ctx = stream_context_create($config);

Completed in 41 milliseconds

12345678910>>...16