Home
last modified time | relevance | path

Searched refs:base (Results 351 – 375 of 1781) sorted by last modified time

1...<<11121314151617181920>>...72

/plugin/spreadout/
H A Dplugin.info.txt1 base spreadout
/plugin/text/
H A Dplugin.info.txt1 base text
/plugin/indexmenu/
H A Dplugin.info.txt1 base indexmenu
/plugin/indexmenu/syntax/
H A Dindexmenu.php669 _search_index(& $data, $base, $file, $type, $lvl, $opts) global() argument
853 _search(& $data, $base, $func, $opts, $dir = '', $lvl = 1) global() argument
/plugin/actionrenderer/
H A Dplugin.info.txt1 base actionrenderer
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DXML.php260 $base = self::query($xpath, 'base', 'Base point is not present');
271 $point = self::extractPoint("\0" . $base, $curve);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md362 `base_url` string or array to use a URI template as the base URL of a client.
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DUriResolver.php58 * @param UriInterface $base Base URI
69 return $base;
81 $targetAuthority = $base->getAuthority();
83 $targetPath = $base->getPath();
106 $base->getScheme(),
135 * @param UriInterface $base Base URI
143 …($base->getScheme() !== $target->getScheme() || $target->getAuthority() === '' && $base->getAuthor…
164 if ($base->getPath() !== $target->getPath()) {
168 if ($base->getQuery() === $target->getQuery()) {
187 $sourceSegments = explode('/', $base->getPath());
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md304 …* Added HandlerWrapper base class to ease the creation of handler wrappers, just extend it and ove…
H A DUPGRADE.md27 the new `Monolog\Handler\Handler` base class too.
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/
H A DFingerprint.php54 $base = base64_encode($hash->hash($key));
55 return substr($base, 0, strlen($base) - 1);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/
H A DPrivateKey.php57 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime);
60 $key = $type::savePublicKey($this->prime, $this->base, $this->publicKey);
77 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime);
80 …return $type::savePrivateKey($this->prime, $this->base, $this->privateKey, $this->publicKey, $this…
H A DPublicKey.php41 return $type::savePublicKey($this->prime, $this->base, $this->publicKey, $options);
H A DParameters.php38 return $type::saveParameters($this->prime, $this->base, $options);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDH.php70 protected $base; variable in phpseclib3\\Crypt\\DH
91 $params->base = $args[1];
95 $params->base = new BigInteger(2);
222 $params->base = new BigInteger(2);
257 $key->base = $params->base;
259 $key->publicKey = $key->base->powMod($key->privateKey, $key->prime);
276 … if (!$private->prime->equals($public->prime) || !$private->base->equals($public->base)) {
353 $new->base = $components['base'];
400 $key = $type::saveParameters($this->prime, $this->base);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php78 * @param int $base
82 public function __construct($x = 0, $base = 10) argument
92 parent::__construct($x, $base);
98 * @param int $base
101 protected function initialize($base) argument
103 switch (abs($base)) {
H A DPHP32.php51 * @param int $base
54 protected function initialize($base) argument
56 if ($base != 256 && $base != -256) {
57 return parent::initialize($base);
H A DPHP64.php51 * @param int $base
54 protected function initialize($base) argument
56 if ($base != 256 && $base != -256) {
57 return parent::initialize($base);
H A DBCMath.php62 * @param int $base
65 public function __construct($x = 0, $base = 10) argument
76 parent::__construct($x, $base);
82 * @param int $base
85 protected function initialize($base) argument
87 switch (abs($base)) {
H A DEngine.php132 * @param int $base
134 public function __construct($x = 0, $base = 10) argument
145 if (empty($x) && (abs($base) != 256 || $x !== '0')) {
149 switch ($base) {
152 if ($base == -256 && (ord($x[0]) & 0x80)) {
160 $this->initialize($base);
169 if ($base > 0 && $x[0] == '-') {
177 if ($base < 0 && hexdec($x[0]) >= 8) {
183 $this->initialize($base);
199 $this->initialize($base);
[all …]
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
H A DGCECredentials.php223 $base = 'http://' . self::METADATA_IP . '/computeMetadata/';
246 $base .= self::CLIENT_ID_URI_PATH;
252 $base
256 return $base;
268 $base = 'http://' . self::METADATA_IP . '/computeMetadata/';
291 return $base . self::PROJECT_ID_URI_PATH;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md215 - `Uri::resolve` when base path has no slash and handling of fragment.
H A DREADME.md595 the base URI. Relative references can be divided into several forms according to
633 `public static function isSameDocumentReference(UriInterface $uri, UriInterface $base = null): bool`
636 fragment component, identical to the base URI. When no base URI is given, only an empty URI referen…
695 `public static function resolve(UriInterface $base, UriInterface $rel): UriInterface`
697 Converts the relative URI into a new URI that is resolved against the base URI.
708 `public static function relativize(UriInterface $base, UriInterface $target): UriInterface`
713 (string) $target === (string) UriResolver::resolve($base, UriResolver::relativize($base, $target))
720 $base = new Uri('http://example.com/a/b/');
721 echo UriResolver::relativize($base, new Uri('http://example.com/a/b/c')); // prints 'c'.
722 echo UriResolver::relativize($base, new Uri('http://example.com/a/x/y')); // prints '../x/y'.
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/
H A DPKCS1.php71 public static function saveParameters(BigInteger $prime, BigInteger $base, array $options = []) argument
75 'base' => $base
H A DPKCS8.php124 …public static function savePrivateKey(BigInteger $prime, BigInteger $base, BigInteger $privateKey,… argument
128 'base' => $base
146 …public static function savePublicKey(BigInteger $prime, BigInteger $base, BigInteger $publicKey, a… argument
150 'base' => $base

1...<<11121314151617181920>>...72