Home
last modified time | relevance | path

Searched refs:repo (Results 1 - 25 of 28) sorted by relevance

12

/third_party/node/deps/npm/test/lib/commands/
H A Drepo.js147 url: 'git+https://github.com/foo/test-repo-with-directory.git',
165 repository: 'http://repo.workspace-a/',
188 command: 'repo',
205 t.test('open repo urls', async t => {
206 const { repo, opened } = await loadMockNpm(t, fixture)
230 directory: 'https://github.com/foo/test-repo-with-directory/tree/HEAD/some/directory',
234 await repo.exec([['.', pkg].join(sep)])
239 t.test('fail if cannot figure out repo url', async t => {
240 const { repo } = await loadMockNpm(t, fixture)
251 repo
[all...]
/third_party/vulkan-loader/scripts/
H A Dupdate_deps.py148 repository name to specify a dependent repo and a "link" to
149 that repo's install artifacts. For example:
205 (case-insensitive) in order for this repo to be fetched and built.
319 """Initializes this good repo object.
322 'json': A fully populated JSON object describing the repo.
353 # Absolute paths for a repo's directories
436 """Execute any prebuild steps from the repo root"""
447 """Execute any custom_build steps from the repo root"""
481 # For each repo this repo depend
[all...]
/third_party/node/deps/v8/tools/wasm/
H A Dupdate-wasm-spec-tests.sh96 for repo in ${repos}; do
97 echo "Process ${repo}"
100 log_and_run git clone https://github.com/WebAssembly/${repo}
102 log_and_run cd ${repo}/interpreter
105 log_and_run mkdir ${SPEC_TEST_DIR}/tests/proposals/${repo}
113 log_and_run cp ${rel_filename} ${SPEC_TEST_DIR}/tests/proposals/${repo}/
119 log_and_run cp _build/*.js ${SPEC_TEST_DIR}/tests/proposals/${repo}/
123 log_and_run mkdir ${JS_API_TEST_DIR}/tests/proposals/${repo}
124 log_and_run cp -r ${TMP_DIR}/${repo}/test/js-api/* ${JS_API_TEST_DIR}/tests/proposals/${repo}
[all...]
/third_party/skia/infra/bots/
H A 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/notofonts/scripts/
H A Dgather.py69 repo = g.get_repo("notofonts/" + repo_name) variable
70 if repo.archived:
73 print("Unknown repo %s; is it missing from fontrepos?" % repo_name)
78 repo = g.get_repo("notofonts/" + repo_name) variable
80 "title": repo.description,
88 for issue in repo.get_issues():
97 releases = repo.get_releases()
122 tag_sha = repo.get_git_ref("tags/" + release.tag_name).object.sha
124 body = repo.get_git_tag(tag_sha).message
H A Dissue-stats.py37 repo = g.get_repo("notofonts/" + repo_name) variable
38 issues = repo.get_issues(state="all")
50 releases = repo.get_releases()
154 tiers[tier].append({"repo": k, "issues": v})
198 "top_10": [{"repo": k, "count": v} for k, v in top_10],
/third_party/skia/third_party/externals/icu/scripts/
H A Dupdate.sh24 repo="${repoprefix}${version}/icu4c"
27 # Check if the repo for $version is available.
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/skia/tools/
H A Dgit-sync-deps115 def git_checkout_to_directory(git, repo, commithash, directory, verbose):
121 repo (string) the location of the repository, suitable
135 [git, 'clone', '--quiet', '--no-checkout', repo, directory])
143 # if the directory exists, but isn't a git repo, you will modify
148 # Check to see if this repo is disabled. Quick return.
163 # If the repo has changed, always force use of the correct repo.
164 # If origin already points to repo, this is a quick no-op.
166 [git, 'remote', 'set-url', 'origin', repo], cwd=directory)
226 repo, commithas
[all...]
/third_party/ffmpeg/tests/
H A Dfate.sh19 test -n "$repo" || die "repo not specified"
31 case "$repo" in
32 file:*|/*) src="${repo#file:}" ;;
33 git:*) git clone --quiet --branch "$branch" "$repo" "$src" ;;
39 case "$repo" in
/third_party/rust/crates/syn/tests/
H A Dtest_round_trip.rs51 mod repo; modules
56 repo::clone_rust(); in test_round_trip()
64 repo::for_each_rust_file(|path| test(path, &failed, abort_after)); in test_round_trip()
88 let edition = repo::edition(path).parse().unwrap(); in test()
H A Dtest_precedence.rs1 //! This test does the following for every file in the rust-lang/rust repo:
59 mod repo; modules
64 repo::clone_rust(); in test_rustc_precedence()
73 repo::for_each_rust_file(|path| { in test_rustc_precedence()
78 let edition = repo::edition(path).parse().unwrap(); in test_rustc_precedence()
/third_party/mesa3d/.gitlab-ci/fossils/
H A Dfossils.sh9 local repo="$1"
12 git clone --no-checkout "$repo" fossils-db
/third_party/rust/crates/syn/benches/
H A Dfile.rs21 #[path = "../tests/repo/mod.rs"]
22 mod repo; modules
33 repo::clone_rust(); in get_tokens()
H A Drust.rs23 #[path = "../tests/repo/mod.rs"]
24 mod repo; modules
117 .filter_entry(repo::base_dir_filter) in exec()
139 repo::clone_rust(); in main()
/third_party/icu/tools/commit-checker/
H A Dcheck.py104 "--repo-root",
130 help = "Base URL of the GitHub repo",
178 repo = Repo(repo_root)
179 for commit in repo.iter_commits(rev_range):
193 repo = Repo(repo_root)
197 cherries = repo.git.cherry(a, b, branchCut)
219 repo = Repo(repo_root)
221 return repo.merge_base(a, b)[0]
/third_party/skia/third_party/externals/tint/tools/src/cmd/roll-release/
H A Dmain.go110 repo **git.Repository
116 repo, err := git.Init(memory.NewStorage(), nil)
118 return fmt.Errorf("failed to create %v in-memory repo: %w", r.name, err)
120 remote, err := repo.CreateRemote(&config.RemoteConfig{
141 *r.repo = repo
/third_party/protobuf/kokoro/release/csharp/windows/
H A Dbuild_nuget.bat1 @rem enter repo root
/third_party/protobuf/kokoro/windows/csharp/
H A Dbuild.bat1 @rem enter repo root
/third_party/skia/third_party/externals/swiftshader/third_party/marl/kokoro/windows/
H A Dpresubmit.bat56 wget -q http://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-gcc-7.3.0-2-any.pkg.tar.xz
57 wget -q http://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-gcc-libs-7.3.0-2-any.pkg.tar.xz
/third_party/rust/crates/clap/tests/derive/
H A Dsubcommands.rs29 repo: String,
46 repo: "origin".to_string() in test_fetch()
54 repo: "origin".to_string() in test_fetch()
/third_party/python/PCbuild/
H A Dget_external.py13 repo = f'cpython-{"bin" if binary else "source"}-deps'
14 url = f'https://github.com/{org}/{repo}/archive/{commit_hash}.zip'
37 help='Is the dependency in the binary repo?')
/third_party/node/deps/npm/node_modules/pacote/lib/
H A Dgit.js78 // likely a hosted git repo with a sha, so get the tarball url
84 // fetch the git repo and then look at the current hash
231 // clone a git repo into a temp folder (or fetch and unpack if possible)
237 // spec and repo, so that we don't ever clone the same thing multiple times.
302 [_cloneRepo] (repo, ref, tmp) {
304 return git.clone(repo, ref, tmp, { ...opts, spec })
/third_party/skia/buildtools/checkdeps/
H A Dbuilddeps.py306 for repo in self.extra_repos:
307 repo_path = os.path.join(self.base_directory, repo)
/third_party/python/Tools/msi/
H A Dget_externals.bat53 rem We always use whatever's latest in the repo for these
/third_party/node/deps/npm/lib/commands/
H A Dview.js357 repo: (
388 if (info.repo || info.site) {

Completed in 9 milliseconds

12