| /plugin/authfacebook/lib/Url/ |
| D | FacebookUrlDetectionHandler.php | 101 $host = $elements[count($elements) - 1]; 102 } elseif (!$host = $this->getHeader('HOST')) { 103 if (!$host = $this->getServerVar('SERVER_NAME')) { 104 $host = $this->getServerVar('SERVER_ADDR'); 110 $host = strtolower(preg_replace('/:\d+$/', '', trim($host))); 122 return $host . $appendPort; 176 $host = $elements[count($elements) - 1]; 178 …return preg_match("/^([a-z\d](-*[a-z\d])*)(\.([a-z\d](-*[a-z\d])*))*$/i", $host) //valid chars che… 179 && 0 < strlen($host) && strlen($host) < 254 //overall length check 180 && preg_match("/^[^\.]{1,63}(\.[^\.]{1,63})*$/", $host); //length of each label
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ |
| D | URI.php | 26 public $host; variable in HTMLPurifier_URI 51 * @param string $host 58 public function __construct($scheme, $userinfo, $host, $port, $path, $query, $fragment) argument 62 $this->host = $host; 116 if (!is_null($this->host)) { 118 $this->host = $host_def->validate($this->host, $config, $context); 119 if ($this->host === false) { 120 $this->host = null; 130 if (!is_null($this->scheme) && is_null($this->host) || $this->host === '') { 154 if (!is_null($this->host)) { // this catches $this->host === '' [all …]
|
| D | URIScheme.php | 72 (!is_null($uri->scheme) && ($uri->host === '' || is_null($uri->host))) || 76 (is_null($uri->scheme) && $uri->host === '') 81 $uri->host = null; 89 $host = $config->get('URI.Host'); 90 if (!is_null($host)) { 91 $uri->host = $host;
|
| /plugin/dokullm/ |
| H A D | cli.php | 65 $host = $this->getConf('chroma_host'); 82 …$this->sendFile($path, $host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $ollamaModel, $… 92 …$this->queryChroma($searchTerms, $limit, $host, $port, $tenant, $database, $collection, $ollamaHos… 96 …$this->checkHeartbeat($host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $ollamaModel, $v… 100 …$this->checkIdentity($host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $ollamaModel, $ve… 104 …$this->listCollections($host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $ollamaModel, $… 113 …$this->getDocument($documentId, $host, $port, $tenant, $database, $collection, $ollamaHost, $ollam… 125 …private function sendFile($path, $host, $port, $tenant, $database, $ollamaHost, $ollamaPort, $olla… argument 127 …$chroma = new \dokuwiki\plugin\dokullm\ChromaDBClient($host, $port, $tenant, $database, 'documents… 131 $this->processDirectory($path, $chroma, $host, $port, $tenant, $database, $verbose); [all …]
|
| /plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Uri/ |
| D | UriFactory.php | 26 $host = $this->detectHost($_server); 31 return $this->createFromParts($scheme, '', $host, $port, $path, $query); 49 * @param string $host 57 …public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragme… argument 62 $uri->setHost($host); 120 $host = isset($_server['HTTP_HOST']) ? $_server['HTTP_HOST'] : ''; 122 if (strstr($host, ':')) { 123 $host = parse_url($host, PHP_URL_HOST); 126 return $host;
|
| /plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/ |
| H A D | UriFactory.php | 26 $host = $this->detectHost($_server); 31 return $this->createFromParts($scheme, '', $host, $port, $path, $query); 49 * @param string $host 57 …public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragme… argument 62 $uri->setHost($host); 120 $host = isset($_server['HTTP_HOST']) ? $_server['HTTP_HOST'] : ''; 122 if (strstr($host, ':')) { 123 $host = parse_url($host, PHP_URL_HOST); 126 return $host;
|
| /plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/net/ |
| D | Socket.php | 36 var $host; variable in Socket 44 * @param host 47 function Socket($host, $port) { argument 48 $this->host = $host; 60 $this->connectionID = fsockopen($this->host, $this->port, $errorID, $errorDesc, $connectTimeout); 148 function setHost($host) { argument 149 $this->host = $host;
|
| /plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/ |
| D | Url.php | 24 private $host; variable in Nyholm\\Dsn\\Configuration\\Url 39 …public function __construct(?string $scheme, string $host, ?int $port = null, ?string $path = null… argument 41 $this->host = $host; 50 return $this->host; 56 public function withHost(string $host) argument 59 $new->host = $host;
|
| /plugin/onlinenumber/ |
| D | syntax.php | 38 function plugin_online_check_online(& $count, $host = '') argument 65 if (! $found && $matches[1] == $host) $found = TRUE; 72 if (! $found && $host != '') ++$count; // About you 79 function plugin_online_sweep_records($host = '') argument 100 $matches[1] == $host) { 106 if ($host != '' ) { 108 array_unshift($lines, strtr($host, "\n", '') . '|' . UTIME . "\n"); 159 $host = & $_SERVER['REMOTE_ADDR']; 161 $host = ''; 165 if ($this->plugin_online_check_online($count, $host)) { [all …]
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ |
| D | ClientBuilder.php | 765 foreach ($hosts as $host) { 766 if (is_string($host)) { 767 $host = $this->prependMissingScheme($host); 768 $host = $this->extractURIParts($host); 769 } elseif (is_array($host)) { 770 $host = $this->normalizeExtendedHost($host); 772 $this->logger->error("Could not parse host: ".print_r($host, true)); 773 throw new RuntimeException("Could not parse host: ".print_r($host, true)); 776 $connections[] = $this->connectionFactory->create($host); 785 private function normalizeExtendedHost(array $host): array argument [all …]
|
| /plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/ |
| H A D | Socket.php | 217 * @param string $host 221 public function connect(string $host) argument 228 $uri = $transport . '://' . $host; 245 $host, 269 * @param string $host 274 public static function create(string $host, array $options = []) : Socket argument 276 return (new self(null, $options))->connect($host); 303 * @param string $host 308 public static function tcp(string $host, array $options = []) : Socket argument 310 return self::create($host, \array_merge($options, ['transport' => 'tcp'])); [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/ |
| D | TCPSocketAction.php | 25 public $host; variable in Google\\Service\\CloudRun\\TCPSocketAction 34 public function setHost($host) argument 36 $this->host = $host; 43 return $this->host;
|
| D | HTTPGetAction.php | 26 public $host; variable in Google\\Service\\CloudRun\\HTTPGetAction 41 public function setHost($host) argument 43 $this->host = $host; 50 return $this->host;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/ |
| D | CacheInvalidationRule.php | 25 public $host; variable in Google\\Service\\Compute\\CacheInvalidationRule 34 public function setHost($host) argument 36 $this->host = $host; 43 return $this->host;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRedis/ |
| D | Endpoint.php | 25 public $host; variable in Google\\Service\\CloudRedis\\Endpoint 34 public function setHost($host) argument 36 $this->host = $host; 43 return $this->host;
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/ |
| D | host-config.asciidoc | 1 [[host-config]] 6 * <<inline-host-config>> 7 * <<extended-host-config>> 11 [[inline-host-config]] 20 to one node in your cluster. The format of the host can vary, depending on your 58 [[extended-host-config]] 61 The client also supports an _extended_ host configuration syntax. The inline 70 For this reason, the client supports an extended host syntax which provides 71 greater control over host initialization. None of the components are validated, 74 The extended syntax is an array of parameters for each host. The structure of [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudScheduler/ |
| D | AppEngineRouting.php | 25 public $host; variable in Google\\Service\\CloudScheduler\\AppEngineRouting 42 public function setHost($host) argument 44 $this->host = $host; 51 return $this->host;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidManagement/ |
| D | ProxyInfo.php | 30 public $host; variable in Google\\Service\\AndroidManagement\\ProxyInfo 57 public function setHost($host) argument 59 $this->host = $host; 66 return $this->host;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTasks/ |
| D | AppEngineRouting.php | 25 public $host; variable in Google\\Service\\CloudTasks\\AppEngineRouting 42 public function setHost($host) argument 44 $this->host = $host; 51 return $this->host;
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/ |
| D | CssRewriteFilter.php | 40 list($host, $path) = explode('/', $url, 2); 42 $host = $scheme.'://'.$host.'/'; 47 $host = ''; 70 … $content = $this->filterReferences($asset->getContent(), function ($matches) use ($host, $path) { 78 return str_replace($matches['url'], $host.$matches['url'], $matches[0]); 89 foreach (explode('/', $host.$path.$url) as $part) {
|
| /plugin/cli/ |
| D | cli-examples.txt | 14 user@host:~/somedir $ ls # List current directory 17 user@host:~/somedir $ wc info.txt # count words in info.txt 19 user@host:~/somedir $ ls \ 28 user@host:~/somedir $ dosemu 50 user@host:~/somedir $ echo Ah. Back to normal again 52 user@host:~/somedir $ 58 user@host:~/somedir $ ls # List current directory 61 user@host:~/somedir $ wc info.txt # count words in info.txt 63 user@host:~/somedir $ ls \ 72 user@host:~/somedir $ dosemu [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/ |
| D | GoogleCloudApigeeV1EndpointAttachment.php | 25 public $host; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1EndpointAttachment 46 public function setHost($host) argument 48 $this->host = $host; 55 return $this->host;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Gmail/ |
| D | SmtpMsa.php | 25 public $host; variable in Google\\Service\\Gmail\\SmtpMsa 46 public function setHost($host) argument 48 $this->host = $host; 55 return $this->host;
|
| /plugin/openid/Auth/OpenID/ |
| D | URINorm.php | 199 list(, $userinfo, $host, $port) = $authority_matches; 205 if (strpos($host, '%') !== false) { 206 $host = strtolower($host); 207 $host = preg_replace_callback( 209 'Auth_OpenID_pct_encoded_replace', $host); 213 $host = strtolower($host); 226 $authority = $userinfo . $host . $port;
|
| /plugin/fedauth/Auth/OpenID/ |
| D | URINorm.php | 197 list($_whole, $userinfo, $host, $port) = $authority_matches; 203 if (strpos($host, '%') !== -1) { 204 $host = strtolower($host); 205 $host = preg_replace_callback( 207 'Auth_OpenID_pct_encoded_replace', $host); 211 $host = strtolower($host); 224 $authority = $userinfo . $host . $port;
|