Home
last modified time | relevance | path

Searched refs:endpoint (Results 76 – 100 of 132) sorted by last modified time

123456

/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/
H A DCurlClient.php54 * @param UriInterface $endpoint
65 UriInterface $endpoint, argument
83 $extraHeaders['Host'] = 'Host: '.$endpoint->getHost();
88 curl_setopt($ch, CURLOPT_URL, $endpoint->getAbsoluteUri());
H A DStreamClient.php17 * @param UriInterface $endpoint
28 UriInterface $endpoint, argument
46 $host = 'Host: '.$endpoint->getHost();
48 if ($endpoint->hasExplicitPortSpecified()) {
49 $host .= ':'.$endpoint->getPort();
63 $response = file_get_contents($endpoint->getAbsoluteUri(), false, $context);
H A DClientInterface.php17 * @param UriInterface $endpoint
27 UriInterface $endpoint, argument
/plugin/evesso/classes/
H A DoAuthHTTPClient.php20 * @param UriInterface $endpoint
30 UriInterface $endpoint, argument
38 $ok = $http->sendRequest($endpoint->getAbsoluteUri(), $requestBody, $method);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/NetworkManagement/
H A DStep.php156 public function setEndpoint(EndpointInfo $endpoint) argument
158 $this->endpoint = $endpoint;
165 return $this->endpoint;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DLogglyHandler.php65 * @param string $endpoint
69 protected function getCurlHandler(string $endpoint) argument
71 if (!array_key_exists($endpoint, $this->curlHandlers)) {
72 $this->curlHandlers[$endpoint] = $this->loadCurlHandle($endpoint);
75 return $this->curlHandlers[$endpoint];
81 * @param string $endpoint
85 private function loadCurlHandle(string $endpoint) argument
87 $url = sprintf("https://%s/%s/%s/", static::HOST, $endpoint, $this->token);
140 protected function send(string $data, string $endpoint): void argument
142 $ch = $this->getCurlHandler($endpoint);
H A DInsightOpsHandler.php52 $endpoint = $useSSL
57 $endpoint,
H A DLogmaticHandler.php63 $endpoint = $useSSL ? 'ssl://api.logmatic.io:10515' : 'api.logmatic.io:10514';
64 $endpoint .= '/v1/';
67 $endpoint,
H A DLogEntriesHandler.php49 $endpoint = $useSSL ? 'ssl://' . $host . ':443' : $host . ':80';
51 $endpoint,
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/
H A DOperationMetadata.php37 public $endpoint; variable in Google\\Service\\AIPlatformNotebooks\\OperationMetadata
100 public function setEndpoint($endpoint) argument
102 $this->endpoint = $endpoint;
109 return $this->endpoint;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1TraceConfig.php25 public $endpoint; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1TraceConfig
36 public function setEndpoint($endpoint) argument
38 $this->endpoint = $endpoint;
45 return $this->endpoint;
H A DGoogleCloudApigeeV1RuntimeTraceConfig.php26 public $endpoint; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1RuntimeTraceConfig
51 public function setEndpoint($endpoint) argument
53 $this->endpoint = $endpoint;
60 return $this->endpoint;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DNotificationEndpointGrpcSettings.php29 public $endpoint; variable in Google\\Service\\Compute\\NotificationEndpointGrpcSettings
58 public function setEndpoint($endpoint) argument
60 $this->endpoint = $endpoint;
67 return $this->endpoint;
H A DServiceAttachmentConnectedEndpoint.php25 public $endpoint; variable in Google\\Service\\Compute\\ServiceAttachmentConnectedEndpoint
38 public function setEndpoint($endpoint) argument
40 $this->endpoint = $endpoint;
47 return $this->endpoint;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Container/
H A DCluster.php76 public $endpoint; variable in Google\\Service\\Container\\Cluster
447 public function setEndpoint($endpoint) argument
449 $this->endpoint = $endpoint;
456 return $this->endpoint;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GKEHub/
H A DMembership.php124 public function setEndpoint(MembershipEndpoint $endpoint) argument
126 $this->endpoint = $endpoint;
133 return $this->endpoint;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
H A DGoogleCloudDataplexV1LakeMetastoreStatus.php25 public $endpoint; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1LakeMetastoreStatus
42 public function setEndpoint($endpoint) argument
44 $this->endpoint = $endpoint;
51 return $this->endpoint;
/plugin/authgooglesheets/vendor/firebase/php-jwt/
H A DREADME.md198 // this endpoint: https://www.gstatic.com/iap/verify/public_key-jwk
/plugin/oauthkeycloak/
H A DKeycloak.php39 public function getEndpoint(string $endpoint) argument
47 if (!isset($this->discovery[$endpoint])) return '';
48 return $this->discovery[$endpoint];
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/
H A DCHANGELOG.md103 the `Location` record, returned by the Insights endpoint.
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/WebService/
H A DClient.php188 private function responseFor($endpoint, $class, $ipAddress) argument
190 $path = implode('/', [self::$basePath, $endpoint, $ipAddress]);
/plugin/diagramsnet/lib/js/onedrive/
H A DOneDriveOrig.js2endpoint){case c.default.AAD:t=(o=e,f.appendQueryStrings(y,{redirect_uri:o.redirectUri,client_id:o…
H A DOneDrive.js6endpoint){case c.default.AAD:t=(o=e,f.appendQueryStrings(y,{redirect_uri:o.redirectUri,client_id:o…
/plugin/diagramsnet/lib/js/diagramly/
H A DExtensions.js6047 function updateEndpoint(cell, endpoint, source, ignoreX, ignoreY, endCell) argument
6049 if (endpoint != null)
6051 if (endpoint.LinkX != null && endpoint.LinkY != null)
6053 endpoint.LinkX = Math.round(endpoint.LinkX * 1000) / 1000;
6054 endpoint.LinkY = Math.round(endpoint.LinkY * 1000) / 1000;
6058 endpoint.LinkX = 1 - endpoint.LinkX;
6063 endpoint.LinkY = 1 - endpoint.LinkY;
6066 cell.style += ((!ignoreX) ? ((source) ? 'exitX' : 'entryX') + '=' + endpoint.LinkX + ';' : '') +
6067 ((!ignoreY) ? (((source) ? 'exitY' : 'entryY') + '=' + endpoint.LinkY + ';') : '') +
6070 if (endpoint.Inside)
[all …]
/plugin/matrixnotifier/
H A Dhelper.php159 …$endpoint = $homeserver.'/_matrix/client/r0/rooms/'.$roomid.'/send/m.room.message/'.uniqid('docuwi…
167 $ch = curl_init($endpoint);

123456