Home
last modified time | relevance | path

Searched refs:repo (Results 1 – 25 of 491) sorted by relevance

12345678910>>...20

/third_party/glslang/.github/workflows/
Ddeploy.js4 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/boost/libs/spirit/repository/test/qi/
Dconfix.cpp29 namespace repo = boost::spirit::repository;
37 repo::tag::confix(Prefix, Suffix)
45 return repo::confix(prefix, suffix); in confix_spec()
51 return repo::confix(std::string(prefix), std::string(suffix)); in confix_spec()
69 namespace repo = boost::spirit::repository; in main()
75 start = repo::confix('a', 'c')['b']; in main()
78 start = repo::confix('a', 'c')['b'] | "abd"; in main()
81 start = repo::confix("/*", "*/")[*(alpha - "*/")]; in main()
84 start = repo::confix(char_('/') >> '*', '*' >> char_('/'))[*alpha - "*/"]; in main()
98 start = repo::confix('a', 'c')['b']; in main()
[all …]
/third_party/grpc/tools/gource/
Dgen-all-logs.sh23 for repo in $repos
26 git clone https://github.com/grpc/$repo.git
27 cd $repo
28 gource --output-custom-log $tmpdir/logs/$repo
29 sed -i "s,|/,|/$repo/,g" $tmpdir/logs/$repo
/third_party/grpc/tools/gcp/github_stats_tracking/
Dfetch_data.py28 repo = g.get_repo('grpc/grpc')
30 LABEL_LANG = set(label for label in repo.get_labels()
32 LABEL_KIND_BUG = repo.get_label('kind/bug')
33 LABEL_PRIORITY_P0 = repo.get_label('priority/P0')
34 LABEL_PRIORITY_P1 = repo.get_label('priority/P1')
35 LABEL_PRIORITY_P2 = repo.get_label('priority/P2')
46 issue for issue in repo.get_issues(state='open')
50 issue for issue in repo.get_issues(state='all', labels=[LABEL_KIND_BUG])
/third_party/node/deps/npm/node_modules/pacote/lib/util/
Dgit.js74 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/
Dcheck_deps.py53 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/boost/libs/log/src/
Dglobal_logger_storage.cpp62 loggers_repository& repo = loggers_repository::get(); variable
64 BOOST_LOG_EXPR_IF_MT(log::aux::exclusive_lock_guard< mutex > lock(repo.m_Mutex);)
65 loggers_map_t::iterator it = repo.m_Loggers.find(key);
66 if (it != repo.m_Loggers.end())
75 repo.m_Loggers[key] = inst;
/third_party/node/deps/npm/test/tap/
Dadd-remote-git-shrinkwrap.js11 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'],
Dadd-remote-git.js11 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'],
Dadd-remote-git-file.js15 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'],
Dgit-dependency-install-link.js14 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/typescript/scripts/
Dopen-cherry-pick-pr.ts34 …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",
Drequest-pr-review.ts20 repo: "TypeScript"
28 if (!options.token || !options.pull || !options.reviewer || !options.owner || !options.repo) {
47 repo: options.repo,
Dperf-result-post.js21 repo: "TypeScript", property
32 repo: "TypeScript", property
40 repo: "TypeScript", property
/third_party/protobuf/kokoro/docs/
Dpublish-python.sh40 --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/lib/
Drepo.js1 module.exports = repo
3 repo.usage = 'npm repo [<pkg>]'
10 repo.completion = function (opts, cb) {
16 function repo (args, cb) { function
/third_party/grpc/tools/interop_matrix/patches/csharp_v1.0.1/
Dgit_repo.patch45 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.lis…
47 +RUN echo "deb http://download.mono-project.com/repo/debian wheezy/snapshots/4.6 main" | tee /etc/a…
48 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /…
49 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a …
50 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | tee -a /e…
63 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.lis…
65 +RUN echo "deb http://download.mono-project.com/repo/debian jessie main" | tee /etc/apt/sources.lis…
66 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /…
67 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a …
68 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | tee -a /e…
/third_party/flutter/skia/infra/bots/
Dcheck_deps.py49 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/node_modules/pacote/lib/fetchers/
Dgit.js105 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/docs/content/cli-commands/
Dnpm-repo.md3 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/boost/libs/spirit/repository/example/qi/
Dmini_xml2_sr.cpp40 namespace repo = boost::spirit::repository;
175 repo::qi::subrule<0, mini_xml(), qi::locals<std::string> > xml;
176 repo::qi::subrule<1, mini_xml_node()> node;
177 repo::qi::subrule<2, std::string()> text;
178 repo::qi::subrule<3, std::string()> start_tag;
179 repo::qi::subrule<4, void(std::string)> end_tag;
Dcalc1_sr.cpp27 namespace repo = boost::spirit::repository;
65 repo::qi::subrule<0> expression;
66 repo::qi::subrule<1> term;
67 repo::qi::subrule<2> factor;
/third_party/skia/third_party/externals/icu/scripts/
Dupdate.sh24 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/flutter/skia/third_party/externals/icu/scripts/
Dupdate.sh17 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/node/deps/npm/scripts/
Dpr20 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}"

12345678910>>...20