Home
last modified time | relevance | path

Searched refs:storage (Results 1 – 25 of 615) sorted by relevance

12345678910>>...25

/plugin/aichat/
H A DEmbeddings.php38 protected $storage;
55 * @param AbstractStorage $storage
61 AbstractStorage $storage,
66 $this->storage = $storage;
73 * Access storage
79 return $this->storage;
120 * Update the embeddings storage
124 * @param bool $clear Should any existing storage be cleared before updating?
133 $this->storage
31 protected $storage; global() variable in dokuwiki\\plugin\\aichat\\Embeddings
39 __construct(AbstractModel $model, AbstractStorage $storage) global() argument
[all...]
/plugin/evesso/phpoauthlib/src/OAuth/
H A DServiceFactory.php97 * @param TokenStorageInterface $storage
106 TokenStorageInterface $storage, argument
119 …return $this->$buildMethod($fullyQualifiedServiceName, $credentials, $storage, $scopes, $baseApiUr…
150 * @param TokenStorageInterface $storage
161 TokenStorageInterface $storage, argument
168 $storage,
206 * @param TokenStorageInterface $storage
217 TokenStorageInterface $storage, argument
227 …return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $b…
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/
H A DServiceFactory.php97 * @param TokenStorageInterface $storage
107 TokenStorageInterface $storage, argument
124 $storage,
159 * @param TokenStorageInterface $storage
170 TokenStorageInterface $storage, argument
178 $storage,
217 * @param TokenStorageInterface $storage
228 TokenStorageInterface $storage, argument
238 return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $baseApiUri);
/plugin/evesso/phpoauthlib/src/OAuth/Common/Service/
H A DAbstractService.php24 protected $storage; variable in OAuth\\Common\\Service\\AbstractService
29 * @param TokenStorageInterface $storage
34 TokenStorageInterface $storage argument
38 $this->storage = $storage;
87 return $this->storage;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Service/
H A DAbstractService.php24 protected $storage; variable in OAuth\\Common\\Service\\AbstractService
29 * @param TokenStorageInterface $storage
34 TokenStorageInterface $storage argument
38 $this->storage = $storage;
81 * Accessor to the storage adapter to be able to retrieve tokens
87 return $this->storage;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DDataProviderDebugTest.php33 $storage = new \SplObjectStorage();
34 $storage->attach($obj2);
35 $storage->foo = $obj2;
43 [new \stdClass(), $obj, [], $storage, $obj3],
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DMailchimp.php18 TokenStorageInterface $storage, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
24 if (is_null($this->baseApiUri) && $storage->hasAccessToken($this->service())) {
25 $this->setBaseApiUri($storage->retrieveAccessToken($this->service()));
86 $this->setBaseApiUri($this->storage->retrieveAccessToken($this->service()));
H A DAbstractService.php42 TokenStorageInterface $storage, argument
48 parent::__construct($credentials, $httpClient, $storage);
121 $this->storage->storeAccessToken($this->service(), $token);
141 $token = $this->storage->retrieveAccessToken($this->service());
179 * Accessor to the storage adapter to be able to retrieve tokens.
185 return $this->storage;
215 $this->storage->storeAccessToken($this->service(), $token);
273 return $this->storage->retrieveAuthorizationState($this->service());
277 * Stores a given authorization state into the storage.
283 $this->storage
[all...]
H A DBitly.php18 TokenStorageInterface $storage, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
107 $this->storage->storeAccessToken($this->service(), $token);
H A DDelicious.php32 TokenStorageInterface $storage, argument
39 $storage,
135 $this->storage->storeAccessToken($this->service(), $token);
H A DPocket.php18 TokenStorageInterface $storage, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
101 $this->storage->storeAccessToken($this->service(), $token);
H A DFoursquare.php20 TokenStorageInterface $storage, argument
24 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DInstagram.php29 TokenStorageInterface $storage, argument
33 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
H A DBox.php24 TokenStorageInterface $storage, argument
28 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
H A DDropbox.php24 TokenStorageInterface $storage, argument
28 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DMondo.php18 TokenStorageInterface $storage, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
H A DNest.php33 TokenStorageInterface $storage, argument
40 $storage,
H A DRunKeeper.php23 TokenStorageInterface $storage, argument
27 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DSoundCloud.php18 TokenStorageInterface $storage, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
/plugin/findologicxmlexport/vendor/sebastian/recursion-context/tests/
H A DContextTest.php66 $storage = new \SplObjectStorage();
67 $storage->attach($obj2);
68 $storage->foo = $obj2;
74 array($storage, spl_object_hash($storage)),
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
H A DAbstractService.php35 * @param TokenStorageInterface $storage
45 TokenStorageInterface $storage, argument
50 parent::__construct($credentials, $httpClient, $storage);
121 $this->storage->storeAccessToken($this->service(), $token);
144 $token = $this->storage->retrieveAccessToken($this->service());
184 return $this->storage;
218 $this->storage->storeAccessToken($this->service(), $token);
277 return $this->storage->retrieveAuthorizationState($this->service());
287 $this->storage->storeAuthorizationState($this->service(), $state);
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DAbstractService.php32 TokenStorageInterface $storage, argument
36 parent::__construct($credentials, $httpClient, $storage);
55 $this->storage->storeAccessToken($this->service(), $token);
80 $storedRequestToken = $this->storage->retrieveAccessToken($this->service());
93 $this->storage->retrieveAccessToken($this->service()),
103 $this->storage->storeAccessToken($this->service(), $token);
134 $token = $this->storage->retrieveAccessToken($this->service());
H A DYahoo.php20 TokenStorageInterface $storage, argument
24 parent::__construct($credentials, $httpClient, $storage, $signature, $baseApiUri);
67 $this->storage->retrieveAccessToken($this->service()),
79 $this->storage->storeAccessToken($this->service(), $token);
/plugin/findologicxmlexport/vendor/sebastian/exporter/tests/
H A DExporterTest.php49 $storage = new \SplObjectStorage;
50 $storage->attach($obj2);
51 $storage->foo = $obj2;
126 array($storage,
/plugin/a2s/
H A Ddemo.txt111 "a2s:type":"storage"
291 |[document]| : |[storage] | | |[printer] |
314 [storage]: {"a2s:type":"storage"}
332 |[document]| : |[storage] | | |[printer] |
355 [storage]: {"a2s:type":"storage"}
374 |[storage] | |[document]|
386 storage: : document :
396 [storage]: {"a2s:type":"storage","fill":"#a7ffbe","a2s:delref":true}
403 |[storage] | |[document]|
415 storage: : document :
[all …]

12345678910>>...25