Home
last modified time | relevance | path

Searched refs:repository (Results 1 – 25 of 210) sorted by relevance

123456789

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Snapshot/
H A DGetRepository.php30 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\GetRepository
34 $repository = $this->repository ?? null;
36 if (isset($repository)) {
37 return "/_snapshot/$repository";
55 public function setRepository($repository): GetRepository argument
57 if (isset($repository) !== true) {
60 if (is_array($repository) === true) {
61 $repository = implode(",", $repository);
[all...]
H A DDeleteRepository.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\DeleteRepository
35 $repository = $this->repository ?? null;
37 if (isset($repository)) {
38 return "/_snapshot/$repository";
56 public function setRepository($repository): DeleteRepository argument
58 if (isset($repository) !== true) {
61 if (is_array($repository) === true) {
62 $repository = implode(",", $repository);
[all...]
H A DStatus.php30 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\Status
35 $repository = $this->repository ?? null;
38 if (isset($repository) && isset($snapshot)) {
39 return "/_snapshot/$repository/$snapshot/_status";
41 if (isset($repository)) {
42 return "/_snapshot/$repository/_status";
60 public function setRepository($repository): Status argument
62 if (isset($repository) !== true) {
65 $this->repository
[all...]
H A DCleanupRepository.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\CleanupRepository
35 $repository = $this->repository ?? null;
37 if (isset($repository)) {
38 return "/_snapshot/$repository/_cleanup";
56 public function setRepository($repository): CleanupRepository argument
58 if (isset($repository) !== true) {
61 $this->repository = $repository;
H A DRepositoryAnalyze.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\RepositoryAnalyze
35 $repository = $this->repository ?? null;
37 if (isset($repository)) {
38 return "/_snapshot/$repository/_analyze";
65 public function setRepository($repository): RepositoryAnalyze argument
67 if (isset($repository) !== true) {
70 $this->repository = $repository;
H A DVerifyRepository.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\VerifyRepository
35 $repository = $this->repository ?? null;
37 if (isset($repository)) {
38 return "/_snapshot/$repository/_verify";
56 public function setRepository($repository): VerifyRepository argument
58 if (isset($repository) !== true) {
61 $this->repository = $repository;
H A DCreateRepository.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\CreateRepository
35 $repository = $this->repository ?? null;
37 if (isset($repository)) {
38 return "/_snapshot/$repository";
67 public function setRepository($repository): CreateRepository argument
69 if (isset($repository) !== true) {
72 $this->repository = $repository;
H A DDelete.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\Delete
36 $repository = $this->repository ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot";
57 public function setRepository($repository): Delete argument
59 if (isset($repository) !== true) {
62 $this->repository = $repository;
H A DGet.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\Get
36 $repository = $this->repository ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot";
61 public function setRepository($repository): Get argument
63 if (isset($repository) !== true) {
66 $this->repository = $repository;
H A DCreate.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\Create
36 $repository = $this->repository ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot";
68 public function setRepository($repository): Create argument
70 if (isset($repository) !== true) {
73 $this->repository = $repository;
H A DRestore.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\Restore
36 $repository = $this->repository ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot/_restore";
68 public function setRepository($repository): Restore argument
70 if (isset($repository) !== true) {
73 $this->repository = $repository;
H A DCloneSnapshot.php31 protected $repository; variable in Elasticsearch\\Endpoints\\Snapshot\\CloneSnapshot
37 $repository = $this->repository ?? null;
41 if (isset($repository) && isset($snapshot) && isset($target_snapshot)) {
42 return "/_snapshot/$repository/$snapshot/_clone/$target_snapshot";
69 public function setRepository($repository): CloneSnapshot argument
71 if (isset($repository) !== true) {
74 $this->repository = $repository;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cat/
H A DSnapshots.php30 protected $repository; variable in Elasticsearch\\Endpoints\\Cat\\Snapshots
34 $repository = $this->repository ?? null;
36 if (isset($repository)) {
37 return "/_cat/snapshots/$repository";
61 public function setRepository($repository): Snapshots argument
63 if (isset($repository) !== true) {
66 if (is_array($repository) === true) {
67 $repository = implode(",", $repository);
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DSnapshot.php29 * Register a snapshot repository.
31 * @param string $name the name of the repository
32 * @param string $type the repository type ("fs" for file system)
33 * @param array $settings Additional repository settings. If type "fs" is used, the "location" setting must be provided.
52 * Retrieve a repository record by name.
54 * @param string $name the name of the desired repository
79 * Retrieve all repository records.
95 * @param string $repository the name of the repository in which this snapshot should be stored
106 public function createSnapshot($repository, argument
90 createSnapshot($repository, $name, $options = [], $waitForCompletion = false) global() argument
128 getAllSnapshots($repository) global() argument
141 deleteSnapshot($repository, $name) global() argument
156 restoreSnapshot($repository, $name, $options = [], $waitForCompletion = false) global() argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DSnapshotNamespace.php31 * Removes stale data from repository.
33 * $params['repository'] = (string) A repository name
43 $repository = $this->extractArgument($params, 'repository');
48 $endpoint->setRepository($repository);
53 * Clones indices from one snapshot into another snapshot in the same repository.
55 * $params['repository'] = (string) A repository name
67 $repository
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/SearchableSnapshots/
H A DRepositoryStats.php31 protected $repository; variable in Elasticsearch\\Endpoints\\SearchableSnapshots\\RepositoryStats
35 $repository = $this->repository ?? null;
37 if (isset($repository)) {
38 return "/_snapshot/$repository/_stats";
53 public function setRepository($repository): RepositoryStats argument
55 if (isset($repository) !== true) {
58 $this->repository = $repository;
H A DMount.php31 protected $repository; variable in Elasticsearch\\Endpoints\\SearchableSnapshots\\Mount
36 $repository = $this->repository ?? null;
39 if (isset($repository) && isset($snapshot)) {
40 return "/_snapshot/$repository/$snapshot/_mount";
69 public function setRepository($repository): Mount argument
71 if (isset($repository) !== true) {
74 $this->repository = $repository;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DSnapshotNamespace.asciidoc41 $params['repository'] = (string) A repository name
56 $params['repository'] = (string) A repository name
73 $params['repository'] = (string) A repository name
90 $params['repository'] = (string) A repository name
93 $params['verify'] = (boolean) Whether to verify the repository after creation
94 $params['body'] = (array) The repository definitio
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/
H A DContainerImage.php25 public $repository; variable in Google\\Service\\AIPlatformNotebooks\\ContainerImage
34 public function setRepository($repository) argument
36 $this->repository = $repository;
43 return $this->repository;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Logging/
H A DSourceReference.php25 public $repository; variable in Google\\Service\\Logging\\SourceReference
34 public function setRepository($repository) argument
36 $this->repository = $repository;
43 return $this->repository;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Clouderrorreporting/
H A DSourceReference.php25 public $repository; variable in Google\\Service\\Clouderrorreporting\\SourceReference
34 public function setRepository($repository) argument
36 $this->repository = $repository;
43 return $this->repository;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
H A DGalleryReference.php37 public $repository; variable in Google\\Service\\TagManager\\GalleryReference
92 public function setRepository($repository) argument
94 $this->repository = $repository;
101 return $this->repository;
/plugin/latexit/classes/
H A DBibHandler.php34 protected $repository; variable in BibHandler
77 $this->repository = $conf['datadir'];
79 $this->repository .= '/';
80 $this->repository .= $name;
82 $this->repository .= '.txt';
92 $rep = file_get_contents($this->repository);
/plugin/semanticdata/phpSesame/
H A DphpSesame.php49 private $repository; variable in phpSesame
55 * @param string $repository The repository name
97 throw new Exception ('No repository has been selected.');
238 …throw new Exception ('Failed to append data to the repository, HTTP response error: ' . $response-…
277 …throw new Exception ('Failed to append data to the repository, HTTP response error: ' . $response-…
448 …throw new Exception ('Failed to clear repository, HTTP response error: ' . $response->getStatus());
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OSConfig/
H A DOSPolicyResource.php94 public function setRepository(OSPolicyResourceRepositoryResource $repository) argument
96 $this->repository = $repository;
103 return $this->repository;

123456789