| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Snapshot/ |
| D | GetRepository.php | 30 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); 63 $this->repository = $repository;
|
| D | DeleteRepository.php | 31 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); 64 $this->repository = $repository;
|
| D | Status.php | 30 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 = $repository;
|
| D | CleanupRepository.php | 31 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;
|
| D | RepositoryAnalyze.php | 31 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;
|
| D | VerifyRepository.php | 31 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;
|
| D | CreateRepository.php | 31 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;
|
| D | Delete.php | 31 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;
|
| D | Get.php | 31 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;
|
| D | Restore.php | 31 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;
|
| D | Create.php | 31 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;
|
| D | CloneSnapshot.php | 31 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/ |
| D | Snapshots.php | 30 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); 69 $this->repository = $repository;
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/ |
| D | SnapshotNamespace.php | 43 $repository = $this->extractArgument($params, 'repository'); 48 $endpoint->setRepository($repository); 67 $repository = $this->extractArgument($params, 'repository'); 75 $endpoint->setRepository($repository); 97 $repository = $this->extractArgument($params, 'repository'); 104 $endpoint->setRepository($repository); 125 $repository = $this->extractArgument($params, 'repository'); 131 $endpoint->setRepository($repository); 149 $repository = $this->extractArgument($params, 'repository'); 155 $endpoint->setRepository($repository); [all …]
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/ |
| D | Snapshot.php | 95 …* @param string $repository the name of the repository in which this snapshot should be sto… 106 public function createSnapshot($repository, $name, $options = [], $waitForCompletion = false) argument 108 …return $this->request($repository.'/'.$name, Request::PUT, $options, ['wait_for_completion' => $wa… 114 * @param string $repository the name of the repository from which to retrieve the snapshot 124 public function getSnapshot($repository, $name) argument 127 $response = $this->request($repository.'/'.$name); 130 …hrow new NotFoundException("Snapshot '".$name."' does not exist in repository '".$repository."'."); 142 * @param string $repository the repository name 150 public function getAllSnapshots($repository) argument 152 return $this->request($repository.'/_all')->getData(); [all …]
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/SearchableSnapshots/ |
| D | RepositoryStats.php | 31 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;
|
| D | Mount.php | 31 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/ |
| D | SnapshotNamespace.asciidoc | 41 $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 definition (Required) 107 $params['repository'] = (string) A repository name 122 $params['repository'] = (list) Name of the snapshot repository to unregister. Wildcard (`*`) pa… 135 $params['repository'] = (string) A repository name 139 …hether to show verbose snapshot info or only show the basic info found in the repository index blob [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/ |
| D | ContainerImage.php | 25 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/ |
| D | SourceReference.php | 25 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/ |
| D | SourceReference.php | 25 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/ |
| D | GalleryReference.php | 37 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/ |
| D | BibHandler.php | 34 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/ |
| D | phpSesame.php | 49 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/ |
| D | OSPolicyResource.php | 94 public function setRepository(OSPolicyResourceRepositoryResource $repository) argument 96 $this->repository = $repository; 103 return $this->repository;
|