Home
last modified time | relevance | path

Searched refs:config (Results 26 – 50 of 379) 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)
50 dnl Find php-config script.
51 PHP_ARG_WITH([php-config],,
52 [AS_HELP_STRING([--with-php-config=PATH],
53 [Path to php-config [php-config]])],
54 [php-config],
66 AC_MSG_ERROR([Cannot find php-config. Please use --with-php-config=PATH])
147 sinclude(config.m4)
211 AC_CONFIG_HEADERS([config.h])
[all …]
/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
H A Dbug55646.phpt13 $config = array(
29 $private = openssl_pkey_new($config);
34 ['config' => __DIR__. DIRECTORY_SEPARATOR . "openssl.cnf"]
/php-src/ext/pdo_odbc/tests/
H A Dpdoodbc_001.phpt14 $config = PDOTest::get_config(__DIR__ . "/common.phpt");
15 $db = new PdoOdbc($config['ENV']['PDOTEST_DSN'], $config['ENV']['PDOTEST_USER'], $config['ENV']['PD…
H A Dpdoodbc_002.phpt14 $config = PDOTest::get_config(__DIR__ . "/common.phpt");
15 $db = PdoOdbc::connect($config['ENV']['PDOTEST_DSN'], $config['ENV']['PDOTEST_USER'], $config['ENV'…
/php-src/ext/pdo_pgsql/tests/
H A Dgh12423.phpt9 require __DIR__ . '/config.inc';
10 if (strpos($config['ENV']['PDOTEST_DSN'], 'password=') === false && !isset($config['ENV']['PDOTEST_…
17 require __DIR__ . '/config.inc';
19 $dsnWithCredentials = $config['ENV']['PDOTEST_DSN'];
20 $user = $config['ENV']['PDOTEST_USER'] ?? null;
21 $password = $config['ENV']['PDOTEST_PASS'] ?? null;
H A Dpdopgsql_003.phpt8 require __DIR__ . '/config.inc';
15 require_once __DIR__ . "/config.inc";
17 $db = Pdo::connect($config['ENV']['PDOTEST_DSN']);
H A Dpdopgsql_001.phpt8 require __DIR__ . '/config.inc';
15 require_once __DIR__ . "/config.inc";
17 $db = new PdoPgsql($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()
226 unsigned int nprocs = wp->config->pm_max_children; in fpm_scoreboard_proc_get_from_child()
352 scoreboard_procs_size = sizeof(struct fpm_scoreboard_proc_s) * wp->config->pm_max_children; in fpm_scoreboard_free()
382 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/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);
H A Dtidy_error1.phpt10 $config = array('bogus' => 'willnotwork');
13 var_dump($tidy->parseString($buffer, $config));
/php-src/ext/snmp/
H A Dconfig.m49 AC_PATH_PROG(SNMP_CONFIG,net-snmp-config,,[/usr/local/bin:$PATH])
11 SNMP_CONFIG="$PHP_SNMP/bin/net-snmp-config"
36 AC_MSG_ERROR([Could not find net-snmp-config binary. Please check your net-snmp installation.])
44 AC_MSG_ERROR([SNMP sanity check failed. Please check config.log for more information.])

Completed in 36 milliseconds

12345678910>>...16