Home
last modified time | relevance | path

Searched refs:store_path (Results 1 – 25 of 169) sorted by relevance

1234567

/dports/audio/ampache/ampache-php74-5.0.0/vendor/openid/php-openid/examples/consumer/
H A Dcommon.php53 $store_path = null;
55 $store_path = sys_get_temp_dir();
59 $store_path = $_ENV['TMP'];
60 if (!isset($store_path)) {
61 $store_path = 'C:\Windows\Temp';
65 $store_path = @$_ENV['TMPDIR'];
66 if (!isset($store_path)) {
67 $store_path = '/tmp';
73 if (!file_exists($store_path) &&
74 !mkdir($store_path)) {
[all …]
/dports/audio/ampache/ampache-php74-5.0.0/vendor/kevinrob/guzzle-cache-middleware/src/Strategy/Delegate/consumer/
H A Dcommon.php53 $store_path = null;
55 $store_path = sys_get_temp_dir();
59 $store_path = $_ENV['TMP'];
60 if (!isset($store_path)) {
65 $store_path = @$_ENV['TMPDIR'];
66 if (!isset($store_path)) {
67 $store_path = '/tmp';
71 $store_path .= DIRECTORY_SEPARATOR . '_php_consumer_test';
73 if (!file_exists($store_path) &&
74 !mkdir($store_path)) {
[all …]
/dports/sysutils/py-salt/salt-3004.1/salt/states/
H A Dwin_pki.py68 store_path = r"Cert:\{}\{}".format(context, store)
83 cert_props["thumbprint"], store_path
88 cert_props["thumbprint"], store_path
104 cert_props["thumbprint"], store_path
110 cert_props["thumbprint"], store_path
143 store_path = r"Cert:\{}\{}".format(context, store)
148 thumbprint, store_path
153 thumbprint, store_path
163 thumbprint, store_path
169 thumbprint, store_path
/dports/security/libgsasl/gsasl-1.10.0/examples/openid20/
H A Dgsasl-openid20-rp.php26 $store_path = '/tmp/gsasl-openid20-store'; variable
27 $store = new Auth_OpenID_FileStore($store_path);
35 $return_to = file_get_contents ("$store_path/state/$nonce/return_to");
41 file_put_contents ("$store_path/state/$nonce/fail",
48 file_put_contents ("$store_path/state/$nonce/fail",
71 file_put_contents ("$store_path/state/$nonce/sreg", $outcome);
72 file_put_contents ("$store_path/state/$nonce/success", $claimed);
H A Dgsasl-openid20-redirect.php27 $store_path = $argv[1]; variable
29 $openid_url = file_get_contents ($store_path . "/state/$nonce/openid_url");
30 $realm = file_get_contents ($store_path . "/state/$nonce/realm");
31 $return_to = file_get_contents ($store_path . "/state/$nonce/return_to");
38 $store = new Auth_OpenID_FileStore($store_path);
71 file_put_contents ($store_path . "/state/$nonce/redirect_url", $redirect_url);
H A Dsmtp-server-openid20.c47 static char *store_path; variable
96 rc = asprintf (&tmp, "%s", store_path); in get_redirect_url()
105 rc = asprintf (&tmp, "%s/state", store_path); in get_redirect_url()
114 rc = asprintf (&tmp, "%s/state/%s", store_path, nonce); in get_redirect_url()
123 rc = asprintf (&tmp, "%s/state/%s/openid_url", store_path, nonce); in get_redirect_url()
133 rc = asprintf (&tmp, "%s/state/%s/realm", store_path, nonce); in get_redirect_url()
143 rc = asprintf (&tmp, "%s/state/%s/return_to", store_path, nonce); in get_redirect_url()
234 rc = asprintf (&tmp, "%s/state/%s/success", store_path, nonce); in callback()
244 rc = asprintf (&tmp, "%s/state/%s/fail", store_path, nonce); in callback()
272 rc = asprintf (&tmp, "%s/state/%s/sreg", store_path, nonce); in callback()
[all …]
/dports/security/gsasl/gsasl-1.10.0/examples/openid20/
H A Dgsasl-openid20-rp.php26 $store_path = '/tmp/gsasl-openid20-store'; variable
27 $store = new Auth_OpenID_FileStore($store_path);
35 $return_to = file_get_contents ("$store_path/state/$nonce/return_to");
41 file_put_contents ("$store_path/state/$nonce/fail",
48 file_put_contents ("$store_path/state/$nonce/fail",
71 file_put_contents ("$store_path/state/$nonce/sreg", $outcome);
72 file_put_contents ("$store_path/state/$nonce/success", $claimed);
H A Dgsasl-openid20-redirect.php27 $store_path = $argv[1]; variable
29 $openid_url = file_get_contents ($store_path . "/state/$nonce/openid_url");
30 $realm = file_get_contents ($store_path . "/state/$nonce/realm");
31 $return_to = file_get_contents ($store_path . "/state/$nonce/return_to");
38 $store = new Auth_OpenID_FileStore($store_path);
71 file_put_contents ($store_path . "/state/$nonce/redirect_url", $redirect_url);
H A Dsmtp-server-openid20.c47 static char *store_path; variable
96 rc = asprintf (&tmp, "%s", store_path); in get_redirect_url()
105 rc = asprintf (&tmp, "%s/state", store_path); in get_redirect_url()
114 rc = asprintf (&tmp, "%s/state/%s", store_path, nonce); in get_redirect_url()
123 rc = asprintf (&tmp, "%s/state/%s/openid_url", store_path, nonce); in get_redirect_url()
133 rc = asprintf (&tmp, "%s/state/%s/realm", store_path, nonce); in get_redirect_url()
143 rc = asprintf (&tmp, "%s/state/%s/return_to", store_path, nonce); in get_redirect_url()
234 rc = asprintf (&tmp, "%s/state/%s/success", store_path, nonce); in callback()
244 rc = asprintf (&tmp, "%s/state/%s/fail", store_path, nonce); in callback()
272 rc = asprintf (&tmp, "%s/state/%s/sreg", store_path, nonce); in callback()
[all …]
/dports/sysutils/conan/conan-1.44.0/conans/server/
H A Dmigrations.py16 def __init__(self, conf_path, store_path, current_version, out, force_migrations): argument
18 self.store_path = store_path
25 if not os.path.exists(self.store_path) or not os.listdir(self.store_path):
64 subdirs = list_folder_subdirs(basedir=self.store_path, level=4)
66 base_dir = os.path.join(self.store_path, subdir)
78 packages_dir = os.path.join(self.store_path, subdir, DEFAULT_REVISION_V1,
/dports/audio/lollypop/lollypop-5b2d95f4f8509d80fa86ab7d65b118326dc82a95/lollypop/
H A Dartwork_album.py92 store_path = self.add_extension(store_path)
93 uris = [GLib.filename_to_uri(store_path)]
96 store_path = self.add_extension(store_path)
103 GLib.filename_to_uri(store_path),
371 store_path = self.add_extension(store_path)
372 self.save_pixbuf_from_data(store_path, data)
382 store_path = self.add_extension(store_path)
383 self.save_pixbuf_from_data(store_path, data)
393 store_path = self.add_extension(store_path)
412 self.save_pixbuf_from_data(store_path, data)
[all …]
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Authentication/
H A DOpenid.php42 $store_path = Core::get_tmp_dir() . DIRECTORY_SEPARATOR . '_openid';
43 if (!file_exists($store_path) && !mkdir($store_path)) {
44 …ent(self::class, 'Could not access/create the FileStore directory ' . $store_path . '. Please chec…
49 return new Auth_OpenID_FileStore($store_path);
/dports/sysutils/py-salt/salt-3004.1/salt/modules/
H A Dwin_pki.py158 store_path = r"Cert:\{}\{}".format(context, store)
160 _validate_cert_path(name=store_path)
162 cmd.append(r"Get-ChildItem -Path '{}' | Select-Object".format(store_path))
291 store_path = r"Cert:\{}\{}".format(context, store)
315 store_path,
334 cmd.append(r" -CertStoreLocation '{}'".format(store_path))
341 cmd.append(r" -CertStoreLocation '{}'".format(store_path))
496 store_path = r"Cert:\{}\{}".format(context, store)
497 cert_path = r"{}\{}".format(store_path, thumbprint)
504 "Certificate '%s' already absent in store: %s", thumbprint, store_path
/dports/lang/spidermonkey60/firefox-60.9.0/taskcluster/scripts/
H A Drun-task390 def vcs_checkout(source_repo, dest, store_path,
417 store_path = os.path.abspath(store_path)
421 '--sharebase', store_path,
526 store_path = os.environ.get('HG_STORE_PATH')
531 if store_path:
532 store_path = os.path.expanduser(store_path)
541 'store-path': store_path,
713 store_path = os.environ['HG_STORE_PATH']
715 if not path_in_cache_or_volume(store_path):
721 os.makedirs(store_path)
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/taskcluster/scripts/
H A Drun-task398 def vcs_checkout(source_repo, dest, store_path,
423 store_path = os.path.abspath(store_path)
427 '--sharebase', store_path,
621 store_path = os.environ.get('HG_STORE_PATH')
626 if store_path:
627 store_path = os.path.expanduser(store_path)
641 'store-path': store_path,
843 store_path = os.environ['HG_STORE_PATH']
845 if not path_in_cache_or_volume(store_path):
851 os.makedirs(store_path)
[all …]
/dports/multimedia/smplayer/smplayer-21.10.0/src/
H A Dfavoriteeditor.h48 void setStorePath(const QString & path) { store_path = path; } in setStorePath()
49 QString storePath() { return store_path; } in storePath()
69 QString store_path; variable
/dports/sysutils/mate-control-center/mate-control-center-1.26.0/libslab/
H A Dbookmark-agent.c60 gchar *store_path; member
438 priv->store_path = NULL; in bookmark_agent_init()
600 g_free (priv->store_path); in finalize()
755 dir = g_path_get_dirname (priv->store_path); in save_store()
785 priv->store_path, uri); in get_rank()
835 if (!priv->store_path) in load_xbel_store()
998 if (g_strcmp0 (priv->store_path, path)) { in update_user_spec_path()
999 g_free (priv->store_path); in update_user_spec_path()
1000 priv->store_path = path; in update_user_spec_path()
1007 if (priv->store_path) { in update_user_spec_path()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/taskcluster/scripts/
H A Drun-task402 def vcs_checkout(source_repo, dest, store_path,
427 store_path = os.path.abspath(store_path)
431 '--sharebase', store_path,
625 store_path = os.environ.get('HG_STORE_PATH')
630 if store_path:
631 store_path = os.path.expanduser(store_path)
645 'store-path': store_path,
898 store_path = os.environ['HG_STORE_PATH']
900 if not path_in_cache_or_volume(store_path):
906 os.makedirs(store_path)
[all …]
/dports/www/firefox/firefox-99.0/taskcluster/scripts/
H A Drun-task402 def vcs_checkout(source_repo, dest, store_path,
427 store_path = os.path.abspath(store_path)
431 '--sharebase', store_path,
625 store_path = os.environ.get('HG_STORE_PATH')
630 if store_path:
631 store_path = os.path.expanduser(store_path)
645 'store-path': store_path,
900 store_path = os.environ['HG_STORE_PATH']
902 if not path_in_cache_or_volume(store_path):
908 os.makedirs(store_path)
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/taskcluster/scripts/
H A Drun-task402 def vcs_checkout(source_repo, dest, store_path,
427 store_path = os.path.abspath(store_path)
431 '--sharebase', store_path,
625 store_path = os.environ.get('HG_STORE_PATH')
630 if store_path:
631 store_path = os.path.expanduser(store_path)
645 'store-path': store_path,
898 store_path = os.environ['HG_STORE_PATH']
900 if not path_in_cache_or_volume(store_path):
906 os.makedirs(store_path)
[all …]
/dports/www/tikiwiki/tiki-21.2/
H A Dtiki-login_openid.php179 $store_path = "temp/openid_consumer";
180 if (! file_exists($store_path) && ! mkdir($store_path)) {
181 …print "Could not create the FileStore directory '$store_path'. " . " Please check the effective pe…
184 return new Auth_OpenID_FileStore($store_path);
/dports/www/libjwt/libjwt-1.13.1/libjwt/
H A Djwt-wincrypt.c35 wchar_t **store_path, in get_cert_location() argument
151 *store_path = wchar_buf; in get_cert_location()
175 wchar_t* store_path = NULL; in open_private_key_from_store() local
194 ret = get_cert_location(key, key_len, &store_name, &store_path, &thumbprint); in open_private_key_from_store()
204 store_path))) in open_private_key_from_store()
258 if (store_path) in open_private_key_from_store()
259 jwt_freemem(store_path); in open_private_key_from_store()
300 wchar_t* store_path = NULL; in open_public_key_from_store() local
324 store_path))) in open_public_key_from_store()
346 if (store_path) in open_public_key_from_store()
[all …]
/dports/devel/mercurial/mercurial-6.0/rust/hg-core/src/revlog/
H A Dfilelog.rs20 let index_path = store_path(file_path, b".i"); in open()
21 let data_path = store_path(file_path, b".d"); in open()
47 fn store_path(hg_path: &HgPath, suffix: &[u8]) -> PathBuf { in store_path() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/safe_browsing/core/db/
H A Dv4_test_util.cc43 const base::FilePath& store_path) in TestV4Store() argument
44 : V4Store(task_runner, store_path) {} in TestV4Store()
83 const base::FilePath& store_path) { in CreateV4Store() argument
84 auto new_store = std::make_unique<TestV4Store>(task_runner, store_path); in CreateV4Store()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/safe_browsing/core/db/
H A Dv4_test_util.cc43 const base::FilePath& store_path) in TestV4Store() argument
44 : V4Store(task_runner, store_path) {} in TestV4Store()
83 const base::FilePath& store_path) { in CreateV4Store() argument
84 auto new_store = std::make_unique<TestV4Store>(task_runner, store_path); in CreateV4Store()

1234567