Home
last modified time | relevance | path

Searched +full:github +full:- +full:token (Results 1 – 25 of 463) sorted by relevance

12345678910>>...19

/third_party/node/deps/npm/node_modules/registry-auth-token/
DCHANGELOG.md5 ## [3.4.0] - 2019-03-20
9 - Enabled legacy auth token to be read from environment variable (Martin Flodin)
11 ## [3.3.2] - 2018-01-26
15 - Support password with ENV variable tokens (Nowell Strite)
17 ## [3.3.1] - 2017-05-02
21 - Auth legacy token is basic auth (Hutson Betts)
23 ## [3.3.0] - 2017-04-24
27 - Support legacy auth token config key (Zoltan Kochan)
28 - Use safe-buffer module for backwards-compatible base64 encoding/decoding (Espen Hovlandsdal)
29 - Change to standard.js coding style (Espen Hovlandsdal)
[all …]
Dpackage.json2 "_from": "registry-auth-token@^3.0.1",
3 "_id": "registry-auth-token@3.4.0",
5 …"_integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmf…
6 "_location": "/registry-auth-token",
11 "raw": "registry-auth-token@^3.0.1",
12 "name": "registry-auth-token",
13 "escapedName": "registry-auth-token",
19 "/package-json"
21 "_resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz",
23 "_spec": "registry-auth-token@^3.0.1",
[all …]
Dindex.js59 var token = replaceEnvironmentVariable(npmrc._auth)
61 return {token: token, type: 'Basic'}
65 return path[path.length - 1] === '/' ? path : path + '/'
69 // try to get bearer token
75 // try to get basic token
86 function replaceEnvironmentVariable (token) { argument
87 return token.replace(/^\$\{?([^}]*)\}?$/, function (fullMatch, envVar) {
97 // check if bearer token is set as environment variable
98 var token = replaceEnvironmentVariable(tok)
100 return {token: token, type: 'Bearer'}
[all …]
/third_party/node/deps/npm/node_modules/libnpmorg/
DREADME.md1-ci.org/npm/libnpmorg) [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/zkat/libnpm…
3 [`libnpmorg`](https://github.com/npm/libnpmorg) is a Node.js library for
5 API](https://github.com/npm/registry/blob/master/docs/orgs/memberships.md#membership-detail).
12 console.log(await org.ls('myorg', {token: 'deadbeef'}))
34 * [`ls.stream()`](#ls-stream)
40 `libnpmorg` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch).
43 documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options)
48 …`opts.token` - can be passed in and will be used as the authentication token for the registry. For…
49- certain operations will require an OTP token to be passed in. If a `libnpmorg` command fails wit…
50 * `opts.Promise` - If you pass this in, the Promises returned by `libnpmorg` commands will use this…
[all …]
/third_party/node/deps/npm/node_modules/libnpmhook/
DREADME.md1-ci.org/npm/libnpmhook) [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/zkat/libnp…
3 [`libnpmhook`](https://github.com/npm/libnpmhook) is a Node.js library for
4 programmatically managing the npm registry's server-side hooks.
7 post](https://blog.npmjs.org/post/145260155635/introducing-hooks-get-notifications-of-npm).
14 console.log(await hooks.ls('mypkg', {token: 'deadbeef'}))
31 * [`ls.stream()`](#ls-stream)
38 `libnpmhook` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch).
41 documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options)
46 …`opts.token` - can be passed in and will be used as the authentication token for the registry. For…
47- certain operations will require an OTP token to be passed in. If a `libnpmhook` command fails wi…
[all …]
/third_party/node/deps/acorn/acorn/
DREADME.md8 [MIT license](https://github.com/acornjs/acorn/blob/master/acorn/LICENSE).
11 [report bugs](https://github.com/acornjs/acorn/issues) or create pull
12 requests on [github](https://github.com/acornjs/acorn). For questions
27 git clone https://github.com/acornjs/acorn.git
38 spec](https://github.com/estree/estree).
55 - **ecmaVersion**: Indicates the ECMAScript version to parse. Must be
66 - **sourceType**: Indicate the mode the code should be parsed in. Can be
73 - **onInsertedSemicolon**: If given a callback, that callback will be
79 - **onTrailingComma**: Like `onInsertedSemicolon`, but for trailing
82 - **allowReserved**: If `false`, using a reserved word will generate
[all …]
/third_party/rust/crates/syn/src/
Dident.rs8 use crate::token::Token;
15 pub fn Ident(marker: lookahead::TokenMarker) -> Ident { in Ident()
20 fn accept_as_ident(ident: &Ident) -> bool { in accept_as_ident()
23 // Based on https://doc.rust-lang.org/grammar.html#keywords in accept_as_ident()
24 // and https://github.com/rust-lang/rfcs/blob/master/text/2421-unreservations-2018.md in accept_as_ident()
25 // and https://github.com/rust-lang/rfcs/blob/master/text/2420-unreserve-proc.md in accept_as_ident()
40 fn parse(input: ParseStream) -> Result<Self> { in parse()
53 impl Token for Ident {
54 fn peek(cursor: Cursor) -> bool { in peek()
62 fn display() -> &'static str { in display()
[all …]
/third_party/node/deps/npm/node_modules/npm-profile/
DREADME.md1 # npm-profile
6 const profile = require('npm-profile')
7 const result = await profile.get(registry, {token})
13 * [authentication](https://github.com/npm/registry/blob/master/docs/user/authentication.md)
14 * [profile editing](https://github.com/npm/registry/blob/master/docs/user/profile.md) (and two-fact…
22 * [`adduserWeb()`](#adduser-web)
23 * [`loginWeb()`](#login-web)
24 * [`adduserCouch()`](#adduser-couch)
25 * [`loginCouch()`](#login-couch)
29 * Token Management
[all …]
/third_party/python/
D.gitattributes25 [attr]noeol -text
48 # https://tekin.co.uk/2020/10/better-git-diff-output-for-ruby-python-elixir-and-more
49 # https://gist.github.com/tekin/12500956bd56784728e490d8cef9cb81
58 # https://github.com/github/linguist/blob/master/docs/overrides.md
63 [attr]generated linguist-generated=true diff=generated
68 Doc/library/token-list.inc generated
73 Include/token.h generated
76 Lib/token.py generated
80 Parser/token.c generated
82 Python/Python-ast.c generated
/third_party/node/doc/guides/
Dcommit-queue.md3 > Stability: 1 - Experimental
5 *tl;dr: You can land pull requests by adding the `commit-queue` label to it.*
8 landing process by automating it via GitHub Actions. With it, collaborators can
9 land pull requests by adding the `commit-queue` label to a PR. All
10 checks will run via node-core-utils, and if the pull request is ready to land,
18 From a high-level, the Commit Queue works as follow:
20 1. Collaborators will add `commit-queue` label to pull requests ready to land
23 1. Check if the PR also has a `request-ci` label (if it has, skip this PR
27 3. Remove the `commit-queue` label
31 2. Add `commit-queue-failed` label to the PR
[all …]
/third_party/ejdb/
DREADME.md3 [![Join Telegram](https://img.shields.io/badge/join-ejdb2%20telegram-0088cc.svg)](https://tlg.name/…
4 [![license](https://img.shields.io/github/license/Softmotions/ejdb.svg)](https://github.com/Softmot…
9 [The Story of the IT-depression, birds and EJDB 2.0](https://medium.com/@adamansky/ejdb2-41670e8089…
15github.com/Softmotions/EJDB2Swift) / [Android](https://github.com/Softmotions/ejdb/tree/master/src…
20 * [Support of collection joins](#jql-collection-joins)
21 * Powered by [iowow.io](http://iowow.io) - The persistent key/value storage engine
22 …ebsockets endpoints powered by [IWNET](https://github.com/Softmotions/iwnet) and [BearSSL](https:/…
23 * JSON documents are stored in using fast and compact [binn](https://github.com/liteserver/binn) bi…
25 ---
26 * [Native language bindings](#native-language-bindings)
[all …]
/third_party/node/deps/npm/node_modules/libnpmteam/
DREADME.md1-ci.org/npm/libnpmteam) [![AppVeyor](https://img.shields.io/appveyor/ci/zkat/libnpmteam/latest.svg…
3 [`libnpmteam`](https://github.com/npm/libnpmteam) is a Node.js
27 * [`lsTeams()`](#ls-teams)
28 * [`lsTeams.stream()`](#ls-teams-stream)
29 * [`lsUsers()`](#ls-users)
30 * [`lsUsers.stream()`](#ls-users-stream)
55 `libnpmteam` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch).
58 documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options)
63 …`opts.token` - can be passed in and will be used as the authentication token for the registry. For…
64- certain operations will require an OTP token to be passed in. If a `libnpmteam` command fails wi…
[all …]
/third_party/node/deps/npm/node_modules/libnpmpublish/
DREADME.md1-ci.org/npm/libnpmpublish) [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/zkat/li…
3 [`libnpmpublish`](https://github.com/npm/libnpmpublish) is a Node.js library for
32 `libnpmpublish` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch).
35 documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options)
40 …`opts.token` - can be passed in and will be used as the authentication token for the registry. For…
41 * `opts.Promise` - If you pass this in, the Promises returned by `libnpmpublish` commands will use …
43 #### <a name="publish"></a> `> libpub.publish(pkgJson, tarData, [opts]) -> Promise`
48 `tarData` can be a Buffer, a base64-encoded string, or a binary stream of data.
55 pack. You can then `fs.createReadStream('my-proj-1.0.0.tgz')` and pass that to
68 end up with `dist.integrity = 'sha512-deadbeefbadc0ffee'`. Any algorithm
[all …]
/third_party/littlefs/.github/workflows/
Dstatus.yml9 runs-on: ubuntu-18.04
12 - uses: dawidd6/action-download-artifact@v2
13 continue-on-error: true
15 workflow: ${{github.event.workflow_run.name}}
16 run_id: ${{github.event.workflow_run.id}}
19 - name: update-status
20 continue-on-error: true
23 for s in $(shopt -s nullglob ; echo status/*.json)
26 export STATE="$(jq -er '.state' $s)"
27 export CONTEXT="$(jq -er '.context' $s)"
[all …]
/third_party/rust/crates/syn/
DREADME.md4 …t="github" src="https://img.shields.io/badge/github-dtolnay/syn-8da0cb?style=for-the-badge&labelCo…
5 [<img alt="crates.io" src="https://img.shields.io/crates/v/syn.svg?style=for-the-badge&color=fc8d62…
6 [<img alt="docs.rs" src="https://img.shields.io/badge/docs.rs-syn-66c2a5?style=for-the-badge&labelC…
7 …ps://img.shields.io/github/actions/workflow/status/dtolnay/syn/ci.yml?branch=master&style=for-the-
15 - **Data structures** — Syn provides a complete syntax tree that can represent
21 - **Derives** — Of particular interest to derive macros is [`syn::DeriveInput`]
24 user-defined trait.
26 - **Parsing** — Parsing in Syn is built around [parser functions] with the
27 signature `fn(ParseStream) -> Result<T>`. Every syntax tree node defined by
32 - **Location information** — Every token parsed by Syn is associated with a
[all …]
/third_party/jinja2/.github/workflows/
Dlock.yaml5 - cron: '0 0 * * *'
9 runs-on: ubuntu-latest
11 - uses: dessant/lock-threads@v3
13 github-token: ${{ github.token }}
14 issue-inactive-days: 14
15 pr-inactive-days: 14
/third_party/rust/crates/cxx/gen/lib/src/
Dlib.rs4 //! higher-level code generators. See [dtolnay/cxx#235] and
5 //! [https://github.com/google/autocxx].
7 //! [dtolnay/cxx#235]: https://github.com/dtolnay/cxx/issues/235
8 //! [https://github.com/google/autocxx]: https://github.com/google/autocxx
38 // clippy bug: https://github.com/rust-lang/rust-clippy/issues/6983
52 /// Generate C++ bindings code from a Rust token stream. This should be a Rust
53 /// token stream which somewhere contains a `#[cxx::bridge] mod {}`.
54 pub fn generate_header_and_cc(rust_source: TokenStream, opt: &Opt) -> Result<GeneratedCode, Error> { in generate_header_and_cc()
/third_party/node/deps/npm/node_modules/rc/
Dpackage.json5 …"_integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhc…
19 "/registry-auth-token",
20 "/registry-url"
22 "_resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
25 "_where": "/Users/ruyadorno/Documents/workspace/cli/node_modules/registry-auth-token",
36 "url": "https://github.com/dominictarr/rc/issues"
40 "deep-extend": "^0.6.0",
43 "strip-json-comments": "~2.0.1"
47 "homepage": "https://github.com/dominictarr/rc#readme",
54 "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
[all …]
/third_party/node/deps/npm/node_modules/libnpmaccess/
DREADME.md1-ci.org/npm/libnpmaccess) [![AppVeyor](https://img.shields.io/appveyor/ci/zkat/libnpmaccess/latest…
3 [`libnpmaccess`](https://github.com/npm/libnpmaccess) is a Node.js
29 * [`tfaRequired()`](#tfa-required)
30 * [`tfaNotRequired()`](#tfa-not-required)
31 * [`lsPackages()`](#ls-packages)
32 * [`lsPackages.stream()`](#ls-packages-stream)
33 * [`lsCollaborators()`](#ls-collaborators)
34 * [`lsCollaborators.stream()`](#ls-collaborators-stream)
59 `libnpmaccess` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch).
62 documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options)
[all …]
/third_party/node/deps/npm/docs/public/cli-commands/npm-install/
Dindex.html1-8"/><meta http-equiv="x-ua-compatible" content="ie=edge"/><meta name="viewport" content="width=de…
2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */
3-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let…
4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */
5-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let…
6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */
7-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let…
8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */
9-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p…
10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */
[all …]
/third_party/node/deps/npm/docs/public/configuring-npm/package-json/
Dindex.html1-8"/><meta http-equiv="x-ua-compatible" content="ie=edge"/><meta name="viewport" content="width=de…
2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */
3-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let…
4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */
5-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let…
6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */
7-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let…
8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */
9-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p…
10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */
[all …]
/third_party/typescript/scripts/
Drequest-pr-review.ts9 string: ["token", "pull", "reviewer", "owner", "repo"],
16 token: process.env.GH_TOKEN,
28 if (!options.token || !options.pull || !options.reviewer || !options.owner || !options.repo) {
30 printHelpAndExit(-1);
36 printHelpAndExit(-2);
44 const gh = new Octokit({ auth: options.token });
61 usage: request-pr-review.js [options]
64 --token <token> Your GitHub auth token. Uses %GH_TOKEN% if present.
65 --owner <owner> The GH user or organization for the repo (default: 'microsoft').
66 --repo <repo> The GH repo for the pull request (default: 'TypeScript').
[all …]
/third_party/rust/crates/libc/.github/workflows/
Ddocs.yml1 name: Upload documentation to GitHub Pages
6 - master
8 # Sets permissions of `GITHUB_TOKEN` to allow deployment to GitHub Pages
12 id-token: write
17 name: github-pages
19 runs-on: ubuntu-22.04
21 - name: Checkout
23 - name: Setup Rust toolchain
24 run: TARGET=x86_64-unknown-linux-gnu sh ./ci/install-rust.sh
25 - name: Generate documentation
[all …]
/third_party/rust/crates/proc-macro2/
DCargo.toml2 name = "proc-macro2"
6 categories = ["development-tools::procedural-macro-helpers"]
7 description = "A substitute implementation of the compiler's `proc_macro` API to decouple token-bas…
8 documentation = "https://docs.rs/proc-macro2"
11 license = "MIT OR Apache-2.0"
12 repository = "https://github.com/dtolnay/proc-macro2"
13 rust-version = "1.31"
16 rustc-args = ["--cfg", "procmacro2_semver_exempt"]
17 rustdoc-args = ["--cfg", "procmacro2_semver_exempt", "--cfg", "doc_cfg"]
18 targets = ["x86_64-unknown-linux-gnu"]
[all …]
/third_party/harfbuzz/.github/workflows/
Dlinux-ci.yml1 name: linux-ci
11 runs-on: ubuntu-18.04
14 - uses: actions/checkout@v2
15 - name: install dependencies
16-get install pkg-config gcc ragel gcovr gtk-doc-tools libfreetype6-dev libglib2.0-dev libcairo2-de…
17 - run: sudo pip3 install fonttools meson==0.47.0
18 - name: run
19 …run: meson build -Db_coverage=true --auto-features=enabled -Dgraphite=enabled -Dchafa=disabled -Do…
20 - name: ci
21 run: meson test --print-errorlogs -Cbuild
[all …]

12345678910>>...19