Home
last modified time | relevance | path

Searched refs:token (Results 76 – 100 of 922) sorted by relevance

12345678910>>...37

/plugin/codemirror/dist/modes/
H A Ddockerfile.min.js.map1token","next","single","pop","double","array","arguments","push","meta","lineComment","defineMIME"…
H A Dlivescript.min.js.map1token","external","startState","lastToken","style","indent","content","pos","start","indentation",…
H A Dhandlebars.min.js.map1token","handlebars_raw","pop","handlebars","dash_comment","comment","meta","blockCommentStart","bl…
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DBitrix24.php39 return new Uri(sprintf('%s/oauth/token/', $this->baseApiUri));
66 $token = $this->parseAccessTokenResponse($responseBody);
67 $this->storage->storeAccessToken($this->service(), $token);
69 return $token;
107 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
110 $token = new StdOAuth2Token();
111 $token->setAccessToken($data['access_token']);
112 $token->setLifetime($data['expires_in']);
115 $token->setRefreshToken($data['refresh_token']);
122 $token
[all...]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/
H A DUnusedFunctionParameterSniff.php65 $token = $tokens[$stackPtr];
68 … if (isset($token['scope_opener']) === false || isset($token['parenthesis_opener']) === false) {
77 $next = ++$token['scope_opener'];
78 $end = --$token['scope_closer'];
91 $token = $tokens[$next];
92 $code = $token['code'];
127 if ($code === T_VARIABLE && isset($params[$token['content']]) === true) {
128 unset($params[$token['content']]);
146 $content = $token['content'];
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DServerAuthorization.php45 protected $token;
47 public function __construct(TokenInterface $token = null, array $options = [])
49 $this->token = $token ?? new AnonToken();
102 * Determine if the current token is "authenticated". In the case where authentication is not required, we always
111 return $this->token instanceof BindToken;
115 * Set the current token.
117 public function setToken(TokenInterface $token): void
119 $this->token = $token;
44 protected $token; global() variable in FreeDSx\\Ldap\\Protocol\\ServerAuthorization
46 __construct(TokenInterface $token = null, array $options = []) global() argument
116 setToken(TokenInterface $token) global() argument
[all...]
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D54.54.js1token:"delimiter.array",open:"[",close:"]"},{token:"delimiter.parenthesis",open:"(",close:")"},{to…
H A D16.16.js.map1token: 'delimiter.bracket' },\n { open: '[', close: ']', token: 'delimiter.bracket' },\n …
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DScoopIt.php64 throw new TokenResponseException('Error in retrieving token.');
80 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
83 $token = new StdOAuth1Token();
85 $token->setRequestToken($data['oauth_token']);
86 $token->setRequestTokenSecret($data['oauth_token_secret']);
87 $token->setAccessToken($data['oauth_token']);
88 $token->setAccessTokenSecret($data['oauth_token_secret']);
90 $token->setEndOfLife(StdOAuth1Token::EOL_NEVER_EXPIRES);
92 $token->setExtraParams($data);
94 return $token;
[all...]
H A DTumblr.php64 throw new TokenResponseException('Error in retrieving token.');
80 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
83 $token = new StdOAuth1Token();
85 $token->setRequestToken($data['oauth_token']);
86 $token->setRequestTokenSecret($data['oauth_token_secret']);
87 $token->setAccessToken($data['oauth_token']);
88 $token->setAccessTokenSecret($data['oauth_token_secret']);
90 $token->setEndOfLife(StdOAuth1Token::EOL_NEVER_EXPIRES);
92 $token->setExtraParams($data);
94 return $token;
[all...]
H A DBitBucket.php64 throw new TokenResponseException('Error in retrieving token.');
80 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
83 $token = new StdOAuth1Token();
85 $token->setRequestToken($data['oauth_token']);
86 $token->setRequestTokenSecret($data['oauth_token_secret']);
87 $token->setAccessToken($data['oauth_token']);
88 $token->setAccessTokenSecret($data['oauth_token_secret']);
90 $token->setEndOfLife(StdOAuth1Token::EOL_NEVER_EXPIRES);
92 $token->setExtraParams($data);
94 return $token;
[all...]
H A DFitBit.php64 throw new TokenResponseException('Error in retrieving token.');
80 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
83 $token = new StdOAuth1Token();
85 $token->setRequestToken($data['oauth_token']);
86 $token->setRequestTokenSecret($data['oauth_token_secret']);
87 $token->setAccessToken($data['oauth_token']);
88 $token->setAccessTokenSecret($data['oauth_token_secret']);
90 $token->setEndOfLife(StdOAuth1Token::EOL_NEVER_EXPIRES);
92 $token->setExtraParams($data);
94 return $token;
[all...]
H A DFiveHundredPx.php86 throw new TokenResponseException('Error in retrieving token.');
103 'Error in retrieving token: "' . $data['error'] . '"'
107 $token = new StdOAuth1Token();
109 $token->setRequestToken($data['oauth_token']);
110 $token->setRequestTokenSecret($data['oauth_token_secret']);
111 $token->setAccessToken($data['oauth_token']);
112 $token->setAccessTokenSecret($data['oauth_token_secret']);
114 $token->setEndOfLife(StdOAuth1Token::EOL_NEVER_EXPIRES);
116 $token->setExtraParams($data);
118 return $token;
[all...]
H A DXing.php64 throw new TokenResponseException('Error in retrieving token.');
81 throw new TokenResponseException('Error in retrieving token: "' . $errors->error_name . '"');
84 $token = new StdOAuth1Token();
86 $token->setRequestToken($data['oauth_token']);
87 $token->setRequestTokenSecret($data['oauth_token_secret']);
88 $token->setAccessToken($data['oauth_token']);
89 $token->setAccessTokenSecret($data['oauth_token_secret']);
91 $token->setEndOfLife(StdOAuth1Token::EOL_NEVER_EXPIRES);
93 $token->setExtraParams($data);
95 return $token;
[all...]
H A DRedmine.php64 throw new TokenResponseException('Error in retrieving token.');
80 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
83 $token = new StdOAuth1Token();
85 $token->setRequestToken($data['oauth_token']);
86 $token->setRequestTokenSecret($data['oauth_token_secret']);
87 $token->setAccessToken($data['oauth_token']);
88 $token->setAccessTokenSecret($data['oauth_token_secret']);
90 $token->setEndOfLife(StdOAuth1Token::EOL_NEVER_EXPIRES);
92 $token->setExtraParams($data);
94 return $token;
[all...]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/
H A DAttribute.php37 $token = $this->read(Scanner\Token::IDENTIFIER);
38 $attribute = new Ast\Selector\Simple\Attribute($token->content);
39 $token = $this->read(
45 if ($token->type === Scanner\Token::ATTRIBUTE_OPERATOR) {
46 $attribute->match = $this->_operators[$token->content];
47 $token = $this->read(
55 switch ($token->type) {
58 $attribute->literal = new Ast\Value\Literal($token->content);
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php77 private $token; variable in Google\\Client
450 $token['refresh_token']
504 * @param string|array $token
509 if (is_string($token)) {
511 $token = $json;
514 $token = array(
515 'access_token' => $token,
519 if ($token == null) {
525 $this->token = $token;
530 return $this->token;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DFilterTokenParser.php31 public function parse(Token $token) argument
34 … new BlockReferenceExpression(new ConstantExpression($name, $token->getLine()), null, $token->getL…
42 $block = new BlockNode($name, $body, $token->getLine());
45 return new PrintNode($filter, $token->getLine(), $this->getTag());
48 public function decideBlockEnd(Token $token) argument
50 return $token->test('endfilter');
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
H A Dclass.csstidy_print.php159 foreach ($this->tokens as $key => $token)
161 switch ($token[0])
164 $out .= $template[0].$this->_htmlsp($token[1], $plain).$template[1];
169 if($this->parser->get_cfg('lowercase_s')) $token[1] = strtolower($token[1]);
170 …$out .= ($token[1]{0} !== '@') ? $template[2].$this->_htmlsp($token[1], $plain) : $template[0].$th…
175 … if($this->parser->get_cfg('case_properties') == 2) $token[1] = strtoupper($token[1]);
176 … if($this->parser->get_cfg('case_properties') == 1) $token[1] = strtolower($token[1]);
177 $out .= $template[4] . $this->_htmlsp($token[1], $plain) . ':' . $template[5];
181 $out .= $this->_htmlsp($token[1], $plain);
202 … $out .= $template[11] . '/*' . $this->_htmlsp($token[1], $plain) . '*/' . $template[12];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IAMCredentials/
H A DGenerateIdTokenResponse.php25 public $token; variable in Google\\Service\\IAMCredentials\\GenerateIdTokenResponse
30 public function setToken($token) argument
32 $this->token = $token;
39 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidEnterprise/
H A DAdministratorWebToken.php25 public $token; variable in Google\\Service\\AndroidEnterprise\\AdministratorWebToken
30 public function setToken($token) argument
32 $this->token = $token;
39 return $this->token;
H A DAuthenticationToken.php25 public $token; variable in Google\\Service\\AndroidEnterprise\\AuthenticationToken
30 public function setToken($token) argument
32 $this->token = $token;
39 return $this->token;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DLexer.php39 * The goal of all lexer rules/methods is to create a token object.
41 * create a single token. `nextToken` will return this object after
44 * If you subclass to allow multiple token emissions, then set this
45 * to the last token to be matched or something nonnull so that
46 * the auto token emit mechanism will not emit another token.
50 public $token; variable in Antlr\\Antlr4\\Runtime\\Lexer
53 * What character index in the stream did the current token start at?
54 * Needed, for example, to get the text for current token. Set at
62 * The line on which the first character of the token reside
310 emitToken(Token $token) global() argument
444 setToken(Token $token) global() argument
[all...]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Exception/
H A DUnknownPseudoElementException.php18 * @param PhpCss\Scanner\Token $token
20 public function __construct(PhpCss\Scanner\Token $token) { argument
21 $this->_encounteredToken = $token;
23 $token,
26 $token->content,
27 $token->position
/plugin/dokuprism/prism/
H A Dprism.css3 code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token
[all...]

12345678910>>...37