Home
last modified time | relevance | path

Searched refs:conf (Results 1 – 25 of 42) sorted by relevance

12

/php-src/ext/opcache/tests/
H A Dblacklist-win32.phpt15 $conf = opcache_get_configuration();
16 $conf = $conf['blacklist'];
17 $conf[3] = preg_replace("!^\\Q".__DIR__."\\E!", "__DIR__", $conf[3]);
18 $conf[4] = preg_replace("!^\\Q".__DIR__."\\E!", "__DIR__", $conf[4]);
19 print_r($conf);
H A Dblacklist.phpt23 $conf = opcache_get_configuration();
24 $conf = $conf['blacklist'];
25 $conf[3] = preg_replace("!^\\Q".__DIR__."\\E!", "__DIR__", $conf[3]);
26 $conf[4] = preg_replace("!^\\Q".__DIR__."\\E!", "__DIR__", $conf[4]);
27 print_r($conf);
/php-src/ext/openssl/tests/
H A Dopenssl_csr_new_basic.phpt10 $conf = array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf');
13 var_dump(openssl_csr_new(array(), $a, $conf, array()));
22 var_dump(openssl_csr_new($a, $b, $conf));
25 $x = openssl_pkey_new($conf);
26 var_dump(openssl_csr_new(["countryName" => "DE"], $x, $conf + ["x509_extensions" => 0xDEADBEEF]));
H A Dbug73833.phpt8 $conf = ['config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'];
11 $key = openssl_pkey_new($conf);
13 if (openssl_pkey_export($key, $privatePEM, $password, $conf) === false) {
H A Dbug80747.phpt8 $conf = array(
12 var_dump(openssl_pkey_new($conf));
H A Dopenssl_csr_new_array_dn_entry.phpt10 $conf = array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf');
13 $x = openssl_pkey_new($conf);
25 $conf + ["x509_extensions" => 0xDEADBEEF]
H A D001.phpt13 $conf = array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf');
14 $privkey = openssl_pkey_new($conf);
28 if (!openssl_pkey_export_to_file($privkey, $key_file_name, $passphrase, $conf)) {
H A Dopenssl_free_key.phpt16 $conf = array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf');
17 $privkey = openssl_pkey_new($conf);
29 openssl_pkey_export_to_file($privkey, $key_file_name, $passphrase, $conf) or die("failed to export …
/php-src/sapi/fpm/
H A DMakefile.frag18 $(INSTALL_DATA) sapi/fpm/php-fpm.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.conf.default; \
19 $(INSTALL_DATA) sapi/fpm/www.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.d/www.conf.default; \
H A Dinit.d.php-fpm.in17 php_fpm_CONF=@sysconfdir@/php-fpm.conf
/php-src/ext/snmp/tests/
H A DREADME.md39 * Replace config file (by default this is `/etc/snmp/snmpd.conf` on Linux and
40 `/usr/local/etc/snmp/snmpd.conf` on FreeBSD) with `snmpd.conf` supplied.
43 `/var/net-snmp/snmpd.conf`. Delete it if exists. Forgetting to do so will fail
46 * Place `ext/snmp/tests/bigtest` near `snmpd.conf`, tune path to it in
47 `snmpd.conf`.
52 sudo snmpd -C -c ./snmpd.conf -f -Le
/php-src/tests/lang/
H A Dbug45392.phpt9 && ($conf = opcache_get_configuration()["directives"])
10 && array_key_exists("opcache.jit", $conf)
11 && $conf["opcache.jit"] === "tracing";
/php-src/ext/spl/tests/
H A Dgh14639.phpt11 && ($conf = opcache_get_configuration()["directives"])
12 && array_key_exists("opcache.jit", $conf)
13 && $conf["opcache.jit"] === "tracing";
/php-src/Zend/tests/
H A Dgh9407.phpt6 && ($conf = opcache_get_configuration()["directives"])
7 && array_key_exists("opcache.jit", $conf)
8 && $conf["opcache.jit"] === "tracing";
H A Dbug54268.phpt12 && ($conf = opcache_get_configuration()["directives"])
13 && array_key_exists("opcache.jit", $conf)
14 && $conf["opcache.jit"] === "tracing";
H A Dgh8841.phpt6 && ($conf = opcache_get_configuration()["directives"])
7 && array_key_exists("opcache.jit", $conf)
8 && $conf["opcache.jit"] === "tracing";
/php-src/Zend/tests/stack_limit/
H A Dstack_limit_014.phpt8 && ($conf = opcache_get_configuration()["directives"])
9 && array_key_exists("opcache.jit", $conf)
10 && $conf["opcache.jit"] === "tracing";
/php-src/ext/ldap/tests/
H A Dldap_connect_ldap_conf.phpt2 ldap_connect() - Connection using default host from openldap's ldap.conf
15 LDAPCONF={PWD}/ldap_connect_ldap_conf.conf
/php-src/.github/scripts/
H A Dsetup-slapd.sh34 if ! grep -q 'TLS_CACERT \/etc\/ldap\/ssl\/server.crt' /etc/ldap/ldap.conf; then
35 sudo sed -e 's|^\s*TLS_CACERT|# TLS_CACERT|' -i /etc/ldap/ldap.conf
36 echo 'TLS_CACERT /etc/ldap/ssl/server.crt' | sudo tee -a /etc/ldap/ldap.conf
/php-src/ext/phar/phar/
H A Dclicommand.inc245 foreach(call_user_func($func, $l, $sp) as $arg => $conf) {
246 if ((isset($conf['required']) && $conf['required']) != $required) {
258 $inf .= $this->cli_wordwrap($sp . $arg . $conf['inf'], $l2, $sp2) . "\n";
260 if (isset($conf['select']) && count($conf['select'])) {
262 foreach($conf['select'] as $opt => $what) {
267 foreach($conf['select'] as $opt => $what) {
/php-src/sapi/fpm/fpm/
H A Dfpm_conf.c375 *conf = LOG_AUTH; in fpm_conf_set_syslog_facility()
389 *conf = LOG_CRON; in fpm_conf_set_syslog_facility()
396 *conf = LOG_DAEMON; in fpm_conf_set_syslog_facility()
403 *conf = LOG_FTP; in fpm_conf_set_syslog_facility()
410 *conf = LOG_KERN; in fpm_conf_set_syslog_facility()
417 *conf = LOG_LPR; in fpm_conf_set_syslog_facility()
424 *conf = LOG_MAIL; in fpm_conf_set_syslog_facility()
431 *conf = LOG_NEWS; in fpm_conf_set_syslog_facility()
438 *conf = LOG_SYSLOG; in fpm_conf_set_syslog_facility()
445 *conf = LOG_USER; in fpm_conf_set_syslog_facility()
[all …]
/php-src/ext/pdo/tests/
H A Dpdo_test.inc14 $conf = eval($common);
15 foreach($conf['ENV'] as $n=>$v) putenv("$n=$v");
/php-src/sapi/apache2handler/
H A Dphp_apache.h52 char *get_php_config(void *conf, char *name, size_t name_len);
H A Dapache_config.c180 char *get_php_config(void *conf, char *name, size_t name_len) in get_php_config() argument
182 php_conf_rec *d = conf; in get_php_config()
/php-src/sapi/fpm/tests/
H A Dgh13563-conf-bool-env.phpt2 FPM: GH-13563 - conf boolean environment variables values

Completed in 39 milliseconds

12