Home
last modified time | relevance | path

Searched full:repository (Results 1 – 25 of 575) sorted by relevance

12345678910>>...23

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
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 = $this->extractArgument($params, 'repository');
75 $endpoint->setRepository($repository);
83 * Creates a snapshot in a repository.
85 * $params['repository'] = (string) A repository name
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
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" set…
52 * Retrieve a repository record by name.
54 * @param string $name the name of the desired repository
69 throw new NotFoundException("Repository '".$name."' does not exist.");
79 * Retrieve all repository records.
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
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
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 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/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Snapshot/
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);
63 $this->repository = $repository;
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);
64 $this->repository = $repository;
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 = $repository;
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;
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;
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;
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;
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;
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;
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;
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;
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/
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);
69 $this->repository = $repository;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ArtifactRegistry/Resource/
DProjectsLocationsRepositories.php23 use Google\Service\ArtifactRegistry\Repository; alias
39 * Creates a repository. The returned Operation will finish once the repository
40 * has been created. Its response will be the created Repository.
44 * repository will be created.
45 * @param Repository $postBody
48 * @opt_param string repositoryId The repository id to use for this repository.
51 public function create($parent, Repository $postBody, $optParams = [])
58 * Deletes a repository and all of its contents. The returned Operation will
59 * finish once the repository has been deleted. It will not have any Operation
63 * @param string $name Required. The name of the repository to delete.
[all …]
/plugin/semanticdata/phpSesame/
DphpSesame.php47 * @var string the selected repository
49 private $repository; variable in phpSesame
55 * @param string $repository The repository name
57 function __construct($sesameUrl = 'http://localhost:8080/openrdf-sesame', $repository = null) argument
60 $this->setRepository($repository);
64 * Selects a repository to work on
67 * @param string $rep The repository name
71 $this->repository = $rep;
95 if (empty($this->repository) || $this->repository == '')
97 throw new Exception ('No repository has been selected.');
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/SearchableSnapshots/
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;
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/latexit/classes/
DBibHandler.php31 * Zotero local repository location
34 protected $repository; variable in BibHandler
74 //parse local repository location
77 $this->repository = $conf['datadir'];
79 $this->repository .= '/';
80 $this->repository .= $name;
82 $this->repository .= '.txt';
86 * Load an entry from the external repository using REST api and the
87 * information from local repository and insert it to bibliography items.
92 $rep = file_get_contents($this->repository);
/plugin/jplayer/vendor/happyworm/jplayer/
DMIGRATION.md6 - jPlayer Repository Refactor: The skins source files are now in `src/skin` and the build skins fil…
7 - jPlayer Repository Refactor: All the circle player specific files are now in the `lib/circle-play…
8 - jPlayer Repository Refactor: Changed the html `examples` file extentions from `htm` to `html` for…
38 …ayer Repository Refactor: Added all download content to the repository and added a grunt build sys…
51 This was the last version that used the old repository structure.
/plugin/git/lib/
DGit.php31 * Create a new git repository
36 * @param string repository path
45 * Open an existing git repository
47 * Accepts a repository path
50 * @param string repository path
75 * Git Repository Interface Class
78 * of a git repository
108 * Create a new git repository
113 * @param string repository path
119 throw new Exception('"'.$repo_path.'" is already a git repository');
[all …]
/plugin/gitbacked/classes/
H A DGitRepo.php9 * Git Repository Interface Class
12 * of a git repository
32 * Create a new git repository
37 * @param string repository path
54 '"' . $repo_path . '" is already a git repository',
65 … '"' . $reference . '" is not a git repository. Cannot use as reference.',
86 * Accepts a repository path
89 * @param string repository path
107 * Set the repository's path
109 * Accepts the repository path
[all …]
/plugin/gitlog/
Dsyntax.php71 // check if repository is set
72 if( ! isset($data['repository'])) {
73 throw new Exception('no repository set', 1);
92 $repository = $this->clean_git_dir($data['dir']).$data['repository'];
94 $repository = $this->clean_git_dir($this->getConf('root_dir')).$data['repository'];
98 if ( ! is_dir(dirname($repository)) ) {
99 throw new Exception('repository path not valid >> '.$repository, 1);
103 $log = $this->git_log($repository, $limit, $bare);

12345678910>>...23