Home
last modified time | relevance | path

Searched refs:get_api_endpoint (Results 1 – 15 of 15) sorted by relevance

/dports/finance/fava/fava-1.18/src/fava/
H A Djson_api.py30 def get_api_endpoint(func): function
94 @get_api_endpoint
100 @get_api_endpoint
106 @get_api_endpoint
113 @get_api_endpoint
131 @get_api_endpoint
140 @get_api_endpoint
149 @get_api_endpoint
186 @get_api_endpoint
/dports/www/moodle39/moodle/h5p/classes/
H A Dcore.php237 $this->get_api_endpoint($library['machineName']),
267 …public function get_api_endpoint(?string $library = null, string $endpoint = 'content'): moodle_ur… function in core_h5p\\core
291 $endpoint = $this->get_api_endpoint();
329 $endpoint = $this->get_api_endpoint(null, 'site');
/dports/www/moodle310/moodle/h5p/classes/
H A Dcore.php247 $this->get_api_endpoint($library['machineName']),
289 …public function get_api_endpoint(?string $library = null, string $endpoint = 'content'): moodle_ur… function in core_h5p\\core
313 $endpoint = $this->get_api_endpoint();
351 $endpoint = $this->get_api_endpoint(null, 'site');
/dports/www/moodle311/moodle/h5p/classes/
H A Dcore.php252 $this->get_api_endpoint($library['machineName']),
294 …public function get_api_endpoint(?string $library = null, string $endpoint = 'content'): moodle_ur… function in core_h5p\\core
318 $endpoint = $this->get_api_endpoint();
356 $endpoint = $this->get_api_endpoint(null, 'site');
/dports/www/moodle310/moodle/repository/dropbox/classes/
H A Ddropbox.php83 protected function get_api_endpoint($endpoint) { function in repository_dropbox\\dropbox
128 $url = $this->get_api_endpoint($endpoint);
/dports/www/moodle311/moodle/repository/dropbox/classes/
H A Ddropbox.php83 protected function get_api_endpoint($endpoint) { function in repository_dropbox\\dropbox
128 $url = $this->get_api_endpoint($endpoint);
/dports/www/moodle39/moodle/repository/dropbox/classes/
H A Ddropbox.php83 protected function get_api_endpoint($endpoint) { function in repository_dropbox\\dropbox
128 $url = $this->get_api_endpoint($endpoint);
/dports/www/moodle310/moodle/lib/tests/fixtures/
H A Dtestable_core_h5p.php94 …public function get_api_endpoint(?string $library = null, string $endpoint = 'content'): \moodle_u… function in core_h5p\\h5p_test_core
/dports/www/moodle311/moodle/lib/tests/fixtures/
H A Dtestable_core_h5p.php94 …public function get_api_endpoint(?string $library = null, string $endpoint = 'content'): \moodle_u… function in core_h5p\\h5p_test_core
/dports/www/moodle39/moodle/lib/tests/fixtures/
H A Dtestable_core_h5p.php94 …public function get_api_endpoint(?string $library = null, string $endpoint = 'content'): \moodle_u… function in core_h5p\\h5p_test_core
/dports/www/moodle39/moodle/repository/dropbox/tests/
H A Dapi_test.php463 'get_api_endpoint',
480 ->method('get_api_endpoint');
/dports/www/moodle310/moodle/repository/dropbox/tests/
H A Dapi_test.php463 'get_api_endpoint',
480 ->method('get_api_endpoint');
/dports/www/moodle311/moodle/repository/dropbox/tests/
H A Dapi_test.php463 'get_api_endpoint',
480 ->method('get_api_endpoint');
/dports/devel/sentry-cli/sentry-cli-1.71.0/src/
H A Dconfig.rs186 pub fn get_api_endpoint(&self, path: &str) -> Result<String, Error> { in get_api_endpoint() method
H A Dapi.rs399 Cow::Owned(match self.config.get_api_endpoint(url) { in request()