/third_party/glslang/.github/workflows/ |
D | deploy.js | 4 owner: context.repo.owner, 5 repo: context.repo.repo, property 16 owner: context.repo.owner, 17 repo: context.repo.repo, property 26 owner: context.repo.owner, 27 repo: context.repo.repo, property 37 owner: context.repo.owner, 38 repo: context.repo.repo, property 50 owner: context.repo.owner, 51 repo: context.repo.repo, property [all …]
|
/third_party/mesa3d/.gitlab-ci/container/ |
D | build-skqp_git-sync-deps.patch | 47 -def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): 48 +def git_checkout_to_directory(git, repo, commithash, directory, verbose): 52 @@ -117,8 +121,7 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): 53 repo (string) the location of the repository, suitable 62 @@ -129,7 +132,12 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): 66 - [git, 'clone', '--quiet', repo, directory]) 67 + [git, 'clone', '--quiet', '--no-checkout', repo, directory]) 75 # if the directory exists, but isn't a git repo, you will modify 76 @@ -145,11 +153,11 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): 89 # If the repo has changed, always force use of the correct repo. [all …]
|
/third_party/vulkan-loader/scripts/ |
D | update_deps.py | 559 GoodRepo(repo, args) 560 for repo in json.loads(known_good.read())['repos'] 598 for repo in repos: 599 if install_names and repo.name in install_names and repo.on_build_platform: 602 var=install_names[repo.name], 603 dir=escape(repo.install_dir))) 691 for repo in repos: 694 if not repo.on_build_platform: 698 if repo.IsOptional(args.optional): 717 repo_dict[repo.name] = {field: getattr(repo, field) for field in field_list} [all …]
|
/third_party/node/deps/npm/node_modules/pacote/lib/util/ |
D | git.js | 74 function fullClone (repo, committish, target, opts) { argument 76 const gitArgs = ['clone', '--mirror', '-q', repo, path.join(target, '.git')] 90 function shallowClone (repo, branch, target, opts) { argument 96 gitArgs.push(repo, target) 114 function headSha (repo, opts) { argument 116 return execGit(['rev-parse', '--revs-only', 'HEAD'], { cwd: repo }, opts).spread(stdout => { 127 function revs (repo, opts) { argument 129 const cached = REVS.get(repo) 133 return pinflight(`ls-remote:${repo}`, () => { 134 return spawnGit(['ls-remote', '-h', '-t', repo], { [all …]
|
/third_party/skia/infra/bots/ |
D | check_deps.py | 53 repo = split[0] 55 if 'chrome-infra-packages' in repo: 57 if not 'googlesource.com' in repo: 60 'See http://go/new-skia-git-mirror' % repo) 62 errs.append('%s: "%s" does not look like a commit hash.' % (repo, rev))
|
/third_party/typescript/scripts/ |
D | open-cherry-pick-pr.ts | 34 …h.pulls.get({ pull_number: +process.env.SOURCE_ISSUE, owner: "microsoft", repo: "TypeScript" })).d… 36 if (inputPR.base.repo.git_url !== `git:github.com/microsoft/TypeScript`) { 38 ["git", ["remote", "add", "nonlocal", inputPR.base.repo.git_url]] 86 repo: "TypeScript", 104 repo: "TypeScript", 119 repo: "TypeScript",
|
D | request-pr-review.ts | 20 repo: "TypeScript" 28 if (!options.token || !options.pull || !options.reviewer || !options.owner || !options.repo) { 47 repo: options.repo,
|
/third_party/node/deps/npm/test/tap/ |
D | add-remote-git-shrinkwrap.js | 11 var repo = resolve(common.pkg, 'repo') variable 69 { cwd: repo, env: process.env }, 92 mkdirp.sync(repo) 93 fs.writeFileSync(resolve(repo, 'package.json'), pjChild) 127 path: repo, 130 ['clone', '--bare', repo, 'child.git'],
|
D | add-remote-git.js | 11 var repo = resolve(pkg, 'repo') variable 59 mkdirp.sync(repo) 60 fs.writeFileSync(resolve(repo, 'package.json'), pjChild) 94 path: repo, 97 ['clone', '--bare', repo, 'child.git'],
|
D | add-remote-git-file.js | 15 var repo = resolve(common.pkg, 'repo') variable 72 mkdirp.sync(repo) 73 fs.writeFileSync(resolve(repo, 'package.json'), pjChild) 78 path: repo, 80 ['clone', '--bare', repo, 'child.git'],
|
D | git-dependency-install-link.js | 14 var repo = resolve(common.pkg, 'repo') variable 111 rimraf(repo, () => { 123 mkdirp.sync(repo) 124 fs.writeFileSync(resolve(repo, 'package.json'), pjChild) 162 path: repo, 165 ['clone', '--bare', repo, 'child.git'],
|
/third_party/protobuf/kokoro/docs/ |
D | publish-python.sh | 40 --name=$(jq --raw-output '.name // empty' .repo-metadata.json) \ 42 --language=$(jq --raw-output '.language // empty' .repo-metadata.json) \ 44 --product-page=$(jq --raw-output '.product_documentation // empty' .repo-metadata.json) \ 45 --github-repository=$(jq --raw-output '.repo // empty' .repo-metadata.json) \ 46 --issue-tracker=$(jq --raw-output '.issue_tracker // empty' .repo-metadata.json)
|
/third_party/node/deps/npm/node_modules/pacote/lib/fetchers/ |
D | git.js | 105 function plainManifest (repo, spec, opts) { argument 108 repo, spec, spec.name, opts 113 _repo: repo, 129 _repo: repo, 171 function cloneRepo (spec, repo, resolvedRef, rawRef, tmp, opts) { argument 174 return git.shallow(repo, ref, tmp, opts) 176 return git.clone(repo, ref, tmp, opts)
|
/third_party/node/deps/npm/lib/ |
D | repo.js | 1 module.exports = repo 3 repo.usage = 'npm repo [<pkg>]' 10 repo.completion = function (opts, cb) { 16 function repo (args, cb) { function
|
/third_party/flutter/skia/infra/bots/ |
D | check_deps.py | 49 repo = split[0] 51 if not 'googlesource.com' in repo: 53 'DEPS must be hosted on googlesource.com; %s is not allowed.' % repo) 55 errs.append('%s: "%s" does not look like a commit hash.' % (repo, rev))
|
/third_party/node/deps/npm/docs/content/cli-commands/ |
D | npm-repo.md | 3 title: npm-repo 7 # npm-repo(1) 14 npm repo [<pkg>] 31 The browser that is called by the `npm repo` command to open websites.
|
/third_party/flutter/skia/third_party/externals/icu/scripts/ |
D | update.sh | 17 repo="${repoprefix}${version}/icu4c" 21 svn ls "${repo}" > /dev/null 2>&1 || \ 22 { echo "${repo} does not exist." >&2; exit 2; } 33 svn export --native-eol LF "${repo}/${file}" "${treeroot}/${file}"
|
/third_party/skia/third_party/externals/icu/scripts/ |
D | update.sh | 24 repo="${repoprefix}${version}/icu4c" 28 svn ls "${repo}" > /dev/null 2>&1 || \ 29 { echo "${repo} does not exist." >&2; exit 2; } 40 svn export --native-eol LF "${repo}/${file}" "${treeroot}/${file}"
|
/third_party/jerryscript/targets/curie_bsp/ |
D | README.md | 20 ##### 1. Get repo: 23 wget http://commondatastorage.googleapis.com/git-repo-downloads/repo -O ~/bin/repo 24 chmod a+x ~/bin/repo 37 ##### 4. Initialize your repo: 39 repo init -u https://github.com/CurieBSP/manifest 44 repo sync -j 5 -d
|
/third_party/node/deps/npm/scripts/ |
D | pr | 20 local repo=${prpath%/pull/$num} 23 local api="https://api.github.com/repos/${repo}/pulls/${num}" 98 local repo=${prpath%/pull/$num} 102 local api="https://api.github.com/repos/${repo}/pulls/${num}"
|
/third_party/flutter/skia/tools/ |
D | git-sync-deps | 111 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument 132 [git, 'clone', '--quiet', repo, directory]) 158 [git, 'remote', 'set-url', 'origin', repo], cwd=directory) 212 repo, checkoutable = dependencies[directory].split('@', 1) 219 (git, repo, checkoutable, relative_directory, verbose))
|
/third_party/spirv-tools/utils/ |
D | git-sync-deps | 135 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument 156 [git, 'clone', '--quiet', repo, directory]) 182 [git, 'remote', 'set-url', 'origin', repo], cwd=directory) 237 repo, checkoutable = dependencies[directory].split('@', 1) 244 (git, repo, checkoutable, relative_directory, verbose))
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
D | git-sync-deps | 135 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument 156 [git, 'clone', '--quiet', repo, directory]) 182 [git, 'remote', 'set-url', 'origin', repo], cwd=directory) 237 repo, checkoutable = dependencies[directory].split('@', 1) 244 (git, repo, checkoutable, relative_directory, verbose))
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
D | git-sync-deps | 135 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument 156 [git, 'clone', '--quiet', repo, directory]) 182 [git, 'remote', 'set-url', 'origin', repo], cwd=directory) 237 repo, checkoutable = dependencies[directory].split('@', 1) 244 (git, repo, checkoutable, relative_directory, verbose))
|
/third_party/vk-gl-cts/external/amber/src/tools/ |
D | git-sync-deps | 127 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): 151 [git, 'clone', '--quiet', repo, directory]) 175 [git, 'remote', 'set-url', 'origin', repo], cwd=directory) 227 repo, checkoutable = dependencies[directory].rsplit('@', 1) 246 (git, repo, checkoutable, relative_directory, verbose))
|