Home
last modified time | relevance | path

Searched refs:Repo (Results 151 – 175 of 5300) sorted by relevance

12345678910>>...212

/dports/devel/mutagen/mutagen-0.11.8/vendor/google.golang.org/genproto/googleapis/devtools/sourcerepo/v1/
H A Dsourcerepo.pb.go30 type Repo struct { struct
49 func (m *Repo) Reset() { *m = Repo{} } argument
51 func (*Repo) ProtoMessage() {} argument
65 func (m *Repo) XXX_Size() int { argument
74 func (m *Repo) GetName() string { argument
81 func (m *Repo) GetSize() int64 { argument
88 func (m *Repo) GetUrl() string { argument
331 Repo *Repo `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"` member
371 return m.Repo
538 out := new(Repo)
[all …]
/dports/net/grpcox/grpcox-1.0.0/vendor/google.golang.org/genproto/googleapis/devtools/sourcerepo/v1/
H A Dsourcerepo.pb.go30 type Repo struct { struct
49 func (m *Repo) Reset() { *m = Repo{} } argument
51 func (*Repo) ProtoMessage() {} argument
64 func (m *Repo) XXX_Size() int { argument
73 func (m *Repo) GetName() string { argument
80 func (m *Repo) GetSize() int64 { argument
87 func (m *Repo) GetUrl() string { argument
326 Repo *Repo `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"` member
365 return m.Repo
476 out := new(Repo)
[all …]
/dports/lang/elixir/elixir-1.12.3/lib/mix/test/mix/
H A Dconfig_test.exs46 config :app, Repo, key: :value
47 assert config() == [app: [{Repo, key: :value}]]
49 config :app, Repo, other: :value
50 assert config() == [app: [{Repo, key: :value, other: :value}]]
52 config :app, Repo, key: :other
53 assert config() == [app: [{Repo, other: :value, key: :other}]]
55 config :app, Repo, key: [nested: false]
58 config :app, Repo, key: [nested: true]
59 assert config() == [app: [{Repo, other: :value, key: [nested: true]}]]
61 config :app, Repo, key: :other
[all …]
/dports/devel/hs-git-annex/git-annex-8.20210903/Git/
H A DObjects.hs19 objectsDir :: Repo -> RawFilePath
22 packDir :: Repo -> RawFilePath
28 listPackFiles :: Repo -> IO [FilePath]
32 listLooseObjectShas :: Repo -> IO [Sha]
37 looseObjectFile :: Repo -> Sha -> RawFilePath
42 listAlternates :: Repo -> IO [FilePath]
50 isSharedClone :: Repo -> IO Bool
/dports/devel/git-lfs/git-lfs-3.0.2/t/cmd/util/
H A Dtestutils.go88 type Repo struct { struct
94 Remotes map[string]*Repo argument
107 func (r *Repo) Pushd() { argument
122 func (r *Repo) Popd() { argument
148 func (r *Repo) OSEnv() config.Environment { argument
152 func (r *Repo) Cleanup() { argument
180 func NewRepo(callback RepoCallback) *Repo {
188 ret := &Repo{
190 Remotes: make(map[string]*Repo),
240 return &Repo{
[all …]
/dports/www/gitea/gitea-1.16.5/routers/web/repo/
H A Dpull_review.go40 pullHeadCommitID, err := ctx.Repo.GitRepo.GetRefCommitID(issue.PullRequest.GetGitRefName())
62 ctx.Redirect(fmt.Sprintf("%s/pulls/%d/files", ctx.Repo.RepoLink, issue.Index))
73 ctx.Repo.GitRepo,
88 log.Trace("Comment not created: %-v #%d[%d]", ctx.Repo.Repository, issue.Index, issue.ID)
89 ctx.Redirect(fmt.Sprintf("%s/pulls/%d/files", ctx.Repo.RepoLink, issue.Index))
168 pullHeadCommitID, err := ctx.Repo.GitRepo.GetRefCommitID(comment.Issue.PullRequest.GetGitRefName())
189 ctx.Redirect(fmt.Sprintf("%s/pulls/%d/files", ctx.Repo.RepoLink, issue.Index))
210 ctx.Redirect(fmt.Sprintf("%s/pulls/%d/files", ctx.Repo.RepoLink, issue.Index))
224 ctx.Redirect(fmt.Sprintf("%s/pulls/%d/files", ctx.Repo.RepoLink, issue.Index))
231 ctx.Redirect(fmt.Sprintf("%s/pulls/%d#%s", ctx.Repo.RepoLink, issue.Index, comm.HashTag()))
[all …]
H A Dtag.go41 repo := ctx.Repo.Repository
115 ctx.Redirect(ctx.Repo.Repository.Link() + "/settings/tags")
131 ctx.Redirect(ctx.Repo.Repository.Link() + "/settings/tags")
138 protectedTags, err := models.GetProtectedTags(ctx.Repo.Repository.ID)
145 users, err := models.GetRepoReaders(ctx.Repo.Repository)
152 if ctx.Repo.Owner.IsOrganization() {
153 …teams, err := models.OrgFromUser(ctx.Repo.Owner).TeamsWithAccessToRepo(ctx.Repo.Repository.ID, per…
176 if tag != nil && tag.RepoID == ctx.Repo.Repository.ID {
180 …ctx.NotFound("", fmt.Errorf("ProtectedTag[%v] not associated to repository %v", id, ctx.Repo.Repos…
/dports/databases/elixir-ecto/ecto-2.2.10/test/mix/tasks/
H A Decto.gen.repo_test.exs5 import Mix.Tasks.Ecto.Gen.Repo, only: [run: 1]
9 run ["-r", "Repo"]
12 defmodule Repo do module
13 use Ecto.Repo, otp_app: :ecto
20 config :ecto, Repo,
39 run ["-r", "Repo"]
45 config :ecto, Repo,
/dports/databases/elixir-timex_ecto/timex_ecto-3.3.0/test/
H A Dtimex_ecto_test.exs2 defmodule EctoTest.Repo do module
3 use Ecto.Repo, otp_app: :timex_ecto
30 worker(EctoTest.Repo, [])
76 alias EctoTest.{User, Repo}
84 …Ecto.Migrator.run(Repo, [{0, EctoTest.Migrations.CustomTypes}, {1, EctoTest.Migrations.Setup}], :u…
85 Ecto.Adapters.SQL.Sandbox.mode(EctoTest.Repo, :manual)
89 :ok = Ecto.Adapters.SQL.Sandbox.checkout(EctoTest.Repo)
104 Repo.insert!(u)
114 timestamptz_test: ^timestamptz}] = Repo.all(query)
120 [%User{datetimetz_test: ^datetimetz}] = Repo.all(query)
/dports/misc/libsolv/libsolv-0.7.19/examples/
H A Dp5solv13 package Repo::generic;
133 my $flags = $ext ? $solv::Repo::REPO_USE_LOADING|$solv::Repo::REPO_EXTEND_SOLVABLES : 0;
179 my $flags = $solv::Repo::REPO_EXTEND_SOLVABLES;
221 package Repo::rpmmd;
288 …elf->{handle}->add_rpmmd($f, 'FL', $solv::Repo::REPO_USE_LOADING|$solv::Repo::REPO_EXTEND_SOLVABLE…
336 package Repo::susetags;
395 my $flags = $solv::Repo::REPO_USE_LOADING|$solv::Repo::REPO_EXTEND_SOLVABLES;
434 …susetags($f, $defvendorid, undef, $solv::Repo::REPO_NO_INTERNALIZE|$solv::Repo::REPO_REUSE_REPODAT…
451 package Repo::unknown;
461 package Repo::system;
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/cmd/go/internal/modfetch/
H A Drepo.go28 type Repo interface { interface
191 func Lookup(proxy, path string) Repo {
197 r Repo
200 r := newCachingRepo(path, func() (Repo, error) {
214 func lookup(proxy, path string) (r Repo, err error) {
257 func lookupDirect(path string) (Repo, error) {
271 return newProxyRepo(rr.Repo, path)
281 func lookupCodeRepo(rr *vcs.RepoRoot) (codehost.Repo, error) {
282 code, err := codehost.NewRepo(rr.VCS.Cmd, rr.Repo)
296 r Repo
[all …]
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/go/internal/modfetch/
H A Drepo.go28 type Repo interface { interface
191 func Lookup(proxy, path string) Repo {
197 r Repo
200 r := newCachingRepo(path, func() (Repo, error) {
214 func lookup(proxy, path string) (r Repo, err error) {
257 func lookupDirect(path string) (Repo, error) {
271 return newProxyRepo(rr.Repo, path)
281 func lookupCodeRepo(rr *vcs.RepoRoot) (codehost.Repo, error) {
282 code, err := codehost.NewRepo(rr.VCS.Cmd, rr.Repo)
296 r Repo
[all …]
/dports/www/elixir-phoenix/phoenix-1.3.3/priv/templates/phoenix.gen.html/
H A Dcontroller.ex7 <%= plural %> = Repo.all(<%= alias %>)
19 case Repo.insert(changeset) do
30 <%= singular %> = Repo.get!(<%= alias %>, id)
35 <%= singular %> = Repo.get!(<%= alias %>, id)
41 <%= singular %> = Repo.get!(<%= alias %>, id)
44 case Repo.update(changeset) do
55 <%= singular %> = Repo.get!(<%= alias %>, id)
59 Repo.delete!(<%= singular %>)
/dports/sysutils/libdnf/libdnf-0.64.0/bindings/swig/
H A Drepo.i24 %extend libdnf::Repo {
25 Repo(const std::string & id, ConfigRepo * config) in Repo() function
27 return new libdnf::Repo(id, std::unique_ptr<libdnf::ConfigRepo>(config)); in Repo()
56 %ignore libdnf::Repo::Repo;
57 %ignore libdnf::Repo::setCallbacks;
58 %ignore libdnf::Repo::setHttpHeaders;
59 %ignore libdnf::Repo::getHttpHeaders;
/dports/devel/elixir-conform/conform-2.5.2/test/confs/
H A Dmega_maid.conf40 mega_maid.Elixir.MegaMaid.Repo.adapter = Elixir.Ecto.Adapters.Postgres
43 mega_maid.Elixir.MegaMaid.Repo.username = "postgres"
46 mega_maid.Elixir.MegaMaid.Repo.password = "secret"
49 mega_maid.Elixir.MegaMaid.Repo.hostname = "localhost"
52 mega_maid.Elixir.MegaMaid.Repo.database = "dat_db"
55 mega_maid.Elixir.MegaMaid.Repo.pool_size = 20
/dports/devel/llvm80/llvm-8.0.1.src/tools/lld/Common/
H A DVersion.cpp30 std::string Repo = getRepositoryPath(); in getRepository() local
33 if (Repo.empty() && Rev.empty()) in getRepository()
35 if (!Repo.empty() && !Rev.empty()) in getRepository()
36 return " (" + Repo + " " + Rev + ")"; in getRepository()
37 return " (" + Repo + Rev + ")"; in getRepository()
/dports/devel/llvm70/llvm-7.0.1.src/tools/lld/Common/
H A DVersion.cpp30 std::string Repo = getRepositoryPath(); in getRepository() local
33 if (Repo.empty() && Rev.empty()) in getRepository()
35 if (!Repo.empty() && !Rev.empty()) in getRepository()
36 return " (" + Repo + " " + Rev + ")"; in getRepository()
37 return " (" + Repo + Rev + ")"; in getRepository()
/dports/lang/gcc9-devel/gcc-9-20211007/libgo/go/cmd/go/internal/modfetch/
H A Drepo.go27 type Repo interface { interface
183 func Lookup(path string) (Repo, error) {
189 r Repo
207 func lookup(path string) (r Repo, err error) {
230 return newProxyRepo(rr.Repo, path)
240 func lookupCodeRepo(rr *get.RepoRoot) (codehost.Repo, error) {
241 code, err := codehost.NewRepo(rr.VCS, rr.Repo)
255 func ImportRepoRev(path, rev string) (Repo, *RevInfo, error) {
312 r Repo
315 func newLoggingRepo(r Repo) *loggingRepo { argument
/dports/lang/gcc9/gcc-9.4.0/libgo/go/cmd/go/internal/modfetch/
H A Drepo.go27 type Repo interface { interface
183 func Lookup(path string) (Repo, error) {
189 r Repo
207 func lookup(path string) (r Repo, err error) {
230 return newProxyRepo(rr.Repo, path)
240 func lookupCodeRepo(rr *get.RepoRoot) (codehost.Repo, error) {
241 code, err := codehost.NewRepo(rr.VCS, rr.Repo)
255 func ImportRepoRev(path, rev string) (Repo, *RevInfo, error) {
312 r Repo
315 func newLoggingRepo(r Repo) *loggingRepo { argument
/dports/lang/gcc9-aux/gcc-9.1.0/libgo/go/cmd/go/internal/modfetch/
H A Drepo.go27 type Repo interface { interface
183 func Lookup(path string) (Repo, error) {
189 r Repo
207 func lookup(path string) (r Repo, err error) {
230 return newProxyRepo(rr.Repo, path)
240 func lookupCodeRepo(rr *get.RepoRoot) (codehost.Repo, error) {
241 code, err := codehost.NewRepo(rr.VCS, rr.Repo)
255 func ImportRepoRev(path, rev string) (Repo, *RevInfo, error) {
312 r Repo
315 func newLoggingRepo(r Repo) *loggingRepo { argument
/dports/www/elixir-phoenix/phoenix-1.3.3/priv/templates/phoenix.gen.json/
H A Dcontroller.ex7 <%= plural %> = Repo.all(<%= alias %>)
14 case Repo.insert(changeset) do
28 <%= singular %> = Repo.get!(<%= alias %>, id)
33 <%= singular %> = Repo.get!(<%= alias %>, id)
36 case Repo.update(changeset) do
47 <%= singular %> = Repo.get!(<%= alias %>, id)
51 Repo.delete!(<%= singular %>)
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llgo/third_party/gotools/go/vcs/
H A Dvcs_test.go27 Repo: "https://code.google.com/p/go",
34 Repo: "https://code.google.com/r/go",
41 Repo: "https://github.com/golang/groupcache",
53 if got.VCS.Name != want.VCS.Name || got.Repo != want.Repo {
54 …(%q) = VCS(%s) Repo(%s), want VCS(%s) Repo(%s)", test.path, got.VCS, got.Repo, want.VCS, want.Repo)
/dports/lang/gcc10/gcc-10.3.0/libgo/go/cmd/go/internal/modfetch/
H A Drepo.go29 type Repo interface { interface
191 func Lookup(proxy, path string) (Repo, error) {
197 r Repo
215 func lookup(proxy, path string) (r Repo, err error) {
258 func lookupDirect(path string) (Repo, error) {
272 return newProxyRepo(rr.Repo, path)
282 func lookupCodeRepo(rr *get.RepoRoot) (codehost.Repo, error) {
283 code, err := codehost.NewRepo(rr.VCS, rr.Repo)
297 func ImportRepoRev(path, rev string) (Repo, *RevInfo, error) {
354 r Repo
[all …]
/dports/lang/go-devel/go-dragonfly-amd64-bootstrap/src/cmd/go/internal/modfetch/
H A Drepo.go29 type Repo interface { interface
191 func Lookup(proxy, path string) (Repo, error) {
197 r Repo
215 func lookup(proxy, path string) (r Repo, err error) {
258 func lookupDirect(path string) (Repo, error) {
272 return newProxyRepo(rr.Repo, path)
282 func lookupCodeRepo(rr *get.RepoRoot) (codehost.Repo, error) {
283 code, err := codehost.NewRepo(rr.VCS, rr.Repo)
297 func ImportRepoRev(path, rev string) (Repo, *RevInfo, error) {
354 r Repo
[all …]
/dports/www/gitea/gitea-1.16.5/services/webhook/
H A Dtelegram.go63 …Sprintf(`[<a href="%s">%s</a>] %s <a href="%s">%s</a> created`, p.Repo.HTMLURL, p.Repo.FullName, p…
64 p.Repo.HTMLURL+"/src/"+refName, refName)
73 …Sprintf(`[<a href="%s">%s</a>] %s <a href="%s">%s</a> deleted`, p.Repo.HTMLURL, p.Repo.FullName, p…
74 p.Repo.HTMLURL+"/src/"+refName, refName)
81 ….Sprintf(`%s is forked to <a href="%s">%s</a>`, p.Forkee.FullName, p.Repo.HTMLURL, p.Repo.FullName)
102 titleLink = p.Repo.HTMLURL + "/src/" + branchName
104 …title := fmt.Sprintf(`[<a href="%s">%s</a>:<a href="%s">%s</a>] %s`, p.Repo.HTMLURL, p.Repo.FullNa…

12345678910>>...212