Home
last modified time | relevance | path

Searched refs:storeName (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/lib/portlayer/storage/image/vsphere/
H A Dstore.go120 return path.Join(storeName, StorageImageDir)
154 u, err := util.ImageStoreNameToURL(storeName)
169 return v.Rm(op, v.imageStorePath(storeName))
180 p := v.imageStorePath(storeName)
336 v.deleteImage(op, storeName, ID)
348 imageDir := v.imageDirPath(storeName, ID)
374 v.cleanupDisk(op, ID, storeName, vmdisk)
624 v.manifestPath(storeName, ID),
625 v.imageDiskPath(storeName, ID),
626 v.imageDirPath(storeName, ID),
[all …]
/dports/science/py-paida/paida-3.2.1_2.10.1/paida/paida_core/
H A DITreeFactory.py18 def create(self, storeName='', storeType='xml', readOnly=False, createNew=True, options=None): argument
35 …if not (type(storeName) in types.StringTypes and type(storeType) in types.StringTypes and readOnly…
40 if not storeName:
43 storeName = None
48 if storeName and (not os.path.exists(storeName)):
49 raise IOException('%s does not exist.' % storeName)
52 storeFile = open(storeName, 'w')
55 elif not os.path.exists(storeName):
56 raise IOException('%s does not exist.' % storeName)
57 return ITree(storeName, storeType, readOnly, options)
/dports/lang/spidermonkey78/firefox-78.9.0/browser/components/newtab/lib/
H A DActivityStreamStorage.jsm34 * @param storeName String name of desired store
36 getDbTable(storeName) {
37 if (this.storeNames.includes(storeName)) {
39 get: this._get.bind(this, storeName),
41 set: this._set.bind(this, storeName),
48 async _getStore(storeName) {
52 _get(storeName, key) {
54 (await this._getStore(storeName)).get(key)
58 _getAll(storeName) {
60 (await this._getStore(storeName)).getAll()
[all …]
/dports/www/firefox/firefox-99.0/browser/components/newtab/lib/
H A DActivityStreamStorage.jsm34 * @param storeName String name of desired store
36 getDbTable(storeName) {
37 if (this.storeNames.includes(storeName)) {
39 get: this._get.bind(this, storeName),
41 set: this._set.bind(this, storeName),
48 async _getStore(storeName) {
52 _get(storeName, key) {
54 (await this._getStore(storeName)).get(key)
58 _getAll(storeName) {
60 (await this._getStore(storeName)).getAll()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/browser/components/newtab/lib/
H A DActivityStreamStorage.jsm34 * @param storeName String name of desired store
36 getDbTable(storeName) {
37 if (this.storeNames.includes(storeName)) {
39 get: this._get.bind(this, storeName),
41 set: this._set.bind(this, storeName),
48 async _getStore(storeName) {
52 _get(storeName, key) {
54 (await this._getStore(storeName)).get(key)
58 _getAll(storeName) {
60 (await this._getStore(storeName)).getAll()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/browser/components/newtab/lib/
H A DActivityStreamStorage.jsm34 * @param storeName String name of desired store
36 getDbTable(storeName) {
37 if (this.storeNames.includes(storeName)) {
39 get: this._get.bind(this, storeName),
41 set: this._set.bind(this, storeName),
48 async _getStore(storeName) {
52 _get(storeName, key) {
54 (await this._getStore(storeName)).get(key)
58 _getAll(storeName) {
60 (await this._getStore(storeName)).getAll()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.X509Certificates/src/System/Security/Cryptography/X509Certificates/
H A DX509Store.cs24 public X509Store(string storeName) in X509Store() argument
25 : this(storeName, StoreLocation.CurrentUser) in X509Store()
29 public X509Store(StoreName storeName) in X509Store() argument
30 : this(storeName, StoreLocation.CurrentUser) in X509Store()
39 public X509Store(StoreName storeName, StoreLocation storeLocation) in X509Store() argument
44 switch (storeName) in X509Store()
77 public X509Store(StoreName storeName, StoreLocation storeLocation, OpenFlags flags) in X509Store() argument
78 : this(storeName, storeLocation) in X509Store()
83 public X509Store(string storeName, StoreLocation storeLocation) in X509Store() argument
89 Name = storeName; in X509Store()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/lib/portlayer/storage/image/mock/
H A Dstore.go65 func (c *MockDataStore) GetImageStore(op trace.Operation, storeName string) (*url.URL, error) {
66 u, err := util.ImageStoreNameToURL(storeName)
78 func (c *MockDataStore) CreateImageStore(op trace.Operation, storeName string) (*url.URL, error) {
83 u, err := util.ImageStoreNameToURL(storeName)
92 func (c *MockDataStore) DeleteImageStore(op trace.Operation, storeName string) error {
93 u, err := util.ImageStoreNameToURL(storeName)
127 storeName, err := util.ImageStoreName(parent.Store)
132 selflink, err := util.ImageURL(storeName, ID)
139 parentLink, err = util.ImageURL(storeName, parent.ID)
190 func (c *MockDataStore) GetImageStorageUsage(op trace.Operation, storeName string) (int64, error) {
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/lib/portlayer/util/
H A Dpaths.go35 func ImageStoreNameToURL(storeName string) (*url.URL, error) {
37 AppendDir(a, storeName)
67 func ImageURL(storeName, imageName string) (*url.URL, error) { argument
72 u, err := ImageStoreNameToURL(storeName)
89 func VolumeStoreNameToURL(storeName string) (*url.URL, error) {
91 AppendDir(a, storeName)
119 func VolumeURL(storeName, volumeName string) (*url.URL, error) { argument
120 u, err := VolumeStoreNameToURL(storeName)
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Security/
H A DX509CertificateRecipientClientCredential.cs87 StoreLocation storeLocation, StoreName storeName) in SetDefaultCertificate() argument
89 SetDefaultCertificate (storeLocation, storeName, X509FindType.FindBySubjectName, subjectName); in SetDefaultCertificate()
93 StoreName storeName, X509FindType findType, Object findValue) in SetDefaultCertificate() argument
96 …DefaultCertificate = ConfigUtil.CreateCertificateFrom (storeLocation, storeName, findType, findVal… in SetDefaultCertificate()
103 StoreLocation storeLocation, StoreName storeName, in SetScopedCertificate() argument
106 …SetScopedCertificate (storeLocation, storeName, X509FindType.FindBySubjectName, subjectName, targe… in SetScopedCertificate()
110 StoreName storeName, X509FindType findType, in SetScopedCertificate() argument
114 …ScopedCertificates [targetService] = ConfigUtil.CreateCertificateFrom (storeLocation, storeName, f… in SetScopedCertificate()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Security.Cryptography.X509Certificates/
H A DX509Store.cs59 public X509Store (string storeName) in X509Store() argument
60 : this (storeName, StoreLocation.CurrentUser) in X509Store()
64 public X509Store (StoreName storeName) in X509Store() argument
65 : this (storeName, StoreLocation.CurrentUser) in X509Store()
74 public X509Store (StoreName storeName, StoreLocation storeLocation) in X509Store() argument
76 if ((storeName < StoreName.AddressBook) || (storeName > StoreName.TrustedPublisher)) in X509Store()
81 switch (storeName) { in X509Store()
86 _name = storeName.ToString (); in X509Store()
101 public X509Store (string storeName, StoreLocation storeLocation) in X509Store() argument
106 _name = storeName; in X509Store()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel/System/IdentityModel/Tokens/
H A DX509CertificateStoreTokenResolver.cs20 private string storeName; field in System.IdentityModel.Tokens.X509CertificateStoreTokenResolver
36 public X509CertificateStoreTokenResolver(StoreName storeName, StoreLocation storeLocation) in X509CertificateStoreTokenResolver() argument
37 …GetName(typeof(System.Security.Cryptography.X509Certificates.StoreName), storeName), storeLocation) in X509CertificateStoreTokenResolver()
46 public X509CertificateStoreTokenResolver(string storeName, StoreLocation storeLocation) in X509CertificateStoreTokenResolver() argument
48 if (string.IsNullOrEmpty(storeName)) in X509CertificateStoreTokenResolver()
53 this.storeName = storeName; in X509CertificateStoreTokenResolver()
62 get { return this.storeName; }
169 store = new X509Store(this.storeName, this.storeLocation); in TryResolveTokenCore()
/dports/net/traefik/traefik-2.6.1/pkg/tls/
H A Dtlsmanager.go74 for storeName, storeConfig := range m.storesConfig {
75 ctxStore := log.With(ctx, log.Str(log.TLSStoreName, storeName))
81 m.stores[storeName] = store
101 for storeName, certs := range storesCertificates {
102 st, ok := m.stores[storeName]
105 m.stores[storeName] = st
131 store := m.getStore(storeName)
133 err = fmt.Errorf("TLS store %s not found", storeName)
190 func (m *Manager) getStore(storeName string) *CertificateStore {
191 st, ok := m.stores[storeName]
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/security/ssl/
H A DTrustStoreManager.java84 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
101 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
104 this.storeName = storeName; in TrustStoreDescriptor()
113 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
186 Objects.equals(this.storeName, that.storeName) && in equals()
201 if (storeName != null && !storeName.isEmpty()) { in hashCode()
202 result = 31 * result + storeName.hashCode(); in hashCode()
338 if (!"NONE".equals(descriptor.storeName) &&
362 if (!"NONE".equals(descriptor.storeName)) {
370 "Not available key store: " + descriptor.storeName);
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/security/ssl/
H A DTrustStoreManager.java84 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
101 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
104 this.storeName = storeName; in TrustStoreDescriptor()
113 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
186 Objects.equals(this.storeName, that.storeName) && in equals()
201 if (storeName != null && !storeName.isEmpty()) { in hashCode()
202 result = 31 * result + storeName.hashCode(); in hashCode()
338 if (!"NONE".equals(descriptor.storeName) &&
362 if (!"NONE".equals(descriptor.storeName)) {
370 "Not available key store: " + descriptor.storeName);
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/security/ssl/
H A DTrustStoreManager.java84 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
101 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
104 this.storeName = storeName; in TrustStoreDescriptor()
113 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
186 Objects.equals(this.storeName, that.storeName) && in equals()
201 if (storeName != null && !storeName.isEmpty()) { in hashCode()
202 result = 31 * result + storeName.hashCode(); in hashCode()
338 if (!"NONE".equals(descriptor.storeName) &&
362 if (!"NONE".equals(descriptor.storeName)) {
370 "Not available key store: " + descriptor.storeName);
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/sun/security/ssl/
H A DTrustStoreManager.java84 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
101 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
104 this.storeName = storeName; in TrustStoreDescriptor()
113 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
186 Objects.equals(this.storeName, that.storeName) && in equals()
201 if (storeName != null && !storeName.isEmpty()) { in hashCode()
202 result = 31 * result + storeName.hashCode(); in hashCode()
338 if (!"NONE".equals(descriptor.storeName) &&
362 if (!"NONE".equals(descriptor.storeName)) {
370 "Not available key store: " + descriptor.storeName);
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/security/ssl/
H A DTrustStoreManager.java84 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
101 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
104 this.storeName = storeName; in TrustStoreDescriptor()
113 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
186 Objects.equals(this.storeName, that.storeName) && in equals()
201 if (storeName != null && !storeName.isEmpty()) { in hashCode()
202 result = 31 * result + storeName.hashCode(); in hashCode()
338 if (!"NONE".equals(descriptor.storeName) &&
362 if (!"NONE".equals(descriptor.storeName)) {
370 "Not available key store: " + descriptor.storeName);
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/YouTube/
H A DChannelToStoreLinkDetails.php20 public $storeName; variable in Google_Service_YouTube_ChannelToStoreLinkDetails
23 public function setStoreName($storeName) argument
25 $this->storeName = $storeName;
29 return $this->storeName;
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/sun/security/ssl/
H A DTrustStoreManager.java85 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
102 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
105 this.storeName = storeName; in TrustStoreDescriptor()
114 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
187 Objects.equals(this.storeName, that.storeName) && in equals()
202 if (storeName != null && !storeName.isEmpty()) { in hashCode()
203 result = 31 * result + storeName.hashCode(); in hashCode()
363 if (!"NONE".equals(descriptor.storeName) &&
387 if (!"NONE".equals(descriptor.storeName)) {
395 "Not available key store: " + descriptor.storeName);
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/sun/security/ssl/
H A DTrustStoreManager.java85 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
102 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
105 this.storeName = storeName; in TrustStoreDescriptor()
114 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
187 Objects.equals(this.storeName, that.storeName) && in equals()
202 if (storeName != null && !storeName.isEmpty()) { in hashCode()
203 result = 31 * result + storeName.hashCode(); in hashCode()
363 if (!"NONE".equals(descriptor.storeName) &&
387 if (!"NONE".equals(descriptor.storeName)) {
395 "Not available key store: " + descriptor.storeName);
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/sun/security/ssl/
H A DTrustStoreManager.java85 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
102 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
105 this.storeName = storeName; in TrustStoreDescriptor()
114 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
187 Objects.equals(this.storeName, that.storeName) && in equals()
202 if (storeName != null && !storeName.isEmpty()) { in hashCode()
203 result = 31 * result + storeName.hashCode(); in hashCode()
363 if (!"NONE".equals(descriptor.storeName) &&
387 if (!"NONE".equals(descriptor.storeName)) {
395 "Not available key store: " + descriptor.storeName);
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/sun/security/ssl/
H A DTrustStoreManager.java85 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
102 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
105 this.storeName = storeName; in TrustStoreDescriptor()
114 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
187 Objects.equals(this.storeName, that.storeName) && in equals()
202 if (storeName != null && !storeName.isEmpty()) { in hashCode()
203 result = 31 * result + storeName.hashCode(); in hashCode()
363 if (!"NONE".equals(descriptor.storeName) &&
387 if (!"NONE".equals(descriptor.storeName)) {
395 "Not available key store: " + descriptor.storeName);
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/sun/security/ssl/
H A DTrustStoreManager.java85 private final String storeName; field in TrustStoreManager.TrustStoreDescriptor
102 private TrustStoreDescriptor(String storeName, String storeType, in TrustStoreDescriptor() argument
105 this.storeName = storeName; in TrustStoreDescriptor()
114 "trustStore is: " + storeName + "\n" + in TrustStoreDescriptor()
187 Objects.equals(this.storeName, that.storeName) && in equals()
202 if (storeName != null && !storeName.isEmpty()) { in hashCode()
203 result = 31 * result + storeName.hashCode(); in hashCode()
363 if (!"NONE".equals(descriptor.storeName) &&
387 if (!"NONE".equals(descriptor.storeName)) {
395 "Not available key store: " + descriptor.storeName);
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/lib/portlayer/storage/image/cache/
H A Dcache.go80 store, err := util.ImageStoreNameToURL(storeName)
94 storeName, err := util.ImageStoreName(store)
100 _, err = c.DataStore.GetImageStore(op, storeName)
174 store, err := util.ImageStoreNameToURL(storeName)
182 _, err = c.GetImageStore(op, storeName)
221 op.Infof("Removing failed image store %s", storeName)
289 storeName, err := util.ImageStoreName(store)
331 storeName, err := util.ImageStoreName(store)
345 imgURL, err := util.ImageURL(storeName, ID)
389 storeName, err := util.ImageStoreName(store)
[all …]

12345678910>>...15