Home
last modified time | relevance | path

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

12345678910>>...15

/PHP-8.1/ext/dom/tests/
H A DDOMDocument_config_basic.phpt2 Tests DOMDocument::config read
14 $test = $dom->config;
15 echo "Read config:\n";
24 Read config:
/PHP-8.1/ext/tidy/
H A Dtidy.stub.php5 function tidy_parse_string(string $string, array|string|null $config = null, ?string $encoding = nu… argument
11 function tidy_parse_file(string $filename, array|string|null $config = null, ?string $encoding = nu… argument
15 function tidy_repair_string(string $string, array|string|null $config = null, ?string $encoding = n… argument
17 function tidy_repair_file(string $filename, array|string|null $config = null, ?string $encoding = n… argument
57 …public function __construct(?string $filename = null, array|string|null $config = null, ?string $e… argument
72 …public function parseFile(string $filename, array|string|null $config = null, ?string $encoding = … argument
75 …public function parseString(string $string, array|string|null $config = null, ?string $encoding = … argument
81 …public static function repairString(string $string, array|string|null $config = null, ?string $enc… argument
87 …public static function repairFile(string $filename, array|string|null $config = null, ?string $enc… argument
/PHP-8.1/build/
H A Dpkg.m41 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
2 # serial 12 (pkg-config-0.29.2)
32 dnl Verify that the version of the pkg-config macros are at least
57 dnl pkg-config existed.
62 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
67 AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
151 and $1[]_LIBS to avoid the need to call pkg-config.
152 See the pkg-config man page for more details.])
162 # Put the nasty error message in config.log where it belongs
180 path to pkg-config.
[all …]
/PHP-8.1/ext/openssl/tests/
H A Dopenssl_csr_export_basic.phpt12 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
13 $config_arg = array('config' => $config);
28 "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 Dbug55646.phpt13 $config = array(
29 $private = openssl_pkey_new($config);
34 ['config' => __DIR__. DIRECTORY_SEPARATOR . "openssl.cnf"]
H A Dbug50293.phpt11 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
26 "config" => $config
/PHP-8.1/ext/opcache/tests/
H A D001_cli.phpt11 $config = opcache_get_configuration();
13 var_dump($config["directives"]["opcache.enable"]);
14 var_dump($config["directives"]["opcache.enable_cli"]);
/PHP-8.1/ext/opcache/tests/jit/
H A Dfetch_dim_func_args_001.phpt15 public function change(array $config) {
16 $config['keys'] = array_keys($config["a"]);;
/PHP-8.1/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)
220 AC_CONFIG_HEADERS([config.h])
[all …]
/PHP-8.1/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_children.c172 fpm_globals.max_requests = wp->config->pm_max_requests; in fpm_child_init()
183 zlog(ZLOG_ERROR, "[pool %s] child failed to initialize", wp->config->name); in fpm_child_init()
281 …zlog(severity, "[pool %s] child %d exited %s after %ld.%06d seconds from start", wp->config->name,… in fpm_children_bury()
338 zlog(ZLOG_ERROR, "[pool %s] unable to malloc new child", wp->config->name); in fpm_resources_prepare()
398 if (wp->config->pm == PM_STYLE_DYNAMIC) { in fpm_children_make()
400 max = wp->config->pm_start_servers; in fpm_children_make()
404 } else if (wp->config->pm == PM_STYLE_ONDEMAND) { in fpm_children_make()
411 max = wp->config->pm_max_children; in fpm_children_make()
460 …zlog(is_debug ? ZLOG_DEBUG : ZLOG_NOTICE, "[pool %s] child %d started", wp->config->name, (int) pi… in fpm_children_make()
478 if (wp->config->pm == PM_STYLE_ONDEMAND) { in fpm_children_create_initial()
[all …]
H A Dfpm_worker_pool.c31 if (wp->config) { in fpm_worker_pool_free()
32 free(wp->config); in fpm_worker_pool_free()
54 fpm_worker_pool_config_free(wp->config); in fpm_worker_pool_cleanup()
/PHP-8.1/ext/pspell/
H A Dpspell_arginfo.h22 ZEND_ARG_OBJ_INFO(0, config, PSpell\\Config, 0)
59 ZEND_ARG_OBJ_INFO(0, config, PSpell\\Config, 0)
64 ZEND_ARG_OBJ_INFO(0, config, PSpell\\Config, 0)
69 ZEND_ARG_OBJ_INFO(0, config, PSpell\\Config, 0)
74 ZEND_ARG_OBJ_INFO(0, config, PSpell\\Config, 0)
79 ZEND_ARG_OBJ_INFO(0, config, PSpell\\Config, 0)
88 ZEND_ARG_OBJ_INFO(0, config, PSpell\\Config, 0)
/PHP-8.1/ext/pdo_dblib/tests/
H A Ddbversion.phpt7 require __DIR__ . '/config.inc';
11 require __DIR__ . '/config.inc';
H A Ddbtds.phpt7 require __DIR__ . '/config.inc';
11 require __DIR__ . '/config.inc';
H A Dbug_68957.phpt7 require __DIR__ . '/config.inc';
11 require __DIR__ . '/config.inc';
H A Dbug_71667.phpt7 require __DIR__ . '/config.inc';
11 require __DIR__ . '/config.inc';
H A Dbug_54648.phpt7 require __DIR__ . '/config.inc';
11 require __DIR__ . '/config.inc';
/PHP-8.1/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));
H A D030.phpt10 $config = array(
15 $tidy->parseString($buffer, $config);
/PHP-8.1/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 40 milliseconds

12345678910>>...15