Home
last modified time | relevance | path

Searched refs:storeFactory (Results 1 – 21 of 21) sorted by relevance

/dports/www/mediawiki135/mediawiki-1.35.5/includes/externalstore/
H A DExternalStoreAccess.php24 private $storeFactory; variable in ExternalStoreAccess
33 $this->storeFactory = $factory;
52 return $this->storeFactory->getStoreForUrl( $url, $params )->fetchFromURL( $url );
66 $batches = $this->storeFactory->getUrlsByProtocol( $urls );
69 $store = $this->storeFactory->getStore( $proto, $params );
97 $tryStores = $tryStores ?? $this->storeFactory->getWriteBaseUrls();
110 $store = $this->storeFactory->getStoreForUrl( $storeUrl, $params );
115 $location = $this->storeFactory->getStoreLocationFromUrl( $storeUrl );
165 $storeUrls = $this->storeFactory->getWriteBaseUrls();
175 $store = $this->storeFactory->getStoreForUrl( $storeUrl );
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/includes/externalstore/
H A DExternalStoreAccess.php24 private $storeFactory; variable in ExternalStoreAccess
33 $this->storeFactory = $factory;
52 return $this->storeFactory->getStoreForUrl( $url, $params )->fetchFromURL( $url );
66 $batches = $this->storeFactory->getUrlsByProtocol( $urls );
69 $store = $this->storeFactory->getStore( $proto, $params );
97 $tryStores = $tryStores ?? $this->storeFactory->getWriteBaseUrls();
110 $store = $this->storeFactory->getStoreForUrl( $storeUrl, $params );
115 $location = $this->storeFactory->getStoreLocationFromUrl( $storeUrl );
165 $storeUrls = $this->storeFactory->getWriteBaseUrls();
175 $store = $this->storeFactory->getStoreForUrl( $storeUrl );
[all …]
/dports/www/mediawiki137/mediawiki-1.37.1/includes/externalstore/
H A DExternalStoreAccess.php24 private $storeFactory; variable in ExternalStoreAccess
33 $this->storeFactory = $factory;
52 return $this->storeFactory->getStoreForUrl( $url, $params )->fetchFromURL( $url );
66 $batches = $this->storeFactory->getUrlsByProtocol( $urls );
69 $store = $this->storeFactory->getStore( $proto, $params );
97 $tryStores = $tryStores ?? $this->storeFactory->getWriteBaseUrls();
110 $store = $this->storeFactory->getStoreForUrl( $storeUrl, $params );
115 $location = $this->storeFactory->getStoreLocationFromUrl( $storeUrl );
165 $storeUrls = $this->storeFactory->getWriteBaseUrls();
175 $store = $this->storeFactory->getStoreForUrl( $storeUrl );
[all …]
/dports/finance/quickfix/quickfix-1.15.1/src/ruby/
H A Dquickfix_ruby.rb56 def initialize( application, storeFactory, settings, logFactory = nil ) argument
58 super( application, storeFactory, settings )
60 super( application, storeFactory, settings, logFactory )
63 @storeFactory = storeFactory;
70 def initialize( application, storeFactory, settings, logFactory = nil ) argument
72 super( application, storeFactory, settings )
74 super( application, storeFactory, settings, logFactory )
77 @storeFactory = storeFactory;
/dports/finance/quickfix/quickfix-1.15.1/src/python/
H A Dquickfix.i246 storeFactory = 0
250 def __init__(self, application, storeFactory, settings, logFactory=None):
252 SocketInitiatorBase.__init__(self, application, storeFactory, settings)
254 SocketInitiatorBase.__init__(self, application, storeFactory, settings, logFactory)
257 self.storeFactory = storeFactory
263 storeFactory = 0
267 def __init__(self, application, storeFactory, settings, logFactory=None):
269 SocketAcceptorBase.__init__(self, application, storeFactory, settings)
271 SocketAcceptorBase.__init__(self, application, storeFactory, settings, logFactory)
274 self.storeFactory = storeFactory
H A Dquickfix.py39989 storeFactory = 0 variable in SocketInitiator
39993 def __init__(self, application, storeFactory, settings, logFactory=None): argument
39995 SocketInitiatorBase.__init__(self, application, storeFactory, settings)
39997 SocketInitiatorBase.__init__(self, application, storeFactory, settings, logFactory)
40000 self.storeFactory = storeFactory
40006 storeFactory = 0 variable in SocketAcceptor
40010 def __init__(self, application, storeFactory, settings, logFactory=None): argument
40012 SocketAcceptorBase.__init__(self, application, storeFactory, settings)
40014 SocketAcceptorBase.__init__(self, application, storeFactory, settings, logFactory)
40017 self.storeFactory = storeFactory
/dports/finance/quickfix/quickfix-1.15.1/examples/tradeclient/
H A Dtradeclient.cpp65 FIX::FileStoreFactory storeFactory( settings ); in main() local
69 …initiator = new FIX::ThreadedSSLSocketInitiator ( application, storeFactory, settings, logFactory … in main()
71 initiator = new FIX::SSLSocketInitiator ( application, storeFactory, settings, logFactory ); in main()
74 initiator = new FIX::SocketInitiator( application, storeFactory, settings, logFactory ); in main()
/dports/finance/quickfix/quickfix-1.15.1/examples/executor/C++/
H A Dexecutor.cpp71 FIX::FileStoreFactory storeFactory( settings ); in main() local
76 … acceptor = new FIX::ThreadedSSLSocketAcceptor ( application, storeFactory, settings, logFactory ); in main()
78 acceptor = new FIX::SSLSocketAcceptor ( application, storeFactory, settings, logFactory ); in main()
81 acceptor = new FIX::SocketAcceptor ( application, storeFactory, settings, logFactory ); in main()
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/libp2p/go-libp2p-peerstore/pstoreds/
H A Dds_test.go122 func peerstoreFactory(tb testing.TB, storeFactory datastoreFactory, opts Options) pt.PeerstoreFacto…
124 store, storeCloseFn := storeFactory(tb)
137 func addressBookFactory(tb testing.TB, storeFactory datastoreFactory, opts Options) pt.AddrBookFact…
139 store, closeFunc := storeFactory(tb)
152 func keyBookFactory(tb testing.TB, storeFactory datastoreFactory, opts Options) pt.KeyBookFactory {
154 store, storeCloseFn := storeFactory(tb)
/dports/finance/quickfix/quickfix-1.15.1/examples/ordermatch/
H A Dordermatch.cpp49 FIX::FileStoreFactory storeFactory( settings ); in main() local
51 FIX::SocketAcceptor acceptor( application, storeFactory, settings, logFactory ); in main()
/dports/finance/quickfix/quickfix-1.15.1/examples/executor/ruby/
H A Dexecutor.rb103 storeFactory = Quickfix::FileStoreFactory.new( settings )
105 acceptor = Quickfix::SocketAcceptor.new( application, storeFactory, settings, logFactory )
/dports/finance/quickfix/quickfix-1.15.1/examples/executor/python/
H A Dexecutor.py77 storeFactory = fix.FileStoreFactory( settings ) variable
79 acceptor = fix.SocketAcceptor( application, storeFactory, settings, logFactory )
/dports/finance/quickfix/quickfix-1.15.1/
H A DREADME.SSL203 FIX::FileStoreFactory storeFactory( settings );
205 FIX::ThreadedSSLSocketAcceptor acceptor( application, storeFactory, settings, logFactory );
225 FIX::FileStoreFactory storeFactory( settings );
227 FIX::ThreadedSSLSocketInitiator initiator( application, storeFactory, settings, logFactory );
/dports/deskutils/simpleagenda/SimpleAgenda-0.43/Resources/Preferences.gorm/
H A Ddata.classes71 storeFactory,
/dports/deskutils/simpleagenda/SimpleAgenda-0.43/
H A DPreferencesController.m26 RETAIN(storeFactory);
48 RELEASE(storeFactory);
330 [self setContent:storeFactory];
H A DPreferencesController.h33 IBOutlet id storeFactory; variable
/dports/www/drupal8/drupal-8.9.20/core/tests/Drupal/KernelTests/Core/TempStore/
H A DTempStoreDatabaseTest.php31 protected $storeFactory; variable in Drupal\\KernelTests\\Core\\TempStore\\TempStoreDatabaseTest
/dports/www/drupal8/drupal-8.9.20/core/modules/user/tests/src/Kernel/
H A DTempStoreDatabaseTest.php32 protected $storeFactory; variable in Drupal\\Tests\\user\\Kernel\\TempStoreDatabaseTest
/dports/multimedia/pitivi/pitivi-0.999/docs/design/2008_design/2008_Architectural_Redesign/
H A DBrowsers.md49 - `storeFactory(`*`factory`*`, `*`uri`*`)`, stores the given
/dports/finance/quickfix/quickfix-1.15.1/src/python2/
H A Dquickfix.py39989 storeFactory = 0 variable in SocketInitiator
39993 def __init__(self, application, storeFactory, settings, logFactory=None): argument
39995 SocketInitiatorBase.__init__(self, application, storeFactory, settings)
39997 SocketInitiatorBase.__init__(self, application, storeFactory, settings, logFactory)
40000 self.storeFactory = storeFactory
40006 storeFactory = 0 variable in SocketAcceptor
40010 def __init__(self, application, storeFactory, settings, logFactory=None): argument
40012 SocketAcceptorBase.__init__(self, application, storeFactory, settings)
40014 SocketAcceptorBase.__init__(self, application, storeFactory, settings, logFactory)
40017 self.storeFactory = storeFactory
/dports/finance/quickfix/quickfix-1.15.1/src/python3/
H A Dquickfix.py39989 storeFactory = 0 variable in SocketInitiator
39993 def __init__(self, application, storeFactory, settings, logFactory=None): argument
39995 SocketInitiatorBase.__init__(self, application, storeFactory, settings)
39997 SocketInitiatorBase.__init__(self, application, storeFactory, settings, logFactory)
40000 self.storeFactory = storeFactory
40006 storeFactory = 0 variable in SocketAcceptor
40010 def __init__(self, application, storeFactory, settings, logFactory=None): argument
40012 SocketAcceptorBase.__init__(self, application, storeFactory, settings)
40014 SocketAcceptorBase.__init__(self, application, storeFactory, settings, logFactory)
40017 self.storeFactory = storeFactory