hunk
dict
file
stringlengths
0
11.8M
file_path
stringlengths
2
234
label
int64
0
1
commit_url
stringlengths
74
103
dependency_score
sequencelengths
5
5
{ "id": 1, "code_window": [ "\t\t}, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef())\n", "\t\tm.Group(\"/milestone\", func() {\n", "\t\t\tm.Get(\"/:id\", repo.MilestoneIssuesAndPulls)\n", "\t\t}, reqRepoIssuesOrPullsWriter, context.RepoRef())\n", "\t\tm.Combo(\"/compare/*\", context.RepoMustNotBeArchived(), reqRepoCodeReader, reqRepoPullsReader, repo.MustAllowPulls, repo.SetEditorconfigIfExists).\n", "\t\t\tGet(repo.SetDiffViewStyle, repo.CompareAndPullRequest).\n", "\t\t\tPost(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)\n", "\n", "\t\tm.Group(\"\", func() {\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t}, reqRepoIssuesOrPullsReader, context.RepoRef())\n" ], "file_path": "routers/routes/routes.go", "type": "replace", "edit_start_line_idx": 637 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> <h3>{{.Milestone.Name}}</h3> </div> <div class="column center aligned"> </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> <a class="ui grey button" href="{{.RepoLink}}/milestones/{{.MilestoneID}}/edit">{{.i18n.Tr "repo.milestones.edit"}}</a> <a class="ui green button" href="{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}">{{.i18n.Tr "repo.issues.new"}}</a> </div> {{end}} </div> <div class="ui one column stackable grid"> <div class="column"> {{ $closedDate:= TimeSinceUnix .Milestone.ClosedDateUnix $.Lang }} {{if .IsClosed}} <span class="octicon octicon-clock"></span> {{$.i18n.Tr "repo.milestones.closed" $closedDate|Str2html}} {{else}} <span class="octicon octicon-calendar"></span> {{if .Milestone.DeadlineString}} <span {{if .IsOverdue}}class="overdue"{{end}}>{{.Milestone.DeadlineString}}</span> {{else}} {{$.i18n.Tr "repo.milestones.no_due_date"}} {{end}} {{end}} &nbsp; <b>{{.i18n.Tr "repo.milestones.completeness" .Milestone.Completeness}}</b> </div> </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid"> <div class="six wide column"> <div class="ui basic status buttons"> <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_open"}}</div> <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_close"}}</div> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} {{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }} <li class="item"> <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.RepoLink}}/issues/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/milestone_issues.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00031726789893582463, 0.0001828302483772859, 0.00016476698510814458, 0.00017106505401898175, 0.00003882522287312895 ]
{ "id": 1, "code_window": [ "\t\t}, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef())\n", "\t\tm.Group(\"/milestone\", func() {\n", "\t\t\tm.Get(\"/:id\", repo.MilestoneIssuesAndPulls)\n", "\t\t}, reqRepoIssuesOrPullsWriter, context.RepoRef())\n", "\t\tm.Combo(\"/compare/*\", context.RepoMustNotBeArchived(), reqRepoCodeReader, reqRepoPullsReader, repo.MustAllowPulls, repo.SetEditorconfigIfExists).\n", "\t\t\tGet(repo.SetDiffViewStyle, repo.CompareAndPullRequest).\n", "\t\t\tPost(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)\n", "\n", "\t\tm.Group(\"\", func() {\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t}, reqRepoIssuesOrPullsReader, context.RepoRef())\n" ], "file_path": "routers/routes/routes.go", "type": "replace", "edit_start_line_idx": 637 }
// Copyright 2014 The Gogs Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. package log import ( "encoding/json" "errors" "fmt" "log" "os" "path/filepath" "strings" "sync" "time" ) // FileLogWriter implements LoggerInterface. // It writes messages by lines limit, file size limit, or time frequency. type FileLogWriter struct { *log.Logger mw *MuxWriter // The opened file Filename string `json:"filename"` // Rotate at size Maxsize int `json:"maxsize"` maxsizeCursize int // Rotate daily Daily bool `json:"daily"` Maxdays int64 `json:"maxdays"` dailyOpenDate int Rotate bool `json:"rotate"` startLock sync.Mutex // Only one log can write to the file Level int `json:"level"` } // MuxWriter an *os.File writer with locker. type MuxWriter struct { sync.Mutex fd *os.File } // Write writes to os.File. func (l *MuxWriter) Write(b []byte) (int, error) { l.Lock() defer l.Unlock() return l.fd.Write(b) } // SetFd sets os.File in writer. func (l *MuxWriter) SetFd(fd *os.File) { if l.fd != nil { l.fd.Close() } l.fd = fd } // NewFileWriter create a FileLogWriter returning as LoggerInterface. func NewFileWriter() LoggerInterface { w := &FileLogWriter{ Filename: "", Maxsize: 1 << 28, //256 MB Daily: true, Maxdays: 7, Rotate: true, Level: TRACE, } // use MuxWriter instead direct use os.File for lock write when rotate w.mw = new(MuxWriter) // set MuxWriter as Logger's io.Writer w.Logger = log.New(w.mw, "", log.Ldate|log.Ltime) return w } // Init file logger with json config. // config like: // { // "filename":"log/gogs.log", // "maxsize":1<<30, // "daily":true, // "maxdays":15, // "rotate":true // } func (w *FileLogWriter) Init(config string) error { if err := json.Unmarshal([]byte(config), w); err != nil { return err } if len(w.Filename) == 0 { return errors.New("config must have filename") } return w.StartLogger() } // StartLogger start file logger. create log file and set to locker-inside file writer. func (w *FileLogWriter) StartLogger() error { fd, err := w.createLogFile() if err != nil { return err } w.mw.SetFd(fd) return w.initFd() } func (w *FileLogWriter) docheck(size int) { w.startLock.Lock() defer w.startLock.Unlock() if w.Rotate && ((w.Maxsize > 0 && w.maxsizeCursize >= w.Maxsize) || (w.Daily && time.Now().Day() != w.dailyOpenDate)) { if err := w.DoRotate(); err != nil { fmt.Fprintf(os.Stderr, "FileLogWriter(%q): %s\n", w.Filename, err) return } } w.maxsizeCursize += size } // WriteMsg writes logger message into file. func (w *FileLogWriter) WriteMsg(msg string, skip, level int) error { if level < w.Level { return nil } n := 24 + len(msg) // 24 stand for the length "2013/06/23 21:00:22 [T] " w.docheck(n) w.Logger.Println(msg) return nil } func (w *FileLogWriter) createLogFile() (*os.File, error) { // Open the log file return os.OpenFile(w.Filename, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0660) } func (w *FileLogWriter) initFd() error { fd := w.mw.fd finfo, err := fd.Stat() if err != nil { return fmt.Errorf("get stat: %v", err) } w.maxsizeCursize = int(finfo.Size()) w.dailyOpenDate = time.Now().Day() return nil } // DoRotate means it need to write file in new file. // new file name like xx.log.2013-01-01.2 func (w *FileLogWriter) DoRotate() error { _, err := os.Lstat(w.Filename) if err == nil { // file exists // Find the next available number num := 1 fname := "" for ; err == nil && num <= 999; num++ { fname = w.Filename + fmt.Sprintf(".%s.%03d", time.Now().Format("2006-01-02"), num) _, err = os.Lstat(fname) } // return error if the last file checked still existed if err == nil { return fmt.Errorf("rotate: cannot find free log number to rename %s", w.Filename) } // block Logger's io.Writer w.mw.Lock() defer w.mw.Unlock() fd := w.mw.fd fd.Close() // close fd before rename // Rename the file to its newfound home if err = os.Rename(w.Filename, fname); err != nil { return fmt.Errorf("Rotate: %v", err) } // re-start logger if err = w.StartLogger(); err != nil { return fmt.Errorf("Rotate StartLogger: %v", err) } go w.deleteOldLog() } return nil } func (w *FileLogWriter) deleteOldLog() { dir := filepath.Dir(w.Filename) filepath.Walk(dir, func(path string, info os.FileInfo, err error) (returnErr error) { defer func() { if r := recover(); r != nil { returnErr = fmt.Errorf("Unable to delete old log '%s', error: %+v", path, r) } }() if !info.IsDir() && info.ModTime().Unix() < (time.Now().Unix()-60*60*24*w.Maxdays) { if strings.HasPrefix(filepath.Base(path), filepath.Base(w.Filename)) { if err := os.Remove(path); err != nil { returnErr = fmt.Errorf("Failed to remove %s: %v", path, err) } } } return returnErr }) } // Destroy destroy file logger, close file writer. func (w *FileLogWriter) Destroy() { w.mw.fd.Close() } // Flush flush file logger. // there are no buffering messages in file logger in memory. // flush file means sync file from disk. func (w *FileLogWriter) Flush() { w.mw.fd.Sync() } func init() { Register("file", NewFileWriter) }
modules/log/file.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00029199017444625497, 0.0001753927645040676, 0.00016014493303373456, 0.0001719091960694641, 0.000025397306671948172 ]
{ "id": 1, "code_window": [ "\t\t}, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef())\n", "\t\tm.Group(\"/milestone\", func() {\n", "\t\t\tm.Get(\"/:id\", repo.MilestoneIssuesAndPulls)\n", "\t\t}, reqRepoIssuesOrPullsWriter, context.RepoRef())\n", "\t\tm.Combo(\"/compare/*\", context.RepoMustNotBeArchived(), reqRepoCodeReader, reqRepoPullsReader, repo.MustAllowPulls, repo.SetEditorconfigIfExists).\n", "\t\t\tGet(repo.SetDiffViewStyle, repo.CompareAndPullRequest).\n", "\t\t\tPost(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)\n", "\n", "\t\tm.Group(\"\", func() {\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t}, reqRepoIssuesOrPullsReader, context.RepoRef())\n" ], "file_path": "routers/routes/routes.go", "type": "replace", "edit_start_line_idx": 637 }
package bbolt import ( "fmt" "syscall" "time" "unsafe" "golang.org/x/sys/unix" ) // flock acquires an advisory lock on a file descriptor. func flock(db *DB, exclusive bool, timeout time.Duration) error { var t time.Time if timeout != 0 { t = time.Now() } fd := db.file.Fd() var lockType int16 if exclusive { lockType = syscall.F_WRLCK } else { lockType = syscall.F_RDLCK } for { // Attempt to obtain an exclusive lock. lock := syscall.Flock_t{Type: lockType} err := syscall.FcntlFlock(fd, syscall.F_SETLK, &lock) if err == nil { return nil } else if err != syscall.EAGAIN { return err } // If we timed out then return an error. if timeout != 0 && time.Since(t) > timeout-flockRetryTimeout { return ErrTimeout } // Wait for a bit and try again. time.Sleep(flockRetryTimeout) } } // funlock releases an advisory lock on a file descriptor. func funlock(db *DB) error { var lock syscall.Flock_t lock.Start = 0 lock.Len = 0 lock.Type = syscall.F_UNLCK lock.Whence = 0 return syscall.FcntlFlock(uintptr(db.file.Fd()), syscall.F_SETLK, &lock) } // mmap memory maps a DB's data file. func mmap(db *DB, sz int) error { // Map the data file to memory. b, err := unix.Mmap(int(db.file.Fd()), 0, sz, syscall.PROT_READ, syscall.MAP_SHARED|db.MmapFlags) if err != nil { return err } // Advise the kernel that the mmap is accessed randomly. if err := unix.Madvise(b, syscall.MADV_RANDOM); err != nil { return fmt.Errorf("madvise: %s", err) } // Save the original byte slice and convert to a byte array pointer. db.dataref = b db.data = (*[maxMapSize]byte)(unsafe.Pointer(&b[0])) db.datasz = sz return nil } // munmap unmaps a DB's data file from memory. func munmap(db *DB) error { // Ignore the unmap if we have no mapped data. if db.dataref == nil { return nil } // Unmap using the original byte slice. err := unix.Munmap(db.dataref) db.dataref = nil db.data = nil db.datasz = 0 return err }
vendor/github.com/etcd-io/bbolt/bolt_unix_solaris.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.0001757087156875059, 0.00017125697922892869, 0.00016446859808638692, 0.0001728524948703125, 0.0000033079350032494403 ]
{ "id": 1, "code_window": [ "\t\t}, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef())\n", "\t\tm.Group(\"/milestone\", func() {\n", "\t\t\tm.Get(\"/:id\", repo.MilestoneIssuesAndPulls)\n", "\t\t}, reqRepoIssuesOrPullsWriter, context.RepoRef())\n", "\t\tm.Combo(\"/compare/*\", context.RepoMustNotBeArchived(), reqRepoCodeReader, reqRepoPullsReader, repo.MustAllowPulls, repo.SetEditorconfigIfExists).\n", "\t\t\tGet(repo.SetDiffViewStyle, repo.CompareAndPullRequest).\n", "\t\t\tPost(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)\n", "\n", "\t\tm.Group(\"\", func() {\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t}, reqRepoIssuesOrPullsReader, context.RepoRef())\n" ], "file_path": "routers/routes/routes.go", "type": "replace", "edit_start_line_idx": 637 }
// Copyright (c) 2017 Couchbase, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package vellum // Automaton represents the general contract of a byte-based finite automaton type Automaton interface { // Start returns the start state Start() int // IsMatch returns true if and only if the state is a match IsMatch(int) bool // CanMatch returns true if and only if it is possible to reach a match // in zero or more steps CanMatch(int) bool // WillAlwaysMatch returns true if and only if the current state matches // and will always match no matter what steps are taken WillAlwaysMatch(int) bool // Accept returns the next state given the input to the specified state Accept(int, byte) int } // AutomatonContains implements an generic Contains() method which works // on any implementation of Automaton func AutomatonContains(a Automaton, k []byte) bool { i := 0 curr := a.Start() for a.CanMatch(curr) && i < len(k) { curr = a.Accept(curr, k[i]) if curr == noneAddr { break } i++ } if i != len(k) { return false } return a.IsMatch(curr) } // AlwaysMatch is an Automaton implementation which always matches type AlwaysMatch struct{} // Start returns the AlwaysMatch start state func (m *AlwaysMatch) Start() int { return 0 } // IsMatch always returns true func (m *AlwaysMatch) IsMatch(int) bool { return true } // CanMatch always returns true func (m *AlwaysMatch) CanMatch(int) bool { return true } // WillAlwaysMatch always returns true func (m *AlwaysMatch) WillAlwaysMatch(int) bool { return true } // Accept returns the next AlwaysMatch state func (m *AlwaysMatch) Accept(int, byte) int { return 0 } // creating an alwaysMatchAutomaton to avoid unnecessary repeated allocations. var alwaysMatchAutomaton = &AlwaysMatch{}
vendor/github.com/couchbase/vellum/automaton.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017985368322115391, 0.00017032318282872438, 0.00015598935715388507, 0.00017379186465404928, 0.00000732858234187006 ]
{ "id": 2, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\">{{.i18n.Tr \"repo.issues.filter_label_no_select\"}}</a>\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if .IsSelected}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n", "\n", "\t\t\t\t\t<!-- Milestone -->\n" ], "labels": [ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<a class=\"item has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if .IsSelected}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n" ], "file_path": "templates/repo/issue/list.tmpl", "type": "replace", "edit_start_line_idx": 46 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> <h3>{{.Milestone.Name}}</h3> </div> <div class="column center aligned"> </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> <a class="ui grey button" href="{{.RepoLink}}/milestones/{{.MilestoneID}}/edit">{{.i18n.Tr "repo.milestones.edit"}}</a> <a class="ui green button" href="{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}">{{.i18n.Tr "repo.issues.new"}}</a> </div> {{end}} </div> <div class="ui one column stackable grid"> <div class="column"> {{ $closedDate:= TimeSinceUnix .Milestone.ClosedDateUnix $.Lang }} {{if .IsClosed}} <span class="octicon octicon-clock"></span> {{$.i18n.Tr "repo.milestones.closed" $closedDate|Str2html}} {{else}} <span class="octicon octicon-calendar"></span> {{if .Milestone.DeadlineString}} <span {{if .IsOverdue}}class="overdue"{{end}}>{{.Milestone.DeadlineString}}</span> {{else}} {{$.i18n.Tr "repo.milestones.no_due_date"}} {{end}} {{end}} &nbsp; <b>{{.i18n.Tr "repo.milestones.completeness" .Milestone.Completeness}}</b> </div> </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid"> <div class="six wide column"> <div class="ui basic status buttons"> <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_open"}}</div> <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_close"}}</div> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} {{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }} <li class="item"> <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.RepoLink}}/issues/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/milestone_issues.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.9861699342727661, 0.09651932120323181, 0.00016711503849364817, 0.00871041789650917, 0.24030396342277527 ]
{ "id": 2, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\">{{.i18n.Tr \"repo.issues.filter_label_no_select\"}}</a>\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if .IsSelected}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n", "\n", "\t\t\t\t\t<!-- Milestone -->\n" ], "labels": [ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<a class=\"item has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if .IsSelected}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n" ], "file_path": "templates/repo/issue/list.tmpl", "type": "replace", "edit_start_line_idx": 46 }
// Copyright 2018 The Prometheus Authors // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package prometheus // Inline and byte-free variant of hash/fnv's fnv64a. const ( offset64 = 14695981039346656037 prime64 = 1099511628211 ) // hashNew initializies a new fnv64a hash value. func hashNew() uint64 { return offset64 } // hashAdd adds a string to a fnv64a hash value, returning the updated hash. func hashAdd(h uint64, s string) uint64 { for i := 0; i < len(s); i++ { h ^= uint64(s[i]) h *= prime64 } return h } // hashAddByte adds a byte to a fnv64a hash value, returning the updated hash. func hashAddByte(h uint64, b byte) uint64 { h ^= uint64(b) h *= prime64 return h }
vendor/github.com/prometheus/client_golang/prometheus/fnv.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017663529433775693, 0.00017135051894001663, 0.00016683689318597317, 0.0001709260541247204, 0.0000032361631383537315 ]
{ "id": 2, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\">{{.i18n.Tr \"repo.issues.filter_label_no_select\"}}</a>\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if .IsSelected}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n", "\n", "\t\t\t\t\t<!-- Milestone -->\n" ], "labels": [ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<a class=\"item has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if .IsSelected}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n" ], "file_path": "templates/repo/issue/list.tmpl", "type": "replace", "edit_start_line_idx": 46 }
// Copyright 2019 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. package repo import ( "code.gitea.io/gitea/modules/context" "code.gitea.io/gitea/routers/api/v1/convert" api "code.gitea.io/sdk/gitea" ) // ListTags list all the tags of a repository func ListTags(ctx *context.APIContext) { // swagger:operation GET /repos/{owner}/{repo}/tags repository repoListTags // --- // summary: List a repository's tags // produces: // - application/json // parameters: // - name: owner // in: path // description: owner of the repo // type: string // required: true // - name: repo // in: path // description: name of the repo // type: string // required: true // responses: // "200": // "$ref": "#/responses/TagList" tags, err := ctx.Repo.Repository.GetTags() if err != nil { ctx.Error(500, "GetTags", err) return } apiTags := make([]*api.Tag, len(tags)) for i := range tags { apiTags[i] = convert.ToTag(ctx.Repo.Repository, tags[i]) } ctx.JSON(200, &apiTags) }
routers/api/v1/repo/tag.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017341048805974424, 0.00016795381088741124, 0.0001647977769607678, 0.00016764187603257596, 0.0000031201325327856466 ]
{ "id": 2, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\">{{.i18n.Tr \"repo.issues.filter_label_no_select\"}}</a>\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if .IsSelected}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n", "\n", "\t\t\t\t\t<!-- Milestone -->\n" ], "labels": [ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<a class=\"item has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if .IsSelected}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n" ], "file_path": "templates/repo/issue/list.tmpl", "type": "replace", "edit_start_line_idx": 46 }
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "crypto" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/subtle" "errors" "io" "math/big" "golang.org/x/crypto/curve25519" ) const ( kexAlgoDH1SHA1 = "diffie-hellman-group1-sha1" kexAlgoDH14SHA1 = "diffie-hellman-group14-sha1" kexAlgoECDH256 = "ecdh-sha2-nistp256" kexAlgoECDH384 = "ecdh-sha2-nistp384" kexAlgoECDH521 = "ecdh-sha2-nistp521" kexAlgoCurve25519SHA256 = "[email protected]" ) // kexResult captures the outcome of a key exchange. type kexResult struct { // Session hash. See also RFC 4253, section 8. H []byte // Shared secret. See also RFC 4253, section 8. K []byte // Host key as hashed into H. HostKey []byte // Signature of H. Signature []byte // A cryptographic hash function that matches the security // level of the key exchange algorithm. It is used for // calculating H, and for deriving keys from H and K. Hash crypto.Hash // The session ID, which is the first H computed. This is used // to derive key material inside the transport. SessionID []byte } // handshakeMagics contains data that is always included in the // session hash. type handshakeMagics struct { clientVersion, serverVersion []byte clientKexInit, serverKexInit []byte } func (m *handshakeMagics) write(w io.Writer) { writeString(w, m.clientVersion) writeString(w, m.serverVersion) writeString(w, m.clientKexInit) writeString(w, m.serverKexInit) } // kexAlgorithm abstracts different key exchange algorithms. type kexAlgorithm interface { // Server runs server-side key agreement, signing the result // with a hostkey. Server(p packetConn, rand io.Reader, magics *handshakeMagics, s Signer) (*kexResult, error) // Client runs the client-side key agreement. Caller is // responsible for verifying the host key signature. Client(p packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) } // dhGroup is a multiplicative group suitable for implementing Diffie-Hellman key agreement. type dhGroup struct { g, p, pMinus1 *big.Int } func (group *dhGroup) diffieHellman(theirPublic, myPrivate *big.Int) (*big.Int, error) { if theirPublic.Cmp(bigOne) <= 0 || theirPublic.Cmp(group.pMinus1) >= 0 { return nil, errors.New("ssh: DH parameter out of bounds") } return new(big.Int).Exp(theirPublic, myPrivate, group.p), nil } func (group *dhGroup) Client(c packetConn, randSource io.Reader, magics *handshakeMagics) (*kexResult, error) { hashFunc := crypto.SHA1 var x *big.Int for { var err error if x, err = rand.Int(randSource, group.pMinus1); err != nil { return nil, err } if x.Sign() > 0 { break } } X := new(big.Int).Exp(group.g, x, group.p) kexDHInit := kexDHInitMsg{ X: X, } if err := c.writePacket(Marshal(&kexDHInit)); err != nil { return nil, err } packet, err := c.readPacket() if err != nil { return nil, err } var kexDHReply kexDHReplyMsg if err = Unmarshal(packet, &kexDHReply); err != nil { return nil, err } ki, err := group.diffieHellman(kexDHReply.Y, x) if err != nil { return nil, err } h := hashFunc.New() magics.write(h) writeString(h, kexDHReply.HostKey) writeInt(h, X) writeInt(h, kexDHReply.Y) K := make([]byte, intLength(ki)) marshalInt(K, ki) h.Write(K) return &kexResult{ H: h.Sum(nil), K: K, HostKey: kexDHReply.HostKey, Signature: kexDHReply.Signature, Hash: crypto.SHA1, }, nil } func (group *dhGroup) Server(c packetConn, randSource io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { hashFunc := crypto.SHA1 packet, err := c.readPacket() if err != nil { return } var kexDHInit kexDHInitMsg if err = Unmarshal(packet, &kexDHInit); err != nil { return } var y *big.Int for { if y, err = rand.Int(randSource, group.pMinus1); err != nil { return } if y.Sign() > 0 { break } } Y := new(big.Int).Exp(group.g, y, group.p) ki, err := group.diffieHellman(kexDHInit.X, y) if err != nil { return nil, err } hostKeyBytes := priv.PublicKey().Marshal() h := hashFunc.New() magics.write(h) writeString(h, hostKeyBytes) writeInt(h, kexDHInit.X) writeInt(h, Y) K := make([]byte, intLength(ki)) marshalInt(K, ki) h.Write(K) H := h.Sum(nil) // H is already a hash, but the hostkey signing will apply its // own key-specific hash algorithm. sig, err := signAndMarshal(priv, randSource, H) if err != nil { return nil, err } kexDHReply := kexDHReplyMsg{ HostKey: hostKeyBytes, Y: Y, Signature: sig, } packet = Marshal(&kexDHReply) err = c.writePacket(packet) return &kexResult{ H: H, K: K, HostKey: hostKeyBytes, Signature: sig, Hash: crypto.SHA1, }, nil } // ecdh performs Elliptic Curve Diffie-Hellman key exchange as // described in RFC 5656, section 4. type ecdh struct { curve elliptic.Curve } func (kex *ecdh) Client(c packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) { ephKey, err := ecdsa.GenerateKey(kex.curve, rand) if err != nil { return nil, err } kexInit := kexECDHInitMsg{ ClientPubKey: elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y), } serialized := Marshal(&kexInit) if err := c.writePacket(serialized); err != nil { return nil, err } packet, err := c.readPacket() if err != nil { return nil, err } var reply kexECDHReplyMsg if err = Unmarshal(packet, &reply); err != nil { return nil, err } x, y, err := unmarshalECKey(kex.curve, reply.EphemeralPubKey) if err != nil { return nil, err } // generate shared secret secret, _ := kex.curve.ScalarMult(x, y, ephKey.D.Bytes()) h := ecHash(kex.curve).New() magics.write(h) writeString(h, reply.HostKey) writeString(h, kexInit.ClientPubKey) writeString(h, reply.EphemeralPubKey) K := make([]byte, intLength(secret)) marshalInt(K, secret) h.Write(K) return &kexResult{ H: h.Sum(nil), K: K, HostKey: reply.HostKey, Signature: reply.Signature, Hash: ecHash(kex.curve), }, nil } // unmarshalECKey parses and checks an EC key. func unmarshalECKey(curve elliptic.Curve, pubkey []byte) (x, y *big.Int, err error) { x, y = elliptic.Unmarshal(curve, pubkey) if x == nil { return nil, nil, errors.New("ssh: elliptic.Unmarshal failure") } if !validateECPublicKey(curve, x, y) { return nil, nil, errors.New("ssh: public key not on curve") } return x, y, nil } // validateECPublicKey checks that the point is a valid public key for // the given curve. See [SEC1], 3.2.2 func validateECPublicKey(curve elliptic.Curve, x, y *big.Int) bool { if x.Sign() == 0 && y.Sign() == 0 { return false } if x.Cmp(curve.Params().P) >= 0 { return false } if y.Cmp(curve.Params().P) >= 0 { return false } if !curve.IsOnCurve(x, y) { return false } // We don't check if N * PubKey == 0, since // // - the NIST curves have cofactor = 1, so this is implicit. // (We don't foresee an implementation that supports non NIST // curves) // // - for ephemeral keys, we don't need to worry about small // subgroup attacks. return true } func (kex *ecdh) Server(c packetConn, rand io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { packet, err := c.readPacket() if err != nil { return nil, err } var kexECDHInit kexECDHInitMsg if err = Unmarshal(packet, &kexECDHInit); err != nil { return nil, err } clientX, clientY, err := unmarshalECKey(kex.curve, kexECDHInit.ClientPubKey) if err != nil { return nil, err } // We could cache this key across multiple users/multiple // connection attempts, but the benefit is small. OpenSSH // generates a new key for each incoming connection. ephKey, err := ecdsa.GenerateKey(kex.curve, rand) if err != nil { return nil, err } hostKeyBytes := priv.PublicKey().Marshal() serializedEphKey := elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y) // generate shared secret secret, _ := kex.curve.ScalarMult(clientX, clientY, ephKey.D.Bytes()) h := ecHash(kex.curve).New() magics.write(h) writeString(h, hostKeyBytes) writeString(h, kexECDHInit.ClientPubKey) writeString(h, serializedEphKey) K := make([]byte, intLength(secret)) marshalInt(K, secret) h.Write(K) H := h.Sum(nil) // H is already a hash, but the hostkey signing will apply its // own key-specific hash algorithm. sig, err := signAndMarshal(priv, rand, H) if err != nil { return nil, err } reply := kexECDHReplyMsg{ EphemeralPubKey: serializedEphKey, HostKey: hostKeyBytes, Signature: sig, } serialized := Marshal(&reply) if err := c.writePacket(serialized); err != nil { return nil, err } return &kexResult{ H: H, K: K, HostKey: reply.HostKey, Signature: sig, Hash: ecHash(kex.curve), }, nil } var kexAlgoMap = map[string]kexAlgorithm{} func init() { // This is the group called diffie-hellman-group1-sha1 in RFC // 4253 and Oakley Group 2 in RFC 2409. p, _ := new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381FFFFFFFFFFFFFFFF", 16) kexAlgoMap[kexAlgoDH1SHA1] = &dhGroup{ g: new(big.Int).SetInt64(2), p: p, pMinus1: new(big.Int).Sub(p, bigOne), } // This is the group called diffie-hellman-group14-sha1 in RFC // 4253 and Oakley Group 14 in RFC 3526. p, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3DC2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F83655D23DCA3AD961C62F356208552BB9ED529077096966D670C354E4ABC9804F1746C08CA18217C32905E462E36CE3BE39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9DE2BCBF6955817183995497CEA956AE515D2261898FA051015728E5A8AACAA68FFFFFFFFFFFFFFFF", 16) kexAlgoMap[kexAlgoDH14SHA1] = &dhGroup{ g: new(big.Int).SetInt64(2), p: p, pMinus1: new(big.Int).Sub(p, bigOne), } kexAlgoMap[kexAlgoECDH521] = &ecdh{elliptic.P521()} kexAlgoMap[kexAlgoECDH384] = &ecdh{elliptic.P384()} kexAlgoMap[kexAlgoECDH256] = &ecdh{elliptic.P256()} kexAlgoMap[kexAlgoCurve25519SHA256] = &curve25519sha256{} } // curve25519sha256 implements the [email protected] key // agreement protocol, as described in // https://git.libssh.org/projects/libssh.git/tree/doc/[email protected] type curve25519sha256 struct{} type curve25519KeyPair struct { priv [32]byte pub [32]byte } func (kp *curve25519KeyPair) generate(rand io.Reader) error { if _, err := io.ReadFull(rand, kp.priv[:]); err != nil { return err } curve25519.ScalarBaseMult(&kp.pub, &kp.priv) return nil } // curve25519Zeros is just an array of 32 zero bytes so that we have something // convenient to compare against in order to reject curve25519 points with the // wrong order. var curve25519Zeros [32]byte func (kex *curve25519sha256) Client(c packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) { var kp curve25519KeyPair if err := kp.generate(rand); err != nil { return nil, err } if err := c.writePacket(Marshal(&kexECDHInitMsg{kp.pub[:]})); err != nil { return nil, err } packet, err := c.readPacket() if err != nil { return nil, err } var reply kexECDHReplyMsg if err = Unmarshal(packet, &reply); err != nil { return nil, err } if len(reply.EphemeralPubKey) != 32 { return nil, errors.New("ssh: peer's curve25519 public value has wrong length") } var servPub, secret [32]byte copy(servPub[:], reply.EphemeralPubKey) curve25519.ScalarMult(&secret, &kp.priv, &servPub) if subtle.ConstantTimeCompare(secret[:], curve25519Zeros[:]) == 1 { return nil, errors.New("ssh: peer's curve25519 public value has wrong order") } h := crypto.SHA256.New() magics.write(h) writeString(h, reply.HostKey) writeString(h, kp.pub[:]) writeString(h, reply.EphemeralPubKey) ki := new(big.Int).SetBytes(secret[:]) K := make([]byte, intLength(ki)) marshalInt(K, ki) h.Write(K) return &kexResult{ H: h.Sum(nil), K: K, HostKey: reply.HostKey, Signature: reply.Signature, Hash: crypto.SHA256, }, nil } func (kex *curve25519sha256) Server(c packetConn, rand io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { packet, err := c.readPacket() if err != nil { return } var kexInit kexECDHInitMsg if err = Unmarshal(packet, &kexInit); err != nil { return } if len(kexInit.ClientPubKey) != 32 { return nil, errors.New("ssh: peer's curve25519 public value has wrong length") } var kp curve25519KeyPair if err := kp.generate(rand); err != nil { return nil, err } var clientPub, secret [32]byte copy(clientPub[:], kexInit.ClientPubKey) curve25519.ScalarMult(&secret, &kp.priv, &clientPub) if subtle.ConstantTimeCompare(secret[:], curve25519Zeros[:]) == 1 { return nil, errors.New("ssh: peer's curve25519 public value has wrong order") } hostKeyBytes := priv.PublicKey().Marshal() h := crypto.SHA256.New() magics.write(h) writeString(h, hostKeyBytes) writeString(h, kexInit.ClientPubKey) writeString(h, kp.pub[:]) ki := new(big.Int).SetBytes(secret[:]) K := make([]byte, intLength(ki)) marshalInt(K, ki) h.Write(K) H := h.Sum(nil) sig, err := signAndMarshal(priv, rand, H) if err != nil { return nil, err } reply := kexECDHReplyMsg{ EphemeralPubKey: kp.pub[:], HostKey: hostKeyBytes, Signature: sig, } if err := c.writePacket(Marshal(&reply)); err != nil { return nil, err } return &kexResult{ H: H, K: K, HostKey: hostKeyBytes, Signature: sig, Hash: crypto.SHA256, }, nil }
vendor/golang.org/x/crypto/ssh/kex.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.0004648460599128157, 0.00018041527073364705, 0.000163895936566405, 0.00016914668958634138, 0.000053705898608313873 ]
{ "id": 3, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<div class=\"item issue-action\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n", "\t\t\t\t\t\t\t\t\t<span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}\n", "\t\t\t\t\t\t\t\t</div>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<div class=\"item issue-action has-emoji\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n" ], "file_path": "templates/repo/issue/list.tmpl", "type": "replace", "edit_start_line_idx": 148 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> {{template "repo/issue/navbar" .}} </div> <div class="column center aligned"> {{template "repo/issue/search" .}} </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> {{if .PageIsIssueList}} <a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a> {{else}} <a class="ui green button {{if not .PullRequestCtx.Allowed}}disabled{{end}}" href="{{if .PullRequestCtx.Allowed}}{{.PullRequestCtx.BaseRepo.Link}}/compare/{{.Repository.DefaultBranch}}...{{.PullRequestCtx.HeadInfo}}{{end}}">{{.i18n.Tr "repo.pulls.new"}}</a> {{end}} </div> {{end}} </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu labels"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if .IsSelected}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_milestone_no_select"}}</a> {{range .Milestones}} <a class="{{if eq $.MilestoneID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.ID}}&assignee={{$.AssigneeID}}">{{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> <a class="{{if eq .SortType "nearduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=nearduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.nearduedate"}}</a> <a class="{{if eq .SortType "farduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=farduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.farduedate"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid hide"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Action Button --> {{if .IsShowClosed}} <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_open"}}</div> {{else}} <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_close"}}</div> {{end}} <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/milestone"> {{.i18n.Tr "repo.issues.action_milestone_no_select"}} </div> {{range .Milestones}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/milestone"> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} <li class="item"> {{if $.CanWriteIssuesOrPulls}} <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> {{end}} <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.Link}}/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label has-emoji" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{ $timeStr := TimeSinceUnix .GetLastEventTimestamp $.Lang }} {{$.i18n.Tr .GetLastEventLabel $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if .Milestone}} <a class="milestone" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.Milestone.ID}}&assignee={{$.AssigneeID}}"> <span class="octicon octicon-milestone"></span> {{.Milestone.Name}} </a> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/list.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.9959484934806824, 0.0445341132581234, 0.0001628644677111879, 0.0012030100915580988, 0.18541324138641357 ]
{ "id": 3, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<div class=\"item issue-action\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n", "\t\t\t\t\t\t\t\t\t<span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}\n", "\t\t\t\t\t\t\t\t</div>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<div class=\"item issue-action has-emoji\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n" ], "file_path": "templates/repo/issue/list.tmpl", "type": "replace", "edit_start_line_idx": 148 }
*.ss~ *.ss#* .#*.ss *.scm~ *.scm#* .#*.scm
options/gitignore/Scheme
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.0001666928146732971, 0.0001666928146732971, 0.0001666928146732971, 0.0001666928146732971, 0 ]
{ "id": 3, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<div class=\"item issue-action\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n", "\t\t\t\t\t\t\t\t\t<span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}\n", "\t\t\t\t\t\t\t\t</div>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<div class=\"item issue-action has-emoji\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n" ], "file_path": "templates/repo/issue/list.tmpl", "type": "replace", "edit_start_line_idx": 148 }
// Copyright (c) 2014 Couchbase, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package upsidedown import ( "reflect" "github.com/blevesearch/bleve/document" "github.com/blevesearch/bleve/index" "github.com/blevesearch/bleve/index/store" ) var reflectStaticSizeIndexReader int func init() { var ir IndexReader reflectStaticSizeIndexReader = int(reflect.TypeOf(ir).Size()) } type IndexReader struct { index *UpsideDownCouch kvreader store.KVReader docCount uint64 } func (i *IndexReader) TermFieldReader(term []byte, fieldName string, includeFreq, includeNorm, includeTermVectors bool) (index.TermFieldReader, error) { fieldIndex, fieldExists := i.index.fieldCache.FieldNamed(fieldName, false) if fieldExists { return newUpsideDownCouchTermFieldReader(i, term, uint16(fieldIndex), includeFreq, includeNorm, includeTermVectors) } return newUpsideDownCouchTermFieldReader(i, []byte{ByteSeparator}, ^uint16(0), includeFreq, includeNorm, includeTermVectors) } func (i *IndexReader) FieldDict(fieldName string) (index.FieldDict, error) { return i.FieldDictRange(fieldName, nil, nil) } func (i *IndexReader) FieldDictRange(fieldName string, startTerm []byte, endTerm []byte) (index.FieldDict, error) { fieldIndex, fieldExists := i.index.fieldCache.FieldNamed(fieldName, false) if fieldExists { return newUpsideDownCouchFieldDict(i, uint16(fieldIndex), startTerm, endTerm) } return newUpsideDownCouchFieldDict(i, ^uint16(0), []byte{ByteSeparator}, []byte{}) } func (i *IndexReader) FieldDictPrefix(fieldName string, termPrefix []byte) (index.FieldDict, error) { return i.FieldDictRange(fieldName, termPrefix, termPrefix) } func (i *IndexReader) DocIDReaderAll() (index.DocIDReader, error) { return newUpsideDownCouchDocIDReader(i) } func (i *IndexReader) DocIDReaderOnly(ids []string) (index.DocIDReader, error) { return newUpsideDownCouchDocIDReaderOnly(i, ids) } func (i *IndexReader) Document(id string) (doc *document.Document, err error) { // first hit the back index to confirm doc exists var backIndexRow *BackIndexRow backIndexRow, err = backIndexRowForDoc(i.kvreader, []byte(id)) if err != nil { return } if backIndexRow == nil { return } doc = document.NewDocument(id) storedRow := NewStoredRow([]byte(id), 0, []uint64{}, 'x', nil) storedRowScanPrefix := storedRow.ScanPrefixForDoc() it := i.kvreader.PrefixIterator(storedRowScanPrefix) defer func() { if cerr := it.Close(); err == nil && cerr != nil { err = cerr } }() key, val, valid := it.Current() for valid { safeVal := make([]byte, len(val)) copy(safeVal, val) var row *StoredRow row, err = NewStoredRowKV(key, safeVal) if err != nil { doc = nil return } if row != nil { fieldName := i.index.fieldCache.FieldIndexed(row.field) field := decodeFieldType(row.typ, fieldName, row.arrayPositions, row.value) if field != nil { doc.AddField(field) } } it.Next() key, val, valid = it.Current() } return } func (i *IndexReader) DocumentVisitFieldTerms(id index.IndexInternalID, fields []string, visitor index.DocumentFieldTermVisitor) error { fieldsMap := make(map[uint16]string, len(fields)) for _, f := range fields { id, ok := i.index.fieldCache.FieldNamed(f, false) if ok { fieldsMap[id] = f } } tempRow := BackIndexRow{ doc: id, } keyBuf := GetRowBuffer() if tempRow.KeySize() > len(keyBuf) { keyBuf = make([]byte, 2*tempRow.KeySize()) } defer PutRowBuffer(keyBuf) keySize, err := tempRow.KeyTo(keyBuf) if err != nil { return err } value, err := i.kvreader.Get(keyBuf[:keySize]) if err != nil { return err } if value == nil { return nil } return visitBackIndexRow(value, func(field uint32, term []byte) { if field, ok := fieldsMap[uint16(field)]; ok { visitor(field, term) } }) } func (i *IndexReader) Fields() (fields []string, err error) { fields = make([]string, 0) it := i.kvreader.PrefixIterator([]byte{'f'}) defer func() { if cerr := it.Close(); err == nil && cerr != nil { err = cerr } }() key, val, valid := it.Current() for valid { var row UpsideDownCouchRow row, err = ParseFromKeyValue(key, val) if err != nil { fields = nil return } if row != nil { fieldRow, ok := row.(*FieldRow) if ok { fields = append(fields, fieldRow.name) } } it.Next() key, val, valid = it.Current() } return } func (i *IndexReader) GetInternal(key []byte) ([]byte, error) { internalRow := NewInternalRow(key, nil) return i.kvreader.Get(internalRow.Key()) } func (i *IndexReader) DocCount() (uint64, error) { return i.docCount, nil } func (i *IndexReader) Close() error { return i.kvreader.Close() } func (i *IndexReader) ExternalID(id index.IndexInternalID) (string, error) { return string(id), nil } func (i *IndexReader) InternalID(id string) (index.IndexInternalID, error) { return index.IndexInternalID(id), nil } func incrementBytes(in []byte) []byte { rv := make([]byte, len(in)) copy(rv, in) for i := len(rv) - 1; i >= 0; i-- { rv[i] = rv[i] + 1 if rv[i] != 0 { // didn't overflow, so stop break } } return rv } func (i *IndexReader) DocValueReader(fields []string) (index.DocValueReader, error) { return &DocValueReader{i: i, fields: fields}, nil } type DocValueReader struct { i *IndexReader fields []string } func (dvr *DocValueReader) VisitDocValues(id index.IndexInternalID, visitor index.DocumentFieldTermVisitor) error { return dvr.i.DocumentVisitFieldTerms(id, dvr.fields, visitor) }
vendor/github.com/blevesearch/bleve/index/upsidedown/index_reader.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017718654999043792, 0.00016915544983930886, 0.00016284429875668138, 0.00016902576317079365, 0.000003569830141714192 ]
{ "id": 3, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<div class=\"item issue-action\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n", "\t\t\t\t\t\t\t\t\t<span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}\n", "\t\t\t\t\t\t\t\t</div>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<div class=\"item issue-action has-emoji\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n" ], "file_path": "templates/repo/issue/list.tmpl", "type": "replace", "edit_start_line_idx": 148 }
// Copyright (c) 2014 Couchbase, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // as of Go 1.8 this requires the goyacc external tool // available from golang.org/x/tools/cmd/goyacc //go:generate goyacc -o query_string.y.go query_string.y //go:generate sed -i.tmp -e 1d query_string.y.go //go:generate rm query_string.y.go.tmp // note: OSX sed and gnu sed handle the -i (in-place) option differently. // using -i.tmp works on both, at the expense of having to remove // the unsightly .tmp files package query import ( "fmt" "strings" ) var debugParser bool var debugLexer bool func parseQuerySyntax(query string) (rq Query, err error) { if query == "" { return NewMatchNoneQuery(), nil } lex := newLexerWrapper(newQueryStringLex(strings.NewReader(query))) doParse(lex) if len(lex.errs) > 0 { return nil, fmt.Errorf(strings.Join(lex.errs, "\n")) } return lex.query, nil } func doParse(lex *lexerWrapper) { defer func() { r := recover() if r != nil { lex.errs = append(lex.errs, fmt.Sprintf("parse error: %v", r)) } }() yyParse(lex) } const ( queryShould = iota queryMust queryMustNot ) type lexerWrapper struct { lex yyLexer errs []string query *BooleanQuery } func newLexerWrapper(lex yyLexer) *lexerWrapper { return &lexerWrapper{ lex: lex, query: NewBooleanQueryForQueryString(nil, nil, nil), } } func (l *lexerWrapper) Lex(lval *yySymType) int { return l.lex.Lex(lval) } func (l *lexerWrapper) Error(s string) { l.errs = append(l.errs, s) }
vendor/github.com/blevesearch/bleve/search/query/query_string_parser.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017546176968608052, 0.00016916719323489815, 0.0001609397295396775, 0.00016888561367522925, 0.000004355727924121311 ]
{ "id": 4, "code_window": [ "\t\t\t\t\n", "\t\t\t</div>\n", "\t\t\t{{if not .Repository.IsArchived}}\n", "\t\t\t\t<div class=\"column right aligned\">\n", "\t\t\t\t\t<a class=\"ui grey button\" href=\"{{.RepoLink}}/milestones/{{.MilestoneID}}/edit\">{{.i18n.Tr \"repo.milestones.edit\"}}</a>\n" ], "labels": [ "keep", "keep", "keep", "add", "keep" ], "after_edit": [ "\t\t\t\t\t{{if or .CanWriteIssues .CanWritePulls}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 13 }
// Copyright 2017 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. package routes import ( "encoding/gob" "fmt" "net/http" "os" "path" "time" "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/auth" "code.gitea.io/gitea/modules/context" "code.gitea.io/gitea/modules/gzip" "code.gitea.io/gitea/modules/lfs" "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/metrics" "code.gitea.io/gitea/modules/options" "code.gitea.io/gitea/modules/public" "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/templates" "code.gitea.io/gitea/modules/validation" "code.gitea.io/gitea/routers" "code.gitea.io/gitea/routers/admin" apiv1 "code.gitea.io/gitea/routers/api/v1" "code.gitea.io/gitea/routers/dev" "code.gitea.io/gitea/routers/org" "code.gitea.io/gitea/routers/private" "code.gitea.io/gitea/routers/repo" "code.gitea.io/gitea/routers/user" userSetting "code.gitea.io/gitea/routers/user/setting" "github.com/go-macaron/binding" "github.com/go-macaron/cache" "github.com/go-macaron/captcha" "github.com/go-macaron/csrf" "github.com/go-macaron/i18n" "github.com/go-macaron/session" "github.com/go-macaron/toolbox" "github.com/prometheus/client_golang/prometheus" "github.com/tstranex/u2f" macaron "gopkg.in/macaron.v1" ) func giteaLogger(l *log.LoggerAsWriter) macaron.Handler { return func(ctx *macaron.Context) { start := time.Now() l.Log(fmt.Sprintf("[Macaron] Started %s %s for %s", ctx.Req.Method, ctx.Req.RequestURI, ctx.RemoteAddr())) ctx.Next() rw := ctx.Resp.(macaron.ResponseWriter) l.Log(fmt.Sprintf("[Macaron] Completed %s %s %v %s in %v", ctx.Req.Method, ctx.Req.RequestURI, rw.Status(), http.StatusText(rw.Status()), time.Since(start))) } } // NewMacaron initializes Macaron instance. func NewMacaron() *macaron.Macaron { gob.Register(&u2f.Challenge{}) var m *macaron.Macaron if setting.RedirectMacaronLog { loggerAsWriter := log.NewLoggerAsWriter("INFO") m = macaron.NewWithLogger(loggerAsWriter) if !setting.DisableRouterLog { m.Use(giteaLogger(loggerAsWriter)) } } else { m = macaron.New() if !setting.DisableRouterLog { m.Use(macaron.Logger()) } } m.Use(macaron.Recovery()) if setting.EnableGzip { m.Use(gzip.Middleware()) } if setting.Protocol == setting.FCGI { m.SetURLPrefix(setting.AppSubURL) } m.Use(public.Custom( &public.Options{ SkipLogging: setting.DisableRouterLog, ExpiresAfter: time.Hour * 6, }, )) m.Use(public.Static( &public.Options{ Directory: path.Join(setting.StaticRootPath, "public"), SkipLogging: setting.DisableRouterLog, ExpiresAfter: time.Hour * 6, }, )) m.Use(public.StaticHandler( setting.AvatarUploadPath, &public.Options{ Prefix: "avatars", SkipLogging: setting.DisableRouterLog, ExpiresAfter: time.Hour * 6, }, )) m.Use(templates.HTMLRenderer()) models.InitMailRender(templates.Mailer()) localeNames, err := options.Dir("locale") if err != nil { log.Fatal(4, "Failed to list locale files: %v", err) } localFiles := make(map[string][]byte) for _, name := range localeNames { localFiles[name], err = options.Locale(name) if err != nil { log.Fatal(4, "Failed to load %s locale file. %v", name, err) } } m.Use(i18n.I18n(i18n.Options{ SubURL: setting.AppSubURL, Files: localFiles, Langs: setting.Langs, Names: setting.Names, DefaultLang: "en-US", Redirect: false, })) m.Use(cache.Cacher(cache.Options{ Adapter: setting.CacheService.Adapter, AdapterConfig: setting.CacheService.Conn, Interval: setting.CacheService.Interval, })) m.Use(captcha.Captchaer(captcha.Options{ SubURL: setting.AppSubURL, })) m.Use(session.Sessioner(setting.SessionConfig)) m.Use(csrf.Csrfer(csrf.Options{ Secret: setting.SecretKey, Cookie: setting.CSRFCookieName, SetCookie: true, Secure: setting.SessionConfig.Secure, CookieHttpOnly: true, Header: "X-Csrf-Token", CookiePath: setting.AppSubURL, })) m.Use(toolbox.Toolboxer(m, toolbox.Options{ HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{ { Desc: "Database connection", Func: models.Ping, }, }, DisableDebug: !setting.EnablePprof, })) m.Use(context.Contexter()) // OK we are now set-up enough to allow us to create a nicer recovery than // the default macaron recovery m.Use(context.Recovery()) m.SetAutoHead(true) return m } // RegisterRoutes routes routes to Macaron func RegisterRoutes(m *macaron.Macaron) { reqSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: true}) ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: setting.Service.RequireSignInView}) ignSignInAndCsrf := context.Toggle(&context.ToggleOptions{DisableCSRF: true}) reqSignOut := context.Toggle(&context.ToggleOptions{SignOutRequired: true}) bindIgnErr := binding.BindIgnErr validation.AddBindingRules() openIDSignInEnabled := func(ctx *context.Context) { if !setting.Service.EnableOpenIDSignIn { ctx.Error(403) return } } openIDSignUpEnabled := func(ctx *context.Context) { if !setting.Service.EnableOpenIDSignUp { ctx.Error(403) return } } m.Use(user.GetNotificationCount) // FIXME: not all routes need go through same middlewares. // Especially some AJAX requests, we can reduce middleware number to improve performance. // Routers. // for health check m.Head("/", func() string { return "" }) m.Get("/", routers.Home) m.Group("/explore", func() { m.Get("", func(ctx *context.Context) { ctx.Redirect(setting.AppSubURL + "/explore/repos") }) m.Get("/repos", routers.ExploreRepos) m.Get("/users", routers.ExploreUsers) m.Get("/organizations", routers.ExploreOrganizations) m.Get("/code", routers.ExploreCode) }, ignSignIn) m.Combo("/install", routers.InstallInit).Get(routers.Install). Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost) m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues) // ***** START: User ***** m.Group("/user", func() { m.Get("/login", user.SignIn) m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost) m.Group("", func() { m.Combo("/login/openid"). Get(user.SignInOpenID). Post(bindIgnErr(auth.SignInOpenIDForm{}), user.SignInOpenIDPost) }, openIDSignInEnabled) m.Group("/openid", func() { m.Combo("/connect"). Get(user.ConnectOpenID). Post(bindIgnErr(auth.ConnectOpenIDForm{}), user.ConnectOpenIDPost) m.Group("/register", func() { m.Combo(""). Get(user.RegisterOpenID, openIDSignUpEnabled). Post(bindIgnErr(auth.SignUpOpenIDForm{}), user.RegisterOpenIDPost) }, openIDSignUpEnabled) }, openIDSignInEnabled) m.Get("/sign_up", user.SignUp) m.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost) m.Get("/reset_password", user.ResetPasswd) m.Post("/reset_password", user.ResetPasswdPost) m.Group("/oauth2", func() { m.Get("/:provider", user.SignInOAuth) m.Get("/:provider/callback", user.SignInOAuthCallback) }) m.Get("/link_account", user.LinkAccount) m.Post("/link_account_signin", bindIgnErr(auth.SignInForm{}), user.LinkAccountPostSignIn) m.Post("/link_account_signup", bindIgnErr(auth.RegisterForm{}), user.LinkAccountPostRegister) m.Group("/two_factor", func() { m.Get("", user.TwoFactor) m.Post("", bindIgnErr(auth.TwoFactorAuthForm{}), user.TwoFactorPost) m.Get("/scratch", user.TwoFactorScratch) m.Post("/scratch", bindIgnErr(auth.TwoFactorScratchAuthForm{}), user.TwoFactorScratchPost) }) m.Group("/u2f", func() { m.Get("", user.U2F) m.Get("/challenge", user.U2FChallenge) m.Post("/sign", bindIgnErr(u2f.SignResponse{}), user.U2FSign) }) }, reqSignOut) m.Group("/login/oauth", func() { m.Get("/authorize", bindIgnErr(auth.AuthorizationForm{}), user.AuthorizeOAuth) m.Post("/grant", bindIgnErr(auth.GrantApplicationForm{}), user.GrantApplicationOAuth) // TODO manage redirection m.Post("/authorize", bindIgnErr(auth.AuthorizationForm{}), user.AuthorizeOAuth) }, ignSignInAndCsrf, reqSignIn) m.Post("/login/oauth/access_token", bindIgnErr(auth.AccessTokenForm{}), ignSignInAndCsrf, user.AccessTokenOAuth) m.Group("/user/settings", func() { m.Get("", userSetting.Profile) m.Post("", bindIgnErr(auth.UpdateProfileForm{}), userSetting.ProfilePost) m.Get("/change_password", user.MustChangePassword) m.Post("/change_password", bindIgnErr(auth.MustChangePasswordForm{}), user.MustChangePasswordPost) m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), userSetting.AvatarPost) m.Post("/avatar/delete", userSetting.DeleteAvatar) m.Group("/account", func() { m.Combo("").Get(userSetting.Account).Post(bindIgnErr(auth.ChangePasswordForm{}), userSetting.AccountPost) m.Post("/email", bindIgnErr(auth.AddEmailForm{}), userSetting.EmailPost) m.Post("/email/delete", userSetting.DeleteEmail) m.Post("/delete", userSetting.DeleteAccount) m.Post("/theme", bindIgnErr(auth.UpdateThemeForm{}), userSetting.UpdateUIThemePost) }) m.Group("/security", func() { m.Get("", userSetting.Security) m.Group("/two_factor", func() { m.Post("/regenerate_scratch", userSetting.RegenerateScratchTwoFactor) m.Post("/disable", userSetting.DisableTwoFactor) m.Get("/enroll", userSetting.EnrollTwoFactor) m.Post("/enroll", bindIgnErr(auth.TwoFactorAuthForm{}), userSetting.EnrollTwoFactorPost) }) m.Group("/u2f", func() { m.Post("/request_register", bindIgnErr(auth.U2FRegistrationForm{}), userSetting.U2FRegister) m.Post("/register", bindIgnErr(u2f.RegisterResponse{}), userSetting.U2FRegisterPost) m.Post("/delete", bindIgnErr(auth.U2FDeleteForm{}), userSetting.U2FDelete) }) m.Group("/openid", func() { m.Post("", bindIgnErr(auth.AddOpenIDForm{}), userSetting.OpenIDPost) m.Post("/delete", userSetting.DeleteOpenID) m.Post("/toggle_visibility", userSetting.ToggleOpenIDVisibility) }, openIDSignInEnabled) m.Post("/account_link", userSetting.DeleteAccountLink) }) m.Group("/applications/oauth2", func() { m.Get("/:id", userSetting.OAuth2ApplicationShow) m.Post("/:id", bindIgnErr(auth.EditOAuth2ApplicationForm{}), userSetting.OAuthApplicationsEdit) m.Post("/:id/regenerate_secret", userSetting.OAuthApplicationsRegenerateSecret) m.Post("", bindIgnErr(auth.EditOAuth2ApplicationForm{}), userSetting.OAuthApplicationsPost) m.Post("/delete", userSetting.DeleteOAuth2Application) }) m.Combo("/applications").Get(userSetting.Applications). Post(bindIgnErr(auth.NewAccessTokenForm{}), userSetting.ApplicationsPost) m.Post("/applications/delete", userSetting.DeleteApplication) m.Combo("/keys").Get(userSetting.Keys). Post(bindIgnErr(auth.AddKeyForm{}), userSetting.KeysPost) m.Post("/keys/delete", userSetting.DeleteKey) m.Get("/organization", userSetting.Organization) m.Get("/repos", userSetting.Repos) // redirects from old settings urls to new ones // TODO: can be removed on next major version m.Get("/avatar", func(ctx *context.Context) { ctx.Redirect(setting.AppSubURL+"/user/settings", http.StatusMovedPermanently) }) m.Get("/email", func(ctx *context.Context) { ctx.Redirect(setting.AppSubURL+"/user/settings/account", http.StatusMovedPermanently) }) m.Get("/delete", func(ctx *context.Context) { ctx.Redirect(setting.AppSubURL+"/user/settings/account", http.StatusMovedPermanently) }) m.Get("/openid", func(ctx *context.Context) { ctx.Redirect(setting.AppSubURL+"/user/settings/security", http.StatusMovedPermanently) }) m.Get("/account_link", func(ctx *context.Context) { ctx.Redirect(setting.AppSubURL+"/user/settings/security", http.StatusMovedPermanently) }) }, reqSignIn, func(ctx *context.Context) { ctx.Data["PageIsUserSettings"] = true ctx.Data["AllThemes"] = setting.UI.Themes }) m.Group("/user", func() { // r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds) m.Any("/activate", user.Activate) m.Any("/activate_email", user.ActivateEmail) m.Get("/email2user", user.Email2User) m.Get("/forgot_password", user.ForgotPasswd) m.Post("/forgot_password", user.ForgotPasswdPost) m.Get("/logout", user.SignOut) }) // ***** END: User ***** adminReq := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true}) // ***** START: Admin ***** m.Group("/admin", func() { m.Get("", adminReq, admin.Dashboard) m.Get("/config", admin.Config) m.Post("/config/test_mail", admin.SendTestMail) m.Get("/monitor", admin.Monitor) m.Group("/users", func() { m.Get("", admin.Users) m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(auth.AdminCreateUserForm{}), admin.NewUserPost) m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost) m.Post("/:userid/delete", admin.DeleteUser) }) m.Group("/orgs", func() { m.Get("", admin.Organizations) }) m.Group("/repos", func() { m.Get("", admin.Repos) m.Post("/delete", admin.DeleteRepo) }) m.Group("/auths", func() { m.Get("", admin.Authentications) m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost) m.Combo("/:authid").Get(admin.EditAuthSource). Post(bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost) m.Post("/:authid/delete", admin.DeleteAuthSource) }) m.Group("/notices", func() { m.Get("", admin.Notices) m.Post("/delete", admin.DeleteNotices) m.Get("/empty", admin.EmptyNotices) }) }, adminReq) // ***** END: Admin ***** m.Group("", func() { m.Group("/:username", func() { m.Get("", user.Profile) m.Get("/followers", user.Followers) m.Get("/following", user.Following) }) m.Get("/attachments/:uuid", func(ctx *context.Context) { attach, err := models.GetAttachmentByUUID(ctx.Params(":uuid")) if err != nil { if models.IsErrAttachmentNotExist(err) { ctx.Error(404) } else { ctx.ServerError("GetAttachmentByUUID", err) } return } fr, err := os.Open(attach.LocalPath()) if err != nil { ctx.ServerError("Open", err) return } defer fr.Close() if err := attach.IncreaseDownloadCount(); err != nil { ctx.ServerError("Update", err) return } if err = repo.ServeData(ctx, attach.Name, fr); err != nil { ctx.ServerError("ServeData", err) return } }) m.Post("/attachments", repo.UploadAttachment) }, ignSignIn) m.Group("/:username", func() { m.Get("/action/:action", user.Action) }, reqSignIn) if macaron.Env == macaron.DEV { m.Get("/template/*", dev.TemplatePreview) } reqRepoAdmin := context.RequireRepoAdmin() reqRepoCodeWriter := context.RequireRepoWriter(models.UnitTypeCode) reqRepoCodeReader := context.RequireRepoReader(models.UnitTypeCode) reqRepoReleaseWriter := context.RequireRepoWriter(models.UnitTypeReleases) reqRepoReleaseReader := context.RequireRepoReader(models.UnitTypeReleases) reqRepoWikiWriter := context.RequireRepoWriter(models.UnitTypeWiki) reqRepoIssueReader := context.RequireRepoReader(models.UnitTypeIssues) reqRepoPullsWriter := context.RequireRepoWriter(models.UnitTypePullRequests) reqRepoPullsReader := context.RequireRepoReader(models.UnitTypePullRequests) reqRepoIssuesOrPullsWriter := context.RequireRepoWriterOr(models.UnitTypeIssues, models.UnitTypePullRequests) reqRepoIssuesOrPullsReader := context.RequireRepoReaderOr(models.UnitTypeIssues, models.UnitTypePullRequests) reqRepoIssueWriter := func(ctx *context.Context) { if !ctx.Repo.CanWrite(models.UnitTypeIssues) { ctx.Error(403) return } } // ***** START: Organization ***** m.Group("/org", func() { m.Group("", func() { m.Get("/create", org.Create) m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost) }) m.Group("/:org", func() { m.Get("/dashboard", user.Dashboard) m.Get("/^:type(issues|pulls)$", user.Issues) m.Get("/members", org.Members) m.Get("/members/action/:action", org.MembersAction) m.Get("/teams", org.Teams) }, context.OrgAssignment(true)) m.Group("/:org", func() { m.Get("/teams/:team", org.TeamMembers) m.Get("/teams/:team/repositories", org.TeamRepositories) m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction) m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction) }, context.OrgAssignment(true, false, true)) m.Group("/:org", func() { m.Get("/teams/new", org.NewTeam) m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost) m.Get("/teams/:team/edit", org.EditTeam) m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost) m.Post("/teams/:team/delete", org.DeleteTeam) m.Group("/settings", func() { m.Combo("").Get(org.Settings). Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost) m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), org.SettingsAvatar) m.Post("/avatar/delete", org.SettingsDeleteAvatar) m.Group("/hooks", func() { m.Get("", org.Webhooks) m.Post("/delete", org.DeleteWebhook) m.Get("/:type/new", repo.WebhooksNew) m.Post("/gitea/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost) m.Post("/gogs/new", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost) m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost) m.Post("/discord/new", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksNewPost) m.Post("/dingtalk/new", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksNewPost) m.Get("/:id", repo.WebHooksEdit) m.Post("/gitea/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost) m.Post("/gogs/:id", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksEditPost) m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost) m.Post("/discord/:id", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksEditPost) m.Post("/dingtalk/:id", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksEditPost) }) m.Route("/delete", "GET,POST", org.SettingsDelete) }) }, context.OrgAssignment(true, true)) }, reqSignIn) // ***** END: Organization ***** // ***** START: Repository ***** m.Group("/repo", func() { m.Get("/create", repo.Create) m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost) m.Get("/migrate", repo.Migrate) m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost) m.Group("/fork", func() { m.Combo("/:repoid").Get(repo.Fork). Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost) }, context.RepoIDAssignment(), context.UnitTypes(), reqRepoCodeReader) }, reqSignIn) // ***** Release Attachment Download without Signin m.Get("/:username/:reponame/releases/download/:vTag/:fileName", ignSignIn, context.RepoAssignment(), repo.MustBeNotEmpty, repo.RedirectDownload) m.Group("/:username/:reponame", func() { m.Group("/settings", func() { m.Combo("").Get(repo.Settings). Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost) m.Group("/collaboration", func() { m.Combo("").Get(repo.Collaboration).Post(repo.CollaborationPost) m.Post("/access_mode", repo.ChangeCollaborationAccessMode) m.Post("/delete", repo.DeleteCollaboration) }) m.Group("/branches", func() { m.Combo("").Get(repo.ProtectedBranch).Post(repo.ProtectedBranchPost) m.Combo("/*").Get(repo.SettingsProtectedBranch). Post(bindIgnErr(auth.ProtectBranchForm{}), context.RepoMustNotBeArchived(), repo.SettingsProtectedBranchPost) }, repo.MustBeNotEmpty) m.Group("/hooks", func() { m.Get("", repo.Webhooks) m.Post("/delete", repo.DeleteWebhook) m.Get("/:type/new", repo.WebhooksNew) m.Post("/gitea/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost) m.Post("/gogs/new", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost) m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost) m.Post("/discord/new", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksNewPost) m.Post("/dingtalk/new", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksNewPost) m.Get("/:id", repo.WebHooksEdit) m.Post("/:id/test", repo.TestWebhook) m.Post("/gitea/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost) m.Post("/gogs/:id", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksEditPost) m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost) m.Post("/discord/:id", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksEditPost) m.Post("/dingtalk/:id", bindIgnErr(auth.NewDingtalkHookForm{}), repo.DingtalkHooksEditPost) m.Group("/git", func() { m.Get("", repo.GitHooks) m.Combo("/:name").Get(repo.GitHooksEdit). Post(repo.GitHooksEditPost) }, context.GitHookService()) }) m.Group("/keys", func() { m.Combo("").Get(repo.DeployKeys). Post(bindIgnErr(auth.AddKeyForm{}), repo.DeployKeysPost) m.Post("/delete", repo.DeleteDeployKey) }) }, func(ctx *context.Context) { ctx.Data["PageIsSettings"] = true }) }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.UnitTypes(), context.RepoRef()) m.Get("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), context.UnitTypes(), context.RepoMustNotBeArchived(), repo.Action) m.Group("/:username/:reponame", func() { m.Group("/issues", func() { m.Combo("/new").Get(context.RepoRef(), repo.NewIssue). Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost) }, context.RepoMustNotBeArchived(), reqRepoIssueReader) // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest. // So they can apply their own enable/disable logic on routers. m.Group("/issues", func() { m.Group("/:index", func() { m.Post("/title", repo.UpdateIssueTitle) m.Post("/content", repo.UpdateIssueContent) m.Post("/watch", repo.IssueWatch) m.Group("/dependency", func() { m.Post("/add", repo.AddDependency) m.Post("/delete", repo.RemoveDependency) }) m.Combo("/comments").Post(repo.MustAllowUserComment, bindIgnErr(auth.CreateCommentForm{}), repo.NewComment) m.Group("/times", func() { m.Post("/add", bindIgnErr(auth.AddTimeManuallyForm{}), repo.AddTimeManually) m.Group("/stopwatch", func() { m.Post("/toggle", repo.IssueStopwatch) m.Post("/cancel", repo.CancelStopwatch) }) }) m.Post("/reactions/:action", bindIgnErr(auth.ReactionForm{}), repo.ChangeIssueReaction) m.Post("/lock", reqRepoIssueWriter, bindIgnErr(auth.IssueLockForm{}), repo.LockIssue) m.Post("/unlock", reqRepoIssueWriter, repo.UnlockIssue) }, context.RepoMustNotBeArchived()) m.Post("/labels", reqRepoIssuesOrPullsWriter, repo.UpdateIssueLabel) m.Post("/milestone", reqRepoIssuesOrPullsWriter, repo.UpdateIssueMilestone) m.Post("/assignee", reqRepoIssuesOrPullsWriter, repo.UpdateIssueAssignee) m.Post("/status", reqRepoIssuesOrPullsWriter, repo.UpdateIssueStatus) }, context.RepoMustNotBeArchived()) m.Group("/comments/:id", func() { m.Post("", repo.UpdateCommentContent) m.Post("/delete", repo.DeleteComment) m.Post("/reactions/:action", bindIgnErr(auth.ReactionForm{}), repo.ChangeCommentReaction) }, context.RepoMustNotBeArchived()) m.Group("/labels", func() { m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel) m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel) m.Post("/delete", repo.DeleteLabel) m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), repo.InitializeLabels) }, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef()) m.Group("/milestones", func() { m.Combo("/new").Get(repo.NewMilestone). Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost) m.Get("/:id/edit", repo.EditMilestone) m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost) m.Get("/:id/:action", repo.ChangeMilestonStatus) m.Post("/delete", repo.DeleteMilestone) }, context.RepoMustNotBeArchived(), reqRepoIssuesOrPullsWriter, context.RepoRef()) m.Group("/milestone", func() { m.Get("/:id", repo.MilestoneIssuesAndPulls) }, reqRepoIssuesOrPullsWriter, context.RepoRef()) m.Combo("/compare/*", context.RepoMustNotBeArchived(), reqRepoCodeReader, reqRepoPullsReader, repo.MustAllowPulls, repo.SetEditorconfigIfExists). Get(repo.SetDiffViewStyle, repo.CompareAndPullRequest). Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost) m.Group("", func() { m.Group("", func() { m.Combo("/_edit/*").Get(repo.EditFile). Post(bindIgnErr(auth.EditRepoFileForm{}), repo.EditFilePost) m.Combo("/_new/*").Get(repo.NewFile). Post(bindIgnErr(auth.EditRepoFileForm{}), repo.NewFilePost) m.Post("/_preview/*", bindIgnErr(auth.EditPreviewDiffForm{}), repo.DiffPreviewPost) m.Combo("/_delete/*").Get(repo.DeleteFile). Post(bindIgnErr(auth.DeleteRepoFileForm{}), repo.DeleteFilePost) m.Combo("/_upload/*", repo.MustBeAbleToUpload). Get(repo.UploadFile). Post(bindIgnErr(auth.UploadRepoFileForm{}), repo.UploadFilePost) }, context.RepoRefByType(context.RepoRefBranch), repo.MustBeEditable) m.Group("", func() { m.Post("/upload-file", repo.UploadFileToServer) m.Post("/upload-remove", bindIgnErr(auth.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer) }, context.RepoRef(), repo.MustBeEditable, repo.MustBeAbleToUpload) }, context.RepoMustNotBeArchived(), reqRepoCodeWriter, repo.MustBeNotEmpty) m.Group("/branches", func() { m.Group("/_new/", func() { m.Post("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.CreateBranch) m.Post("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.CreateBranch) m.Post("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.CreateBranch) }, bindIgnErr(auth.NewBranchForm{})) m.Post("/delete", repo.DeleteBranchPost) m.Post("/restore", repo.RestoreBranchPost) }, context.RepoMustNotBeArchived(), reqRepoCodeWriter, repo.MustBeNotEmpty) }, reqSignIn, context.RepoAssignment(), context.UnitTypes()) // Releases m.Group("/:username/:reponame", func() { m.Group("/releases", func() { m.Get("/", repo.MustBeNotEmpty, repo.Releases) }, repo.MustBeNotEmpty, context.RepoRef()) m.Group("/releases", func() { m.Get("/new", repo.NewRelease) m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost) m.Post("/delete", repo.DeleteRelease) }, reqSignIn, repo.MustBeNotEmpty, context.RepoMustNotBeArchived(), reqRepoReleaseWriter, context.RepoRef()) m.Group("/releases", func() { m.Get("/edit/*", repo.EditRelease) m.Post("/edit/*", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost) }, reqSignIn, repo.MustBeNotEmpty, context.RepoMustNotBeArchived(), reqRepoReleaseWriter, func(ctx *context.Context) { var err error ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch) if err != nil { ctx.ServerError("GetBranchCommit", err) return } ctx.Repo.CommitsCount, err = ctx.Repo.GetCommitsCount() if err != nil { ctx.ServerError("GetCommitsCount", err) return } ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount }) }, ignSignIn, context.RepoAssignment(), context.UnitTypes(), reqRepoReleaseReader) m.Group("/:username/:reponame", func() { m.Post("/topics", repo.TopicsPost) }, context.RepoAssignment(), context.RepoMustNotBeArchived(), reqRepoAdmin) m.Group("/:username/:reponame", func() { m.Group("", func() { m.Get("/^:type(issues|pulls)$", repo.Issues) m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue) m.Get("/labels/", reqRepoIssuesOrPullsReader, repo.RetrieveLabels, repo.Labels) m.Get("/milestones", reqRepoIssuesOrPullsReader, repo.Milestones) }, context.RepoRef()) m.Group("/wiki", func() { m.Get("/?:page", repo.Wiki) m.Get("/_pages", repo.WikiPages) m.Group("", func() { m.Combo("/_new").Get(repo.NewWiki). Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost) m.Combo("/:page/_edit").Get(repo.EditWiki). Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost) m.Post("/:page/delete", repo.DeleteWikiPagePost) }, context.RepoMustNotBeArchived(), reqSignIn, reqRepoWikiWriter) }, repo.MustEnableWiki, context.RepoRef()) m.Group("/wiki", func() { m.Get("/raw/*", repo.WikiRaw) }, repo.MustEnableWiki) m.Group("/activity", func() { m.Get("", repo.Activity) m.Get("/:period", repo.Activity) }, context.RepoRef(), repo.MustBeNotEmpty, context.RequireRepoReaderOr(models.UnitTypePullRequests, models.UnitTypeIssues, models.UnitTypeReleases)) m.Get("/archive/*", repo.MustBeNotEmpty, reqRepoCodeReader, repo.Download) m.Group("/branches", func() { m.Get("", repo.Branches) }, repo.MustBeNotEmpty, context.RepoRef(), reqRepoCodeReader) m.Group("/pulls/:index", func() { m.Get(".diff", repo.DownloadPullDiff) m.Get(".patch", repo.DownloadPullPatch) m.Get("/commits", context.RepoRef(), repo.ViewPullCommits) m.Post("/merge", context.RepoMustNotBeArchived(), reqRepoPullsWriter, bindIgnErr(auth.MergePullRequestForm{}), repo.MergePullRequest) m.Post("/cleanup", context.RepoMustNotBeArchived(), context.RepoRef(), repo.CleanUpPullRequest) m.Group("/files", func() { m.Get("", context.RepoRef(), repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.SetWhitespaceBehavior, repo.ViewPullFiles) m.Group("/reviews", func() { m.Post("/comments", bindIgnErr(auth.CodeCommentForm{}), repo.CreateCodeComment) m.Post("/submit", bindIgnErr(auth.SubmitReviewForm{}), repo.SubmitReview) }, context.RepoMustNotBeArchived()) }) }, repo.MustAllowPulls) m.Group("/media", func() { m.Get("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.SingleDownloadOrLFS) m.Get("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.SingleDownloadOrLFS) m.Get("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.SingleDownloadOrLFS) m.Get("/blob/:sha", context.RepoRefByType(context.RepoRefBlob), repo.DownloadByIDOrLFS) // "/*" route is deprecated, and kept for backward compatibility m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.SingleDownloadOrLFS) }, repo.MustBeNotEmpty, reqRepoCodeReader) m.Group("/raw", func() { m.Get("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.SingleDownload) m.Get("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.SingleDownload) m.Get("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.SingleDownload) m.Get("/blob/:sha", context.RepoRefByType(context.RepoRefBlob), repo.DownloadByID) // "/*" route is deprecated, and kept for backward compatibility m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.SingleDownload) }, repo.MustBeNotEmpty, reqRepoCodeReader) m.Group("/commits", func() { m.Get("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.RefCommits) m.Get("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.RefCommits) m.Get("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.RefCommits) // "/*" route is deprecated, and kept for backward compatibility m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.RefCommits) }, repo.MustBeNotEmpty, reqRepoCodeReader) m.Group("", func() { m.Get("/graph", repo.Graph) m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.Diff) }, repo.MustBeNotEmpty, context.RepoRef(), reqRepoCodeReader) m.Group("/src", func() { m.Get("/branch/*", context.RepoRefByType(context.RepoRefBranch), repo.Home) m.Get("/tag/*", context.RepoRefByType(context.RepoRefTag), repo.Home) m.Get("/commit/*", context.RepoRefByType(context.RepoRefCommit), repo.Home) // "/*" route is deprecated, and kept for backward compatibility m.Get("/*", context.RepoRefByType(context.RepoRefLegacy), repo.Home) }, repo.SetEditorconfigIfExists) m.Group("", func() { m.Get("/forks", repo.Forks) }, context.RepoRef(), reqRepoCodeReader) m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.MustBeNotEmpty, reqRepoCodeReader, repo.RawDiff) m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.MustBeNotEmpty, reqRepoCodeReader, repo.CompareDiff) }, ignSignIn, context.RepoAssignment(), context.UnitTypes()) m.Group("/:username/:reponame", func() { m.Get("/stars", repo.Stars) m.Get("/watchers", repo.Watchers) m.Get("/search", reqRepoCodeReader, repo.Search) }, ignSignIn, context.RepoAssignment(), context.RepoRef(), context.UnitTypes()) m.Group("/:username", func() { m.Group("/:reponame", func() { m.Get("", repo.SetEditorconfigIfExists, repo.Home) m.Get("\\.git$", repo.SetEditorconfigIfExists, repo.Home) }, ignSignIn, context.RepoAssignment(), context.RepoRef(), context.UnitTypes()) m.Group("/:reponame", func() { m.Group("\\.git/info/lfs", func() { m.Post("/objects/batch", lfs.BatchHandler) m.Get("/objects/:oid/:filename", lfs.ObjectOidHandler) m.Any("/objects/:oid", lfs.ObjectOidHandler) m.Post("/objects", lfs.PostHandler) m.Post("/verify", lfs.VerifyHandler) m.Group("/locks", func() { m.Get("/", lfs.GetListLockHandler) m.Post("/", lfs.PostLockHandler) m.Post("/verify", lfs.VerifyLockHandler) m.Post("/:lid/unlock", lfs.UnLockHandler) }, context.RepoAssignment()) m.Any("/*", func(ctx *context.Context) { ctx.NotFound("", nil) }) }, ignSignInAndCsrf) m.Any("/*", ignSignInAndCsrf, repo.HTTP) m.Head("/tasks/trigger", repo.TriggerTask) }) }) // ***** END: Repository ***** m.Group("/notifications", func() { m.Get("", user.Notifications) m.Post("/status", user.NotificationStatusPost) m.Post("/purge", user.NotificationPurgePost) }, reqSignIn) if setting.API.EnableSwagger { m.Get("/swagger.v1.json", templates.JSONRenderer(), routers.SwaggerV1Json) } m.Group("/api", func() { apiv1.RegisterRoutes(m) }, ignSignIn) m.Group("/api/internal", func() { // package name internal is ideal but Golang is not allowed, so we use private as package name. private.RegisterRoutes(m) }) // robots.txt m.Get("/robots.txt", func(ctx *context.Context) { if setting.HasRobotsTxt { ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt")) } else { ctx.NotFound("", nil) } }) // Progressive Web App m.Get("/manifest.json", templates.JSONRenderer(), func(ctx *context.Context) { ctx.HTML(200, "pwa/manifest_json") }) m.Get("/serviceworker.js", templates.JSRenderer(), func(ctx *context.Context) { ctx.HTML(200, "pwa/serviceworker_js") }) // prometheus metrics endpoint if setting.Metrics.Enabled { c := metrics.NewCollector() prometheus.MustRegister(c) m.Get("/metrics", routers.Metrics) } // Not found handler. m.NotFound(routers.NotFound) }
routers/routes/routes.go
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.001035854802466929, 0.00019498351321090013, 0.0001637926761759445, 0.00017151903011836112, 0.00011106948659289628 ]
{ "id": 4, "code_window": [ "\t\t\t\t\n", "\t\t\t</div>\n", "\t\t\t{{if not .Repository.IsArchived}}\n", "\t\t\t\t<div class=\"column right aligned\">\n", "\t\t\t\t\t<a class=\"ui grey button\" href=\"{{.RepoLink}}/milestones/{{.MilestoneID}}/edit\">{{.i18n.Tr \"repo.milestones.edit\"}}</a>\n" ], "labels": [ "keep", "keep", "keep", "add", "keep" ], "after_edit": [ "\t\t\t\t\t{{if or .CanWriteIssues .CanWritePulls}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 13 }
<!DOCTYPE html> <html> <head data-suburl="{{AppSubUrl}}"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>{{if .Title}}{{.Title}} - {{end}}{{AppName}}</title> <link rel="manifest" href="{{AppSubUrl}}/manifest.json"> <script> if ('serviceWorker' in navigator) { window.addEventListener('load', function() { navigator.serviceWorker.register('{{AppSubUrl}}/serviceworker.js').then(function(registration) { // Registration was successful console.log('ServiceWorker registration successful with scope: ', registration.scope); }, function(err) { // registration failed :( console.log('ServiceWorker registration failed: ', err); }); }); } </script> <meta name="theme-color" content="{{ThemeColorMetaTag}}"> <meta name="author" content="{{if .Repository}}{{.Owner.Name}}{{else}}{{MetaAuthor}}{{end}}" /> <meta name="description" content="{{if .Repository}}{{.Repository.Name}}{{if .Repository.Description}} - {{.Repository.Description}}{{end}}{{else}}{{MetaDescription}}{{end}}" /> <meta name="keywords" content="{{MetaKeywords}}"> <meta name="referrer" content="no-referrer" /> <meta name="_csrf" content="{{.CsrfToken}}" /> <meta name="_suburl" content="{{AppSubUrl}}" /> {{if .IsSigned}} <meta name="_uid" content="{{.SignedUser.ID}}" /> {{end}} {{if .ContextUser}} <meta name="_context_uid" content="{{.ContextUser.ID}}" /> {{end}} {{if .SearchLimit}} <meta name="_search_limit" content="{{.SearchLimit}}" /> {{end}} {{if .GoGetImport}} <meta name="go-import" content="{{.GoGetImport}} git {{.CloneLink.HTTPS}}"> <meta name="go-source" content="{{.GoGetImport}} _ {{.GoDocDirectory}} {{.GoDocFile}}"> {{end}} <script> {{SafeJS `/* @licstart The following is the entire license notice for the JavaScript code in this page. Copyright (c) 2016 The Gitea Authors Copyright (c) 2015 The Gogs Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- Licensing information for additional javascript libraries can be found at: {{AppSubUrl}}/vendor/librejs.html @licend The above is the entire license notice for the JavaScript code in this page. */`}} </script> <link rel="shortcut icon" href="{{AppSubUrl}}/img/favicon.png" /> <link rel="mask-icon" href="{{AppSubUrl}}/img/gitea-safari.svg" color="#609926"> <link rel="preload" href="{{AppSubUrl}}/vendor/assets/font-awesome/css/font-awesome.min.css" as="style" onload="this.rel='stylesheet'"> <noscript><link rel="stylesheet" href="{{AppSubUrl}}/vendor/assets/font-awesome/css/font-awesome.min.css"></noscript> <link rel="stylesheet" href="{{AppSubUrl}}/vendor/assets/octicons/octicons.min.css"> {{if .RequireSimpleMDE}} <link rel="stylesheet" href="{{AppSubUrl}}/vendor/plugins/simplemde/simplemde.min.css"> {{end}} {{if .RequireGitGraph}} <!-- graph --> <link rel="stylesheet" href="{{AppSubUrl}}/vendor/plugins/gitgraph/gitgraph.css"> {{end}} {{if .RequireTribute}} <link rel="stylesheet" href="{{AppSubUrl}}/vendor/plugins/tribute/tribute.css"> {{end}} <!-- Stylesheet --> <link rel="stylesheet" href="{{AppSubUrl}}/vendor/plugins/semantic/semantic.min.css"> <link rel="stylesheet" href="{{AppSubUrl}}/css/index.css?v={{MD5 AppVer}}"> <noscript> <style> .dropdown:hover > .menu { display: block; } .ui.secondary.menu .dropdown.item > .menu { margin-top: 0; } </style> </noscript> {{if .RequireHighlightJS}} <link rel="stylesheet" href="{{AppSubUrl}}/vendor/plugins/highlight/github.css"> {{end}} {{if .RequireMinicolors}} <link rel="stylesheet" href="{{AppSubUrl}}/vendor/plugins/jquery.minicolors/jquery.minicolors.css"> {{end}} {{if .RequireDatetimepicker}} <link rel="stylesheet" href="{{AppSubUrl}}/vendor/plugins/jquery.datetimepicker/jquery.datetimepicker.css"> {{end}} {{if .RequireDropzone}} <link rel="stylesheet" href="{{AppSubUrl}}/vendor/plugins/dropzone/dropzone.css"> {{end}} {{if .EnableHeatmap}} <link rel="stylesheet" href="{{AppSubUrl}}/vendor/plugins/vue-calendar-heatmap/vue-calendar-heatmap.css"> {{end}} <style class="list-search-style"></style> <script src="{{AppSubUrl}}/vendor/plugins/promise-polyfill/polyfill.min.js"></script> <script src="{{AppSubUrl}}/vendor/plugins/cssrelpreload/loadCSS.min.js"></script> <script src="{{AppSubUrl}}/vendor/plugins/cssrelpreload/cssrelpreload.min.js"></script> {{if .PageIsUserProfile}} <meta property="og:title" content="{{.Owner.Name}}" /> <meta property="og:type" content="profile" /> <meta property="og:image" content="{{.Owner.AvatarLink}}" /> <meta property="og:url" content="{{.Owner.HTMLURL}}" /> <meta property="og:site_name" content="{{AppName}}" /> {{else if .Repository}} <meta property="og:title" content="{{.Repository.Name}}" /> <meta property="og:type" content="object" /> <meta property="og:image" content="{{.Repository.Owner.AvatarLink}}" /> <meta property="og:url" content="{{.Repository.HTMLURL}}" /> {{if .Repository.Description}} <meta property="og:description" content="{{.Repository.Description}}" /> {{end}} <meta property="og:site_name" content="{{AppName}}" /> {{else}} <meta property="og:title" content="{{AppName}}"> <meta property="og:type" content="website" /> <meta property="og:image" content="{{AppSubUrl}}/img/gitea-lg.png" /> <meta property="og:url" content="{{AppUrl}}" /> <meta property="og:description" content="{{MetaDescription}}"> {{end}} {{if .IsSigned }} {{ if ne .SignedUser.Theme "gitea" }} <link rel="stylesheet" href="{{AppSubUrl}}/css/theme-{{.SignedUser.Theme}}.css"> {{end}} {{else if ne DefaultTheme "gitea"}} <link rel="stylesheet" href="{{AppSubUrl}}/css/theme-{{DefaultTheme}}.css"> {{end}} {{template "custom/header" .}} </head> <body> {{template "custom/body_outer_pre" .}} <div class="full height"> <noscript>{{.i18n.Tr "enable_javascript"}}</noscript> {{template "custom/body_inner_pre" .}} {{if not .PageIsInstall}} <div class="ui top secondary stackable main menu following bar light"> {{template "base/head_navbar" .}} </div><!-- end bar --> {{end}} {{/* </div> </body> </html> */}}
templates/base/head.tmpl
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00021406503219623119, 0.0001701942819636315, 0.0001630156475584954, 0.00016708270413801074, 0.00001098932079912629 ]
{ "id": 4, "code_window": [ "\t\t\t\t\n", "\t\t\t</div>\n", "\t\t\t{{if not .Repository.IsArchived}}\n", "\t\t\t\t<div class=\"column right aligned\">\n", "\t\t\t\t\t<a class=\"ui grey button\" href=\"{{.RepoLink}}/milestones/{{.MilestoneID}}/edit\">{{.i18n.Tr \"repo.milestones.edit\"}}</a>\n" ], "labels": [ "keep", "keep", "keep", "add", "keep" ], "after_edit": [ "\t\t\t\t\t{{if or .CanWriteIssues .CanWritePulls}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 13 }
// Copyright (c) 2012, Suryandaru Triandana <[email protected]> // All rights reserved. // // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package cache import ( "sync" "unsafe" ) type lruNode struct { n *Node h *Handle ban bool next, prev *lruNode } func (n *lruNode) insert(at *lruNode) { x := at.next at.next = n n.prev = at n.next = x x.prev = n } func (n *lruNode) remove() { if n.prev != nil { n.prev.next = n.next n.next.prev = n.prev n.prev = nil n.next = nil } else { panic("BUG: removing removed node") } } type lru struct { mu sync.Mutex capacity int used int recent lruNode } func (r *lru) reset() { r.recent.next = &r.recent r.recent.prev = &r.recent r.used = 0 } func (r *lru) Capacity() int { r.mu.Lock() defer r.mu.Unlock() return r.capacity } func (r *lru) SetCapacity(capacity int) { var evicted []*lruNode r.mu.Lock() r.capacity = capacity for r.used > r.capacity { rn := r.recent.prev if rn == nil { panic("BUG: invalid LRU used or capacity counter") } rn.remove() rn.n.CacheData = nil r.used -= rn.n.Size() evicted = append(evicted, rn) } r.mu.Unlock() for _, rn := range evicted { rn.h.Release() } } func (r *lru) Promote(n *Node) { var evicted []*lruNode r.mu.Lock() if n.CacheData == nil { if n.Size() <= r.capacity { rn := &lruNode{n: n, h: n.GetHandle()} rn.insert(&r.recent) n.CacheData = unsafe.Pointer(rn) r.used += n.Size() for r.used > r.capacity { rn := r.recent.prev if rn == nil { panic("BUG: invalid LRU used or capacity counter") } rn.remove() rn.n.CacheData = nil r.used -= rn.n.Size() evicted = append(evicted, rn) } } } else { rn := (*lruNode)(n.CacheData) if !rn.ban { rn.remove() rn.insert(&r.recent) } } r.mu.Unlock() for _, rn := range evicted { rn.h.Release() } } func (r *lru) Ban(n *Node) { r.mu.Lock() if n.CacheData == nil { n.CacheData = unsafe.Pointer(&lruNode{n: n, ban: true}) } else { rn := (*lruNode)(n.CacheData) if !rn.ban { rn.remove() rn.ban = true r.used -= rn.n.Size() r.mu.Unlock() rn.h.Release() rn.h = nil return } } r.mu.Unlock() } func (r *lru) Evict(n *Node) { r.mu.Lock() rn := (*lruNode)(n.CacheData) if rn == nil || rn.ban { r.mu.Unlock() return } n.CacheData = nil r.mu.Unlock() rn.h.Release() } func (r *lru) EvictNS(ns uint64) { var evicted []*lruNode r.mu.Lock() for e := r.recent.prev; e != &r.recent; { rn := e e = e.prev if rn.n.NS() == ns { rn.remove() rn.n.CacheData = nil r.used -= rn.n.Size() evicted = append(evicted, rn) } } r.mu.Unlock() for _, rn := range evicted { rn.h.Release() } } func (r *lru) EvictAll() { r.mu.Lock() back := r.recent.prev for rn := back; rn != &r.recent; rn = rn.prev { rn.n.CacheData = nil } r.reset() r.mu.Unlock() for rn := back; rn != &r.recent; rn = rn.prev { rn.h.Release() } } func (r *lru) Close() error { return nil } // NewLRU create a new LRU-cache. func NewLRU(capacity int) Cacher { r := &lru{capacity: capacity} r.reset() return r }
vendor/github.com/syndtr/goleveldb/leveldb/cache/lru.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.003557659452781081, 0.00033903896110132337, 0.00016437294834759086, 0.0001702125882729888, 0.0007384078926406801 ]
{ "id": 4, "code_window": [ "\t\t\t\t\n", "\t\t\t</div>\n", "\t\t\t{{if not .Repository.IsArchived}}\n", "\t\t\t\t<div class=\"column right aligned\">\n", "\t\t\t\t\t<a class=\"ui grey button\" href=\"{{.RepoLink}}/milestones/{{.MilestoneID}}/edit\">{{.i18n.Tr \"repo.milestones.edit\"}}</a>\n" ], "labels": [ "keep", "keep", "keep", "add", "keep" ], "after_edit": [ "\t\t\t\t\t{{if or .CanWriteIssues .CanWritePulls}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 13 }
# Cache and logs (Symfony2) /app/cache/* /app/logs/* !app/cache/.gitkeep !app/logs/.gitkeep # Email spool folder /app/spool/* # Cache, session files and logs (Symfony3) /var/cache/* /var/logs/* /var/sessions/* !var/cache/.gitkeep !var/logs/.gitkeep !var/sessions/.gitkeep # Logs (Symfony4) /var/log/* !var/log/.gitkeep # Parameters /app/config/parameters.yml /app/config/parameters.ini # Managed by Composer /app/bootstrap.php.cache /var/bootstrap.php.cache /bin/* !bin/console !bin/symfony_requirements /vendor/ # Assets and user uploads /web/bundles/ /web/uploads/ # PHPUnit /app/phpunit.xml /phpunit.xml # Build data /build/ # Composer PHAR /composer.phar # Backup entities generated with doctrine:generate:entities command **/Entity/*~ # Embedded web-server pid file /.web-server-pid
options/gitignore/Symfony
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017252449470106512, 0.00016900866467040032, 0.00016642871196381748, 0.0001686541800154373, 0.00000199851979232335 ]
{ "id": 5, "code_window": [ "\t\t\t\t\t<a class=\"ui grey button\" href=\"{{.RepoLink}}/milestones/{{.MilestoneID}}/edit\">{{.i18n.Tr \"repo.milestones.edit\"}}</a>\n", "\t\t\t\t\t<a class=\"ui green button\" href=\"{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}\">{{.i18n.Tr \"repo.issues.new\"}}</a>\n", "\t\t\t\t</div>\n", "\t\t\t{{end}}\n" ], "labels": [ "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 14 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> <h3>{{.Milestone.Name}}</h3> </div> <div class="column center aligned"> </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> <a class="ui grey button" href="{{.RepoLink}}/milestones/{{.MilestoneID}}/edit">{{.i18n.Tr "repo.milestones.edit"}}</a> <a class="ui green button" href="{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}">{{.i18n.Tr "repo.issues.new"}}</a> </div> {{end}} </div> <div class="ui one column stackable grid"> <div class="column"> {{ $closedDate:= TimeSinceUnix .Milestone.ClosedDateUnix $.Lang }} {{if .IsClosed}} <span class="octicon octicon-clock"></span> {{$.i18n.Tr "repo.milestones.closed" $closedDate|Str2html}} {{else}} <span class="octicon octicon-calendar"></span> {{if .Milestone.DeadlineString}} <span {{if .IsOverdue}}class="overdue"{{end}}>{{.Milestone.DeadlineString}}</span> {{else}} {{$.i18n.Tr "repo.milestones.no_due_date"}} {{end}} {{end}} &nbsp; <b>{{.i18n.Tr "repo.milestones.completeness" .Milestone.Completeness}}</b> </div> </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid"> <div class="six wide column"> <div class="ui basic status buttons"> <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_open"}}</div> <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_close"}}</div> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} {{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }} <li class="item"> <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.RepoLink}}/issues/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/milestone_issues.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.10680585354566574, 0.00590413948521018, 0.00016599161608610302, 0.001405035611242056, 0.021067621186375618 ]
{ "id": 5, "code_window": [ "\t\t\t\t\t<a class=\"ui grey button\" href=\"{{.RepoLink}}/milestones/{{.MilestoneID}}/edit\">{{.i18n.Tr \"repo.milestones.edit\"}}</a>\n", "\t\t\t\t\t<a class=\"ui green button\" href=\"{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}\">{{.i18n.Tr \"repo.issues.new\"}}</a>\n", "\t\t\t\t</div>\n", "\t\t\t{{end}}\n" ], "labels": [ "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 14 }
// Copyright 2015 The Xorm Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package xorm import ( "errors" "fmt" ) var ( // ErrParamsType params error ErrParamsType = errors.New("Params type error") // ErrTableNotFound table not found error ErrTableNotFound = errors.New("Table not found") // ErrUnSupportedType unsupported error ErrUnSupportedType = errors.New("Unsupported type error") // ErrNotExist record does not exist error ErrNotExist = errors.New("Record does not exist") // ErrCacheFailed cache failed error ErrCacheFailed = errors.New("Cache failed") // ErrNeedDeletedCond delete needs less one condition error ErrNeedDeletedCond = errors.New("Delete action needs at least one condition") // ErrNotImplemented not implemented ErrNotImplemented = errors.New("Not implemented") // ErrConditionType condition type unsupported ErrConditionType = errors.New("Unsupported condition type") ) // ErrFieldIsNotExist columns does not exist type ErrFieldIsNotExist struct { FieldName string TableName string } func (e ErrFieldIsNotExist) Error() string { return fmt.Sprintf("field %s is not valid on table %s", e.FieldName, e.TableName) } // ErrFieldIsNotValid is not valid type ErrFieldIsNotValid struct { FieldName string TableName string } func (e ErrFieldIsNotValid) Error() string { return fmt.Sprintf("field %s is not valid on table %s", e.FieldName, e.TableName) }
vendor/github.com/go-xorm/xorm/error.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017663832113612443, 0.00016952275473158807, 0.00016658286040183157, 0.00016727924230508506, 0.000003794339818341541 ]
{ "id": 5, "code_window": [ "\t\t\t\t\t<a class=\"ui grey button\" href=\"{{.RepoLink}}/milestones/{{.MilestoneID}}/edit\">{{.i18n.Tr \"repo.milestones.edit\"}}</a>\n", "\t\t\t\t\t<a class=\"ui green button\" href=\"{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}\">{{.i18n.Tr \"repo.issues.new\"}}</a>\n", "\t\t\t\t</div>\n", "\t\t\t{{end}}\n" ], "labels": [ "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 14 }
// +build !go1.9 package bitset var deBruijn = [...]byte{ 0, 1, 56, 2, 57, 49, 28, 3, 61, 58, 42, 50, 38, 29, 17, 4, 62, 47, 59, 36, 45, 43, 51, 22, 53, 39, 33, 30, 24, 18, 12, 5, 63, 55, 48, 27, 60, 41, 37, 16, 46, 35, 44, 21, 52, 32, 23, 11, 54, 26, 40, 15, 34, 20, 31, 10, 25, 14, 19, 9, 13, 8, 7, 6, } func trailingZeroes64(v uint64) uint { return uint(deBruijn[((v&-v)*0x03f79d71b4ca8b09)>>58]) }
vendor/github.com/willf/bitset/trailing_zeros_18.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00016899514594115317, 0.0001648624602239579, 0.00016072977450676262, 0.0001648624602239579, 0.0000041326857171952724 ]
{ "id": 5, "code_window": [ "\t\t\t\t\t<a class=\"ui grey button\" href=\"{{.RepoLink}}/milestones/{{.MilestoneID}}/edit\">{{.i18n.Tr \"repo.milestones.edit\"}}</a>\n", "\t\t\t\t\t<a class=\"ui green button\" href=\"{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}\">{{.i18n.Tr \"repo.issues.new\"}}</a>\n", "\t\t\t\t</div>\n", "\t\t\t{{end}}\n" ], "labels": [ "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 14 }
MIT License Copyright (c) 2012-2016 GitHub, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
public/vendor/assets/octicons/LICENSE
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017476333596277982, 0.0001694140228210017, 0.0001664896699367091, 0.00016698904801160097, 0.0000037880292893532896 ]
{ "id": 6, "code_window": [ "\t\t\t\t\t\t\t<i class=\"dropdown icon\"></i>\n", "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}\">{{.i18n.Tr \"repo.issues.filter_label_no_select\"}}</a>\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n", "\n", "\t\t\t\t\t<!-- Assignee -->\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<a class=\"item has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 60 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> <h3>{{.Milestone.Name}}</h3> </div> <div class="column center aligned"> </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> <a class="ui grey button" href="{{.RepoLink}}/milestones/{{.MilestoneID}}/edit">{{.i18n.Tr "repo.milestones.edit"}}</a> <a class="ui green button" href="{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}">{{.i18n.Tr "repo.issues.new"}}</a> </div> {{end}} </div> <div class="ui one column stackable grid"> <div class="column"> {{ $closedDate:= TimeSinceUnix .Milestone.ClosedDateUnix $.Lang }} {{if .IsClosed}} <span class="octicon octicon-clock"></span> {{$.i18n.Tr "repo.milestones.closed" $closedDate|Str2html}} {{else}} <span class="octicon octicon-calendar"></span> {{if .Milestone.DeadlineString}} <span {{if .IsOverdue}}class="overdue"{{end}}>{{.Milestone.DeadlineString}}</span> {{else}} {{$.i18n.Tr "repo.milestones.no_due_date"}} {{end}} {{end}} &nbsp; <b>{{.i18n.Tr "repo.milestones.completeness" .Milestone.Completeness}}</b> </div> </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid"> <div class="six wide column"> <div class="ui basic status buttons"> <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_open"}}</div> <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_close"}}</div> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} {{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }} <li class="item"> <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.RepoLink}}/issues/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/milestone_issues.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.9957230091094971, 0.15663257241249084, 0.00016207997396122664, 0.004104324616491795, 0.3179727792739868 ]
{ "id": 6, "code_window": [ "\t\t\t\t\t\t\t<i class=\"dropdown icon\"></i>\n", "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}\">{{.i18n.Tr \"repo.issues.filter_label_no_select\"}}</a>\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n", "\n", "\t\t\t\t\t<!-- Assignee -->\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<a class=\"item has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 60 }
<!doctype html> <title>CodeMirror: COBOL mode</title> <meta charset="utf-8"/> <link rel=stylesheet href="../../doc/docs.css"> <link rel="stylesheet" href="../../lib/codemirror.css"> <link rel="stylesheet" href="../../theme/neat.css"> <link rel="stylesheet" href="../../theme/elegant.css"> <link rel="stylesheet" href="../../theme/erlang-dark.css"> <link rel="stylesheet" href="../../theme/night.css"> <link rel="stylesheet" href="../../theme/monokai.css"> <link rel="stylesheet" href="../../theme/cobalt.css"> <link rel="stylesheet" href="../../theme/eclipse.css"> <link rel="stylesheet" href="../../theme/rubyblue.css"> <link rel="stylesheet" href="../../theme/lesser-dark.css"> <link rel="stylesheet" href="../../theme/xq-dark.css"> <link rel="stylesheet" href="../../theme/xq-light.css"> <link rel="stylesheet" href="../../theme/ambiance.css"> <link rel="stylesheet" href="../../theme/blackboard.css"> <link rel="stylesheet" href="../../theme/vibrant-ink.css"> <link rel="stylesheet" href="../../theme/solarized.css"> <link rel="stylesheet" href="../../theme/twilight.css"> <link rel="stylesheet" href="../../theme/midnight.css"> <link rel="stylesheet" href="../../addon/dialog/dialog.css"> <script src="../../lib/codemirror.js"></script> <script src="../../addon/edit/matchbrackets.js"></script> <script src="cobol.js"></script> <script src="../../addon/selection/active-line.js"></script> <script src="../../addon/search/search.js"></script> <script src="../../addon/dialog/dialog.js"></script> <script src="../../addon/search/searchcursor.js"></script> <style> .CodeMirror { border: 1px solid #eee; font-size : 20px; height : auto !important; } .CodeMirror-activeline-background {background: #555555 !important;} </style> <div id=nav> <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a> <ul> <li><a href="../../index.html">Home</a> <li><a href="../../doc/manual.html">Manual</a> <li><a href="https://github.com/codemirror/codemirror">Code</a> </ul> <ul> <li><a href="../index.html">Language modes</a> <li><a class=active href="#">COBOL</a> </ul> </div> <article> <h2>COBOL mode</h2> <p> Select Theme <select onchange="selectTheme()" id="selectTheme"> <option>default</option> <option>ambiance</option> <option>blackboard</option> <option>cobalt</option> <option>eclipse</option> <option>elegant</option> <option>erlang-dark</option> <option>lesser-dark</option> <option>midnight</option> <option>monokai</option> <option>neat</option> <option>night</option> <option>rubyblue</option> <option>solarized dark</option> <option>solarized light</option> <option selected>twilight</option> <option>vibrant-ink</option> <option>xq-dark</option> <option>xq-light</option> </select> Select Font Size <select onchange="selectFontsize()" id="selectFontSize"> <option value="13px">13px</option> <option value="14px">14px</option> <option value="16px">16px</option> <option value="18px">18px</option> <option value="20px" selected="selected">20px</option> <option value="24px">24px</option> <option value="26px">26px</option> <option value="28px">28px</option> <option value="30px">30px</option> <option value="32px">32px</option> <option value="34px">34px</option> <option value="36px">36px</option> </select> <label for="checkBoxReadOnly">Read-only</label> <input type="checkbox" id="checkBoxReadOnly" onchange="selectReadOnly()"> <label for="id_tabToIndentSpace">Insert Spaces on Tab</label> <input type="checkbox" id="id_tabToIndentSpace" onchange="tabToIndentSpace()"> </p> <textarea id="code" name="code"> ---------1---------2---------3---------4---------5---------6---------7---------8 12345678911234567892123456789312345678941234567895123456789612345678971234567898 000010 IDENTIFICATION DIVISION. MODTGHERE 000020 PROGRAM-ID. SAMPLE. 000030 AUTHOR. TEST SAM. 000040 DATE-WRITTEN. 5 February 2013 000041 000042* A sample program just to show the form. 000043* The program copies its input to the output, 000044* and counts the number of records. 000045* At the end this number is printed. 000046 000050 ENVIRONMENT DIVISION. 000060 INPUT-OUTPUT SECTION. 000070 FILE-CONTROL. 000080 SELECT STUDENT-FILE ASSIGN TO SYSIN 000090 ORGANIZATION IS LINE SEQUENTIAL. 000100 SELECT PRINT-FILE ASSIGN TO SYSOUT 000110 ORGANIZATION IS LINE SEQUENTIAL. 000120 000130 DATA DIVISION. 000140 FILE SECTION. 000150 FD STUDENT-FILE 000160 RECORD CONTAINS 43 CHARACTERS 000170 DATA RECORD IS STUDENT-IN. 000180 01 STUDENT-IN PIC X(43). 000190 000200 FD PRINT-FILE 000210 RECORD CONTAINS 80 CHARACTERS 000220 DATA RECORD IS PRINT-LINE. 000230 01 PRINT-LINE PIC X(80). 000240 000250 WORKING-STORAGE SECTION. 000260 01 DATA-REMAINS-SWITCH PIC X(2) VALUE SPACES. 000261 01 RECORDS-WRITTEN PIC 99. 000270 000280 01 DETAIL-LINE. 000290 05 FILLER PIC X(7) VALUE SPACES. 000300 05 RECORD-IMAGE PIC X(43). 000310 05 FILLER PIC X(30) VALUE SPACES. 000311 000312 01 SUMMARY-LINE. 000313 05 FILLER PIC X(7) VALUE SPACES. 000314 05 TOTAL-READ PIC 99. 000315 05 FILLER PIC X VALUE SPACE. 000316 05 FILLER PIC X(17) 000317 VALUE 'Records were read'. 000318 05 FILLER PIC X(53) VALUE SPACES. 000319 000320 PROCEDURE DIVISION. 000321 000330 PREPARE-SENIOR-REPORT. 000340 OPEN INPUT STUDENT-FILE 000350 OUTPUT PRINT-FILE. 000351 MOVE ZERO TO RECORDS-WRITTEN. 000360 READ STUDENT-FILE 000370 AT END MOVE 'NO' TO DATA-REMAINS-SWITCH 000380 END-READ. 000390 PERFORM PROCESS-RECORDS 000410 UNTIL DATA-REMAINS-SWITCH = 'NO'. 000411 PERFORM PRINT-SUMMARY. 000420 CLOSE STUDENT-FILE 000430 PRINT-FILE. 000440 STOP RUN. 000450 000460 PROCESS-RECORDS. 000470 MOVE STUDENT-IN TO RECORD-IMAGE. 000480 MOVE DETAIL-LINE TO PRINT-LINE. 000490 WRITE PRINT-LINE. 000500 ADD 1 TO RECORDS-WRITTEN. 000510 READ STUDENT-FILE 000520 AT END MOVE 'NO' TO DATA-REMAINS-SWITCH 000530 END-READ. 000540 000550 PRINT-SUMMARY. 000560 MOVE RECORDS-WRITTEN TO TOTAL-READ. 000570 MOVE SUMMARY-LINE TO PRINT-LINE. 000571 WRITE PRINT-LINE. 000572 000580 </textarea> <script> var editor = CodeMirror.fromTextArea(document.getElementById("code"), { lineNumbers: true, matchBrackets: true, mode: "text/x-cobol", theme : "twilight", styleActiveLine: true, showCursorWhenSelecting : true, }); function selectTheme() { var themeInput = document.getElementById("selectTheme"); var theme = themeInput.options[themeInput.selectedIndex].innerHTML; editor.setOption("theme", theme); } function selectFontsize() { var fontSizeInput = document.getElementById("selectFontSize"); var fontSize = fontSizeInput.options[fontSizeInput.selectedIndex].innerHTML; editor.getWrapperElement().style.fontSize = fontSize; editor.refresh(); } function selectReadOnly() { editor.setOption("readOnly", document.getElementById("checkBoxReadOnly").checked); } function tabToIndentSpace() { if (document.getElementById("id_tabToIndentSpace").checked) { editor.setOption("extraKeys", {Tab: function(cm) { cm.replaceSelection(" ", "end"); }}); } else { editor.setOption("extraKeys", {Tab: function(cm) { cm.replaceSelection(" ", "end"); }}); } } </script> </article>
public/vendor/plugins/codemirror/mode/cobol/index.html
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017371034482493997, 0.0001695519167697057, 0.0001635958324186504, 0.00016986033006105572, 0.000002282733703395934 ]
{ "id": 6, "code_window": [ "\t\t\t\t\t\t\t<i class=\"dropdown icon\"></i>\n", "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}\">{{.i18n.Tr \"repo.issues.filter_label_no_select\"}}</a>\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n", "\n", "\t\t\t\t\t<!-- Assignee -->\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<a class=\"item has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 60 }
# This file lists all PUBLIC individuals having contributed content to the translation. # Entries are in alphabetical order. Adam Strzelecki <ono AT java DOT pl> Adrian Verde <me AT adrianverde DOT com> Akihiro YAGASAKI <yaggytter AT momiage DOT com> Aleksejs Grocevs <aleksejs AT grocevs DOT pro> Aleksey Tarakin <hukendo AT yandex DOT ru> Alexander Steinhöfer <kontakt AT lx-s DOT de> Alexandre Magno <alexandre DOT mbm AT gmail DOT com> Anderi Azuki <k1nzy AT outlook DOT com> Andrey Nering <andrey AT nering DOT com DOT br> Andrey Solomatin <toadron AT yandex DOT ru> Antoine GIRARD <sapk AT sapk DOT fr> Antonio Briola <briolantonio AT gmail DOT com> Arthur Aslanyan <arthur DOT e DOT aslanyan AT gmail DOT com> Aurelien Darragon <aurelien DOT darragon AT gmail DOT com> Barış Arda Yılmaz <ardayilmazgamer AT gmail DOT com> bugreport0 Camille Baronnet <gogs AT camillebaronnet DOT fr> Christoph Kisfeld <christoph DOT kisfeld AT gmail DOT com> Cysioland Damaris Padieu <damizx AT hotmail DOT fr> Daniel Speichert <daniel AT speichert DOT pl> David Yzaguirre <dvdyzag AT gmail DOT com> Dmitriy Nogay <me AT catwhocode DOT ga> Enrico Testori hypertesto AT gmail DOT com Ezequiel Gonzalez Rial <gonrial AT gmail DOT com> Gabriel Dugny <gabriel DOT dugny AT gmail DOT com> Gregor Santner <gdev AT live DOT de> Guilhem Marion <gmarion AT netc DOT fr> Halil Kaya <halil AT halilkaya DOT net> Hamid Feizabadi <hamidfzm AT gmail DOT com> Hilton Wichwski Silva <hilton AT hiltonws DOT com DOT br> Huimin Wang <wanghm2009 AT hotmail DOT co DOT jp> ilko <kontact-mr DOT k AT outlook DOT com> Ilya Makarov Jamie Mansfield <dev AT jamierocks DOT uk> Jean THOMAS <contact AT tibounise DOT com> Joan Sánchez <dev AT discusal DOT com> Joel da Rosa <webjoel AT hotmail DOT com> Joubert RedRat <me+github AT redrat DOT com DOT br> Jonathan Lozada De La Matta <jlozada2426 AT protonmail DOT com> Juraj Bubniak <contact AT jbub DOT eu> Kazuki Sawada <kazuki AT 6715 DOT jp> Lafriks <lafriks AT gmail DOT com> Lauri Ojansivu <x AT xet7 DOT org> Luc Stepniewski <luc AT stepniewski DOT fr> Luca Bozzo <luca AT bozzo DOT it> Luca Kröger <l DOT kroeger01 AT gmail DOT com> Marc Schiller <marc AT schiller DOT im> Marvin Menzerath <github AT marvin-menzerath DOT de> Michael Härtl <haertl DOT mike AT gmail DOT com> Miguel de la Cruz <miguel AT mcrx DOT me> Mikhail Burdin <xdshot9000 AT gmail DOT com> Morten Sørensen <klim8d AT gmail DOT com> Muhammad Fawwaz Orabi <mfawwaz93 AT gmail DOT com> Nakao Takamasa <at.mattenn AT gmail DOT com> Natan Albuquerque <natanalbuquerque5 AT gmail DOT com> Niclas Kroon <niclas DOT kroon AT gmail DOT com> Odilon Junior <odilon DOT junior93 AT gmail DOT com> Pablo Saavedra <psaavedra AT igalia DOT com> Piotr Orzechowski <piotr AT orzechowski DOT tech> Richard Bukovansky <richard DOT bukovansky AT gmail DOT com> Robert Nuske <robert DOT nuske AT web DOT de> Robin Hübner <profan AT prfn DOT se> SeongJae Park <sj38 DOT park AT gmail DOT com> Thiago Avelino <thiago AT avelino DOT xxx> Thomas Fanninger <gogs DOT thomas AT fanninger DOT at> Tilmann Bach <tilmann AT outlook DOT com> Toni Villena Jiménez <tonivj5 AT gmail DOT com> Viktor Sperl <viktike32 AT gmail DOT com> Vladimir Jigulin mogaika AT yandex DOT ru Vladimir Vissoultchev <wqweto AT gmail DOT com> YJSoft <yjsoft AT yjsoft DOT pe DOT kr> Łukasz Jan Niemier <lukasz AT niemier DOT pl>
options/locale/TRANSLATORS
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017177255358546972, 0.0001693828235147521, 0.0001674177619861439, 0.00016923106159083545, 0.00000120525362490298 ]
{ "id": 6, "code_window": [ "\t\t\t\t\t\t\t<i class=\"dropdown icon\"></i>\n", "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}\">{{.i18n.Tr \"repo.issues.filter_label_no_select\"}}</a>\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<a class=\"item\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n", "\t\t\t\t\t</div>\n", "\n", "\t\t\t\t\t<!-- Assignee -->\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<a class=\"item has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\"><span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 60 }
#!/bin/bash if ! env | grep -q root; then echo " +----------------------------------------+ | You are not running gitea as root. | | This is required for the snap package. | | Please re-run as root. | +----------------------------------------+ " $SNAP/gitea/gitea --help exit 1 fi # Set usernames for gitea export USERNAME=root export USER=root export GITEA_WORK_DIR=$(snapctl get gitea.snap.workdir) export GITEA_CUSTOM=$(snapctl get gitea.snap.custom) $SNAP/bin/gconfig save cd $SNAP/gitea; ./gitea $@
snap/helpers/simple_launcher.sh
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.0001744546607369557, 0.00017254950944334269, 0.0001711707009235397, 0.00017202316666953266, 0.0000013913722796132788 ]
{ "id": 7, "code_window": [ "\t\t\t\t</div>\n", "\t\t\t</div>\n", "\t\t</div>\n", "\t\t<div id=\"issue-actions\" class=\"ui stackable grid\">\n", "\t\t\t<div class=\"six wide column\">\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\t\t<div id=\"issue-actions\" class=\"ui stackable grid hide\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 113 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> {{template "repo/issue/navbar" .}} </div> <div class="column center aligned"> {{template "repo/issue/search" .}} </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> {{if .PageIsIssueList}} <a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a> {{else}} <a class="ui green button {{if not .PullRequestCtx.Allowed}}disabled{{end}}" href="{{if .PullRequestCtx.Allowed}}{{.PullRequestCtx.BaseRepo.Link}}/compare/{{.Repository.DefaultBranch}}...{{.PullRequestCtx.HeadInfo}}{{end}}">{{.i18n.Tr "repo.pulls.new"}}</a> {{end}} </div> {{end}} </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu labels"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if .IsSelected}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_milestone_no_select"}}</a> {{range .Milestones}} <a class="{{if eq $.MilestoneID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.ID}}&assignee={{$.AssigneeID}}">{{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> <a class="{{if eq .SortType "nearduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=nearduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.nearduedate"}}</a> <a class="{{if eq .SortType "farduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=farduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.farduedate"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid hide"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Action Button --> {{if .IsShowClosed}} <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_open"}}</div> {{else}} <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_close"}}</div> {{end}} <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/milestone"> {{.i18n.Tr "repo.issues.action_milestone_no_select"}} </div> {{range .Milestones}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/milestone"> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} <li class="item"> {{if $.CanWriteIssuesOrPulls}} <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> {{end}} <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.Link}}/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label has-emoji" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{ $timeStr := TimeSinceUnix .GetLastEventTimestamp $.Lang }} {{$.i18n.Tr .GetLastEventLabel $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if .Milestone}} <a class="milestone" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.Milestone.ID}}&assignee={{$.AssigneeID}}"> <span class="octicon octicon-milestone"></span> {{.Milestone.Name}} </a> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/list.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.08410879969596863, 0.0041448818519711494, 0.00016563523968216032, 0.0004174685454927385, 0.015740448608994484 ]
{ "id": 7, "code_window": [ "\t\t\t\t</div>\n", "\t\t\t</div>\n", "\t\t</div>\n", "\t\t<div id=\"issue-actions\" class=\"ui stackable grid\">\n", "\t\t\t<div class=\"six wide column\">\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\t\t<div id=\"issue-actions\" class=\"ui stackable grid hide\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 113 }
// +build ppc64 package bbolt // maxMapSize represents the largest mmap size supported by Bolt. const maxMapSize = 0xFFFFFFFFFFFF // 256TB // maxAllocSize is the size used when creating array pointers. const maxAllocSize = 0x7FFFFFFF // Are unaligned load/stores broken on this arch? var brokenUnaligned = false
vendor/github.com/etcd-io/bbolt/bolt_ppc64.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017273520643357188, 0.00017070007743313909, 0.00016866496298462152, 0.00017070007743313909, 0.000002035121724475175 ]
{ "id": 7, "code_window": [ "\t\t\t\t</div>\n", "\t\t\t</div>\n", "\t\t</div>\n", "\t\t<div id=\"issue-actions\" class=\"ui stackable grid\">\n", "\t\t\t<div class=\"six wide column\">\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\t\t<div id=\"issue-actions\" class=\"ui stackable grid hide\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 113 }
// Copyright 2016 The Xorm Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package builder import "fmt" type expr struct { sql string args []interface{} } var _ Cond = expr{} // Expr generate customerize SQL func Expr(sql string, args ...interface{}) Cond { return expr{sql, args} } func (expr expr) WriteTo(w Writer) error { if _, err := fmt.Fprint(w, expr.sql); err != nil { return err } w.Append(expr.args...) return nil } func (expr expr) And(conds ...Cond) Cond { return And(expr, And(conds...)) } func (expr expr) Or(conds ...Cond) Cond { return Or(expr, Or(conds...)) } func (expr expr) IsValid() bool { return len(expr.sql) > 0 }
vendor/github.com/go-xorm/builder/cond_expr.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.0001762221218086779, 0.0001706509938230738, 0.00016757745470385998, 0.00016940219211392105, 0.000003320678615637007 ]
{ "id": 7, "code_window": [ "\t\t\t\t</div>\n", "\t\t\t</div>\n", "\t\t</div>\n", "\t\t<div id=\"issue-actions\" class=\"ui stackable grid\">\n", "\t\t\t<div class=\"six wide column\">\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\t\t<div id=\"issue-actions\" class=\"ui stackable grid hide\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 113 }
<h4 class="ui top attached header"> {{.i18n.Tr "settings.manage_oauth2_applications"}} </h4> <div class="ui attached segment"> <div class="ui key list"> <div class="item"> {{.i18n.Tr "settings.oauth2_application_create_description"}} </div> {{range $app := .Applications}} <div class="item"> <div class="right floated content"> <a href="{{$.Link}}/oauth2/{{$app.ID}}" class="ui primary tiny icon button"> <i class="pencil alternate icon"></i> {{$.i18n.Tr "settings.oauth2_application_edit"}} </a> <button class="ui red tiny button delete-button" id="remove-gitea-oauth2-application" data-url="{{AppSubUrl}}/user/settings/applications/oauth2/delete" data-id="{{$app.ID}}"> {{$.i18n.Tr "settings.delete_key"}} </button> </div> <div class="content"> <strong>{{$app.Name}}</strong> </div> </div> {{end}} </div> </div> <div class="ui attached bottom segment"> <h5 class="ui top header"> {{.i18n.Tr "settings.create_oauth2_application" }} </h5> <form class="ui form ignore-dirty" action="{{.Link}}/oauth2" method="post"> {{.CsrfTokenHtml}} <div class="field {{if .Err_AppName}}error{{end}}"> <label for="application-name">{{.i18n.Tr "settings.oauth2_application_name"}}</label> <input id="application-name" name="application_name" value="{{.application_name}}" required> </div> <div class="field {{if .Err_RedirectURI}}error{{end}}"> <label for="redirect-uri">{{.i18n.Tr "settings.oauth2_redirect_uri"}}</label> <input type="url" name="redirect_uri" id="redirect-uri"> </div> <button class="ui green button"> {{.i18n.Tr "settings.create_oauth2_application_button"}} </button> </form> </div> <div class="ui small basic delete modal" id="remove-gitea-oauth2-application"> <div class="ui icon header"> <i class="trash icon"></i> {{.i18n.Tr "settings.remove_oauth2_application"}} </div> <div class="content"> <p>{{.i18n.Tr "settings.oauth2_application_remove_description"}}</p> </div> {{template "base/delete_modal_actions" .}} </div>
templates/user/settings/applications_oauth2.tmpl
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00027989724185317755, 0.00018782443657983094, 0.0001658525288803503, 0.0001691121724434197, 0.00004128168075112626 ]
{ "id": 8, "code_window": [ "\t\t\t<div class=\"six wide column\">\n", "\t\t\t\t<div class=\"ui basic status buttons\">\n", "\t\t\t\t\t<div class=\"ui green active basic button issue-action\" data-action=\"open\" data-url=\"{{$.RepoLink}}/issues/status\">{{.i18n.Tr \"repo.issues.action_open\"}}</div>\n", "\t\t\t\t\t<div class=\"ui red active basic button issue-action\" data-action=\"close\" data-url=\"{{$.RepoLink}}/issues/status\">{{.i18n.Tr \"repo.issues.action_close\"}}</div>\n", "\t\t\t\t</div>\n", "\t\t\t</div>\n", "\n", "\t\t\t{{/* Ten wide does not cope well and makes the columns stack.\n", "\t\t\tThis seems to be related to jQuery's hide/show: in fact, switching\n" ], "labels": [ "keep", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t<div class=\"ui tiny basic status buttons\">\n", "\t\t\t\t\t<a class=\"ui {{if not .IsShowClosed}}green active{{end}} basic button\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}\">\n", "\t\t\t\t\t\t<i class=\"octicon octicon-issue-opened\"></i>\n", "\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.open_tab\" .IssueStats.OpenCount}}\n", "\t\t\t\t\t</a>\n", "\t\t\t\t\t<a class=\"ui {{if .IsShowClosed}}red active{{end}} basic button\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}\">\n", "\t\t\t\t\t\t<i class=\"octicon octicon-issue-closed\"></i>\n", "\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.close_tab\" .IssueStats.ClosedCount}}\n", "\t\t\t\t\t</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 115 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> {{template "repo/issue/navbar" .}} </div> <div class="column center aligned"> {{template "repo/issue/search" .}} </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> {{if .PageIsIssueList}} <a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a> {{else}} <a class="ui green button {{if not .PullRequestCtx.Allowed}}disabled{{end}}" href="{{if .PullRequestCtx.Allowed}}{{.PullRequestCtx.BaseRepo.Link}}/compare/{{.Repository.DefaultBranch}}...{{.PullRequestCtx.HeadInfo}}{{end}}">{{.i18n.Tr "repo.pulls.new"}}</a> {{end}} </div> {{end}} </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu labels"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if .IsSelected}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_milestone_no_select"}}</a> {{range .Milestones}} <a class="{{if eq $.MilestoneID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.ID}}&assignee={{$.AssigneeID}}">{{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> <a class="{{if eq .SortType "nearduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=nearduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.nearduedate"}}</a> <a class="{{if eq .SortType "farduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=farduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.farduedate"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid hide"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Action Button --> {{if .IsShowClosed}} <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_open"}}</div> {{else}} <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_close"}}</div> {{end}} <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/milestone"> {{.i18n.Tr "repo.issues.action_milestone_no_select"}} </div> {{range .Milestones}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/milestone"> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} <li class="item"> {{if $.CanWriteIssuesOrPulls}} <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> {{end}} <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.Link}}/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label has-emoji" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{ $timeStr := TimeSinceUnix .GetLastEventTimestamp $.Lang }} {{$.i18n.Tr .GetLastEventLabel $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if .Milestone}} <a class="milestone" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.Milestone.ID}}&assignee={{$.AssigneeID}}"> <span class="octicon octicon-milestone"></span> {{.Milestone.Name}} </a> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/list.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.7123814821243286, 0.04497357830405235, 0.00016507788677699864, 0.0003307471051812172, 0.14363302290439606 ]
{ "id": 8, "code_window": [ "\t\t\t<div class=\"six wide column\">\n", "\t\t\t\t<div class=\"ui basic status buttons\">\n", "\t\t\t\t\t<div class=\"ui green active basic button issue-action\" data-action=\"open\" data-url=\"{{$.RepoLink}}/issues/status\">{{.i18n.Tr \"repo.issues.action_open\"}}</div>\n", "\t\t\t\t\t<div class=\"ui red active basic button issue-action\" data-action=\"close\" data-url=\"{{$.RepoLink}}/issues/status\">{{.i18n.Tr \"repo.issues.action_close\"}}</div>\n", "\t\t\t\t</div>\n", "\t\t\t</div>\n", "\n", "\t\t\t{{/* Ten wide does not cope well and makes the columns stack.\n", "\t\t\tThis seems to be related to jQuery's hide/show: in fact, switching\n" ], "labels": [ "keep", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t<div class=\"ui tiny basic status buttons\">\n", "\t\t\t\t\t<a class=\"ui {{if not .IsShowClosed}}green active{{end}} basic button\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}\">\n", "\t\t\t\t\t\t<i class=\"octicon octicon-issue-opened\"></i>\n", "\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.open_tab\" .IssueStats.OpenCount}}\n", "\t\t\t\t\t</a>\n", "\t\t\t\t\t<a class=\"ui {{if .IsShowClosed}}red active{{end}} basic button\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}\">\n", "\t\t\t\t\t\t<i class=\"octicon octicon-issue-closed\"></i>\n", "\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.close_tab\" .IssueStats.ClosedCount}}\n", "\t\t\t\t\t</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 115 }
X11 License Copyright (C) 1996 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. X Window System is a trademark of X Consortium, Inc.
options/license/X11
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017488935554865748, 0.0001720810541883111, 0.00016968509589787573, 0.00017166874022223055, 0.0000021445416678034235 ]
{ "id": 8, "code_window": [ "\t\t\t<div class=\"six wide column\">\n", "\t\t\t\t<div class=\"ui basic status buttons\">\n", "\t\t\t\t\t<div class=\"ui green active basic button issue-action\" data-action=\"open\" data-url=\"{{$.RepoLink}}/issues/status\">{{.i18n.Tr \"repo.issues.action_open\"}}</div>\n", "\t\t\t\t\t<div class=\"ui red active basic button issue-action\" data-action=\"close\" data-url=\"{{$.RepoLink}}/issues/status\">{{.i18n.Tr \"repo.issues.action_close\"}}</div>\n", "\t\t\t\t</div>\n", "\t\t\t</div>\n", "\n", "\t\t\t{{/* Ten wide does not cope well and makes the columns stack.\n", "\t\t\tThis seems to be related to jQuery's hide/show: in fact, switching\n" ], "labels": [ "keep", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t<div class=\"ui tiny basic status buttons\">\n", "\t\t\t\t\t<a class=\"ui {{if not .IsShowClosed}}green active{{end}} basic button\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}\">\n", "\t\t\t\t\t\t<i class=\"octicon octicon-issue-opened\"></i>\n", "\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.open_tab\" .IssueStats.OpenCount}}\n", "\t\t\t\t\t</a>\n", "\t\t\t\t\t<a class=\"ui {{if .IsShowClosed}}red active{{end}} basic button\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}\">\n", "\t\t\t\t\t\t<i class=\"octicon octicon-issue-closed\"></i>\n", "\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.close_tab\" .IssueStats.ClosedCount}}\n", "\t\t\t\t\t</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 115 }
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build amd64,!gccgo,!appengine package poly1305 // This function is implemented in sum_amd64.s //go:noescape func poly1305(out *[16]byte, m *byte, mlen uint64, key *[32]byte) // Sum generates an authenticator for m using a one-time key and puts the // 16-byte result into out. Authenticating two different messages with the same // key allows an attacker to forge messages at will. func Sum(out *[16]byte, m []byte, key *[32]byte) { var mPtr *byte if len(m) > 0 { mPtr = &m[0] } poly1305(out, mPtr, uint64(len(m)), key) }
vendor/golang.org/x/crypto/poly1305/sum_amd64.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017460210074204952, 0.00016866570513229817, 0.00016522906662430614, 0.00016616594803053886, 0.0000042150550143560395 ]
{ "id": 8, "code_window": [ "\t\t\t<div class=\"six wide column\">\n", "\t\t\t\t<div class=\"ui basic status buttons\">\n", "\t\t\t\t\t<div class=\"ui green active basic button issue-action\" data-action=\"open\" data-url=\"{{$.RepoLink}}/issues/status\">{{.i18n.Tr \"repo.issues.action_open\"}}</div>\n", "\t\t\t\t\t<div class=\"ui red active basic button issue-action\" data-action=\"close\" data-url=\"{{$.RepoLink}}/issues/status\">{{.i18n.Tr \"repo.issues.action_close\"}}</div>\n", "\t\t\t\t</div>\n", "\t\t\t</div>\n", "\n", "\t\t\t{{/* Ten wide does not cope well and makes the columns stack.\n", "\t\t\tThis seems to be related to jQuery's hide/show: in fact, switching\n" ], "labels": [ "keep", "replace", "replace", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t<div class=\"ui tiny basic status buttons\">\n", "\t\t\t\t\t<a class=\"ui {{if not .IsShowClosed}}green active{{end}} basic button\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}\">\n", "\t\t\t\t\t\t<i class=\"octicon octicon-issue-opened\"></i>\n", "\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.open_tab\" .IssueStats.OpenCount}}\n", "\t\t\t\t\t</a>\n", "\t\t\t\t\t<a class=\"ui {{if .IsShowClosed}}red active{{end}} basic button\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}\">\n", "\t\t\t\t\t\t<i class=\"octicon octicon-issue-closed\"></i>\n", "\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.close_tab\" .IssueStats.ClosedCount}}\n", "\t\t\t\t\t</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 115 }
*.FASL *.fasl *.lisp-temp *.dfsl *.pfsl *.d64fsl *.p64fsl *.lx64fsl *.lx32fsl *.dx64fsl *.dx32fsl *.fx64fsl *.fx32fsl *.sx64fsl *.sx32fsl *.wx64fsl *.wx32fsl
options/gitignore/CommonLisp
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00016981037333607674, 0.00016962073277682066, 0.00016943109221756458, 0.00016962073277682066, 1.896405592560768e-7 ]
{ "id": 9, "code_window": [ "\t\t\tthis one correctly, but not the other one. */}}\n", "\t\t\t<div class=\"nine wide right aligned right floated column\">\n", "\t\t\t\t<div class=\"ui secondary filter stackable menu\">\n", "\t\t\t\t\t<!-- Labels -->\n" ], "labels": [ "keep", "keep", "add", "keep" ], "after_edit": [ "\t\t\t\t\t<!-- Action Button -->\n", "\t\t\t\t\t{{if .IsShowClosed}}\n", "\t\t\t\t\t\t<div class=\"ui green active basic button issue-action\" data-action=\"open\" data-url=\"{{$.RepoLink}}/issues/status\" style=\"margin-left: auto\">{{.i18n.Tr \"repo.issues.action_open\"}}</div>\n", "\t\t\t\t\t{{else}}\n", "\t\t\t\t\t\t<div class=\"ui red active basic button issue-action\" data-action=\"close\" data-url=\"{{$.RepoLink}}/issues/status\" style=\"margin-left: auto\">{{.i18n.Tr \"repo.issues.action_close\"}}</div>\n", "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 127 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> <h3>{{.Milestone.Name}}</h3> </div> <div class="column center aligned"> </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> <a class="ui grey button" href="{{.RepoLink}}/milestones/{{.MilestoneID}}/edit">{{.i18n.Tr "repo.milestones.edit"}}</a> <a class="ui green button" href="{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}">{{.i18n.Tr "repo.issues.new"}}</a> </div> {{end}} </div> <div class="ui one column stackable grid"> <div class="column"> {{ $closedDate:= TimeSinceUnix .Milestone.ClosedDateUnix $.Lang }} {{if .IsClosed}} <span class="octicon octicon-clock"></span> {{$.i18n.Tr "repo.milestones.closed" $closedDate|Str2html}} {{else}} <span class="octicon octicon-calendar"></span> {{if .Milestone.DeadlineString}} <span {{if .IsOverdue}}class="overdue"{{end}}>{{.Milestone.DeadlineString}}</span> {{else}} {{$.i18n.Tr "repo.milestones.no_due_date"}} {{end}} {{end}} &nbsp; <b>{{.i18n.Tr "repo.milestones.completeness" .Milestone.Completeness}}</b> </div> </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid"> <div class="six wide column"> <div class="ui basic status buttons"> <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_open"}}</div> <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_close"}}</div> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} {{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }} <li class="item"> <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.RepoLink}}/issues/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/milestone_issues.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.8146445751190186, 0.03462591394782066, 0.00016424212662968785, 0.00022549447021447122, 0.16265356540679932 ]
{ "id": 9, "code_window": [ "\t\t\tthis one correctly, but not the other one. */}}\n", "\t\t\t<div class=\"nine wide right aligned right floated column\">\n", "\t\t\t\t<div class=\"ui secondary filter stackable menu\">\n", "\t\t\t\t\t<!-- Labels -->\n" ], "labels": [ "keep", "keep", "add", "keep" ], "after_edit": [ "\t\t\t\t\t<!-- Action Button -->\n", "\t\t\t\t\t{{if .IsShowClosed}}\n", "\t\t\t\t\t\t<div class=\"ui green active basic button issue-action\" data-action=\"open\" data-url=\"{{$.RepoLink}}/issues/status\" style=\"margin-left: auto\">{{.i18n.Tr \"repo.issues.action_open\"}}</div>\n", "\t\t\t\t\t{{else}}\n", "\t\t\t\t\t\t<div class=\"ui red active basic button issue-action\" data-action=\"close\" data-url=\"{{$.RepoLink}}/issues/status\" style=\"margin-left: auto\">{{.i18n.Tr \"repo.issues.action_close\"}}</div>\n", "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 127 }
package util import ( "path/filepath" "sort" "strings" "gopkg.in/src-d/go-billy.v4" ) // Glob returns the names of all files matching pattern or nil // if there is no matching file. The syntax of patterns is the same // as in Match. The pattern may describe hierarchical names such as // /usr/*/bin/ed (assuming the Separator is '/'). // // Glob ignores file system errors such as I/O errors reading directories. // The only possible returned error is ErrBadPattern, when pattern // is malformed. // // Function originally from https://golang.org/src/path/filepath/match_test.go func Glob(fs billy.Filesystem, pattern string) (matches []string, err error) { if !hasMeta(pattern) { if _, err = fs.Lstat(pattern); err != nil { return nil, nil } return []string{pattern}, nil } dir, file := filepath.Split(pattern) // Prevent infinite recursion. See issue 15879. if dir == pattern { return nil, filepath.ErrBadPattern } var m []string m, err = Glob(fs, cleanGlobPath(dir)) if err != nil { return } for _, d := range m { matches, err = glob(fs, d, file, matches) if err != nil { return } } return } // cleanGlobPath prepares path for glob matching. func cleanGlobPath(path string) string { switch path { case "": return "." case string(filepath.Separator): // do nothing to the path return path default: return path[0 : len(path)-1] // chop off trailing separator } } // glob searches for files matching pattern in the directory dir // and appends them to matches. If the directory cannot be // opened, it returns the existing matches. New matches are // added in lexicographical order. func glob(fs billy.Filesystem, dir, pattern string, matches []string) (m []string, e error) { m = matches fi, err := fs.Stat(dir) if err != nil { return } if !fi.IsDir() { return } names, _ := readdirnames(fs, dir) sort.Strings(names) for _, n := range names { matched, err := filepath.Match(pattern, n) if err != nil { return m, err } if matched { m = append(m, filepath.Join(dir, n)) } } return } // hasMeta reports whether path contains any of the magic characters // recognized by Match. func hasMeta(path string) bool { // TODO(niemeyer): Should other magic characters be added here? return strings.ContainsAny(path, "*?[") } func readdirnames(fs billy.Filesystem, dir string) ([]string, error) { files, err := fs.ReadDir(dir) if err != nil { return nil, err } var names []string for _, file := range files { names = append(names, file.Name()) } return names, nil }
vendor/gopkg.in/src-d/go-billy.v4/util/glob.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017647586355451494, 0.00017227354692295194, 0.0001686302275629714, 0.000171957173733972, 0.000001960741656148457 ]
{ "id": 9, "code_window": [ "\t\t\tthis one correctly, but not the other one. */}}\n", "\t\t\t<div class=\"nine wide right aligned right floated column\">\n", "\t\t\t\t<div class=\"ui secondary filter stackable menu\">\n", "\t\t\t\t\t<!-- Labels -->\n" ], "labels": [ "keep", "keep", "add", "keep" ], "after_edit": [ "\t\t\t\t\t<!-- Action Button -->\n", "\t\t\t\t\t{{if .IsShowClosed}}\n", "\t\t\t\t\t\t<div class=\"ui green active basic button issue-action\" data-action=\"open\" data-url=\"{{$.RepoLink}}/issues/status\" style=\"margin-left: auto\">{{.i18n.Tr \"repo.issues.action_open\"}}</div>\n", "\t\t\t\t\t{{else}}\n", "\t\t\t\t\t\t<div class=\"ui red active basic button issue-action\" data-action=\"close\" data-url=\"{{$.RepoLink}}/issues/status\" style=\"margin-left: auto\">{{.i18n.Tr \"repo.issues.action_close\"}}</div>\n", "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 127 }
// Copyright (c) 2014 Couchbase, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package registry import ( "fmt" "github.com/blevesearch/bleve/analysis" ) func RegisterTokenFilter(name string, constructor TokenFilterConstructor) { _, exists := tokenFilters[name] if exists { panic(fmt.Errorf("attempted to register duplicate token filter named '%s'", name)) } tokenFilters[name] = constructor } type TokenFilterConstructor func(config map[string]interface{}, cache *Cache) (analysis.TokenFilter, error) type TokenFilterRegistry map[string]TokenFilterConstructor type TokenFilterCache struct { *ConcurrentCache } func NewTokenFilterCache() *TokenFilterCache { return &TokenFilterCache{ NewConcurrentCache(), } } func TokenFilterBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { cons, registered := tokenFilters[name] if !registered { return nil, fmt.Errorf("no token filter with name or type '%s' registered", name) } tokenFilter, err := cons(config, cache) if err != nil { return nil, fmt.Errorf("error building token filter: %v", err) } return tokenFilter, nil } func (c *TokenFilterCache) TokenFilterNamed(name string, cache *Cache) (analysis.TokenFilter, error) { item, err := c.ItemNamed(name, cache, TokenFilterBuild) if err != nil { return nil, err } return item.(analysis.TokenFilter), nil } func (c *TokenFilterCache) DefineTokenFilter(name string, typ string, config map[string]interface{}, cache *Cache) (analysis.TokenFilter, error) { item, err := c.DefineItem(name, typ, config, cache, TokenFilterBuild) if err != nil { if err == ErrAlreadyDefined { return nil, fmt.Errorf("token filter named '%s' already defined", name) } return nil, err } return item.(analysis.TokenFilter), nil } func TokenFilterTypesAndInstances() ([]string, []string) { emptyConfig := map[string]interface{}{} emptyCache := NewCache() var types []string var instances []string for name, cons := range tokenFilters { _, err := cons(emptyConfig, emptyCache) if err == nil { instances = append(instances, name) } else { types = append(types, name) } } return types, instances }
vendor/github.com/blevesearch/bleve/registry/token_filter.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00027018689434044063, 0.00019084841187577695, 0.0001661342685110867, 0.000174930042703636, 0.00003372610444785096 ]
{ "id": 9, "code_window": [ "\t\t\tthis one correctly, but not the other one. */}}\n", "\t\t\t<div class=\"nine wide right aligned right floated column\">\n", "\t\t\t\t<div class=\"ui secondary filter stackable menu\">\n", "\t\t\t\t\t<!-- Labels -->\n" ], "labels": [ "keep", "keep", "add", "keep" ], "after_edit": [ "\t\t\t\t\t<!-- Action Button -->\n", "\t\t\t\t\t{{if .IsShowClosed}}\n", "\t\t\t\t\t\t<div class=\"ui green active basic button issue-action\" data-action=\"open\" data-url=\"{{$.RepoLink}}/issues/status\" style=\"margin-left: auto\">{{.i18n.Tr \"repo.issues.action_open\"}}</div>\n", "\t\t\t\t\t{{else}}\n", "\t\t\t\t\t\t<div class=\"ui red active basic button issue-action\" data-action=\"close\" data-url=\"{{$.RepoLink}}/issues/status\" style=\"margin-left: auto\">{{.i18n.Tr \"repo.issues.action_close\"}}</div>\n", "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 127 }
Before we get to the text of the license, lets just review what the license says in simple terms: It allows you to: * freely download and use ImageMagick software, in whole or in part, for personal, company internal, or commercial purposes; * use ImageMagick software in packages or distributions that you create; * link against a library under a different license; * link code under a different license against a library under this license; * merge code into a work under a different license; * extend patent grants to any code using code under this license; * and extend patent protection. It forbids you to: * redistribute any piece of ImageMagick-originated software without proper attribution; * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that ImageMagick Studio LLC endorses your distribution; * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that you created the ImageMagick software in question. It requires you to: * include a copy of the license in any redistribution you may make that includes ImageMagick software; * provide clear attribution to ImageMagick Studio LLC for any distributions that include ImageMagick software. It does not require you to: * include the source of the ImageMagick software itself, or of any modifications you may have made to it, in any redistribution you may assemble that includes it; * submit changes that you make to the software back to the ImageMagick Studio LLC (though such feedback is encouraged). A few other clarifications include: * ImageMagick is freely available without charge; * you may include ImageMagick on a DVD as long as you comply with the terms of the license; * you can give modified code away for free or sell it under the terms of the ImageMagick license or distribute the result under a different license, but you need to acknowledge the use of the ImageMagick software; * the license is compatible with the GPL V3. * when exporting the ImageMagick software, review its export classification. Terms and Conditions for Use, Reproduction, and Distribution The legally binding and authoritative terms and conditions for use, reproduction, and distribution of ImageMagick follow: Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization dedicated to making software imaging solutions freely available. 1. Definitions. License shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. Legal Entity shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, control means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. You (or Your) shall mean an individual or Legal Entity exercising permissions granted by this License. Source form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. Object form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. Work shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). Derivative Works shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. Contribution shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as Not a Contribution. Contributor shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: a. You must give any other recipients of the Work or Derivative Works a copy of this License; and b. You must cause any modified files to carry prominent notices stating that You changed the files; and c. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and d. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. How to Apply the License to your Work To apply the ImageMagick License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information (don't include the brackets). The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the ImageMagick License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.imagemagick.org/script/license.php Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
options/license/ImageMagick
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017731466505210847, 0.00017326379020232707, 0.00016398770094383508, 0.0001731875672703609, 0.0000030387004699150566 ]
{ "id": 10, "code_window": [ "\t\t\t\t\t<!-- Labels -->\n", "\t\t\t\t\t<div class=\"ui {{if not .Labels}}disabled{{end}} dropdown jump item\" style=\"margin-left: auto\">\n", "\t\t\t\t\t\t<span class=\"text\">\n", "\t\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.action_label\"}}\n", "\t\t\t\t\t\t\t<i class=\"dropdown icon\"></i>\n" ], "labels": [ "keep", "replace", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t<div class=\"ui {{if not .Labels}}disabled{{end}} dropdown jump item\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 128 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> {{template "repo/issue/navbar" .}} </div> <div class="column center aligned"> {{template "repo/issue/search" .}} </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> {{if .PageIsIssueList}} <a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a> {{else}} <a class="ui green button {{if not .PullRequestCtx.Allowed}}disabled{{end}}" href="{{if .PullRequestCtx.Allowed}}{{.PullRequestCtx.BaseRepo.Link}}/compare/{{.Repository.DefaultBranch}}...{{.PullRequestCtx.HeadInfo}}{{end}}">{{.i18n.Tr "repo.pulls.new"}}</a> {{end}} </div> {{end}} </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu labels"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if .IsSelected}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_milestone_no_select"}}</a> {{range .Milestones}} <a class="{{if eq $.MilestoneID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.ID}}&assignee={{$.AssigneeID}}">{{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> <a class="{{if eq .SortType "nearduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=nearduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.nearduedate"}}</a> <a class="{{if eq .SortType "farduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=farduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.farduedate"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid hide"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Action Button --> {{if .IsShowClosed}} <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_open"}}</div> {{else}} <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_close"}}</div> {{end}} <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/milestone"> {{.i18n.Tr "repo.issues.action_milestone_no_select"}} </div> {{range .Milestones}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/milestone"> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} <li class="item"> {{if $.CanWriteIssuesOrPulls}} <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> {{end}} <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.Link}}/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label has-emoji" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{ $timeStr := TimeSinceUnix .GetLastEventTimestamp $.Lang }} {{$.i18n.Tr .GetLastEventLabel $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if .Milestone}} <a class="milestone" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.Milestone.ID}}&assignee={{$.AssigneeID}}"> <span class="octicon octicon-milestone"></span> {{.Milestone.Name}} </a> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/list.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.08366228640079498, 0.005917012225836515, 0.0001669279154157266, 0.0012101477477699518, 0.016611944884061813 ]
{ "id": 10, "code_window": [ "\t\t\t\t\t<!-- Labels -->\n", "\t\t\t\t\t<div class=\"ui {{if not .Labels}}disabled{{end}} dropdown jump item\" style=\"margin-left: auto\">\n", "\t\t\t\t\t\t<span class=\"text\">\n", "\t\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.action_label\"}}\n", "\t\t\t\t\t\t\t<i class=\"dropdown icon\"></i>\n" ], "labels": [ "keep", "replace", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t<div class=\"ui {{if not .Labels}}disabled{{end}} dropdown jump item\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 128 }
#!/usr/bin/env bash "$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" post-receive
integrations/gitea-repositories-meta/user2/repo1.git/hooks/post-receive.d/gitea
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00016875924484338611, 0.00016875924484338611, 0.00016875924484338611, 0.00016875924484338611, 0 ]
{ "id": 10, "code_window": [ "\t\t\t\t\t<!-- Labels -->\n", "\t\t\t\t\t<div class=\"ui {{if not .Labels}}disabled{{end}} dropdown jump item\" style=\"margin-left: auto\">\n", "\t\t\t\t\t\t<span class=\"text\">\n", "\t\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.action_label\"}}\n", "\t\t\t\t\t\t\t<i class=\"dropdown icon\"></i>\n" ], "labels": [ "keep", "replace", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t<div class=\"ui {{if not .Labels}}disabled{{end}} dropdown jump item\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 128 }
// Copyright 2015 Unknwon // // Licensed under the Apache License, Version 2.0 (the "License"): you may // not use this file except in compliance with the License. You may obtain // a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the // License for the specific language governing permissions and limitations // under the License. package ini import ( "bufio" "bytes" "fmt" "io" "strconv" "strings" "unicode" ) type tokenType int const ( _TOKEN_INVALID tokenType = iota _TOKEN_COMMENT _TOKEN_SECTION _TOKEN_KEY ) type parser struct { buf *bufio.Reader isEOF bool count int comment *bytes.Buffer } func newParser(r io.Reader) *parser { return &parser{ buf: bufio.NewReader(r), count: 1, comment: &bytes.Buffer{}, } } // BOM handles header of UTF-8, UTF-16 LE and UTF-16 BE's BOM format. // http://en.wikipedia.org/wiki/Byte_order_mark#Representations_of_byte_order_marks_by_encoding func (p *parser) BOM() error { mask, err := p.buf.Peek(2) if err != nil && err != io.EOF { return err } else if len(mask) < 2 { return nil } switch { case mask[0] == 254 && mask[1] == 255: fallthrough case mask[0] == 255 && mask[1] == 254: p.buf.Read(mask) case mask[0] == 239 && mask[1] == 187: mask, err := p.buf.Peek(3) if err != nil && err != io.EOF { return err } else if len(mask) < 3 { return nil } if mask[2] == 191 { p.buf.Read(mask) } } return nil } func (p *parser) readUntil(delim byte) ([]byte, error) { data, err := p.buf.ReadBytes(delim) if err != nil { if err == io.EOF { p.isEOF = true } else { return nil, err } } return data, nil } func cleanComment(in []byte) ([]byte, bool) { i := bytes.IndexAny(in, "#;") if i == -1 { return nil, false } return in[i:], true } func readKeyName(in []byte) (string, int, error) { line := string(in) // Check if key name surrounded by quotes. var keyQuote string if line[0] == '"' { if len(line) > 6 && string(line[0:3]) == `"""` { keyQuote = `"""` } else { keyQuote = `"` } } else if line[0] == '`' { keyQuote = "`" } // Get out key name endIdx := -1 if len(keyQuote) > 0 { startIdx := len(keyQuote) // FIXME: fail case -> """"""name"""=value pos := strings.Index(line[startIdx:], keyQuote) if pos == -1 { return "", -1, fmt.Errorf("missing closing key quote: %s", line) } pos += startIdx // Find key-value delimiter i := strings.IndexAny(line[pos+startIdx:], "=:") if i < 0 { return "", -1, ErrDelimiterNotFound{line} } endIdx = pos + i return strings.TrimSpace(line[startIdx:pos]), endIdx + startIdx + 1, nil } endIdx = strings.IndexAny(line, "=:") if endIdx < 0 { return "", -1, ErrDelimiterNotFound{line} } return strings.TrimSpace(line[0:endIdx]), endIdx + 1, nil } func (p *parser) readMultilines(line, val, valQuote string) (string, error) { for { data, err := p.readUntil('\n') if err != nil { return "", err } next := string(data) pos := strings.LastIndex(next, valQuote) if pos > -1 { val += next[:pos] comment, has := cleanComment([]byte(next[pos:])) if has { p.comment.Write(bytes.TrimSpace(comment)) } break } val += next if p.isEOF { return "", fmt.Errorf("missing closing key quote from '%s' to '%s'", line, next) } } return val, nil } func (p *parser) readContinuationLines(val string) (string, error) { for { data, err := p.readUntil('\n') if err != nil { return "", err } next := strings.TrimSpace(string(data)) if len(next) == 0 { break } val += next if val[len(val)-1] != '\\' { break } val = val[:len(val)-1] } return val, nil } // hasSurroundedQuote check if and only if the first and last characters // are quotes \" or \'. // It returns false if any other parts also contain same kind of quotes. func hasSurroundedQuote(in string, quote byte) bool { return len(in) >= 2 && in[0] == quote && in[len(in)-1] == quote && strings.IndexByte(in[1:], quote) == len(in)-2 } func (p *parser) readValue(in []byte, ignoreContinuation, ignoreInlineComment, unescapeValueDoubleQuotes, unescapeValueCommentSymbols bool) (string, error) { line := strings.TrimLeftFunc(string(in), unicode.IsSpace) if len(line) == 0 { return "", nil } var valQuote string if len(line) > 3 && string(line[0:3]) == `"""` { valQuote = `"""` } else if line[0] == '`' { valQuote = "`" } else if unescapeValueDoubleQuotes && line[0] == '"' { valQuote = `"` } if len(valQuote) > 0 { startIdx := len(valQuote) pos := strings.LastIndex(line[startIdx:], valQuote) // Check for multi-line value if pos == -1 { return p.readMultilines(line, line[startIdx:], valQuote) } if unescapeValueDoubleQuotes && valQuote == `"` { return strings.Replace(line[startIdx:pos+startIdx], `\"`, `"`, -1), nil } return line[startIdx : pos+startIdx], nil } // Won't be able to reach here if value only contains whitespace line = strings.TrimSpace(line) // Check continuation lines when desired if !ignoreContinuation && line[len(line)-1] == '\\' { return p.readContinuationLines(line[:len(line)-1]) } // Check if ignore inline comment if !ignoreInlineComment { i := strings.IndexAny(line, "#;") if i > -1 { p.comment.WriteString(line[i:]) line = strings.TrimSpace(line[:i]) } } // Trim single and double quotes if hasSurroundedQuote(line, '\'') || hasSurroundedQuote(line, '"') { line = line[1 : len(line)-1] } else if len(valQuote) == 0 && unescapeValueCommentSymbols { if strings.Contains(line, `\;`) { line = strings.Replace(line, `\;`, ";", -1) } if strings.Contains(line, `\#`) { line = strings.Replace(line, `\#`, "#", -1) } } return line, nil } // parse parses data through an io.Reader. func (f *File) parse(reader io.Reader) (err error) { p := newParser(reader) if err = p.BOM(); err != nil { return fmt.Errorf("BOM: %v", err) } // Ignore error because default section name is never empty string. name := DEFAULT_SECTION if f.options.Insensitive { name = strings.ToLower(DEFAULT_SECTION) } section, _ := f.NewSection(name) var line []byte var inUnparseableSection bool for !p.isEOF { line, err = p.readUntil('\n') if err != nil { return err } line = bytes.TrimLeftFunc(line, unicode.IsSpace) if len(line) == 0 { continue } // Comments if line[0] == '#' || line[0] == ';' { // Note: we do not care ending line break, // it is needed for adding second line, // so just clean it once at the end when set to value. p.comment.Write(line) continue } // Section if line[0] == '[' { // Read to the next ']' (TODO: support quoted strings) // TODO(unknwon): use LastIndexByte when stop supporting Go1.4 closeIdx := bytes.LastIndex(line, []byte("]")) if closeIdx == -1 { return fmt.Errorf("unclosed section: %s", line) } name := string(line[1:closeIdx]) section, err = f.NewSection(name) if err != nil { return err } comment, has := cleanComment(line[closeIdx+1:]) if has { p.comment.Write(comment) } section.Comment = strings.TrimSpace(p.comment.String()) // Reset aotu-counter and comments p.comment.Reset() p.count = 1 inUnparseableSection = false for i := range f.options.UnparseableSections { if f.options.UnparseableSections[i] == name || (f.options.Insensitive && strings.ToLower(f.options.UnparseableSections[i]) == strings.ToLower(name)) { inUnparseableSection = true continue } } continue } if inUnparseableSection { section.isRawSection = true section.rawBody += string(line) continue } kname, offset, err := readKeyName(line) if err != nil { // Treat as boolean key when desired, and whole line is key name. if IsErrDelimiterNotFound(err) && f.options.AllowBooleanKeys { kname, err := p.readValue(line, f.options.IgnoreContinuation, f.options.IgnoreInlineComment, f.options.UnescapeValueDoubleQuotes, f.options.UnescapeValueCommentSymbols) if err != nil { return err } key, err := section.NewBooleanKey(kname) if err != nil { return err } key.Comment = strings.TrimSpace(p.comment.String()) p.comment.Reset() continue } return err } // Auto increment. isAutoIncr := false if kname == "-" { isAutoIncr = true kname = "#" + strconv.Itoa(p.count) p.count++ } value, err := p.readValue(line[offset:], f.options.IgnoreContinuation, f.options.IgnoreInlineComment, f.options.UnescapeValueDoubleQuotes, f.options.UnescapeValueCommentSymbols) if err != nil { return err } key, err := section.NewKey(kname, value) if err != nil { return err } key.isAutoIncrement = isAutoIncr key.Comment = strings.TrimSpace(p.comment.String()) p.comment.Reset() } return nil }
vendor/gopkg.in/ini.v1/parser.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00020506535656750202, 0.0001718582643661648, 0.00016519281780347228, 0.00017117493553087115, 0.000006028950792824617 ]
{ "id": 10, "code_window": [ "\t\t\t\t\t<!-- Labels -->\n", "\t\t\t\t\t<div class=\"ui {{if not .Labels}}disabled{{end}} dropdown jump item\" style=\"margin-left: auto\">\n", "\t\t\t\t\t\t<span class=\"text\">\n", "\t\t\t\t\t\t\t{{.i18n.Tr \"repo.issues.action_label\"}}\n", "\t\t\t\t\t\t\t<i class=\"dropdown icon\"></i>\n" ], "labels": [ "keep", "replace", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t<div class=\"ui {{if not .Labels}}disabled{{end}} dropdown jump item\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 128 }
Copyright (c) 1999-2002 Henrik Theiling Licence Version 2 This software is provided 'as-is', without warranty of any kind, express or implied. In no event will the authors or copyright holders be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. You must not use any of the names of the authors or copyright holders of the original software for advertising or publicity pertaining to distribution without specific, written prior permission. 4. If you change this software and redistribute parts or all of it in any form, you must make the source code of the altered version of this software available. 5. This notice may not be removed or altered from any source distribution. This licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court.
options/license/Eurosym
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017639595898799598, 0.00017363845836371183, 0.00017142354045063257, 0.00017336718156002462, 0.0000019374454041098943 ]
{ "id": 11, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<div class=\"item issue-action\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n", "\t\t\t\t\t\t\t\t\t<span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}\n", "\t\t\t\t\t\t\t\t</div>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<div class=\"item issue-action has-emoji\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 135 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> <h3>{{.Milestone.Name}}</h3> </div> <div class="column center aligned"> </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> <a class="ui grey button" href="{{.RepoLink}}/milestones/{{.MilestoneID}}/edit">{{.i18n.Tr "repo.milestones.edit"}}</a> <a class="ui green button" href="{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}">{{.i18n.Tr "repo.issues.new"}}</a> </div> {{end}} </div> <div class="ui one column stackable grid"> <div class="column"> {{ $closedDate:= TimeSinceUnix .Milestone.ClosedDateUnix $.Lang }} {{if .IsClosed}} <span class="octicon octicon-clock"></span> {{$.i18n.Tr "repo.milestones.closed" $closedDate|Str2html}} {{else}} <span class="octicon octicon-calendar"></span> {{if .Milestone.DeadlineString}} <span {{if .IsOverdue}}class="overdue"{{end}}>{{.Milestone.DeadlineString}}</span> {{else}} {{$.i18n.Tr "repo.milestones.no_due_date"}} {{end}} {{end}} &nbsp; <b>{{.i18n.Tr "repo.milestones.completeness" .Milestone.Completeness}}</b> </div> </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid"> <div class="six wide column"> <div class="ui basic status buttons"> <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_open"}}</div> <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_close"}}</div> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} {{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }} <li class="item"> <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.RepoLink}}/issues/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/milestone_issues.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.9959671497344971, 0.06116503104567528, 0.0001673117803875357, 0.0013229036703705788, 0.21098372340202332 ]
{ "id": 11, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<div class=\"item issue-action\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n", "\t\t\t\t\t\t\t\t\t<span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}\n", "\t\t\t\t\t\t\t\t</div>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<div class=\"item issue-action has-emoji\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 135 }
package redis import ( "fmt" "time" ) // Not thread-safe. type PubSub struct { *baseClient } func (c *Client) PubSub() *PubSub { return &PubSub{ baseClient: &baseClient{ opt: c.opt, connPool: newSingleConnPool(c.connPool, false), }, } } func (c *Client) Publish(channel, message string) *IntCmd { req := NewIntCmd("PUBLISH", channel, message) c.Process(req) return req } type Message struct { Channel string Payload string } func (m *Message) String() string { return fmt.Sprintf("Message<%s: %s>", m.Channel, m.Payload) } type PMessage struct { Channel string Pattern string Payload string } func (m *PMessage) String() string { return fmt.Sprintf("PMessage<%s: %s>", m.Channel, m.Payload) } type Subscription struct { Kind string Channel string Count int } func (m *Subscription) String() string { return fmt.Sprintf("%s: %s", m.Kind, m.Channel) } func (c *PubSub) Receive() (interface{}, error) { return c.ReceiveTimeout(0) } func (c *PubSub) ReceiveTimeout(timeout time.Duration) (interface{}, error) { cn, err := c.conn() if err != nil { return nil, err } cn.readTimeout = timeout cmd := NewSliceCmd() if err := cmd.parseReply(cn.rd); err != nil { return nil, err } reply := cmd.Val() msgName := reply[0].(string) switch msgName { case "subscribe", "unsubscribe", "psubscribe", "punsubscribe": return &Subscription{ Kind: msgName, Channel: reply[1].(string), Count: int(reply[2].(int64)), }, nil case "message": return &Message{ Channel: reply[1].(string), Payload: reply[2].(string), }, nil case "pmessage": return &PMessage{ Pattern: reply[1].(string), Channel: reply[2].(string), Payload: reply[3].(string), }, nil } return nil, fmt.Errorf("redis: unsupported message name: %q", msgName) } func (c *PubSub) subscribe(cmd string, channels ...string) error { cn, err := c.conn() if err != nil { return err } args := append([]string{cmd}, channels...) req := NewSliceCmd(args...) return c.writeCmd(cn, req) } func (c *PubSub) Subscribe(channels ...string) error { return c.subscribe("SUBSCRIBE", channels...) } func (c *PubSub) PSubscribe(patterns ...string) error { return c.subscribe("PSUBSCRIBE", patterns...) } func (c *PubSub) unsubscribe(cmd string, channels ...string) error { cn, err := c.conn() if err != nil { return err } args := append([]string{cmd}, channels...) req := NewSliceCmd(args...) return c.writeCmd(cn, req) } func (c *PubSub) Unsubscribe(channels ...string) error { return c.unsubscribe("UNSUBSCRIBE", channels...) } func (c *PubSub) PUnsubscribe(patterns ...string) error { return c.unsubscribe("PUNSUBSCRIBE", patterns...) }
vendor/gopkg.in/redis.v2/pubsub.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.000171999228768982, 0.00016792395035736263, 0.00016177856014110148, 0.00016770260117482394, 0.00000273740761258523 ]
{ "id": 11, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<div class=\"item issue-action\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n", "\t\t\t\t\t\t\t\t\t<span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}\n", "\t\t\t\t\t\t\t\t</div>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<div class=\"item issue-action has-emoji\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 135 }
// Copyright 2017 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. package integrations import ( "fmt" "net/http" "testing" "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/auth" "code.gitea.io/gitea/modules/setting" api "code.gitea.io/sdk/gitea" "github.com/stretchr/testify/assert" ) func TestAPIViewPulls(t *testing.T) { prepareTestEnv(t) repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository) owner := models.AssertExistsAndLoadBean(t, &models.User{ID: repo.OwnerID}).(*models.User) session := loginUser(t, "user2") token := getTokenForLoggedInUser(t, session) req := NewRequestf(t, "GET", "/api/v1/repos/%s/%s/pulls?state=all&token="+token, owner.Name, repo.Name) resp := session.MakeRequest(t, req, http.StatusOK) var pulls []*api.PullRequest DecodeJSON(t, resp, &pulls) expectedLen := models.GetCount(t, &models.Issue{RepoID: repo.ID}, models.Cond("is_pull = ?", true)) assert.Len(t, pulls, expectedLen) } // TestAPIMergePullWIP ensures that we can't merge a WIP pull request func TestAPIMergePullWIP(t *testing.T) { prepareTestEnv(t) repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository) owner := models.AssertExistsAndLoadBean(t, &models.User{ID: repo.OwnerID}).(*models.User) pr := models.AssertExistsAndLoadBean(t, &models.PullRequest{Status: models.PullRequestStatusMergeable}, models.Cond("has_merged = ?", false)).(*models.PullRequest) pr.LoadIssue() pr.Issue.ChangeTitle(owner, setting.Repository.PullRequest.WorkInProgressPrefixes[0]+" "+pr.Issue.Title) // force reload pr.LoadAttributes() assert.Contains(t, pr.Issue.Title, setting.Repository.PullRequest.WorkInProgressPrefixes[0]) session := loginUser(t, owner.Name) token := getTokenForLoggedInUser(t, session) req := NewRequestWithJSON(t, http.MethodPost, fmt.Sprintf("/api/v1/repos/%s/%s/pulls/%d/merge?token=%s", owner.Name, repo.Name, pr.Index, token), &auth.MergePullRequestForm{ MergeMessageField: pr.Issue.Title, Do: string(models.MergeStyleMerge), }) session.MakeRequest(t, req, http.StatusMethodNotAllowed) }
integrations/api_pull_test.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00019637336663436145, 0.00017640426813159138, 0.00016915604646783322, 0.00017342338105663657, 0.000009191201570502017 ]
{ "id": 11, "code_window": [ "\t\t\t\t\t\t</span>\n", "\t\t\t\t\t\t<div class=\"menu\">\n", "\t\t\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t\t\t<div class=\"item issue-action\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n", "\t\t\t\t\t\t\t\t\t<span class=\"octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}\"></span><span class=\"label color\" style=\"background-color: {{.Color}}\"></span> {{.Name}}\n", "\t\t\t\t\t\t\t\t</div>\n", "\t\t\t\t\t\t\t{{end}}\n", "\t\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t\t\t<div class=\"item issue-action has-emoji\" data-action=\"toggle\" data-element-id=\"{{.ID}}\" data-url=\"{{$.RepoLink}}/issues/labels\">\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 135 }
{{template "base/head" .}} <div class="repository new issue"> {{template "repo/header" .}} <div class="ui container"> <div class="navbar"> {{template "repo/issue/navbar" .}} </div> <div class="ui divider"></div> {{template "repo/issue/new_form" .}} </div> </div> {{template "base/footer" .}}
templates/repo/issue/new.tmpl
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.0001807223161449656, 0.00017223968461621553, 0.00016375705308746547, 0.00017223968461621553, 0.000008482631528750062 ]
{ "id": 12, "code_window": [ "\t\t<div class=\"issue list\">\n", "\t\t\t{{range .Issues}}\n", "\t\t\t\t{{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }}\n", "\t\t\t\t<li class=\"item\">\n", "\t\t\t\t\t<div class=\"ui checkbox issue-checkbox\">\n", "\t\t\t\t\t\t<input type=\"checkbox\" data-issue-id={{.ID}}></input>\n", "\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{if or (and $.CanWriteIssues (not .IsPull)) (and $.CanWritePulls .IsPull)}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 167 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> <h3>{{.Milestone.Name}}</h3> </div> <div class="column center aligned"> </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> <a class="ui grey button" href="{{.RepoLink}}/milestones/{{.MilestoneID}}/edit">{{.i18n.Tr "repo.milestones.edit"}}</a> <a class="ui green button" href="{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}">{{.i18n.Tr "repo.issues.new"}}</a> </div> {{end}} </div> <div class="ui one column stackable grid"> <div class="column"> {{ $closedDate:= TimeSinceUnix .Milestone.ClosedDateUnix $.Lang }} {{if .IsClosed}} <span class="octicon octicon-clock"></span> {{$.i18n.Tr "repo.milestones.closed" $closedDate|Str2html}} {{else}} <span class="octicon octicon-calendar"></span> {{if .Milestone.DeadlineString}} <span {{if .IsOverdue}}class="overdue"{{end}}>{{.Milestone.DeadlineString}}</span> {{else}} {{$.i18n.Tr "repo.milestones.no_due_date"}} {{end}} {{end}} &nbsp; <b>{{.i18n.Tr "repo.milestones.completeness" .Milestone.Completeness}}</b> </div> </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid"> <div class="six wide column"> <div class="ui basic status buttons"> <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_open"}}</div> <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_close"}}</div> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} {{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }} <li class="item"> <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.RepoLink}}/issues/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/milestone_issues.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.9977928400039673, 0.04191784933209419, 0.00016606190183665603, 0.0003231047885492444, 0.19931378960609436 ]
{ "id": 12, "code_window": [ "\t\t<div class=\"issue list\">\n", "\t\t\t{{range .Issues}}\n", "\t\t\t\t{{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }}\n", "\t\t\t\t<li class=\"item\">\n", "\t\t\t\t\t<div class=\"ui checkbox issue-checkbox\">\n", "\t\t\t\t\t\t<input type=\"checkbox\" data-issue-id={{.ID}}></input>\n", "\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{if or (and $.CanWriteIssues (not .IsPull)) (and $.CanWritePulls .IsPull)}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 167 }
package roaring import ( "bytes" "encoding/binary" "fmt" "io" "io/ioutil" snappy "github.com/glycerine/go-unsnap-stream" "github.com/tinylib/msgp/msgp" ) //go:generate msgp -unexported type container interface { clone() container and(container) container andCardinality(container) int iand(container) container // i stands for inplace andNot(container) container iandNot(container) container // i stands for inplace getCardinality() int // rank returns the number of integers that are // smaller or equal to x. rank(infinity) would be getCardinality(). rank(uint16) int iadd(x uint16) bool // inplace, returns true if x was new. iaddReturnMinimized(uint16) container // may change return type to minimize storage. //addRange(start, final int) container // range is [firstOfRange,lastOfRange) (unused) iaddRange(start, endx int) container // i stands for inplace, range is [firstOfRange,endx) iremove(x uint16) bool // inplace, returns true if x was present. iremoveReturnMinimized(uint16) container // may change return type to minimize storage. not(start, final int) container // range is [firstOfRange,lastOfRange) inot(firstOfRange, endx int) container // i stands for inplace, range is [firstOfRange,endx) xor(r container) container getShortIterator() shortIterable getManyIterator() manyIterable contains(i uint16) bool maximum() uint16 minimum() uint16 // equals is now logical equals; it does not require the // same underlying container types, but compares across // any of the implementations. equals(r container) bool fillLeastSignificant16bits(array []uint32, i int, mask uint32) or(r container) container orCardinality(r container) int isFull() bool ior(r container) container // i stands for inplace intersects(r container) bool // whether the two containers intersect lazyOR(r container) container lazyIOR(r container) container getSizeInBytes() int //removeRange(start, final int) container // range is [firstOfRange,lastOfRange) (unused) iremoveRange(start, final int) container // i stands for inplace, range is [firstOfRange,lastOfRange) selectInt(x uint16) int // selectInt returns the xth integer in the container serializedSizeInBytes() int readFrom(io.Reader) (int, error) writeTo(io.Writer) (int, error) numberOfRuns() int toEfficientContainer() container String() string containerType() contype } type contype uint8 const ( bitmapContype contype = iota arrayContype run16Contype run32Contype ) // careful: range is [firstOfRange,lastOfRange] func rangeOfOnes(start, last int) container { if start > MaxUint16 { panic("rangeOfOnes called with start > MaxUint16") } if last > MaxUint16 { panic("rangeOfOnes called with last > MaxUint16") } if start < 0 { panic("rangeOfOnes called with start < 0") } if last < 0 { panic("rangeOfOnes called with last < 0") } return newRunContainer16Range(uint16(start), uint16(last)) } type roaringArray struct { keys []uint16 containers []container `msg:"-"` // don't try to serialize directly. needCopyOnWrite []bool copyOnWrite bool // conserz is used at serialization time // to serialize containers. Otherwise empty. conserz []containerSerz } // containerSerz facilitates serializing container (tricky to // serialize because it is an interface) by providing a // light wrapper with a type identifier. type containerSerz struct { t contype `msg:"t"` // type r msgp.Raw `msg:"r"` // Raw msgpack of the actual container type } func newRoaringArray() *roaringArray { return &roaringArray{} } // runOptimize compresses the element containers to minimize space consumed. // Q: how does this interact with copyOnWrite and needCopyOnWrite? // A: since we aren't changing the logical content, just the representation, // we don't bother to check the needCopyOnWrite bits. We replace // (possibly all) elements of ra.containers in-place with space // optimized versions. func (ra *roaringArray) runOptimize() { for i := range ra.containers { ra.containers[i] = ra.containers[i].toEfficientContainer() } } func (ra *roaringArray) appendContainer(key uint16, value container, mustCopyOnWrite bool) { ra.keys = append(ra.keys, key) ra.containers = append(ra.containers, value) ra.needCopyOnWrite = append(ra.needCopyOnWrite, mustCopyOnWrite) } func (ra *roaringArray) appendWithoutCopy(sa roaringArray, startingindex int) { mustCopyOnWrite := sa.needCopyOnWrite[startingindex] ra.appendContainer(sa.keys[startingindex], sa.containers[startingindex], mustCopyOnWrite) } func (ra *roaringArray) appendCopy(sa roaringArray, startingindex int) { // cow only if the two request it, or if we already have a lightweight copy copyonwrite := (ra.copyOnWrite && sa.copyOnWrite) || sa.needsCopyOnWrite(startingindex) if !copyonwrite { // since there is no copy-on-write, we need to clone the container (this is important) ra.appendContainer(sa.keys[startingindex], sa.containers[startingindex].clone(), copyonwrite) } else { ra.appendContainer(sa.keys[startingindex], sa.containers[startingindex], copyonwrite) if !sa.needsCopyOnWrite(startingindex) { sa.setNeedsCopyOnWrite(startingindex) } } } func (ra *roaringArray) appendWithoutCopyMany(sa roaringArray, startingindex, end int) { for i := startingindex; i < end; i++ { ra.appendWithoutCopy(sa, i) } } func (ra *roaringArray) appendCopyMany(sa roaringArray, startingindex, end int) { for i := startingindex; i < end; i++ { ra.appendCopy(sa, i) } } func (ra *roaringArray) appendCopiesUntil(sa roaringArray, stoppingKey uint16) { // cow only if the two request it, or if we already have a lightweight copy copyonwrite := ra.copyOnWrite && sa.copyOnWrite for i := 0; i < sa.size(); i++ { if sa.keys[i] >= stoppingKey { break } thiscopyonewrite := copyonwrite || sa.needsCopyOnWrite(i) if thiscopyonewrite { ra.appendContainer(sa.keys[i], sa.containers[i], thiscopyonewrite) if !sa.needsCopyOnWrite(i) { sa.setNeedsCopyOnWrite(i) } } else { // since there is no copy-on-write, we need to clone the container (this is important) ra.appendContainer(sa.keys[i], sa.containers[i].clone(), thiscopyonewrite) } } } func (ra *roaringArray) appendCopiesAfter(sa roaringArray, beforeStart uint16) { // cow only if the two request it, or if we already have a lightweight copy copyonwrite := ra.copyOnWrite && sa.copyOnWrite startLocation := sa.getIndex(beforeStart) if startLocation >= 0 { startLocation++ } else { startLocation = -startLocation - 1 } for i := startLocation; i < sa.size(); i++ { thiscopyonewrite := copyonwrite || sa.needsCopyOnWrite(i) if thiscopyonewrite { ra.appendContainer(sa.keys[i], sa.containers[i], thiscopyonewrite) if !sa.needsCopyOnWrite(i) { sa.setNeedsCopyOnWrite(i) } } else { // since there is no copy-on-write, we need to clone the container (this is important) ra.appendContainer(sa.keys[i], sa.containers[i].clone(), thiscopyonewrite) } } } func (ra *roaringArray) removeIndexRange(begin, end int) { if end <= begin { return } r := end - begin copy(ra.keys[begin:], ra.keys[end:]) copy(ra.containers[begin:], ra.containers[end:]) copy(ra.needCopyOnWrite[begin:], ra.needCopyOnWrite[end:]) ra.resize(len(ra.keys) - r) } func (ra *roaringArray) resize(newsize int) { for k := newsize; k < len(ra.containers); k++ { ra.containers[k] = nil } ra.keys = ra.keys[:newsize] ra.containers = ra.containers[:newsize] ra.needCopyOnWrite = ra.needCopyOnWrite[:newsize] } func (ra *roaringArray) clear() { ra.resize(0) ra.copyOnWrite = false ra.conserz = nil } func (ra *roaringArray) clone() *roaringArray { sa := roaringArray{} sa.copyOnWrite = ra.copyOnWrite // this is where copyOnWrite is used. if ra.copyOnWrite { sa.keys = make([]uint16, len(ra.keys)) copy(sa.keys, ra.keys) sa.containers = make([]container, len(ra.containers)) copy(sa.containers, ra.containers) sa.needCopyOnWrite = make([]bool, len(ra.needCopyOnWrite)) ra.markAllAsNeedingCopyOnWrite() sa.markAllAsNeedingCopyOnWrite() // sa.needCopyOnWrite is shared } else { // make a full copy sa.keys = make([]uint16, len(ra.keys)) copy(sa.keys, ra.keys) sa.containers = make([]container, len(ra.containers)) for i := range sa.containers { sa.containers[i] = ra.containers[i].clone() } sa.needCopyOnWrite = make([]bool, len(ra.needCopyOnWrite)) } return &sa } // unused function: //func (ra *roaringArray) containsKey(x uint16) bool { // return (ra.binarySearch(0, int64(len(ra.keys)), x) >= 0) //} func (ra *roaringArray) getContainer(x uint16) container { i := ra.binarySearch(0, int64(len(ra.keys)), x) if i < 0 { return nil } return ra.containers[i] } func (ra *roaringArray) getContainerAtIndex(i int) container { return ra.containers[i] } func (ra *roaringArray) getFastContainerAtIndex(i int, needsWriteable bool) container { c := ra.getContainerAtIndex(i) switch t := c.(type) { case *arrayContainer: c = t.toBitmapContainer() case *runContainer16: if !t.isFull() { c = t.toBitmapContainer() } case *bitmapContainer: if needsWriteable && ra.needCopyOnWrite[i] { c = ra.containers[i].clone() } } return c } func (ra *roaringArray) getWritableContainerAtIndex(i int) container { if ra.needCopyOnWrite[i] { ra.containers[i] = ra.containers[i].clone() ra.needCopyOnWrite[i] = false } return ra.containers[i] } func (ra *roaringArray) getIndex(x uint16) int { // before the binary search, we optimize for frequent cases size := len(ra.keys) if (size == 0) || (ra.keys[size-1] == x) { return size - 1 } return ra.binarySearch(0, int64(size), x) } func (ra *roaringArray) getKeyAtIndex(i int) uint16 { return ra.keys[i] } func (ra *roaringArray) insertNewKeyValueAt(i int, key uint16, value container) { ra.keys = append(ra.keys, 0) ra.containers = append(ra.containers, nil) copy(ra.keys[i+1:], ra.keys[i:]) copy(ra.containers[i+1:], ra.containers[i:]) ra.keys[i] = key ra.containers[i] = value ra.needCopyOnWrite = append(ra.needCopyOnWrite, false) copy(ra.needCopyOnWrite[i+1:], ra.needCopyOnWrite[i:]) ra.needCopyOnWrite[i] = false } func (ra *roaringArray) remove(key uint16) bool { i := ra.binarySearch(0, int64(len(ra.keys)), key) if i >= 0 { // if a new key ra.removeAtIndex(i) return true } return false } func (ra *roaringArray) removeAtIndex(i int) { copy(ra.keys[i:], ra.keys[i+1:]) copy(ra.containers[i:], ra.containers[i+1:]) copy(ra.needCopyOnWrite[i:], ra.needCopyOnWrite[i+1:]) ra.resize(len(ra.keys) - 1) } func (ra *roaringArray) setContainerAtIndex(i int, c container) { ra.containers[i] = c } func (ra *roaringArray) replaceKeyAndContainerAtIndex(i int, key uint16, c container, mustCopyOnWrite bool) { ra.keys[i] = key ra.containers[i] = c ra.needCopyOnWrite[i] = mustCopyOnWrite } func (ra *roaringArray) size() int { return len(ra.keys) } func (ra *roaringArray) binarySearch(begin, end int64, ikey uint16) int { low := begin high := end - 1 for low+16 <= high { middleIndex := low + (high-low)/2 // avoid overflow middleValue := ra.keys[middleIndex] if middleValue < ikey { low = middleIndex + 1 } else if middleValue > ikey { high = middleIndex - 1 } else { return int(middleIndex) } } for ; low <= high; low++ { val := ra.keys[low] if val >= ikey { if val == ikey { return int(low) } break } } return -int(low + 1) } func (ra *roaringArray) equals(o interface{}) bool { srb, ok := o.(roaringArray) if ok { if srb.size() != ra.size() { return false } for i, k := range ra.keys { if k != srb.keys[i] { return false } } for i, c := range ra.containers { if !c.equals(srb.containers[i]) { return false } } return true } return false } func (ra *roaringArray) headerSize() uint64 { size := uint64(len(ra.keys)) if ra.hasRunCompression() { if size < noOffsetThreshold { // for small bitmaps, we omit the offsets return 4 + (size+7)/8 + 4*size } return 4 + (size+7)/8 + 8*size // - 4 because we pack the size with the cookie } return 4 + 4 + 8*size } // should be dirt cheap func (ra *roaringArray) serializedSizeInBytes() uint64 { answer := ra.headerSize() for _, c := range ra.containers { answer += uint64(c.serializedSizeInBytes()) } return answer } // // spec: https://github.com/RoaringBitmap/RoaringFormatSpec // func (ra *roaringArray) toBytes() ([]byte, error) { stream := &bytes.Buffer{} hasRun := ra.hasRunCompression() isRunSizeInBytes := 0 cookieSize := 8 if hasRun { cookieSize = 4 isRunSizeInBytes = (len(ra.keys) + 7) / 8 } descriptiveHeaderSize := 4 * len(ra.keys) preambleSize := cookieSize + isRunSizeInBytes + descriptiveHeaderSize buf := make([]byte, preambleSize+4*len(ra.keys)) nw := 0 if hasRun { binary.LittleEndian.PutUint16(buf[0:], uint16(serialCookie)) nw += 2 binary.LittleEndian.PutUint16(buf[2:], uint16(len(ra.keys)-1)) nw += 2 // compute isRun bitmap var ir []byte isRun := newBitmapContainer() for i, c := range ra.containers { switch c.(type) { case *runContainer16: isRun.iadd(uint16(i)) } } // convert to little endian ir = isRun.asLittleEndianByteSlice()[:isRunSizeInBytes] nw += copy(buf[nw:], ir) } else { binary.LittleEndian.PutUint32(buf[0:], uint32(serialCookieNoRunContainer)) nw += 4 binary.LittleEndian.PutUint32(buf[4:], uint32(len(ra.keys))) nw += 4 } // descriptive header for i, key := range ra.keys { binary.LittleEndian.PutUint16(buf[nw:], key) nw += 2 c := ra.containers[i] binary.LittleEndian.PutUint16(buf[nw:], uint16(c.getCardinality()-1)) nw += 2 } startOffset := int64(preambleSize + 4*len(ra.keys)) if !hasRun || (len(ra.keys) >= noOffsetThreshold) { // offset header for _, c := range ra.containers { binary.LittleEndian.PutUint32(buf[nw:], uint32(startOffset)) nw += 4 switch rc := c.(type) { case *runContainer16: startOffset += 2 + int64(len(rc.iv))*4 default: startOffset += int64(getSizeInBytesFromCardinality(c.getCardinality())) } } } _, err := stream.Write(buf[:nw]) if err != nil { return nil, err } for i, c := range ra.containers { _ = i _, err := c.writeTo(stream) if err != nil { return nil, err } } return stream.Bytes(), nil } // // spec: https://github.com/RoaringBitmap/RoaringFormatSpec // func (ra *roaringArray) writeTo(out io.Writer) (int64, error) { by, err := ra.toBytes() if err != nil { return 0, err } n, err := out.Write(by) if err == nil && n < len(by) { err = io.ErrShortWrite } return int64(n), err } func (ra *roaringArray) fromBuffer(buf []byte) (int64, error) { pos := 0 if len(buf) < 8 { return 0, fmt.Errorf("buffer too small, expecting at least 8 bytes, was %d", len(buf)) } cookie := binary.LittleEndian.Uint32(buf) pos += 4 var size uint32 // number of containers haveRunContainers := false var isRunBitmap []byte // cookie header if cookie&0x0000FFFF == serialCookie { haveRunContainers = true size = uint32(uint16(cookie>>16) + 1) // number of containers // create is-run-container bitmap isRunBitmapSize := (int(size) + 7) / 8 if pos+isRunBitmapSize > len(buf) { return 0, fmt.Errorf("malformed bitmap, is-run bitmap overruns buffer at %d", pos+isRunBitmapSize) } isRunBitmap = buf[pos : pos+isRunBitmapSize] pos += isRunBitmapSize } else if cookie == serialCookieNoRunContainer { size = binary.LittleEndian.Uint32(buf[pos:]) pos += 4 } else { return 0, fmt.Errorf("error in roaringArray.readFrom: did not find expected serialCookie in header") } if size > (1 << 16) { return 0, fmt.Errorf("It is logically impossible to have more than (1<<16) containers.") } // descriptive header // keycard - is {key, cardinality} tuple slice if pos+2*2*int(size) > len(buf) { return 0, fmt.Errorf("malfomred bitmap, key-cardinality slice overruns buffer at %d", pos+2*2*int(size)) } keycard := byteSliceAsUint16Slice(buf[pos : pos+2*2*int(size)]) pos += 2 * 2 * int(size) if !haveRunContainers || size >= noOffsetThreshold { pos += 4 * int(size) } // Allocate slices upfront as number of containers is known if cap(ra.containers) >= int(size) { ra.containers = ra.containers[:size] } else { ra.containers = make([]container, size) } if cap(ra.keys) >= int(size) { ra.keys = ra.keys[:size] } else { ra.keys = make([]uint16, size) } if cap(ra.needCopyOnWrite) >= int(size) { ra.needCopyOnWrite = ra.needCopyOnWrite[:size] } else { ra.needCopyOnWrite = make([]bool, size) } for i := uint32(0); i < size; i++ { key := uint16(keycard[2*i]) card := int(keycard[2*i+1]) + 1 ra.keys[i] = key ra.needCopyOnWrite[i] = true if haveRunContainers && isRunBitmap[i/8]&(1<<(i%8)) != 0 { // run container nr := binary.LittleEndian.Uint16(buf[pos:]) pos += 2 if pos+int(nr)*4 > len(buf) { return 0, fmt.Errorf("malformed bitmap, a run container overruns buffer at %d:%d", pos, pos+int(nr)*4) } nb := runContainer16{ iv: byteSliceAsInterval16Slice(buf[pos : pos+int(nr)*4]), card: int64(card), } pos += int(nr) * 4 ra.containers[i] = &nb } else if card > arrayDefaultMaxSize { // bitmap container nb := bitmapContainer{ cardinality: card, bitmap: byteSliceAsUint64Slice(buf[pos : pos+arrayDefaultMaxSize*2]), } pos += arrayDefaultMaxSize * 2 ra.containers[i] = &nb } else { // array container nb := arrayContainer{ byteSliceAsUint16Slice(buf[pos : pos+card*2]), } pos += card * 2 ra.containers[i] = &nb } } return int64(pos), nil } func (ra *roaringArray) readFrom(stream io.Reader) (int64, error) { pos := 0 var cookie uint32 err := binary.Read(stream, binary.LittleEndian, &cookie) if err != nil { return 0, fmt.Errorf("error in roaringArray.readFrom: could not read initial cookie: %s", err) } pos += 4 var size uint32 haveRunContainers := false var isRun *bitmapContainer if cookie&0x0000FFFF == serialCookie { haveRunContainers = true size = uint32(uint16(cookie>>16) + 1) bytesToRead := (int(size) + 7) / 8 numwords := (bytesToRead + 7) / 8 by := make([]byte, bytesToRead, numwords*8) nr, err := io.ReadFull(stream, by) if err != nil { return 8 + int64(nr), fmt.Errorf("error in readFrom: could not read the "+ "runContainer bit flags of length %v bytes: %v", bytesToRead, err) } pos += bytesToRead by = by[:cap(by)] isRun = newBitmapContainer() for i := 0; i < numwords; i++ { isRun.bitmap[i] = binary.LittleEndian.Uint64(by) by = by[8:] } } else if cookie == serialCookieNoRunContainer { err = binary.Read(stream, binary.LittleEndian, &size) if err != nil { return 0, fmt.Errorf("error in roaringArray.readFrom: when reading size, got: %s", err) } pos += 4 } else { return 0, fmt.Errorf("error in roaringArray.readFrom: did not find expected serialCookie in header") } if size > (1 << 16) { return 0, fmt.Errorf("It is logically impossible to have more than (1<<16) containers.") } // descriptive header keycard := make([]uint16, 2*size, 2*size) err = binary.Read(stream, binary.LittleEndian, keycard) if err != nil { return 0, err } pos += 2 * 2 * int(size) // offset header if !haveRunContainers || size >= noOffsetThreshold { io.CopyN(ioutil.Discard, stream, 4*int64(size)) // we never skip ahead so this data can be ignored pos += 4 * int(size) } for i := uint32(0); i < size; i++ { key := int(keycard[2*i]) card := int(keycard[2*i+1]) + 1 if haveRunContainers && isRun.contains(uint16(i)) { nb := newRunContainer16() nr, err := nb.readFrom(stream) if err != nil { return 0, err } pos += nr ra.appendContainer(uint16(key), nb, false) } else if card > arrayDefaultMaxSize { nb := newBitmapContainer() nr, err := nb.readFrom(stream) if err != nil { return 0, err } nb.cardinality = card pos += nr ra.appendContainer(keycard[2*i], nb, false) } else { nb := newArrayContainerSize(card) nr, err := nb.readFrom(stream) if err != nil { return 0, err } pos += nr ra.appendContainer(keycard[2*i], nb, false) } } return int64(pos), nil } func (ra *roaringArray) hasRunCompression() bool { for _, c := range ra.containers { switch c.(type) { case *runContainer16: return true } } return false } func (ra *roaringArray) writeToMsgpack(stream io.Writer) error { ra.conserz = make([]containerSerz, len(ra.containers)) for i, v := range ra.containers { switch cn := v.(type) { case *bitmapContainer: bts, err := cn.MarshalMsg(nil) if err != nil { return err } ra.conserz[i].t = bitmapContype ra.conserz[i].r = bts case *arrayContainer: bts, err := cn.MarshalMsg(nil) if err != nil { return err } ra.conserz[i].t = arrayContype ra.conserz[i].r = bts case *runContainer16: bts, err := cn.MarshalMsg(nil) if err != nil { return err } ra.conserz[i].t = run16Contype ra.conserz[i].r = bts default: panic(fmt.Errorf("Unrecognized container implementation: %T", cn)) } } w := snappy.NewWriter(stream) err := msgp.Encode(w, ra) ra.conserz = nil return err } func (ra *roaringArray) readFromMsgpack(stream io.Reader) error { r := snappy.NewReader(stream) err := msgp.Decode(r, ra) if err != nil { return err } if len(ra.containers) != len(ra.keys) { ra.containers = make([]container, len(ra.keys)) } for i, v := range ra.conserz { switch v.t { case bitmapContype: c := &bitmapContainer{} _, err = c.UnmarshalMsg(v.r) if err != nil { return err } ra.containers[i] = c case arrayContype: c := &arrayContainer{} _, err = c.UnmarshalMsg(v.r) if err != nil { return err } ra.containers[i] = c case run16Contype: c := &runContainer16{} _, err = c.UnmarshalMsg(v.r) if err != nil { return err } ra.containers[i] = c default: return fmt.Errorf("unrecognized contype serialization code: '%v'", v.t) } } ra.conserz = nil return nil } func (ra *roaringArray) advanceUntil(min uint16, pos int) int { lower := pos + 1 if lower >= len(ra.keys) || ra.keys[lower] >= min { return lower } spansize := 1 for lower+spansize < len(ra.keys) && ra.keys[lower+spansize] < min { spansize *= 2 } var upper int if lower+spansize < len(ra.keys) { upper = lower + spansize } else { upper = len(ra.keys) - 1 } if ra.keys[upper] == min { return upper } if ra.keys[upper] < min { // means // array // has no // item // >= min // pos = array.length; return len(ra.keys) } // we know that the next-smallest span was too small lower += (spansize >> 1) mid := 0 for lower+1 != upper { mid = (lower + upper) >> 1 if ra.keys[mid] == min { return mid } else if ra.keys[mid] < min { lower = mid } else { upper = mid } } return upper } func (ra *roaringArray) markAllAsNeedingCopyOnWrite() { for i := range ra.needCopyOnWrite { ra.needCopyOnWrite[i] = true } } func (ra *roaringArray) needsCopyOnWrite(i int) bool { return ra.needCopyOnWrite[i] } func (ra *roaringArray) setNeedsCopyOnWrite(i int) { ra.needCopyOnWrite[i] = true }
vendor/github.com/RoaringBitmap/roaring/roaringarray.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00022718410764355212, 0.0001712449302431196, 0.0001632369967410341, 0.00017105313600040972, 0.000006892319106555078 ]
{ "id": 12, "code_window": [ "\t\t<div class=\"issue list\">\n", "\t\t\t{{range .Issues}}\n", "\t\t\t\t{{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }}\n", "\t\t\t\t<li class=\"item\">\n", "\t\t\t\t\t<div class=\"ui checkbox issue-checkbox\">\n", "\t\t\t\t\t\t<input type=\"checkbox\" data-issue-id={{.ID}}></input>\n", "\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{if or (and $.CanWriteIssues (not .IsPull)) (and $.CanWritePulls .IsPull)}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 167 }
// CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: http://codemirror.net/LICENSE (function(mod) { if (typeof exports == "object" && typeof module == "object") // CommonJS mod(require("../../lib/codemirror")); else if (typeof define == "function" && define.amd) // AMD define(["../../lib/codemirror"], mod); else // Plain browser env mod(CodeMirror); })(function(CodeMirror) { "use strict"; function wordRegexp(words) { return new RegExp("^((" + words.join(")|(") + "))\\b"); }; var builtinArray = [ "Clamp", "Constructor", "EnforceRange", "Exposed", "ImplicitThis", "Global", "PrimaryGlobal", "LegacyArrayClass", "LegacyUnenumerableNamedProperties", "LenientThis", "NamedConstructor", "NewObject", "NoInterfaceObject", "OverrideBuiltins", "PutForwards", "Replaceable", "SameObject", "TreatNonObjectAsNull", "TreatNullAs", "EmptyString", "Unforgeable", "Unscopeable" ]; var builtins = wordRegexp(builtinArray); var typeArray = [ "unsigned", "short", "long", // UnsignedIntegerType "unrestricted", "float", "double", // UnrestrictedFloatType "boolean", "byte", "octet", // Rest of PrimitiveType "Promise", // PromiseType "ArrayBuffer", "DataView", "Int8Array", "Int16Array", "Int32Array", "Uint8Array", "Uint16Array", "Uint32Array", "Uint8ClampedArray", "Float32Array", "Float64Array", // BufferRelatedType "ByteString", "DOMString", "USVString", "sequence", "object", "RegExp", "Error", "DOMException", "FrozenArray", // Rest of NonAnyType "any", // Rest of SingleType "void" // Rest of ReturnType ]; var types = wordRegexp(typeArray); var keywordArray = [ "attribute", "callback", "const", "deleter", "dictionary", "enum", "getter", "implements", "inherit", "interface", "iterable", "legacycaller", "maplike", "partial", "required", "serializer", "setlike", "setter", "static", "stringifier", "typedef", // ArgumentNameKeyword except // "unrestricted" "optional", "readonly", "or" ]; var keywords = wordRegexp(keywordArray); var atomArray = [ "true", "false", // BooleanLiteral "Infinity", "NaN", // FloatLiteral "null" // Rest of ConstValue ]; var atoms = wordRegexp(atomArray); CodeMirror.registerHelper("hintWords", "webidl", builtinArray.concat(typeArray).concat(keywordArray).concat(atomArray)); var startDefArray = ["callback", "dictionary", "enum", "interface"]; var startDefs = wordRegexp(startDefArray); var endDefArray = ["typedef"]; var endDefs = wordRegexp(endDefArray); var singleOperators = /^[:<=>?]/; var integers = /^-?([1-9][0-9]*|0[Xx][0-9A-Fa-f]+|0[0-7]*)/; var floats = /^-?(([0-9]+\.[0-9]*|[0-9]*\.[0-9]+)([Ee][+-]?[0-9]+)?|[0-9]+[Ee][+-]?[0-9]+)/; var identifiers = /^_?[A-Za-z][0-9A-Z_a-z-]*/; var identifiersEnd = /^_?[A-Za-z][0-9A-Z_a-z-]*(?=\s*;)/; var strings = /^"[^"]*"/; var multilineComments = /^\/\*.*?\*\//; var multilineCommentsStart = /^\/\*.*/; var multilineCommentsEnd = /^.*?\*\//; function readToken(stream, state) { // whitespace if (stream.eatSpace()) return null; // comment if (state.inComment) { if (stream.match(multilineCommentsEnd)) { state.inComment = false; return "comment"; } stream.skipToEnd(); return "comment"; } if (stream.match("//")) { stream.skipToEnd(); return "comment"; } if (stream.match(multilineComments)) return "comment"; if (stream.match(multilineCommentsStart)) { state.inComment = true; return "comment"; } // integer and float if (stream.match(/^-?[0-9\.]/, false)) { if (stream.match(integers) || stream.match(floats)) return "number"; } // string if (stream.match(strings)) return "string"; // identifier if (state.startDef && stream.match(identifiers)) return "def"; if (state.endDef && stream.match(identifiersEnd)) { state.endDef = false; return "def"; } if (stream.match(keywords)) return "keyword"; if (stream.match(types)) { var lastToken = state.lastToken; var nextToken = (stream.match(/^\s*(.+?)\b/, false) || [])[1]; if (lastToken === ":" || lastToken === "implements" || nextToken === "implements" || nextToken === "=") { // Used as identifier return "builtin"; } else { // Used as type return "variable-3"; } } if (stream.match(builtins)) return "builtin"; if (stream.match(atoms)) return "atom"; if (stream.match(identifiers)) return "variable"; // other if (stream.match(singleOperators)) return "operator"; // unrecognized stream.next(); return null; }; CodeMirror.defineMode("webidl", function() { return { startState: function() { return { // Is in multiline comment inComment: false, // Last non-whitespace, matched token lastToken: "", // Next token is a definition startDef: false, // Last token of the statement is a definition endDef: false }; }, token: function(stream, state) { var style = readToken(stream, state); if (style) { var cur = stream.current(); state.lastToken = cur; if (style === "keyword") { state.startDef = startDefs.test(cur); state.endDef = state.endDef || endDefs.test(cur); } else { state.startDef = false; } } return style; } }; }); CodeMirror.defineMIME("text/x-webidl", "webidl"); });
public/vendor/plugins/codemirror/mode/webidl/webidl.js
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017633491370361298, 0.00017147038306575269, 0.0001663230505073443, 0.00017170028877444565, 0.0000030938965664972784 ]
{ "id": 12, "code_window": [ "\t\t<div class=\"issue list\">\n", "\t\t\t{{range .Issues}}\n", "\t\t\t\t{{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }}\n", "\t\t\t\t<li class=\"item\">\n", "\t\t\t\t\t<div class=\"ui checkbox issue-checkbox\">\n", "\t\t\t\t\t\t<input type=\"checkbox\" data-issue-id={{.ID}}></input>\n", "\t\t\t\t\t</div>\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{if or (and $.CanWriteIssues (not .IsPull)) (and $.CanWritePulls .IsPull)}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 167 }
<!doctype html> <title>CodeMirror: JSON-LD mode</title> <meta charset="utf-8"/> <link rel=stylesheet href="../../doc/docs.css"> <link rel="stylesheet" href="../../lib/codemirror.css"> <script src="../../lib/codemirror.js"></script> <script src="../../addon/edit/matchbrackets.js"></script> <script src="../../addon/comment/continuecomment.js"></script> <script src="../../addon/comment/comment.js"></script> <script src="javascript.js"></script> <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style> <div id="nav"> <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"/></a> <ul> <li><a href="../../index.html">Home</a> <li><a href="../../doc/manual.html">Manual</a> <li><a href="https://github.com/codemirror/codemirror">Code</a> </ul> <ul> <li><a href="../index.html">Language modes</a> <li><a class=active href="#">JSON-LD</a> </ul> </div> <article> <h2>JSON-LD mode</h2> <div><textarea id="code" name="code"> { "@context": { "name": "http://schema.org/name", "description": "http://schema.org/description", "image": { "@id": "http://schema.org/image", "@type": "@id" }, "geo": "http://schema.org/geo", "latitude": { "@id": "http://schema.org/latitude", "@type": "xsd:float" }, "longitude": { "@id": "http://schema.org/longitude", "@type": "xsd:float" }, "xsd": "http://www.w3.org/2001/XMLSchema#" }, "name": "The Empire State Building", "description": "The Empire State Building is a 102-story landmark in New York City.", "image": "http://www.civil.usherbrooke.ca/cours/gci215a/empire-state-building.jpg", "geo": { "latitude": "40.75", "longitude": "73.98" } } </textarea></div> <script> var editor = CodeMirror.fromTextArea(document.getElementById("code"), { matchBrackets: true, autoCloseBrackets: true, mode: "application/ld+json", lineWrapping: true }); </script> <p>This is a specialization of the <a href="index.html">JavaScript mode</a>.</p> </article>
public/vendor/plugins/codemirror/mode/javascript/json-ld.html
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017383447266183794, 0.0001712573430268094, 0.0001637548703001812, 0.00017255544662475586, 0.0000031188121738523478 ]
{ "id": 13, "code_window": [ "\t\t\t\t\t<div class=\"ui checkbox issue-checkbox\">\n", "\t\t\t\t\t\t<input type=\"checkbox\" data-issue-id={{.ID}}></input>\n", "\t\t\t\t\t</div>\n", "\t\t\t\t\t<div class=\"ui {{if .IsRead}}black{{else}}green{{end}} label\">#{{.Index}}</div>\n", "\t\t\t\t\t<a class=\"title has-emoji\" href=\"{{$.RepoLink}}/issues/{{.Index}}\">{{.Title}}</a>\n", "\n" ], "labels": [ "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 170 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> <h3>{{.Milestone.Name}}</h3> </div> <div class="column center aligned"> </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> <a class="ui grey button" href="{{.RepoLink}}/milestones/{{.MilestoneID}}/edit">{{.i18n.Tr "repo.milestones.edit"}}</a> <a class="ui green button" href="{{.RepoLink}}/issues/new?milestone={{.MilestoneID}}">{{.i18n.Tr "repo.issues.new"}}</a> </div> {{end}} </div> <div class="ui one column stackable grid"> <div class="column"> {{ $closedDate:= TimeSinceUnix .Milestone.ClosedDateUnix $.Lang }} {{if .IsClosed}} <span class="octicon octicon-clock"></span> {{$.i18n.Tr "repo.milestones.closed" $closedDate|Str2html}} {{else}} <span class="octicon octicon-calendar"></span> {{if .Milestone.DeadlineString}} <span {{if .IsOverdue}}class="overdue"{{end}}>{{.Milestone.DeadlineString}}</span> {{else}} {{$.i18n.Tr "repo.milestones.no_due_date"}} {{end}} {{end}} &nbsp; <b>{{.i18n.Tr "repo.milestones.completeness" .Milestone.Completeness}}</b> </div> </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid"> <div class="six wide column"> <div class="ui basic status buttons"> <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_open"}}</div> <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status">{{.i18n.Tr "repo.issues.action_close"}}</div> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} {{ $timeStr:= TimeSinceUnix .CreatedUnix $.Lang }} <li class="item"> <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.RepoLink}}/issues/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/milestone_issues.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.07584654539823532, 0.007252316921949387, 0.00016626423166599125, 0.0013125422410666943, 0.019946308806538582 ]
{ "id": 13, "code_window": [ "\t\t\t\t\t<div class=\"ui checkbox issue-checkbox\">\n", "\t\t\t\t\t\t<input type=\"checkbox\" data-issue-id={{.ID}}></input>\n", "\t\t\t\t\t</div>\n", "\t\t\t\t\t<div class=\"ui {{if .IsRead}}black{{else}}green{{end}} label\">#{{.Index}}</div>\n", "\t\t\t\t\t<a class=\"title has-emoji\" href=\"{{$.RepoLink}}/issues/{{.Index}}\">{{.Title}}</a>\n", "\n" ], "labels": [ "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 170 }
// Copyright 2019 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. package uploader import ( "fmt" "code.gitea.io/git" "code.gitea.io/gitea/models" ) // DeleteRepoFileOptions holds the repository delete file options type DeleteRepoFileOptions struct { LastCommitID string OldBranch string NewBranch string TreePath string Message string } // DeleteRepoFile deletes a file in the given repository func DeleteRepoFile(repo *models.Repository, doer *models.User, opts *DeleteRepoFileOptions) error { t, err := NewTemporaryUploadRepository(repo) defer t.Close() if err != nil { return err } if err := t.Clone(opts.OldBranch); err != nil { return err } if err := t.SetDefaultIndex(); err != nil { return err } filesInIndex, err := t.LsFiles(opts.TreePath) if err != nil { return fmt.Errorf("UpdateRepoFile: %v", err) } inFilelist := false for _, file := range filesInIndex { if file == opts.TreePath { inFilelist = true } } if !inFilelist { return git.ErrNotExist{RelPath: opts.TreePath} } if err := t.RemoveFilesFromIndex(opts.TreePath); err != nil { return err } // Now write the tree treeHash, err := t.WriteTree() if err != nil { return err } // Now commit the tree commitHash, err := t.CommitTree(doer, treeHash, opts.Message) if err != nil { return err } // Then push this tree to NewBranch if err := t.Push(doer, commitHash, opts.NewBranch); err != nil { return err } // Simulate push event. oldCommitID := opts.LastCommitID if opts.NewBranch != opts.OldBranch { oldCommitID = git.EmptySHA } if err = repo.GetOwner(); err != nil { return fmt.Errorf("GetOwner: %v", err) } err = models.PushUpdate( opts.NewBranch, models.PushUpdateOptions{ PusherID: doer.ID, PusherName: doer.Name, RepoUserName: repo.Owner.Name, RepoName: repo.Name, RefFullName: git.BranchPrefix + opts.NewBranch, OldCommitID: oldCommitID, NewCommitID: commitHash, }, ) if err != nil { return fmt.Errorf("PushUpdate: %v", err) } // FIXME: Should we UpdateRepoIndexer(repo) here? return nil }
modules/uploader/delete.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.0007718005799688399, 0.00023410050198435783, 0.0001685551687842235, 0.00017330155242234468, 0.00017121032578870654 ]
{ "id": 13, "code_window": [ "\t\t\t\t\t<div class=\"ui checkbox issue-checkbox\">\n", "\t\t\t\t\t\t<input type=\"checkbox\" data-issue-id={{.ID}}></input>\n", "\t\t\t\t\t</div>\n", "\t\t\t\t\t<div class=\"ui {{if .IsRead}}black{{else}}green{{end}} label\">#{{.Index}}</div>\n", "\t\t\t\t\t<a class=\"title has-emoji\" href=\"{{$.RepoLink}}/issues/{{.Index}}\">{{.Title}}</a>\n", "\n" ], "labels": [ "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 170 }
package packfile import ( "compress/zlib" "crypto/sha1" "fmt" "io" "gopkg.in/src-d/go-git.v4/plumbing" "gopkg.in/src-d/go-git.v4/plumbing/storer" "gopkg.in/src-d/go-git.v4/utils/binary" ) // Encoder gets the data from the storage and write it into the writer in PACK // format type Encoder struct { selector *deltaSelector w *offsetWriter zw *zlib.Writer hasher plumbing.Hasher useRefDeltas bool } // NewEncoder creates a new packfile encoder using a specific Writer and // EncodedObjectStorer. By default deltas used to generate the packfile will be // OFSDeltaObject. To use Reference deltas, set useRefDeltas to true. func NewEncoder(w io.Writer, s storer.EncodedObjectStorer, useRefDeltas bool) *Encoder { h := plumbing.Hasher{ Hash: sha1.New(), } mw := io.MultiWriter(w, h) ow := newOffsetWriter(mw) zw := zlib.NewWriter(mw) return &Encoder{ selector: newDeltaSelector(s), w: ow, zw: zw, hasher: h, useRefDeltas: useRefDeltas, } } // Encode creates a packfile containing all the objects referenced in // hashes and writes it to the writer in the Encoder. `packWindow` // specifies the size of the sliding window used to compare objects // for delta compression; 0 turns off delta compression entirely. func (e *Encoder) Encode( hashes []plumbing.Hash, packWindow uint, ) (plumbing.Hash, error) { objects, err := e.selector.ObjectsToPack(hashes, packWindow) if err != nil { return plumbing.ZeroHash, err } return e.encode(objects) } func (e *Encoder) encode(objects []*ObjectToPack) (plumbing.Hash, error) { if err := e.head(len(objects)); err != nil { return plumbing.ZeroHash, err } for _, o := range objects { if err := e.entry(o); err != nil { return plumbing.ZeroHash, err } } return e.footer() } func (e *Encoder) head(numEntries int) error { return binary.Write( e.w, signature, int32(VersionSupported), int32(numEntries), ) } func (e *Encoder) entry(o *ObjectToPack) error { if o.WantWrite() { // A cycle exists in this delta chain. This should only occur if a // selected object representation disappeared during writing // (for example due to a concurrent repack) and a different base // was chosen, forcing a cycle. Select something other than a // delta, and write this object. e.selector.restoreOriginal(o) o.BackToOriginal() } if o.IsWritten() { return nil } o.MarkWantWrite() if err := e.writeBaseIfDelta(o); err != nil { return err } // We need to check if we already write that object due a cyclic delta chain if o.IsWritten() { return nil } o.Offset = e.w.Offset() if o.IsDelta() { if err := e.writeDeltaHeader(o); err != nil { return err } } else { if err := e.entryHead(o.Type(), o.Size()); err != nil { return err } } e.zw.Reset(e.w) or, err := o.Object.Reader() if err != nil { return err } _, err = io.Copy(e.zw, or) if err != nil { return err } return e.zw.Close() } func (e *Encoder) writeBaseIfDelta(o *ObjectToPack) error { if o.IsDelta() && !o.Base.IsWritten() { // We must write base first return e.entry(o.Base) } return nil } func (e *Encoder) writeDeltaHeader(o *ObjectToPack) error { // Write offset deltas by default t := plumbing.OFSDeltaObject if e.useRefDeltas { t = plumbing.REFDeltaObject } if err := e.entryHead(t, o.Object.Size()); err != nil { return err } if e.useRefDeltas { return e.writeRefDeltaHeader(o.Base.Hash()) } else { return e.writeOfsDeltaHeader(o) } } func (e *Encoder) writeRefDeltaHeader(base plumbing.Hash) error { return binary.Write(e.w, base) } func (e *Encoder) writeOfsDeltaHeader(o *ObjectToPack) error { // for OFS_DELTA, offset of the base is interpreted as negative offset // relative to the type-byte of the header of the ofs-delta entry. relativeOffset := o.Offset - o.Base.Offset if relativeOffset <= 0 { return fmt.Errorf("bad offset for OFS_DELTA entry: %d", relativeOffset) } return binary.WriteVariableWidthInt(e.w, relativeOffset) } func (e *Encoder) entryHead(typeNum plumbing.ObjectType, size int64) error { t := int64(typeNum) header := []byte{} c := (t << firstLengthBits) | (size & maskFirstLength) size >>= firstLengthBits for { if size == 0 { break } header = append(header, byte(c|maskContinue)) c = size & int64(maskLength) size >>= lengthBits } header = append(header, byte(c)) _, err := e.w.Write(header) return err } func (e *Encoder) footer() (plumbing.Hash, error) { h := e.hasher.Sum() return h, binary.Write(e.w, h) } type offsetWriter struct { w io.Writer offset int64 } func newOffsetWriter(w io.Writer) *offsetWriter { return &offsetWriter{w: w} } func (ow *offsetWriter) Write(p []byte) (n int, err error) { n, err = ow.w.Write(p) ow.offset += int64(n) return n, err } func (ow *offsetWriter) Offset() int64 { return ow.offset }
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/encoder.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00036300960346125066, 0.0001810461253626272, 0.00016242635319940746, 0.00016889104153960943, 0.00004291928780730814 ]
{ "id": 13, "code_window": [ "\t\t\t\t\t<div class=\"ui checkbox issue-checkbox\">\n", "\t\t\t\t\t\t<input type=\"checkbox\" data-issue-id={{.ID}}></input>\n", "\t\t\t\t\t</div>\n", "\t\t\t\t\t<div class=\"ui {{if .IsRead}}black{{else}}green{{end}} label\">#{{.Index}}</div>\n", "\t\t\t\t\t<a class=\"title has-emoji\" href=\"{{$.RepoLink}}/issues/{{.Index}}\">{{.Title}}</a>\n", "\n" ], "labels": [ "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t{{end}}\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "add", "edit_start_line_idx": 170 }
// Copyright 2015 The Gogs Authors. All rights reserved. // Copyright 2017 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. package migrations import ( "bytes" "encoding/json" "fmt" "io/ioutil" "os" "path" "path/filepath" "strings" "time" "github.com/Unknwon/com" "github.com/go-xorm/xorm" gouuid "github.com/satori/go.uuid" ini "gopkg.in/ini.v1" "code.gitea.io/gitea/modules/generate" "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/setting" ) const minDBVersion = 4 // Migration describes on migration from lower version to high version type Migration interface { Description() string Migrate(*xorm.Engine) error } type migration struct { description string migrate func(*xorm.Engine) error } // NewMigration creates a new migration func NewMigration(desc string, fn func(*xorm.Engine) error) Migration { return &migration{desc, fn} } // Description returns the migration's description func (m *migration) Description() string { return m.description } // Migrate executes the migration func (m *migration) Migrate(x *xorm.Engine) error { return m.migrate(x) } // Version describes the version table. Should have only one row with id==1 type Version struct { ID int64 `xorm:"pk autoincr"` Version int64 } func emptyMigration(x *xorm.Engine) error { return nil } // This is a sequence of migrations. Add new migrations to the bottom of the list. // If you want to "retire" a migration, remove it from the top of the list and // update minDBVersion accordingly var migrations = []Migration{ // v0 -> v4: before 0.6.0 -> 0.7.33 NewMigration("fix locale file load panic", fixLocaleFileLoadPanic), // V4 -> V5:v0.6.0 NewMigration("trim action compare URL prefix", trimCommitActionAppURLPrefix), // V5 -> V6:v0.6.3 NewMigration("generate issue-label from issue", issueToIssueLabel), // V6 -> V7:v0.6.4 NewMigration("refactor attachment table", attachmentRefactor), // V7 -> V8:v0.6.4 NewMigration("rename pull request fields", renamePullRequestFields), // V8 -> V9:v0.6.16 NewMigration("clean up migrate repo info", cleanUpMigrateRepoInfo), // V9 -> V10:v0.6.20 NewMigration("generate rands and salt for organizations", generateOrgRandsAndSalt), // V10 -> V11:v0.8.5 NewMigration("convert date to unix timestamp", convertDateToUnix), // V11 -> V12:v0.9.2 NewMigration("convert LDAP UseSSL option to SecurityProtocol", ldapUseSSLToSecurityProtocol), // V12 -> V13:v0.9.37 // v13 -> v14:v0.9.87 NewMigration("set comment updated with created", setCommentUpdatedWithCreated), // v14 -> v15 NewMigration("create user column diff view style", createUserColumnDiffViewStyle), // v15 -> v16 NewMigration("create user column allow create organization", createAllowCreateOrganizationColumn), // V16 -> v17 NewMigration("create repo unit table and add units for all repos", addUnitsToTables), // v17 -> v18 NewMigration("set protect branches updated with created", setProtectedBranchUpdatedWithCreated), // v18 -> v19 NewMigration("add external login user", addExternalLoginUser), // v19 -> v20 NewMigration("generate and migrate Git hooks", generateAndMigrateGitHooks), // v20 -> v21 NewMigration("use new avatar path name for security reason", useNewNameAvatars), // v21 -> v22 NewMigration("rewrite authorized_keys file via new format", useNewPublickeyFormat), // v22 -> v23 NewMigration("generate and migrate wiki Git hooks", generateAndMigrateWikiGitHooks), // v23 -> v24 NewMigration("add user openid table", addUserOpenID), // v24 -> v25 NewMigration("change the key_id and primary_key_id type", changeGPGKeysColumns), // v25 -> v26 NewMigration("add show field in user openid table", addUserOpenIDShow), // v26 -> v27 NewMigration("generate and migrate repo and wiki Git hooks", generateAndMigrateGitHookChains), // v27 -> v28 NewMigration("change mirror interval from hours to time.Duration", convertIntervalToDuration), // v28 -> v29 NewMigration("add field for repo size", addRepoSize), // v29 -> v30 NewMigration("add commit status table", addCommitStatus), // v30 -> 31 NewMigration("add primary key to external login user", addExternalLoginUserPK), // v31 -> 32 NewMigration("add field for login source synchronization", addLoginSourceSyncEnabledColumn), // v32 -> v33 NewMigration("add units for team", addUnitsToRepoTeam), // v33 -> v34 NewMigration("remove columns from action", removeActionColumns), // v34 -> v35 NewMigration("give all units to owner teams", giveAllUnitsToOwnerTeams), // v35 -> v36 NewMigration("adds comment to an action", addCommentIDToAction), // v36 -> v37 NewMigration("regenerate git hooks", regenerateGitHooks36), // v37 -> v38 NewMigration("unescape user full names", unescapeUserFullNames), // v38 -> v39 NewMigration("remove commits and settings unit types", removeCommitsUnitType), // v39 -> v40 NewMigration("add tags to releases and sync existing repositories", releaseAddColumnIsTagAndSyncTags), // v40 -> v41 NewMigration("fix protected branch can push value to false", fixProtectedBranchCanPushValue), // v41 -> v42 NewMigration("remove duplicate unit types", removeDuplicateUnitTypes), // v42 -> v43 NewMigration("empty step", emptyMigration), // v43 -> v44 NewMigration("empty step", emptyMigration), // v44 -> v45 NewMigration("empty step", emptyMigration), // v45 -> v46 NewMigration("remove index column from repo_unit table", removeIndexColumnFromRepoUnitTable), // v46 -> v47 NewMigration("remove organization watch repositories", removeOrganizationWatchRepo), // v47 -> v48 NewMigration("add deleted branches", addDeletedBranch), // v48 -> v49 NewMigration("add repo indexer status", addRepoIndexerStatus), // v49 -> v50 NewMigration("adds time tracking and stopwatches", addTimetracking), // v50 -> v51 NewMigration("migrate protected branch struct", migrateProtectedBranchStruct), // v51 -> v52 NewMigration("add default value to user prohibit_login", addDefaultValueToUserProhibitLogin), // v52 -> v53 NewMigration("add lfs lock table", addLFSLock), // v53 -> v54 NewMigration("add reactions", addReactions), // v54 -> v55 NewMigration("add pull request options", addPullRequestOptions), // v55 -> v56 NewMigration("add writable deploy keys", addModeToDeploKeys), // v56 -> v57 NewMigration("remove is_owner, num_teams columns from org_user", removeIsOwnerColumnFromOrgUser), // v57 -> v58 NewMigration("add closed_unix column for issues", addIssueClosedTime), // v58 -> v59 NewMigration("add label descriptions", addLabelsDescriptions), // v59 -> v60 NewMigration("add merge whitelist for protected branches", addProtectedBranchMergeWhitelist), // v60 -> v61 NewMigration("add is_fsck_enabled column for repos", addFsckEnabledToRepo), // v61 -> v62 NewMigration("add size column for attachments", addSizeToAttachment), // v62 -> v63 NewMigration("add last used passcode column for TOTP", addLastUsedPasscodeTOTP), // v63 -> v64 NewMigration("add language column for user setting", addLanguageSetting), // v64 -> v65 NewMigration("add multiple assignees", addMultipleAssignees), // v65 -> v66 NewMigration("add u2f", addU2FReg), // v66 -> v67 NewMigration("add login source id column for public_key table", addLoginSourceIDToPublicKeyTable), // v67 -> v68 NewMigration("remove stale watches", removeStaleWatches), // v68 -> V69 NewMigration("Reformat and remove incorrect topics", reformatAndRemoveIncorrectTopics), // v69 -> v70 NewMigration("move team units to team_unit table", moveTeamUnitsToTeamUnitTable), // v70 -> v71 NewMigration("add issue_dependencies", addIssueDependencies), // v71 -> v72 NewMigration("protect each scratch token", addScratchHash), // v72 -> v73 NewMigration("add review", addReview), // v73 -> v74 NewMigration("add must_change_password column for users table", addMustChangePassword), // v74 -> v75 NewMigration("add approval whitelists to protected branches", addApprovalWhitelistsToProtectedBranches), // v75 -> v76 NewMigration("clear nonused data which not deleted when user was deleted", clearNonusedData), // v76 -> v77 NewMigration("add pull request rebase with merge commit", addPullRequestRebaseWithMerge), // v77 -> v78 NewMigration("add theme to users", addUserDefaultTheme), // v78 -> v79 NewMigration("rename repo is_bare to repo is_empty", renameRepoIsBareToIsEmpty), // v79 -> v80 NewMigration("add can close issues via commit in any branch", addCanCloseIssuesViaCommitInAnyBranch), // v80 -> v81 NewMigration("add is locked to issues", addIsLockedToIssues), // v81 -> v82 NewMigration("update U2F counter type", changeU2FCounterType), // v82 -> v83 NewMigration("hot fix for wrong release sha1 on release table", fixReleaseSha1OnReleaseTable), } // Migrate database to current version func Migrate(x *xorm.Engine) error { if err := x.Sync(new(Version)); err != nil { return fmt.Errorf("sync: %v", err) } currentVersion := &Version{ID: 1} has, err := x.Get(currentVersion) if err != nil { return fmt.Errorf("get: %v", err) } else if !has { // If the version record does not exist we think // it is a fresh installation and we can skip all migrations. currentVersion.ID = 0 currentVersion.Version = int64(minDBVersion + len(migrations)) if _, err = x.InsertOne(currentVersion); err != nil { return fmt.Errorf("insert: %v", err) } } v := currentVersion.Version if minDBVersion > v { log.Fatal(4, `Gitea no longer supports auto-migration from your previously installed version. Please try to upgrade to a lower version (>= v0.6.0) first, then upgrade to current version.`) return nil } if int(v-minDBVersion) > len(migrations) { // User downgraded Gitea. currentVersion.Version = int64(len(migrations) + minDBVersion) _, err = x.ID(1).Update(currentVersion) return err } for i, m := range migrations[v-minDBVersion:] { log.Info("Migration: %s", m.Description()) if err = m.Migrate(x); err != nil { return fmt.Errorf("do migrate: %v", err) } currentVersion.Version = v + int64(i) + 1 if _, err = x.ID(1).Update(currentVersion); err != nil { return err } } return nil } func dropTableColumns(sess *xorm.Session, tableName string, columnNames ...string) (err error) { if tableName == "" || len(columnNames) == 0 { return nil } switch { case setting.UseSQLite3: log.Warn("Unable to drop columns in SQLite") case setting.UseMySQL, setting.UseTiDB, setting.UsePostgreSQL: cols := "" for _, col := range columnNames { if cols != "" { cols += ", " } cols += "DROP COLUMN `" + col + "`" } if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` %s", tableName, cols)); err != nil { return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err) } case setting.UseMSSQL: cols := "" for _, col := range columnNames { if cols != "" { cols += ", " } cols += "`" + strings.ToLower(col) + "`" } sql := fmt.Sprintf("SELECT Name FROM SYS.DEFAULT_CONSTRAINTS WHERE PARENT_OBJECT_ID = OBJECT_ID('%[1]s') AND PARENT_COLUMN_ID IN (SELECT column_id FROM sys.columns WHERE lower(NAME) IN (%[2]s) AND object_id = OBJECT_ID('%[1]s'))", tableName, strings.Replace(cols, "`", "'", -1)) constraints := make([]string, 0) if err := sess.SQL(sql).Find(&constraints); err != nil { sess.Rollback() return fmt.Errorf("Find constraints: %v", err) } for _, constraint := range constraints { if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` DROP CONSTRAINT `%s`", tableName, constraint)); err != nil { sess.Rollback() return fmt.Errorf("Drop table `%s` constraint `%s`: %v", tableName, constraint, err) } } if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` DROP COLUMN %s", tableName, cols)); err != nil { sess.Rollback() return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err) } return sess.Commit() default: log.Fatal(4, "Unrecognized DB") } return nil } func fixLocaleFileLoadPanic(_ *xorm.Engine) error { cfg, err := ini.Load(setting.CustomConf) if err != nil { return fmt.Errorf("load custom config: %v", err) } cfg.DeleteSection("i18n") if err = cfg.SaveTo(setting.CustomConf); err != nil { return fmt.Errorf("save custom config: %v", err) } setting.Langs = strings.Split(strings.Replace(strings.Join(setting.Langs, ","), "fr-CA", "fr-FR", 1), ",") return nil } func trimCommitActionAppURLPrefix(x *xorm.Engine) error { type PushCommit struct { Sha1 string Message string AuthorEmail string AuthorName string } type PushCommits struct { Len int Commits []*PushCommit CompareURL string `json:"CompareUrl"` } type Action struct { ID int64 `xorm:"pk autoincr"` Content string `xorm:"TEXT"` } results, err := x.Query("SELECT `id`,`content` FROM `action` WHERE `op_type`=?", 5) if err != nil { return fmt.Errorf("select commit actions: %v", err) } sess := x.NewSession() defer sess.Close() if err = sess.Begin(); err != nil { return err } var pushCommits *PushCommits for _, action := range results { actID := com.StrTo(string(action["id"])).MustInt64() if actID == 0 { continue } pushCommits = new(PushCommits) if err = json.Unmarshal(action["content"], pushCommits); err != nil { return fmt.Errorf("unmarshal action content[%d]: %v", actID, err) } infos := strings.Split(pushCommits.CompareURL, "/") if len(infos) <= 4 { continue } pushCommits.CompareURL = strings.Join(infos[len(infos)-4:], "/") p, err := json.Marshal(pushCommits) if err != nil { return fmt.Errorf("marshal action content[%d]: %v", actID, err) } if _, err = sess.Id(actID).Update(&Action{ Content: string(p), }); err != nil { return fmt.Errorf("update action[%d]: %v", actID, err) } } return sess.Commit() } func issueToIssueLabel(x *xorm.Engine) error { type IssueLabel struct { ID int64 `xorm:"pk autoincr"` IssueID int64 `xorm:"UNIQUE(s)"` LabelID int64 `xorm:"UNIQUE(s)"` } issueLabels := make([]*IssueLabel, 0, 50) results, err := x.Query("SELECT `id`,`label_ids` FROM `issue`") if err != nil { if strings.Contains(err.Error(), "no such column") || strings.Contains(err.Error(), "Unknown column") { return nil } return fmt.Errorf("select issues: %v", err) } for _, issue := range results { issueID := com.StrTo(issue["id"]).MustInt64() // Just in case legacy code can have duplicated IDs for same label. mark := make(map[int64]bool) for _, idStr := range strings.Split(string(issue["label_ids"]), "|") { labelID := com.StrTo(strings.TrimPrefix(idStr, "$")).MustInt64() if labelID == 0 || mark[labelID] { continue } mark[labelID] = true issueLabels = append(issueLabels, &IssueLabel{ IssueID: issueID, LabelID: labelID, }) } } sess := x.NewSession() defer sess.Close() if err = sess.Begin(); err != nil { return err } if err = sess.Sync2(new(IssueLabel)); err != nil { return fmt.Errorf("Sync2: %v", err) } else if _, err = sess.Insert(issueLabels); err != nil { return fmt.Errorf("insert issue-labels: %v", err) } return sess.Commit() } func attachmentRefactor(x *xorm.Engine) error { type Attachment struct { ID int64 `xorm:"pk autoincr"` UUID string `xorm:"uuid INDEX"` // For rename purpose. Path string `xorm:"-"` NewPath string `xorm:"-"` } results, err := x.Query("SELECT * FROM `attachment`") if err != nil { return fmt.Errorf("select attachments: %v", err) } attachments := make([]*Attachment, 0, len(results)) for _, attach := range results { if !com.IsExist(string(attach["path"])) { // If the attachment is already missing, there is no point to update it. continue } attachments = append(attachments, &Attachment{ ID: com.StrTo(attach["id"]).MustInt64(), UUID: gouuid.NewV4().String(), Path: string(attach["path"]), }) } sess := x.NewSession() defer sess.Close() if err = sess.Begin(); err != nil { return err } if err = sess.Sync2(new(Attachment)); err != nil { return fmt.Errorf("Sync2: %v", err) } // Note: Roll back for rename can be a dead loop, // so produces a backup file. var buf bytes.Buffer buf.WriteString("# old path -> new path\n") // Update database first because this is where error happens the most often. for _, attach := range attachments { if _, err = sess.Id(attach.ID).Update(attach); err != nil { return err } attach.NewPath = path.Join(setting.AttachmentPath, attach.UUID[0:1], attach.UUID[1:2], attach.UUID) buf.WriteString(attach.Path) buf.WriteString("\t") buf.WriteString(attach.NewPath) buf.WriteString("\n") } // Then rename attachments. isSucceed := true defer func() { if isSucceed { return } dumpPath := path.Join(setting.LogRootPath, "attachment_path.dump") ioutil.WriteFile(dumpPath, buf.Bytes(), 0666) log.Info("Failed to rename some attachments, old and new paths are saved into: %s", dumpPath) }() for _, attach := range attachments { if err = os.MkdirAll(path.Dir(attach.NewPath), os.ModePerm); err != nil { isSucceed = false return err } if err = os.Rename(attach.Path, attach.NewPath); err != nil { isSucceed = false return err } } return sess.Commit() } func renamePullRequestFields(x *xorm.Engine) (err error) { type PullRequest struct { ID int64 `xorm:"pk autoincr"` PullID int64 `xorm:"INDEX"` PullIndex int64 HeadBarcnh string IssueID int64 `xorm:"INDEX"` Index int64 HeadBranch string } if err = x.Sync(new(PullRequest)); err != nil { return fmt.Errorf("sync: %v", err) } results, err := x.Query("SELECT `id`,`pull_id`,`pull_index`,`head_barcnh` FROM `pull_request`") if err != nil { if strings.Contains(err.Error(), "no such column") { return nil } return fmt.Errorf("select pull requests: %v", err) } sess := x.NewSession() defer sess.Close() if err = sess.Begin(); err != nil { return err } var pull *PullRequest for _, pr := range results { pull = &PullRequest{ ID: com.StrTo(pr["id"]).MustInt64(), IssueID: com.StrTo(pr["pull_id"]).MustInt64(), Index: com.StrTo(pr["pull_index"]).MustInt64(), HeadBranch: string(pr["head_barcnh"]), } if pull.Index == 0 { continue } if _, err = sess.Id(pull.ID).Update(pull); err != nil { return err } } return sess.Commit() } func cleanUpMigrateRepoInfo(x *xorm.Engine) (err error) { type ( User struct { ID int64 `xorm:"pk autoincr"` LowerName string } Repository struct { ID int64 `xorm:"pk autoincr"` OwnerID int64 LowerName string } ) repos := make([]*Repository, 0, 25) if err = x.Where("is_mirror=?", false).Find(&repos); err != nil { return fmt.Errorf("select all non-mirror repositories: %v", err) } var user *User for _, repo := range repos { user = &User{ID: repo.OwnerID} has, err := x.Get(user) if err != nil { return fmt.Errorf("get owner of repository[%d - %d]: %v", repo.ID, repo.OwnerID, err) } else if !has { continue } configPath := filepath.Join(setting.RepoRootPath, user.LowerName, repo.LowerName+".git/config") // In case repository file is somehow missing. if !com.IsFile(configPath) { continue } cfg, err := ini.Load(configPath) if err != nil { return fmt.Errorf("open config file: %v", err) } cfg.DeleteSection("remote \"origin\"") if err = cfg.SaveToIndent(configPath, "\t"); err != nil { return fmt.Errorf("save config file: %v", err) } } return nil } func generateOrgRandsAndSalt(x *xorm.Engine) (err error) { type User struct { ID int64 `xorm:"pk autoincr"` Rands string `xorm:"VARCHAR(10)"` Salt string `xorm:"VARCHAR(10)"` } orgs := make([]*User, 0, 10) if err = x.Where("type=1").And("rands=''").Find(&orgs); err != nil { return fmt.Errorf("select all organizations: %v", err) } sess := x.NewSession() defer sess.Close() if err = sess.Begin(); err != nil { return err } for _, org := range orgs { if org.Rands, err = generate.GetRandomString(10); err != nil { return err } if org.Salt, err = generate.GetRandomString(10); err != nil { return err } if _, err = sess.Id(org.ID).Update(org); err != nil { return err } } return sess.Commit() } // TAction defines the struct for migrating table action type TAction struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TAction) TableName() string { return "action" } // TNotice defines the struct for migrating table notice type TNotice struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TNotice) TableName() string { return "notice" } // TComment defines the struct for migrating table comment type TComment struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TComment) TableName() string { return "comment" } // TIssue defines the struct for migrating table issue type TIssue struct { ID int64 `xorm:"pk autoincr"` DeadlineUnix int64 CreatedUnix int64 UpdatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TIssue) TableName() string { return "issue" } // TMilestone defines the struct for migrating table milestone type TMilestone struct { ID int64 `xorm:"pk autoincr"` DeadlineUnix int64 ClosedDateUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TMilestone) TableName() string { return "milestone" } // TAttachment defines the struct for migrating table attachment type TAttachment struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TAttachment) TableName() string { return "attachment" } // TLoginSource defines the struct for migrating table login_source type TLoginSource struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 UpdatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TLoginSource) TableName() string { return "login_source" } // TPull defines the struct for migrating table pull_request type TPull struct { ID int64 `xorm:"pk autoincr"` MergedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TPull) TableName() string { return "pull_request" } // TRelease defines the struct for migrating table release type TRelease struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TRelease) TableName() string { return "release" } // TRepo defines the struct for migrating table repository type TRepo struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 UpdatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TRepo) TableName() string { return "repository" } // TMirror defines the struct for migrating table mirror type TMirror struct { ID int64 `xorm:"pk autoincr"` UpdatedUnix int64 NextUpdateUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TMirror) TableName() string { return "mirror" } // TPublicKey defines the struct for migrating table public_key type TPublicKey struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 UpdatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TPublicKey) TableName() string { return "public_key" } // TDeployKey defines the struct for migrating table deploy_key type TDeployKey struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 UpdatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TDeployKey) TableName() string { return "deploy_key" } // TAccessToken defines the struct for migrating table access_token type TAccessToken struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 UpdatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TAccessToken) TableName() string { return "access_token" } // TUser defines the struct for migrating table user type TUser struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 UpdatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TUser) TableName() string { return "user" } // TWebhook defines the struct for migrating table webhook type TWebhook struct { ID int64 `xorm:"pk autoincr"` CreatedUnix int64 UpdatedUnix int64 } // TableName will be invoked by XORM to customrize the table name func (t *TWebhook) TableName() string { return "webhook" } func convertDateToUnix(x *xorm.Engine) (err error) { log.Info("This migration could take up to minutes, please be patient.") type Bean struct { ID int64 `xorm:"pk autoincr"` Created time.Time Updated time.Time Merged time.Time Deadline time.Time ClosedDate time.Time NextUpdate time.Time } var tables = []struct { name string cols []string bean interface{} }{ {"action", []string{"created"}, new(TAction)}, {"notice", []string{"created"}, new(TNotice)}, {"comment", []string{"created"}, new(TComment)}, {"issue", []string{"deadline", "created", "updated"}, new(TIssue)}, {"milestone", []string{"deadline", "closed_date"}, new(TMilestone)}, {"attachment", []string{"created"}, new(TAttachment)}, {"login_source", []string{"created", "updated"}, new(TLoginSource)}, {"pull_request", []string{"merged"}, new(TPull)}, {"release", []string{"created"}, new(TRelease)}, {"repository", []string{"created", "updated"}, new(TRepo)}, {"mirror", []string{"updated", "next_update"}, new(TMirror)}, {"public_key", []string{"created", "updated"}, new(TPublicKey)}, {"deploy_key", []string{"created", "updated"}, new(TDeployKey)}, {"access_token", []string{"created", "updated"}, new(TAccessToken)}, {"user", []string{"created", "updated"}, new(TUser)}, {"webhook", []string{"created", "updated"}, new(TWebhook)}, } for _, table := range tables { log.Info("Converting table: %s", table.name) if err = x.Sync2(table.bean); err != nil { return fmt.Errorf("Sync [table: %s]: %v", table.name, err) } offset := 0 for { beans := make([]*Bean, 0, 100) if err = x.Table(table.name).Asc("id").Limit(100, offset).Find(&beans); err != nil { return fmt.Errorf("select beans [table: %s, offset: %d]: %v", table.name, offset, err) } log.Trace("Table [%s]: offset: %d, beans: %d", table.name, offset, len(beans)) if len(beans) == 0 { break } offset += 100 baseSQL := "UPDATE `" + table.name + "` SET " for _, bean := range beans { valSQLs := make([]string, 0, len(table.cols)) for _, col := range table.cols { fieldSQL := "" fieldSQL += col + "_unix = " switch col { case "deadline": if bean.Deadline.IsZero() { continue } fieldSQL += com.ToStr(bean.Deadline.Unix()) case "created": fieldSQL += com.ToStr(bean.Created.Unix()) case "updated": fieldSQL += com.ToStr(bean.Updated.Unix()) case "closed_date": fieldSQL += com.ToStr(bean.ClosedDate.Unix()) case "merged": fieldSQL += com.ToStr(bean.Merged.Unix()) case "next_update": fieldSQL += com.ToStr(bean.NextUpdate.Unix()) } valSQLs = append(valSQLs, fieldSQL) } if len(valSQLs) == 0 { continue } if _, err = x.Exec(baseSQL + strings.Join(valSQLs, ",") + " WHERE id = " + com.ToStr(bean.ID)); err != nil { return fmt.Errorf("update bean [table: %s, id: %d]: %v", table.name, bean.ID, err) } } } } return nil }
models/migrations/migrations.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.0032362723723053932, 0.00022467225790023804, 0.00016269063053186983, 0.00017025312990881503, 0.00033545910264365375 ]
{ "id": 14, "code_window": [ "\n", "\t\t\t\t\t{{if .Ref}}\n", "\t\t\t\t\t\t<a class=\"ui label\" href=\"{{$.RepoLink}}/src/branch/{{.Ref}}\">{{.Ref}}</a>\n", "\t\t\t\t\t{{end}}\n", "\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t<a class=\"ui label\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\" style=\"color: {{.ForegroundColor}}; background-color: {{.Color}}\" title=\"{{.Description}}\">{{.Name}}</a>\n", "\t\t\t\t\t{{end}}\n", "\n", "\t\t\t\t\t{{if .NumComments}}\n", "\t\t\t\t\t\t<span class=\"comment ui right\"><i class=\"octicon octicon-comment\"></i> {{.NumComments}}</span>\n", "\t\t\t\t\t{{end}}\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t<a class=\"ui label has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\" style=\"color: {{.ForegroundColor}}; background-color: {{.Color}}\" title=\"{{.Description}}\">{{.Name}}</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 177 }
{{template "base/head" .}} <div class="repository"> {{template "repo/header" .}} <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> {{template "repo/issue/navbar" .}} </div> <div class="column center aligned"> {{template "repo/issue/search" .}} </div> {{if not .Repository.IsArchived}} <div class="column right aligned"> {{if .PageIsIssueList}} <a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a> {{else}} <a class="ui green button {{if not .PullRequestCtx.Allowed}}disabled{{end}}" href="{{if .PullRequestCtx.Allowed}}{{.PullRequestCtx.BaseRepo.Link}}/compare/{{.Repository.DefaultBranch}}...{{.PullRequestCtx.HeadInfo}}{{end}}">{{.i18n.Tr "repo.pulls.new"}}</a> {{end}} </div> {{end}} </div> <div class="ui divider"></div> <div id="issue-filters" class="ui stackable grid"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> <div class="ten wide right aligned column"> <div class="ui secondary filter stackable menu labels"> <!-- Label --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item" style="margin-left: auto"> <span class="text"> {{.i18n.Tr "repo.issues.filter_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.QueryString}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if .IsSelected}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_milestone_no_select"}}</a> {{range .Milestones}} <a class="{{if eq $.MilestoneID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.ID}}&assignee={{$.AssigneeID}}">{{.Name}}</a> {{end}} </div> </div> <!-- Assignee --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> {{range .Assignees}} <a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.ID}}"><img src="{{.RelAvatarLink}}"> {{.Name}}</a> {{end}} </div> </div> {{if .IsSigned}} <!-- Type --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_type"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> <a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.SignedUser.ID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> <a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> <a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> </div> </div> {{end}} <!-- Sort --> <div class="ui dropdown type jump item"> <span class="text"> {{.i18n.Tr "repo.issues.filter_sort"}} <i class="dropdown icon"></i> </span> <div class="menu"> <a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> <a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> <a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> <a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> <a class="{{if eq .SortType "nearduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=nearduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.nearduedate"}}</a> <a class="{{if eq .SortType "farduedate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort=farduedate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.farduedate"}}</a> </div> </div> </div> </div> </div> <div id="issue-actions" class="ui stackable grid hide"> <div class="six wide column"> <div class="ui tiny basic status buttons"> <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> </div> </div> {{/* Ten wide does not cope well and makes the columns stack. This seems to be related to jQuery's hide/show: in fact, switching issue-actions and issue-filters and having this ten wide will show this one correctly, but not the other one. */}} <div class="nine wide right aligned right floated column"> <div class="ui secondary filter stackable menu"> <!-- Action Button --> {{if .IsShowClosed}} <div class="ui green active basic button issue-action" data-action="open" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_open"}}</div> {{else}} <div class="ui red active basic button issue-action" data-action="close" data-url="{{$.RepoLink}}/issues/status" style="margin-left: auto">{{.i18n.Tr "repo.issues.action_close"}}</div> {{end}} <!-- Labels --> <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_label"}} <i class="dropdown icon"></i> </span> <div class="menu"> {{range .Labels}} <div class="item issue-action" data-action="toggle" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/labels"> <span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}} </div> {{end}} </div> </div> <!-- Milestone --> <div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_milestone"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/milestone"> {{.i18n.Tr "repo.issues.action_milestone_no_select"}} </div> {{range .Milestones}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/milestone"> {{.Name}} </div> {{end}} </div> </div> <!-- Assignees --> <div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> <span class="text"> {{.i18n.Tr "repo.issues.action_assignee"}} <i class="dropdown icon"></i> </span> <div class="menu"> <div class="item issue-action" data-element-id="0" data-url="{{$.Link}}/assignee"> {{.i18n.Tr "repo.issues.action_assignee_no_select"}} </div> {{range .Assignees}} <div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee"> <img src="{{.RelAvatarLink}}"> {{.Name}} </div> {{end}} </div> </div> </div> </div> </div> <div class="issue list"> {{range .Issues}} <li class="item"> {{if $.CanWriteIssuesOrPulls}} <div class="ui checkbox issue-checkbox"> <input type="checkbox" data-issue-id={{.ID}}></input> </div> {{end}} <div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> <a class="title has-emoji" href="{{$.Link}}/{{.Index}}">{{.Title}}</a> {{if .Ref}} <a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a> {{end}} {{range .Labels}} <a class="ui label has-emoji" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}" title="{{.Description}}">{{.Name}}</a> {{end}} {{if .NumComments}} <span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> {{end}} {{if .TotalTrackedTime}} <span class="comment ui right"><i class="octicon octicon-clock"></i> {{.TotalTrackedTime | Sec2Time}}</span> {{end}} <p class="desc"> {{ $timeStr := TimeSinceUnix .GetLastEventTimestamp $.Lang }} {{$.i18n.Tr .GetLastEventLabel $timeStr .Poster.HomeLink .Poster.Name | Safe}} {{$tasks := .GetTasks}} {{if gt $tasks 0}} {{$tasksDone := .GetTasksDone}} <span class="checklist"> <span class="octicon octicon-checklist"></span> {{$tasksDone}} / {{$tasks}} <span class="progress-bar"><span class="progress" style="width:calc(100% * {{$tasksDone}} / {{$tasks}});"></span></span> </span> {{end}} {{if .Milestone}} <a class="milestone" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.Milestone.ID}}&assignee={{$.AssigneeID}}"> <span class="octicon octicon-milestone"></span> {{.Milestone.Name}} </a> {{end}} {{if ne .DeadlineUnix 0}} <span class="octicon octicon-calendar"></span> <span{{if .IsOverdue}} class="overdue"{{end}}>{{.DeadlineUnix.FormatShort}}</span> {{end}} {{range .Assignees}} <a class="ui right assignee poping up" href="{{.HomeLink}}" data-content="{{.Name}}" data-variation="inverted" data-position="left center"> <img class="ui avatar image" src="{{.RelAvatarLink}}"> </a> {{end}} </p> </li> {{end}} {{with .Page}} {{if gt .TotalPages 1}} <div class="center page buttons"> <div class="ui borderless pagination menu"> <a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> <i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} </a> {{range .Pages}} {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} <a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> {{$.i18n.Tr "repo.issues.next"}}&nbsp;<i class="icon right arrow"></i> </a> </div> </div> {{end}} {{end}} </div> </div> </div> {{template "base/footer" .}}
templates/repo/issue/list.tmpl
1
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.33455127477645874, 0.020188409835100174, 0.0001651123457122594, 0.0034171720035374165, 0.06450051814317703 ]
{ "id": 14, "code_window": [ "\n", "\t\t\t\t\t{{if .Ref}}\n", "\t\t\t\t\t\t<a class=\"ui label\" href=\"{{$.RepoLink}}/src/branch/{{.Ref}}\">{{.Ref}}</a>\n", "\t\t\t\t\t{{end}}\n", "\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t<a class=\"ui label\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\" style=\"color: {{.ForegroundColor}}; background-color: {{.Color}}\" title=\"{{.Description}}\">{{.Name}}</a>\n", "\t\t\t\t\t{{end}}\n", "\n", "\t\t\t\t\t{{if .NumComments}}\n", "\t\t\t\t\t\t<span class=\"comment ui right\"><i class=\"octicon octicon-comment\"></i> {{.NumComments}}</span>\n", "\t\t\t\t\t{{end}}\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t<a class=\"ui label has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\" style=\"color: {{.ForegroundColor}}; background-color: {{.Color}}\" title=\"{{.Description}}\">{{.Name}}</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 177 }
// Copyright 2016 The Gogs Authors. All rights reserved. // Copyright 2018 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. package models import ( "testing" "github.com/stretchr/testify/assert" ) func Test_parsePostgreSQLHostPort(t *testing.T) { tests := []struct { HostPort string Host string Port string }{ { HostPort: "127.0.0.1:1234", Host: "127.0.0.1", Port: "1234", }, { HostPort: "127.0.0.1", Host: "127.0.0.1", Port: "5432", }, { HostPort: "[::1]:1234", Host: "[::1]", Port: "1234", }, { HostPort: "[::1]", Host: "[::1]", Port: "5432", }, { HostPort: "/tmp/pg.sock:1234", Host: "/tmp/pg.sock", Port: "1234", }, { HostPort: "/tmp/pg.sock", Host: "/tmp/pg.sock", Port: "5432", }, } for _, test := range tests { host, port := parsePostgreSQLHostPort(test.HostPort) assert.Equal(t, test.Host, host) assert.Equal(t, test.Port, port) } } func Test_getPostgreSQLConnectionString(t *testing.T) { tests := []struct { Host string Port string User string Passwd string Name string Param string SSLMode string Output string }{ { Host: "/tmp/pg.sock", Port: "4321", User: "testuser", Passwd: "space space !#$%^^%^```-=?=", Name: "gitea", Param: "", SSLMode: "false", Output: "postgres://testuser:space%20space%20%21%23$%25%5E%5E%25%5E%60%60%60-=%3F=@:5432/giteasslmode=false&host=/tmp/pg.sock", }, { Host: "localhost", Port: "1234", User: "pgsqlusername", Passwd: "I love Gitea!", Name: "gitea", Param: "", SSLMode: "true", Output: "postgres://pgsqlusername:I%20love%20Gitea%21@localhost:5432/giteasslmode=true", }, } for _, test := range tests { connStr := getPostgreSQLConnectionString(test.Host, test.User, test.Passwd, test.Name, test.Param, test.SSLMode) assert.Equal(t, test.Output, connStr) } }
models/models_test.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017513148486614227, 0.0001710187498247251, 0.00016380265878979117, 0.00017213201499544084, 0.0000036332369290903443 ]
{ "id": 14, "code_window": [ "\n", "\t\t\t\t\t{{if .Ref}}\n", "\t\t\t\t\t\t<a class=\"ui label\" href=\"{{$.RepoLink}}/src/branch/{{.Ref}}\">{{.Ref}}</a>\n", "\t\t\t\t\t{{end}}\n", "\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t<a class=\"ui label\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\" style=\"color: {{.ForegroundColor}}; background-color: {{.Color}}\" title=\"{{.Description}}\">{{.Name}}</a>\n", "\t\t\t\t\t{{end}}\n", "\n", "\t\t\t\t\t{{if .NumComments}}\n", "\t\t\t\t\t\t<span class=\"comment ui right\"><i class=\"octicon octicon-comment\"></i> {{.NumComments}}</span>\n", "\t\t\t\t\t{{end}}\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t<a class=\"ui label has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\" style=\"color: {{.ForegroundColor}}; background-color: {{.Color}}\" title=\"{{.Description}}\">{{.Name}}</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 177 }
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build windows // +build go1.3 package svc import "unsafe" const ptrSize = 4 << (^uintptr(0) >> 63) // unsafe.Sizeof(uintptr(0)) but an ideal const // Should be a built-in for unsafe.Pointer? func add(p unsafe.Pointer, x uintptr) unsafe.Pointer { return unsafe.Pointer(uintptr(p) + x) } // funcPC returns the entry PC of the function f. // It assumes that f is a func value. Otherwise the behavior is undefined. func funcPC(f interface{}) uintptr { return **(**uintptr)(add(unsafe.Pointer(&f), ptrSize)) } // from sys_386.s and sys_amd64.s func servicectlhandler(ctl uint32) uintptr func servicemain(argc uint32, argv **uint16) func getServiceMain(r *uintptr) { *r = funcPC(servicemain) }
vendor/golang.org/x/sys/windows/svc/go13.go
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.00017296279838774353, 0.0001673723745625466, 0.00016367384523618966, 0.00016642644186504185, 0.000003560508503142046 ]
{ "id": 14, "code_window": [ "\n", "\t\t\t\t\t{{if .Ref}}\n", "\t\t\t\t\t\t<a class=\"ui label\" href=\"{{$.RepoLink}}/src/branch/{{.Ref}}\">{{.Ref}}</a>\n", "\t\t\t\t\t{{end}}\n", "\t\t\t\t\t{{range .Labels}}\n", "\t\t\t\t\t\t<a class=\"ui label\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\" style=\"color: {{.ForegroundColor}}; background-color: {{.Color}}\" title=\"{{.Description}}\">{{.Name}}</a>\n", "\t\t\t\t\t{{end}}\n", "\n", "\t\t\t\t\t{{if .NumComments}}\n", "\t\t\t\t\t\t<span class=\"comment ui right\"><i class=\"octicon octicon-comment\"></i> {{.NumComments}}</span>\n", "\t\t\t\t\t{{end}}\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t\t\t\t\t<a class=\"ui label has-emoji\" href=\"{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&assignee={{$.AssigneeID}}\" style=\"color: {{.ForegroundColor}}; background-color: {{.Color}}\" title=\"{{.Description}}\">{{.Name}}</a>\n" ], "file_path": "templates/repo/issue/milestone_issues.tmpl", "type": "replace", "edit_start_line_idx": 177 }
The Academic Free License v.2.1 This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: Licensed under the Academic Free License version 2.1 1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: a) to reproduce the Original Work in copies; b) to prepare derivative works ("Derivative Works") based upon the Original Work; c) to distribute copies of the Original Work and Derivative Works to the public; d) to perform the Original Work publicly; and e) to display the Original Work publicly. 2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. 5) This section intentionally omitted. 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. 7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. 9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. 12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. 13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner.
options/license/AFL-2.1
0
https://github.com/go-gitea/gitea/commit/c55bdca562e8fffaaf4028cf9563443027d52970
[ 0.0001841311895987019, 0.00017735722940415144, 0.0001697268453426659, 0.00017777751781977713, 0.000002992643885590951 ]
{ "id": 0, "code_window": [ "go_test(\n", " name = \"go_default_test\",\n", " srcs = [\"policy_test.go\"],\n", " embed = [\":go_default_library\"],\n", " deps = [\n", " \"//staging/src/k8s.io/api/core/v1:go_default_library\",\n", " \"//staging/src/k8s.io/apimachinery/pkg/api/resource:go_default_library\",\n", " ],\n", ")\n", "\n" ], "labels": [ "keep", "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ " \"//pkg/apis/scheduling:go_default_library\",\n" ], "file_path": "pkg/kubelet/qos/BUILD", "type": "add", "edit_start_line_idx": 13 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package qos import ( "strconv" "testing" "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" ) const ( standardMemoryAmount = 8000000000 ) var ( cpuLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceCPU): resource.MustParse("10"), }, }, }, }, }, } memoryLimitCPURequest = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceCPU): resource.MustParse("0"), }, Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), }, }, }, }, }, } zeroMemoryLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("0"), }, }, }, }, }, } noRequestLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{}, }, }, }, } equalRequestLimitCPUMemory = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), }, Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), }, }, }, }, }, } cpuUnlimitedMemoryLimitedWithRequests = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse(strconv.FormatInt(standardMemoryAmount/2, 10)), v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), }, Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), }, }, }, }, }, } requestNoLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse(strconv.FormatInt(standardMemoryAmount-1, 10)), v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), }, }, }, }, }, } ) type oomTest struct { pod *v1.Pod memoryCapacity int64 lowOOMScoreAdj int // The max oom_score_adj score the container should be assigned. highOOMScoreAdj int // The min oom_score_adj score the container should be assigned. } func TestGetContainerOOMScoreAdjust(t *testing.T) { oomTests := []oomTest{ { pod: &cpuLimit, memoryCapacity: 4000000000, lowOOMScoreAdj: 999, highOOMScoreAdj: 999, }, { pod: &memoryLimitCPURequest, memoryCapacity: 8000000000, lowOOMScoreAdj: 999, highOOMScoreAdj: 999, }, { pod: &zeroMemoryLimit, memoryCapacity: 7230457451, lowOOMScoreAdj: 1000, highOOMScoreAdj: 1000, }, { pod: &noRequestLimit, memoryCapacity: 4000000000, lowOOMScoreAdj: 1000, highOOMScoreAdj: 1000, }, { pod: &equalRequestLimitCPUMemory, memoryCapacity: 123456789, lowOOMScoreAdj: -998, highOOMScoreAdj: -998, }, { pod: &cpuUnlimitedMemoryLimitedWithRequests, memoryCapacity: standardMemoryAmount, lowOOMScoreAdj: 495, highOOMScoreAdj: 505, }, { pod: &requestNoLimit, memoryCapacity: standardMemoryAmount, lowOOMScoreAdj: 2, highOOMScoreAdj: 2, }, } for _, test := range oomTests { oomScoreAdj := GetContainerOOMScoreAdjust(test.pod, &test.pod.Spec.Containers[0], test.memoryCapacity) if oomScoreAdj < test.lowOOMScoreAdj || oomScoreAdj > test.highOOMScoreAdj { t.Errorf("oom_score_adj should be between %d and %d, but was %d", test.lowOOMScoreAdj, test.highOOMScoreAdj, oomScoreAdj) } } }
pkg/kubelet/qos/policy_test.go
1
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0034341313876211643, 0.000335558841470629, 0.00015925956540741026, 0.00017403182573616505, 0.0007108838181011379 ]
{ "id": 0, "code_window": [ "go_test(\n", " name = \"go_default_test\",\n", " srcs = [\"policy_test.go\"],\n", " embed = [\":go_default_library\"],\n", " deps = [\n", " \"//staging/src/k8s.io/api/core/v1:go_default_library\",\n", " \"//staging/src/k8s.io/apimachinery/pkg/api/resource:go_default_library\",\n", " ],\n", ")\n", "\n" ], "labels": [ "keep", "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ " \"//pkg/apis/scheduling:go_default_library\",\n" ], "file_path": "pkg/kubelet/qos/BUILD", "type": "add", "edit_start_line_idx": 13 }
/* Copyright 2017 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package extensionsv1beta1 import ( extensionsapiv1beta1 "k8s.io/api/extensions/v1beta1" "k8s.io/apimachinery/pkg/runtime/schema" ) // GroupName is the group name use in this package const GroupName = extensionsapiv1beta1.GroupName // SchemeGroupVersion is group version used to register these objects var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1beta1"} // Resource takes an unqualified resource and returns a Group qualified GroupResource func Resource(resource string) schema.GroupResource { return SchemeGroupVersion.WithResource(resource).GroupResource() } var ( localSchemeBuilder = &extensionsapiv1beta1.SchemeBuilder AddToScheme = localSchemeBuilder.AddToScheme ) func init() { // We only register manually written functions here. The registration of the // generated functions takes place in the generated files. The separation // makes the code compile even when the generated files are missing. localSchemeBuilder.Register(addConversionFuncs) }
staging/src/k8s.io/client-go/scale/scheme/extensionsv1beta1/register.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0032519351225346327, 0.0007868281682021916, 0.00015923695173114538, 0.000172970729181543, 0.0012325685238465667 ]
{ "id": 0, "code_window": [ "go_test(\n", " name = \"go_default_test\",\n", " srcs = [\"policy_test.go\"],\n", " embed = [\":go_default_library\"],\n", " deps = [\n", " \"//staging/src/k8s.io/api/core/v1:go_default_library\",\n", " \"//staging/src/k8s.io/apimachinery/pkg/api/resource:go_default_library\",\n", " ],\n", ")\n", "\n" ], "labels": [ "keep", "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ " \"//pkg/apis/scheduling:go_default_library\",\n" ], "file_path": "pkg/kubelet/qos/BUILD", "type": "add", "edit_start_line_idx": 13 }
/* Copyright The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // Code generated by client-gen. DO NOT EDIT. package fake import ( rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" v1 "k8s.io/code-generator/_examples/MixedCase/clientset/versioned/typed/example/v1" ) type FakeExampleV1 struct { *testing.Fake } func (c *FakeExampleV1) ClusterTestTypes() v1.ClusterTestTypeInterface { return &FakeClusterTestTypes{c} } func (c *FakeExampleV1) TestTypes(namespace string) v1.TestTypeInterface { return &FakeTestTypes{c, namespace} } // RESTClient returns a RESTClient that is used to communicate // with API server by this client implementation. func (c *FakeExampleV1) RESTClient() rest.Interface { var ret *rest.RESTClient return ret }
staging/src/k8s.io/code-generator/_examples/MixedCase/clientset/versioned/typed/example/v1/fake/fake_example_client.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0002448310551699251, 0.0001874561421573162, 0.00016701690037734807, 0.00017737453163135797, 0.00002901824700529687 ]
{ "id": 0, "code_window": [ "go_test(\n", " name = \"go_default_test\",\n", " srcs = [\"policy_test.go\"],\n", " embed = [\":go_default_library\"],\n", " deps = [\n", " \"//staging/src/k8s.io/api/core/v1:go_default_library\",\n", " \"//staging/src/k8s.io/apimachinery/pkg/api/resource:go_default_library\",\n", " ],\n", ")\n", "\n" ], "labels": [ "keep", "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ " \"//pkg/apis/scheduling:go_default_library\",\n" ], "file_path": "pkg/kubelet/qos/BUILD", "type": "add", "edit_start_line_idx": 13 }
/* Copyright 2014 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package routes import ( "net/http" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/sets" "k8s.io/apiserver/pkg/endpoints/handlers/responsewriters" "k8s.io/apiserver/pkg/server/mux" ) // ListedPathProvider is an interface for providing paths that should be reported at /. type ListedPathProvider interface { // ListedPaths is an alphabetically sorted list of paths to be reported at /. ListedPaths() []string } // ListedPathProviders is a convenient way to combine multiple ListedPathProviders type ListedPathProviders []ListedPathProvider // ListedPaths unions and sorts the included paths. func (p ListedPathProviders) ListedPaths() []string { ret := sets.String{} for _, provider := range p { for _, path := range provider.ListedPaths() { ret.Insert(path) } } return ret.List() } // Index provides a webservice for the http root / listing all known paths. type Index struct{} // Install adds the Index webservice to the given mux. func (i Index) Install(pathProvider ListedPathProvider, mux *mux.PathRecorderMux) { handler := IndexLister{StatusCode: http.StatusOK, PathProvider: pathProvider} mux.UnlistedHandle("/", handler) mux.UnlistedHandle("/index.html", handler) } // IndexLister lists the available indexes with the status code provided type IndexLister struct { StatusCode int PathProvider ListedPathProvider } // ServeHTTP serves the available paths. func (i IndexLister) ServeHTTP(w http.ResponseWriter, r *http.Request) { responsewriters.WriteRawJSON(i.StatusCode, metav1.RootPaths{Paths: i.PathProvider.ListedPaths()}, w) }
staging/src/k8s.io/apiserver/pkg/server/routes/index.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0114364642649889, 0.0017794277518987656, 0.00016327854245901108, 0.00017315255536232144, 0.003942472860217094 ]
{ "id": 1, "code_window": [ " ],\n", " importpath = \"k8s.io/kubernetes/pkg/kubelet/qos\",\n", " deps = [\n", " \"//pkg/apis/core/v1/helper/qos:go_default_library\",\n", " \"//staging/src/k8s.io/api/core/v1:go_default_library\",\n", " ],\n", ")\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ " \"//pkg/kubelet/types:go_default_library\",\n" ], "file_path": "pkg/kubelet/qos/BUILD", "type": "add", "edit_start_line_idx": 27 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package qos import ( "strconv" "testing" "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" ) const ( standardMemoryAmount = 8000000000 ) var ( cpuLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceCPU): resource.MustParse("10"), }, }, }, }, }, } memoryLimitCPURequest = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceCPU): resource.MustParse("0"), }, Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), }, }, }, }, }, } zeroMemoryLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("0"), }, }, }, }, }, } noRequestLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{}, }, }, }, } equalRequestLimitCPUMemory = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), }, Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), }, }, }, }, }, } cpuUnlimitedMemoryLimitedWithRequests = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse(strconv.FormatInt(standardMemoryAmount/2, 10)), v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), }, Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), }, }, }, }, }, } requestNoLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse(strconv.FormatInt(standardMemoryAmount-1, 10)), v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), }, }, }, }, }, } ) type oomTest struct { pod *v1.Pod memoryCapacity int64 lowOOMScoreAdj int // The max oom_score_adj score the container should be assigned. highOOMScoreAdj int // The min oom_score_adj score the container should be assigned. } func TestGetContainerOOMScoreAdjust(t *testing.T) { oomTests := []oomTest{ { pod: &cpuLimit, memoryCapacity: 4000000000, lowOOMScoreAdj: 999, highOOMScoreAdj: 999, }, { pod: &memoryLimitCPURequest, memoryCapacity: 8000000000, lowOOMScoreAdj: 999, highOOMScoreAdj: 999, }, { pod: &zeroMemoryLimit, memoryCapacity: 7230457451, lowOOMScoreAdj: 1000, highOOMScoreAdj: 1000, }, { pod: &noRequestLimit, memoryCapacity: 4000000000, lowOOMScoreAdj: 1000, highOOMScoreAdj: 1000, }, { pod: &equalRequestLimitCPUMemory, memoryCapacity: 123456789, lowOOMScoreAdj: -998, highOOMScoreAdj: -998, }, { pod: &cpuUnlimitedMemoryLimitedWithRequests, memoryCapacity: standardMemoryAmount, lowOOMScoreAdj: 495, highOOMScoreAdj: 505, }, { pod: &requestNoLimit, memoryCapacity: standardMemoryAmount, lowOOMScoreAdj: 2, highOOMScoreAdj: 2, }, } for _, test := range oomTests { oomScoreAdj := GetContainerOOMScoreAdjust(test.pod, &test.pod.Spec.Containers[0], test.memoryCapacity) if oomScoreAdj < test.lowOOMScoreAdj || oomScoreAdj > test.highOOMScoreAdj { t.Errorf("oom_score_adj should be between %d and %d, but was %d", test.lowOOMScoreAdj, test.highOOMScoreAdj, oomScoreAdj) } } }
pkg/kubelet/qos/policy_test.go
1
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0008478863746859133, 0.00020485010463744402, 0.0001645815500523895, 0.00017183359886985272, 0.00014756899327039719 ]
{ "id": 1, "code_window": [ " ],\n", " importpath = \"k8s.io/kubernetes/pkg/kubelet/qos\",\n", " deps = [\n", " \"//pkg/apis/core/v1/helper/qos:go_default_library\",\n", " \"//staging/src/k8s.io/api/core/v1:go_default_library\",\n", " ],\n", ")\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ " \"//pkg/kubelet/types:go_default_library\",\n" ], "file_path": "pkg/kubelet/qos/BUILD", "type": "add", "edit_start_line_idx": 27 }
/* Copyright 2017 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package upgrade import ( "bytes" "reflect" "testing" kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm" "k8s.io/kubernetes/cmd/kubeadm/app/phases/upgrade" ) func TestSortedSliceFromStringIntMap(t *testing.T) { var tests = []struct { name string strMap map[string]uint16 expectedSlice []string }{ { name: "the returned slice should be alphabetically sorted based on the string keys in the map", strMap: map[string]uint16{"foo": 1, "bar": 2}, expectedSlice: []string{"bar", "foo"}, }, { name: "the int value should not affect this func", strMap: map[string]uint16{"foo": 2, "bar": 1}, expectedSlice: []string{"bar", "foo"}, }, { name: "slice with 4 keys and different values", strMap: map[string]uint16{"b": 2, "a": 1, "cb": 0, "ca": 1000}, expectedSlice: []string{"a", "b", "ca", "cb"}, }, { name: "this should work for version numbers as well; and the lowest version should come first", strMap: map[string]uint16{"v1.7.0": 1, "v1.6.1": 1, "v1.6.2": 1, "v1.8.0": 1, "v1.8.0-alpha.1": 1}, expectedSlice: []string{"v1.6.1", "v1.6.2", "v1.7.0", "v1.8.0", "v1.8.0-alpha.1"}, }, } for _, rt := range tests { t.Run(rt.name, func(t *testing.T) { actualSlice := sortedSliceFromStringIntMap(rt.strMap) if !reflect.DeepEqual(actualSlice, rt.expectedSlice) { t.Errorf( "failed SortedSliceFromStringIntMap:\n\texpected: %v\n\t actual: %v", rt.expectedSlice, actualSlice, ) } }) } } // TODO Think about modifying this test to be less verbose checking b/c it can be brittle. func TestPrintAvailableUpgrades(t *testing.T) { var tests = []struct { name string upgrades []upgrade.Upgrade buf *bytes.Buffer expectedBytes []byte externalEtcd bool }{ { name: "Up to date", upgrades: []upgrade.Upgrade{}, expectedBytes: []byte(`Awesome, you're up-to-date! Enjoy! `), }, { name: "Up to date external etcd", externalEtcd: true, upgrades: []upgrade.Upgrade{}, expectedBytes: []byte(`Awesome, you're up-to-date! Enjoy! `), }, { name: "Patch version available", upgrades: []upgrade.Upgrade{ { Description: "version in the v1.8 series", Before: upgrade.ClusterState{ KubeVersion: "v1.8.1", KubeletVersions: map[string]uint16{ "v1.8.1": 1, }, KubeadmVersion: "v1.8.2", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, After: upgrade.ClusterState{ KubeVersion: "v1.8.3", KubeadmVersion: "v1.8.3", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, }, }, expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.8.1 v1.8.3 Upgrade to the latest version in the v1.8 series: COMPONENT CURRENT AVAILABLE API Server v1.8.1 v1.8.3 Controller Manager v1.8.1 v1.8.3 Scheduler v1.8.1 v1.8.3 Kube Proxy v1.8.1 v1.8.3 Kube DNS 1.14.5 1.14.5 Etcd 3.0.17 3.0.17 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.8.3 Note: Before you can perform this upgrade, you have to update kubeadm to v1.8.3. _____________________________________________________________________ `), }, { name: "minor version available", upgrades: []upgrade.Upgrade{ { Description: "stable version", Before: upgrade.ClusterState{ KubeVersion: "v1.8.3", KubeletVersions: map[string]uint16{ "v1.8.3": 1, }, KubeadmVersion: "v1.9.0", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, After: upgrade.ClusterState{ KubeVersion: "v1.9.0", KubeadmVersion: "v1.9.0", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.13", EtcdVersion: "3.1.12", }, }, }, expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.8.3 v1.9.0 Upgrade to the latest stable version: COMPONENT CURRENT AVAILABLE API Server v1.8.3 v1.9.0 Controller Manager v1.8.3 v1.9.0 Scheduler v1.8.3 v1.9.0 Kube Proxy v1.8.3 v1.9.0 Kube DNS 1.14.5 1.14.13 Etcd 3.0.17 3.1.12 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.9.0 _____________________________________________________________________ `), }, { name: "patch and minor version available", upgrades: []upgrade.Upgrade{ { Description: "version in the v1.8 series", Before: upgrade.ClusterState{ KubeVersion: "v1.8.3", KubeletVersions: map[string]uint16{ "v1.8.3": 1, }, KubeadmVersion: "v1.8.3", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, After: upgrade.ClusterState{ KubeVersion: "v1.8.5", KubeadmVersion: "v1.8.3", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, }, { Description: "stable version", Before: upgrade.ClusterState{ KubeVersion: "v1.8.3", KubeletVersions: map[string]uint16{ "v1.8.3": 1, }, KubeadmVersion: "v1.8.3", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, After: upgrade.ClusterState{ KubeVersion: "v1.9.0", KubeadmVersion: "v1.9.0", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.13", EtcdVersion: "3.1.12", }, }, }, expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.8.3 v1.8.5 Upgrade to the latest version in the v1.8 series: COMPONENT CURRENT AVAILABLE API Server v1.8.3 v1.8.5 Controller Manager v1.8.3 v1.8.5 Scheduler v1.8.3 v1.8.5 Kube Proxy v1.8.3 v1.8.5 Kube DNS 1.14.5 1.14.5 Etcd 3.0.17 3.0.17 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.8.5 _____________________________________________________________________ Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.8.3 v1.9.0 Upgrade to the latest stable version: COMPONENT CURRENT AVAILABLE API Server v1.8.3 v1.9.0 Controller Manager v1.8.3 v1.9.0 Scheduler v1.8.3 v1.9.0 Kube Proxy v1.8.3 v1.9.0 Kube DNS 1.14.5 1.14.13 Etcd 3.0.17 3.1.12 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.9.0 Note: Before you can perform this upgrade, you have to update kubeadm to v1.9.0. _____________________________________________________________________ `), }, { name: "experimental version available", upgrades: []upgrade.Upgrade{ { Description: "experimental version", Before: upgrade.ClusterState{ KubeVersion: "v1.8.5", KubeletVersions: map[string]uint16{ "v1.8.5": 1, }, KubeadmVersion: "v1.8.5", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, After: upgrade.ClusterState{ KubeVersion: "v1.9.0-beta.1", KubeadmVersion: "v1.9.0-beta.1", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.13", EtcdVersion: "3.1.12", }, }, }, expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.8.5 v1.9.0-beta.1 Upgrade to the latest experimental version: COMPONENT CURRENT AVAILABLE API Server v1.8.5 v1.9.0-beta.1 Controller Manager v1.8.5 v1.9.0-beta.1 Scheduler v1.8.5 v1.9.0-beta.1 Kube Proxy v1.8.5 v1.9.0-beta.1 Kube DNS 1.14.5 1.14.13 Etcd 3.0.17 3.1.12 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.9.0-beta.1 --allow-experimental-upgrades Note: Before you can perform this upgrade, you have to update kubeadm to v1.9.0-beta.1. _____________________________________________________________________ `), }, { name: "release candidate available", upgrades: []upgrade.Upgrade{ { Description: "release candidate version", Before: upgrade.ClusterState{ KubeVersion: "v1.8.5", KubeletVersions: map[string]uint16{ "v1.8.5": 1, }, KubeadmVersion: "v1.8.5", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, After: upgrade.ClusterState{ KubeVersion: "v1.9.0-rc.1", KubeadmVersion: "v1.9.0-rc.1", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.13", EtcdVersion: "3.1.12", }, }, }, expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.8.5 v1.9.0-rc.1 Upgrade to the latest release candidate version: COMPONENT CURRENT AVAILABLE API Server v1.8.5 v1.9.0-rc.1 Controller Manager v1.8.5 v1.9.0-rc.1 Scheduler v1.8.5 v1.9.0-rc.1 Kube Proxy v1.8.5 v1.9.0-rc.1 Kube DNS 1.14.5 1.14.13 Etcd 3.0.17 3.1.12 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.9.0-rc.1 --allow-release-candidate-upgrades Note: Before you can perform this upgrade, you have to update kubeadm to v1.9.0-rc.1. _____________________________________________________________________ `), }, { name: "multiple kubelet versions", upgrades: []upgrade.Upgrade{ { Description: "version in the v1.9 series", Before: upgrade.ClusterState{ KubeVersion: "v1.9.2", KubeletVersions: map[string]uint16{ "v1.9.2": 1, "v1.9.3": 2, }, KubeadmVersion: "v1.9.2", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, After: upgrade.ClusterState{ KubeVersion: "v1.9.3", KubeadmVersion: "v1.9.3", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.8", EtcdVersion: "3.1.12", }, }, }, expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.9.2 v1.9.3 2 x v1.9.3 v1.9.3 Upgrade to the latest version in the v1.9 series: COMPONENT CURRENT AVAILABLE API Server v1.9.2 v1.9.3 Controller Manager v1.9.2 v1.9.3 Scheduler v1.9.2 v1.9.3 Kube Proxy v1.9.2 v1.9.3 Kube DNS 1.14.5 1.14.8 Etcd 3.0.17 3.1.12 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.9.3 Note: Before you can perform this upgrade, you have to update kubeadm to v1.9.3. _____________________________________________________________________ `), }, { name: "external etcd upgrade available", upgrades: []upgrade.Upgrade{ { Description: "version in the v1.9 series", Before: upgrade.ClusterState{ KubeVersion: "v1.9.2", KubeletVersions: map[string]uint16{ "v1.9.2": 1, }, KubeadmVersion: "v1.9.2", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.5", EtcdVersion: "3.0.17", }, After: upgrade.ClusterState{ KubeVersion: "v1.9.3", KubeadmVersion: "v1.9.3", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.8", EtcdVersion: "3.1.12", }, }, }, externalEtcd: true, expectedBytes: []byte(`External components that should be upgraded manually before you upgrade the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Etcd 3.0.17 3.1.12 Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.9.2 v1.9.3 Upgrade to the latest version in the v1.9 series: COMPONENT CURRENT AVAILABLE API Server v1.9.2 v1.9.3 Controller Manager v1.9.2 v1.9.3 Scheduler v1.9.2 v1.9.3 Kube Proxy v1.9.2 v1.9.3 Kube DNS 1.14.5 1.14.8 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.9.3 Note: Before you can perform this upgrade, you have to update kubeadm to v1.9.3. _____________________________________________________________________ `), }, { name: "kubedns to coredns", upgrades: []upgrade.Upgrade{ { Description: "kubedns to coredns", Before: upgrade.ClusterState{ KubeVersion: "v1.10.2", KubeletVersions: map[string]uint16{ "v1.10.2": 1, }, KubeadmVersion: "v1.11.0", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.7", EtcdVersion: "3.1.11", }, After: upgrade.ClusterState{ KubeVersion: "v1.11.0", KubeadmVersion: "v1.11.0", DNSType: kubeadmapi.CoreDNS, DNSVersion: "1.0.6", EtcdVersion: "3.2.18", }, }, }, expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.10.2 v1.11.0 Upgrade to the latest kubedns to coredns: COMPONENT CURRENT AVAILABLE API Server v1.10.2 v1.11.0 Controller Manager v1.10.2 v1.11.0 Scheduler v1.10.2 v1.11.0 Kube Proxy v1.10.2 v1.11.0 CoreDNS 1.0.6 Kube DNS 1.14.7 Etcd 3.1.11 3.2.18 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.11.0 _____________________________________________________________________ `), }, { name: "coredns", upgrades: []upgrade.Upgrade{ { Description: "coredns", Before: upgrade.ClusterState{ KubeVersion: "v1.10.2", KubeletVersions: map[string]uint16{ "v1.10.2": 1, }, KubeadmVersion: "v1.11.0", DNSType: kubeadmapi.CoreDNS, DNSVersion: "1.0.5", EtcdVersion: "3.1.11", }, After: upgrade.ClusterState{ KubeVersion: "v1.11.0", KubeadmVersion: "v1.11.0", DNSType: kubeadmapi.CoreDNS, DNSVersion: "1.0.6", EtcdVersion: "3.2.18", }, }, }, expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.10.2 v1.11.0 Upgrade to the latest coredns: COMPONENT CURRENT AVAILABLE API Server v1.10.2 v1.11.0 Controller Manager v1.10.2 v1.11.0 Scheduler v1.10.2 v1.11.0 Kube Proxy v1.10.2 v1.11.0 CoreDNS 1.0.5 1.0.6 Etcd 3.1.11 3.2.18 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.11.0 _____________________________________________________________________ `), }, { name: "coredns to kubedns", upgrades: []upgrade.Upgrade{ { Description: "coredns to kubedns", Before: upgrade.ClusterState{ KubeVersion: "v1.10.2", KubeletVersions: map[string]uint16{ "v1.10.2": 1, }, KubeadmVersion: "v1.11.0", DNSType: kubeadmapi.CoreDNS, DNSVersion: "1.0.6", EtcdVersion: "3.1.11", }, After: upgrade.ClusterState{ KubeVersion: "v1.11.0", KubeadmVersion: "v1.11.0", DNSType: kubeadmapi.KubeDNS, DNSVersion: "1.14.9", EtcdVersion: "3.2.18", }, }, }, expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply': COMPONENT CURRENT AVAILABLE Kubelet 1 x v1.10.2 v1.11.0 Upgrade to the latest coredns to kubedns: COMPONENT CURRENT AVAILABLE API Server v1.10.2 v1.11.0 Controller Manager v1.10.2 v1.11.0 Scheduler v1.10.2 v1.11.0 Kube Proxy v1.10.2 v1.11.0 CoreDNS 1.0.6 Kube DNS 1.14.9 Etcd 3.1.11 3.2.18 You can now apply the upgrade by executing the following command: kubeadm upgrade apply v1.11.0 _____________________________________________________________________ `), }, } for _, rt := range tests { t.Run(rt.name, func(t *testing.T) { rt.buf = bytes.NewBufferString("") printAvailableUpgrades(rt.upgrades, rt.buf, rt.externalEtcd) actualBytes := rt.buf.Bytes() if !bytes.Equal(actualBytes, rt.expectedBytes) { t.Errorf( "failed PrintAvailableUpgrades:\n\texpected: %q\n\t actual: %q", string(rt.expectedBytes), string(actualBytes), ) } }) } }
cmd/kubeadm/app/cmd/upgrade/plan_test.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0006072167307138443, 0.0001872497086878866, 0.00015856030222494155, 0.00016970239812508225, 0.00006090277747716755 ]
{ "id": 1, "code_window": [ " ],\n", " importpath = \"k8s.io/kubernetes/pkg/kubelet/qos\",\n", " deps = [\n", " \"//pkg/apis/core/v1/helper/qos:go_default_library\",\n", " \"//staging/src/k8s.io/api/core/v1:go_default_library\",\n", " ],\n", ")\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ " \"//pkg/kubelet/types:go_default_library\",\n" ], "file_path": "pkg/kubelet/qos/BUILD", "type": "add", "edit_start_line_idx": 27 }
syntax = "proto3"; package etcdserverpb; import "gogoproto/gogo.proto"; import "etcdserver.proto"; import "rpc.proto"; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.goproto_getters_all) = false; message RequestHeader { uint64 ID = 1; // username is a username that is associated with an auth token of gRPC connection string username = 2; // auth_revision is a revision number of auth.authStore. It is not related to mvcc uint64 auth_revision = 3; } // An InternalRaftRequest is the union of all requests which can be // sent via raft. message InternalRaftRequest { RequestHeader header = 100; uint64 ID = 1; Request v2 = 2; RangeRequest range = 3; PutRequest put = 4; DeleteRangeRequest delete_range = 5; TxnRequest txn = 6; CompactionRequest compaction = 7; LeaseGrantRequest lease_grant = 8; LeaseRevokeRequest lease_revoke = 9; AlarmRequest alarm = 10; AuthEnableRequest auth_enable = 1000; AuthDisableRequest auth_disable = 1011; InternalAuthenticateRequest authenticate = 1012; AuthUserAddRequest auth_user_add = 1100; AuthUserDeleteRequest auth_user_delete = 1101; AuthUserGetRequest auth_user_get = 1102; AuthUserChangePasswordRequest auth_user_change_password = 1103; AuthUserGrantRoleRequest auth_user_grant_role = 1104; AuthUserRevokeRoleRequest auth_user_revoke_role = 1105; AuthUserListRequest auth_user_list = 1106; AuthRoleListRequest auth_role_list = 1107; AuthRoleAddRequest auth_role_add = 1200; AuthRoleDeleteRequest auth_role_delete = 1201; AuthRoleGetRequest auth_role_get = 1202; AuthRoleGrantPermissionRequest auth_role_grant_permission = 1203; AuthRoleRevokePermissionRequest auth_role_revoke_permission = 1204; } message EmptyResponse { } // What is the difference between AuthenticateRequest (defined in rpc.proto) and InternalAuthenticateRequest? // InternalAuthenticateRequest has a member that is filled by etcdserver and shouldn't be user-facing. // For avoiding misusage the field, we have an internal version of AuthenticateRequest. message InternalAuthenticateRequest { string name = 1; string password = 2; // simple_token is generated in API layer (etcdserver/v3_server.go) string simple_token = 3; }
vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/raft_internal.proto
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.00037742272252216935, 0.00020043973927386105, 0.00016723443695809692, 0.00017009417933877558, 0.00006805027078371495 ]
{ "id": 1, "code_window": [ " ],\n", " importpath = \"k8s.io/kubernetes/pkg/kubelet/qos\",\n", " deps = [\n", " \"//pkg/apis/core/v1/helper/qos:go_default_library\",\n", " \"//staging/src/k8s.io/api/core/v1:go_default_library\",\n", " ],\n", ")\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ " \"//pkg/kubelet/types:go_default_library\",\n" ], "file_path": "pkg/kubelet/qos/BUILD", "type": "add", "edit_start_line_idx": 27 }
approvers: - thockin - dchen1107 - matchstick - freehan reviewers: - sig-network-reviewers labels: - sig/network
pkg/kubelet/network/OWNERS
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.00017416792979929596, 0.00017416792979929596, 0.00017416792979929596, 0.00017416792979929596, 0 ]
{ "id": 2, "code_window": [ "*/\n", "\n", "package qos\n", "\n", "import (\n", "\t\"k8s.io/api/core/v1\"\n", "\tv1qos \"k8s.io/kubernetes/pkg/apis/core/v1/helper/qos\"\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\tv1 \"k8s.io/api/core/v1\"\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "replace", "edit_start_line_idx": 19 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package qos import ( "k8s.io/api/core/v1" v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos" ) const ( // PodInfraOOMAdj is very docker specific. For arbitrary runtime, it may not make // sense to set sandbox level oom score, e.g. a sandbox could only be a namespace // without a process. // TODO: Handle infra container oom score adj in a runtime agnostic way. PodInfraOOMAdj int = -998 KubeletOOMScoreAdj int = -999 DockerOOMScoreAdj int = -999 KubeProxyOOMScoreAdj int = -999 guaranteedOOMScoreAdj int = -998 besteffortOOMScoreAdj int = 1000 ) // GetContainerOOMAdjust returns the amount by which the OOM score of all processes in the // container should be adjusted. // The OOM score of a process is the percentage of memory it consumes // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000 // and 1000. Containers with higher OOM scores are killed if the system runs out of memory. // See https://lwn.net/Articles/391222/ for more information. func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int { switch v1qos.GetPodQOS(pod) { case v1.PodQOSGuaranteed: // Guaranteed containers should be the last to get killed. return guaranteedOOMScoreAdj case v1.PodQOSBestEffort: return besteffortOOMScoreAdj } // Burstable containers are a middle tier, between Guaranteed and Best-Effort. Ideally, // we want to protect Burstable containers that consume less memory than requested. // The formula below is a heuristic. A container requesting for 10% of a system's // memory will have an OOM score adjust of 900. If a process in container Y // uses over 10% of memory, its OOM score will be 1000. The idea is that containers // which use more than their request will have an OOM score of 1000 and will be prime // targets for OOM kills. // Note that this is a heuristic, it won't work if a container has many small processes. memoryRequest := container.Resources.Requests.Memory().Value() oomScoreAdjust := 1000 - (1000*memoryRequest)/memoryCapacity // A guaranteed pod using 100% of memory can have an OOM score of 10. Ensure // that burstable pods have a higher OOM score adjustment. if int(oomScoreAdjust) < (1000 + guaranteedOOMScoreAdj) { return (1000 + guaranteedOOMScoreAdj) } // Give burstable pods a higher chance of survival over besteffort pods. if int(oomScoreAdjust) == besteffortOOMScoreAdj { return int(oomScoreAdjust - 1) } return int(oomScoreAdjust) }
pkg/kubelet/qos/policy.go
1
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.007695584557950497, 0.0015524310292676091, 0.000169089762493968, 0.00017437849601265043, 0.0025838741566985846 ]
{ "id": 2, "code_window": [ "*/\n", "\n", "package qos\n", "\n", "import (\n", "\t\"k8s.io/api/core/v1\"\n", "\tv1qos \"k8s.io/kubernetes/pkg/apis/core/v1/helper/qos\"\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\tv1 \"k8s.io/api/core/v1\"\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "replace", "edit_start_line_idx": 19 }
/* Copyright 2016 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package common import ( "fmt" "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/uuid" utilversion "k8s.io/apimachinery/pkg/util/version" "k8s.io/kubernetes/test/e2e/framework" imageutils "k8s.io/kubernetes/test/utils/image" . "github.com/onsi/ginkgo" ) var ( hostIPVersion = utilversion.MustParseSemantic("v1.8.0") podUIDVersion = utilversion.MustParseSemantic("v1.8.0") ) var _ = Describe("[sig-node] Downward API", func() { f := framework.NewDefaultFramework("downward-api") /* Release : v1.9 Testname: DownwardAPI, environment for name, namespace and ip Description: Downward API MUST expose Pod and Container fields as environment variables. Specify Pod Name, namespace and IP as environment variable in the Pod Spec are visible at runtime in the container. */ framework.ConformanceIt("should provide pod name, namespace and IP address as env vars [NodeConformance]", func() { podName := "downward-api-" + string(uuid.NewUUID()) env := []v1.EnvVar{ { Name: "POD_NAME", ValueFrom: &v1.EnvVarSource{ FieldRef: &v1.ObjectFieldSelector{ APIVersion: "v1", FieldPath: "metadata.name", }, }, }, { Name: "POD_NAMESPACE", ValueFrom: &v1.EnvVarSource{ FieldRef: &v1.ObjectFieldSelector{ APIVersion: "v1", FieldPath: "metadata.namespace", }, }, }, { Name: "POD_IP", ValueFrom: &v1.EnvVarSource{ FieldRef: &v1.ObjectFieldSelector{ APIVersion: "v1", FieldPath: "status.podIP", }, }, }, } expectations := []string{ fmt.Sprintf("POD_NAME=%v", podName), fmt.Sprintf("POD_NAMESPACE=%v", f.Namespace.Name), "POD_IP=(?:\\d+)\\.(?:\\d+)\\.(?:\\d+)\\.(?:\\d+)", } testDownwardAPI(f, podName, env, expectations) }) /* Release : v1.9 Testname: DownwardAPI, environment for host ip Description: Downward API MUST expose Pod and Container fields as environment variables. Specify host IP as environment variable in the Pod Spec are visible at runtime in the container. */ framework.ConformanceIt("should provide host IP as an env var [NodeConformance]", func() { framework.SkipUnlessServerVersionGTE(hostIPVersion, f.ClientSet.Discovery()) podName := "downward-api-" + string(uuid.NewUUID()) env := []v1.EnvVar{ { Name: "HOST_IP", ValueFrom: &v1.EnvVarSource{ FieldRef: &v1.ObjectFieldSelector{ APIVersion: "v1", FieldPath: "status.hostIP", }, }, }, } expectations := []string{ "HOST_IP=(?:\\d+)\\.(?:\\d+)\\.(?:\\d+)\\.(?:\\d+)", } testDownwardAPI(f, podName, env, expectations) }) /* Release : v1.9 Testname: DownwardAPI, environment for CPU and memory limits and requests Description: Downward API MUST expose CPU request and Memory request set through environment variables at runtime in the container. */ framework.ConformanceIt("should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance]", func() { podName := "downward-api-" + string(uuid.NewUUID()) env := []v1.EnvVar{ { Name: "CPU_LIMIT", ValueFrom: &v1.EnvVarSource{ ResourceFieldRef: &v1.ResourceFieldSelector{ Resource: "limits.cpu", }, }, }, { Name: "MEMORY_LIMIT", ValueFrom: &v1.EnvVarSource{ ResourceFieldRef: &v1.ResourceFieldSelector{ Resource: "limits.memory", }, }, }, { Name: "CPU_REQUEST", ValueFrom: &v1.EnvVarSource{ ResourceFieldRef: &v1.ResourceFieldSelector{ Resource: "requests.cpu", }, }, }, { Name: "MEMORY_REQUEST", ValueFrom: &v1.EnvVarSource{ ResourceFieldRef: &v1.ResourceFieldSelector{ Resource: "requests.memory", }, }, }, } expectations := []string{ "CPU_LIMIT=2", "MEMORY_LIMIT=67108864", "CPU_REQUEST=1", "MEMORY_REQUEST=33554432", } testDownwardAPI(f, podName, env, expectations) }) /* Release : v1.9 Testname: DownwardAPI, environment for default CPU and memory limits and requests Description: Downward API MUST expose CPU request and Memory limits set through environment variables at runtime in the container. */ framework.ConformanceIt("should provide default limits.cpu/memory from node allocatable [NodeConformance]", func() { podName := "downward-api-" + string(uuid.NewUUID()) env := []v1.EnvVar{ { Name: "CPU_LIMIT", ValueFrom: &v1.EnvVarSource{ ResourceFieldRef: &v1.ResourceFieldSelector{ Resource: "limits.cpu", }, }, }, { Name: "MEMORY_LIMIT", ValueFrom: &v1.EnvVarSource{ ResourceFieldRef: &v1.ResourceFieldSelector{ Resource: "limits.memory", }, }, }, } expectations := []string{ "CPU_LIMIT=[1-9]", "MEMORY_LIMIT=[1-9]", } pod := &v1.Pod{ ObjectMeta: metav1.ObjectMeta{ Name: podName, Labels: map[string]string{"name": podName}, }, Spec: v1.PodSpec{ Containers: []v1.Container{ { Name: "dapi-container", Image: imageutils.GetE2EImage(imageutils.BusyBox), Command: []string{"sh", "-c", "env"}, Env: env, }, }, RestartPolicy: v1.RestartPolicyNever, }, } testDownwardAPIUsingPod(f, pod, env, expectations) }) /* Release : v1.9 Testname: DownwardAPI, environment for Pod UID Description: Downward API MUST expose Pod UID set through environment variables at runtime in the container. */ framework.ConformanceIt("should provide pod UID as env vars [NodeConformance]", func() { framework.SkipUnlessServerVersionGTE(podUIDVersion, f.ClientSet.Discovery()) podName := "downward-api-" + string(uuid.NewUUID()) env := []v1.EnvVar{ { Name: "POD_UID", ValueFrom: &v1.EnvVarSource{ FieldRef: &v1.ObjectFieldSelector{ APIVersion: "v1", FieldPath: "metadata.uid", }, }, }, } expectations := []string{ "POD_UID=[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}", } testDownwardAPI(f, podName, env, expectations) }) }) var _ = framework.KubeDescribe("Downward API [Serial] [Disruptive] [NodeFeature:EphemeralStorage]", func() { f := framework.NewDefaultFramework("downward-api") Context("Downward API tests for local ephemeral storage", func() { BeforeEach(func() { framework.SkipUnlessLocalEphemeralStorageEnabled() }) It("should provide container's limits.ephemeral-storage and requests.ephemeral-storage as env vars", func() { podName := "downward-api-" + string(uuid.NewUUID()) env := []v1.EnvVar{ { Name: "EPHEMERAL_STORAGE_LIMIT", ValueFrom: &v1.EnvVarSource{ ResourceFieldRef: &v1.ResourceFieldSelector{ Resource: "limits.ephemeral-storage", }, }, }, { Name: "EPHEMERAL_STORAGE_REQUEST", ValueFrom: &v1.EnvVarSource{ ResourceFieldRef: &v1.ResourceFieldSelector{ Resource: "requests.ephemeral-storage", }, }, }, } expectations := []string{ fmt.Sprintf("EPHEMERAL_STORAGE_LIMIT=%d", 64*1024*1024), fmt.Sprintf("EPHEMERAL_STORAGE_REQUEST=%d", 32*1024*1024), } testDownwardAPIForEphemeralStorage(f, podName, env, expectations) }) It("should provide default limits.ephemeral-storage from node allocatable", func() { podName := "downward-api-" + string(uuid.NewUUID()) env := []v1.EnvVar{ { Name: "EPHEMERAL_STORAGE_LIMIT", ValueFrom: &v1.EnvVarSource{ ResourceFieldRef: &v1.ResourceFieldSelector{ Resource: "limits.ephemeral-storage", }, }, }, } expectations := []string{ "EPHEMERAL_STORAGE_LIMIT=[1-9]", } pod := &v1.Pod{ ObjectMeta: metav1.ObjectMeta{ Name: podName, Labels: map[string]string{"name": podName}, }, Spec: v1.PodSpec{ Containers: []v1.Container{ { Name: "dapi-container", Image: imageutils.GetE2EImage(imageutils.BusyBox), Command: []string{"sh", "-c", "env"}, Env: env, }, }, RestartPolicy: v1.RestartPolicyNever, }, } testDownwardAPIUsingPod(f, pod, env, expectations) }) }) }) func testDownwardAPI(f *framework.Framework, podName string, env []v1.EnvVar, expectations []string) { pod := &v1.Pod{ ObjectMeta: metav1.ObjectMeta{ Name: podName, Labels: map[string]string{"name": podName}, }, Spec: v1.PodSpec{ Containers: []v1.Container{ { Name: "dapi-container", Image: imageutils.GetE2EImage(imageutils.BusyBox), Command: []string{"sh", "-c", "env"}, Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceCPU: resource.MustParse("250m"), v1.ResourceMemory: resource.MustParse("32Mi"), }, Limits: v1.ResourceList{ v1.ResourceCPU: resource.MustParse("1250m"), v1.ResourceMemory: resource.MustParse("64Mi"), }, }, Env: env, }, }, RestartPolicy: v1.RestartPolicyNever, }, } testDownwardAPIUsingPod(f, pod, env, expectations) } func testDownwardAPIForEphemeralStorage(f *framework.Framework, podName string, env []v1.EnvVar, expectations []string) { pod := &v1.Pod{ ObjectMeta: metav1.ObjectMeta{ Name: podName, Labels: map[string]string{"name": podName}, }, Spec: v1.PodSpec{ Containers: []v1.Container{ { Name: "dapi-container", Image: imageutils.GetE2EImage(imageutils.BusyBox), Command: []string{"sh", "-c", "env"}, Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceEphemeralStorage: resource.MustParse("32Mi"), }, Limits: v1.ResourceList{ v1.ResourceEphemeralStorage: resource.MustParse("64Mi"), }, }, Env: env, }, }, RestartPolicy: v1.RestartPolicyNever, }, } testDownwardAPIUsingPod(f, pod, env, expectations) } func testDownwardAPIUsingPod(f *framework.Framework, pod *v1.Pod, env []v1.EnvVar, expectations []string) { f.TestContainerOutputRegexp("downward api env vars", pod, 0, expectations) }
test/e2e/common/downward_api.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.002070552669465542, 0.0002223033516202122, 0.00016481631610076874, 0.00016824493650346994, 0.00030044338200241327 ]
{ "id": 2, "code_window": [ "*/\n", "\n", "package qos\n", "\n", "import (\n", "\t\"k8s.io/api/core/v1\"\n", "\tv1qos \"k8s.io/kubernetes/pkg/apis/core/v1/helper/qos\"\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\tv1 \"k8s.io/api/core/v1\"\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "replace", "edit_start_line_idx": 19 }
package client const ( STATS_ACCESS_TYPE = "statsAccess" ) type StatsAccess struct { Resource Token string `json:"token,omitempty" yaml:"token,omitempty"` Url string `json:"url,omitempty" yaml:"url,omitempty"` } type StatsAccessCollection struct { Collection Data []StatsAccess `json:"data,omitempty"` } type StatsAccessClient struct { rancherClient *RancherClient } type StatsAccessOperations interface { List(opts *ListOpts) (*StatsAccessCollection, error) Create(opts *StatsAccess) (*StatsAccess, error) Update(existing *StatsAccess, updates interface{}) (*StatsAccess, error) ById(id string) (*StatsAccess, error) Delete(container *StatsAccess) error } func newStatsAccessClient(rancherClient *RancherClient) *StatsAccessClient { return &StatsAccessClient{ rancherClient: rancherClient, } } func (c *StatsAccessClient) Create(container *StatsAccess) (*StatsAccess, error) { resp := &StatsAccess{} err := c.rancherClient.doCreate(STATS_ACCESS_TYPE, container, resp) return resp, err } func (c *StatsAccessClient) Update(existing *StatsAccess, updates interface{}) (*StatsAccess, error) { resp := &StatsAccess{} err := c.rancherClient.doUpdate(STATS_ACCESS_TYPE, &existing.Resource, updates, resp) return resp, err } func (c *StatsAccessClient) List(opts *ListOpts) (*StatsAccessCollection, error) { resp := &StatsAccessCollection{} err := c.rancherClient.doList(STATS_ACCESS_TYPE, opts, resp) return resp, err } func (c *StatsAccessClient) ById(id string) (*StatsAccess, error) { resp := &StatsAccess{} err := c.rancherClient.doById(STATS_ACCESS_TYPE, id, resp) if apiError, ok := err.(*ApiError); ok { if apiError.StatusCode == 404 { return nil, nil } } return resp, err } func (c *StatsAccessClient) Delete(container *StatsAccess) error { return c.rancherClient.doResourceDelete(STATS_ACCESS_TYPE, &container.Resource) }
vendor/github.com/rancher/go-rancher/client/generated_stats_access.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.000647366454359144, 0.00023851846344769, 0.00016861270705703646, 0.00016956572653725743, 0.0001669250923441723 ]
{ "id": 2, "code_window": [ "*/\n", "\n", "package qos\n", "\n", "import (\n", "\t\"k8s.io/api/core/v1\"\n", "\tv1qos \"k8s.io/kubernetes/pkg/apis/core/v1/helper/qos\"\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\tv1 \"k8s.io/api/core/v1\"\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "replace", "edit_start_line_idx": 19 }
/* * * Copyright 2018 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ // Package grpcrand implements math/rand functions in a concurrent-safe way // with a global random source, independent of math/rand's global source. package grpcrand import ( "math/rand" "sync" "time" ) var ( r = rand.New(rand.NewSource(time.Now().UnixNano())) mu sync.Mutex ) // Int63n implements rand.Int63n on the grpcrand global source. func Int63n(n int64) int64 { mu.Lock() res := r.Int63n(n) mu.Unlock() return res } // Intn implements rand.Intn on the grpcrand global source. func Intn(n int) int { mu.Lock() res := r.Intn(n) mu.Unlock() return res } // Float64 implements rand.Float64 on the grpcrand global source. func Float64() float64 { mu.Lock() res := r.Float64() mu.Unlock() return res }
vendor/google.golang.org/grpc/internal/grpcrand/grpcrand.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0002016339567489922, 0.00017447909340262413, 0.00016666993906255811, 0.00016913098806980997, 0.000012296020940993913 ]
{ "id": 3, "code_window": [ "\tv1qos \"k8s.io/kubernetes/pkg/apis/core/v1/helper/qos\"\n", ")\n", "\n", "const (\n", "\t// PodInfraOOMAdj is very docker specific. For arbitrary runtime, it may not make\n" ], "labels": [ "add", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\"k8s.io/kubernetes/pkg/kubelet/types\"\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "add", "edit_start_line_idx": 21 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package qos import ( "k8s.io/api/core/v1" v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos" ) const ( // PodInfraOOMAdj is very docker specific. For arbitrary runtime, it may not make // sense to set sandbox level oom score, e.g. a sandbox could only be a namespace // without a process. // TODO: Handle infra container oom score adj in a runtime agnostic way. PodInfraOOMAdj int = -998 KubeletOOMScoreAdj int = -999 DockerOOMScoreAdj int = -999 KubeProxyOOMScoreAdj int = -999 guaranteedOOMScoreAdj int = -998 besteffortOOMScoreAdj int = 1000 ) // GetContainerOOMAdjust returns the amount by which the OOM score of all processes in the // container should be adjusted. // The OOM score of a process is the percentage of memory it consumes // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000 // and 1000. Containers with higher OOM scores are killed if the system runs out of memory. // See https://lwn.net/Articles/391222/ for more information. func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int { switch v1qos.GetPodQOS(pod) { case v1.PodQOSGuaranteed: // Guaranteed containers should be the last to get killed. return guaranteedOOMScoreAdj case v1.PodQOSBestEffort: return besteffortOOMScoreAdj } // Burstable containers are a middle tier, between Guaranteed and Best-Effort. Ideally, // we want to protect Burstable containers that consume less memory than requested. // The formula below is a heuristic. A container requesting for 10% of a system's // memory will have an OOM score adjust of 900. If a process in container Y // uses over 10% of memory, its OOM score will be 1000. The idea is that containers // which use more than their request will have an OOM score of 1000 and will be prime // targets for OOM kills. // Note that this is a heuristic, it won't work if a container has many small processes. memoryRequest := container.Resources.Requests.Memory().Value() oomScoreAdjust := 1000 - (1000*memoryRequest)/memoryCapacity // A guaranteed pod using 100% of memory can have an OOM score of 10. Ensure // that burstable pods have a higher OOM score adjustment. if int(oomScoreAdjust) < (1000 + guaranteedOOMScoreAdj) { return (1000 + guaranteedOOMScoreAdj) } // Give burstable pods a higher chance of survival over besteffort pods. if int(oomScoreAdjust) == besteffortOOMScoreAdj { return int(oomScoreAdjust - 1) } return int(oomScoreAdjust) }
pkg/kubelet/qos/policy.go
1
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.9923749566078186, 0.19784672558307648, 0.00017091611516661942, 0.005836425349116325, 0.3512032926082611 ]
{ "id": 3, "code_window": [ "\tv1qos \"k8s.io/kubernetes/pkg/apis/core/v1/helper/qos\"\n", ")\n", "\n", "const (\n", "\t// PodInfraOOMAdj is very docker specific. For arbitrary runtime, it may not make\n" ], "labels": [ "add", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\"k8s.io/kubernetes/pkg/kubelet/types\"\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "add", "edit_start_line_idx": 21 }
// +build go1.8 /* * * Copyright 2017 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package dns import "net" var ( lookupHost = net.DefaultResolver.LookupHost lookupSRV = net.DefaultResolver.LookupSRV lookupTXT = net.DefaultResolver.LookupTXT )
vendor/google.golang.org/grpc/resolver/dns/go18.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.00018981150060426444, 0.00017935204959940165, 0.000171335632330738, 0.0001769090158632025, 0.000007738033673376776 ]
{ "id": 3, "code_window": [ "\tv1qos \"k8s.io/kubernetes/pkg/apis/core/v1/helper/qos\"\n", ")\n", "\n", "const (\n", "\t// PodInfraOOMAdj is very docker specific. For arbitrary runtime, it may not make\n" ], "labels": [ "add", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\"k8s.io/kubernetes/pkg/kubelet/types\"\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "add", "edit_start_line_idx": 21 }
// Copyright (C) 2014 Yasuhiro Matsumoto <[email protected]>. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. package sqlite3 /* #ifndef USE_LIBSQLITE3 #include <sqlite3-binding.h> #else #include <sqlite3.h> #endif #include <stdlib.h> // These wrappers are necessary because SQLITE_TRANSIENT // is a pointer constant, and cgo doesn't translate them correctly. static inline void my_result_text(sqlite3_context *ctx, char *p, int np) { sqlite3_result_text(ctx, p, np, SQLITE_TRANSIENT); } static inline void my_result_blob(sqlite3_context *ctx, void *p, int np) { sqlite3_result_blob(ctx, p, np, SQLITE_TRANSIENT); } */ import "C" import ( "math" "reflect" "unsafe" ) const i64 = unsafe.Sizeof(int(0)) > 4 // SQLiteContext behave sqlite3_context type SQLiteContext C.sqlite3_context // ResultBool sets the result of an SQL function. func (c *SQLiteContext) ResultBool(b bool) { if b { c.ResultInt(1) } else { c.ResultInt(0) } } // ResultBlob sets the result of an SQL function. // See: sqlite3_result_blob, http://sqlite.org/c3ref/result_blob.html func (c *SQLiteContext) ResultBlob(b []byte) { if i64 && len(b) > math.MaxInt32 { C.sqlite3_result_error_toobig((*C.sqlite3_context)(c)) return } var p *byte if len(b) > 0 { p = &b[0] } C.my_result_blob((*C.sqlite3_context)(c), unsafe.Pointer(p), C.int(len(b))) } // ResultDouble sets the result of an SQL function. // See: sqlite3_result_double, http://sqlite.org/c3ref/result_blob.html func (c *SQLiteContext) ResultDouble(d float64) { C.sqlite3_result_double((*C.sqlite3_context)(c), C.double(d)) } // ResultInt sets the result of an SQL function. // See: sqlite3_result_int, http://sqlite.org/c3ref/result_blob.html func (c *SQLiteContext) ResultInt(i int) { if i64 && (i > math.MaxInt32 || i < math.MinInt32) { C.sqlite3_result_int64((*C.sqlite3_context)(c), C.sqlite3_int64(i)) } else { C.sqlite3_result_int((*C.sqlite3_context)(c), C.int(i)) } } // ResultInt64 sets the result of an SQL function. // See: sqlite3_result_int64, http://sqlite.org/c3ref/result_blob.html func (c *SQLiteContext) ResultInt64(i int64) { C.sqlite3_result_int64((*C.sqlite3_context)(c), C.sqlite3_int64(i)) } // ResultNull sets the result of an SQL function. // See: sqlite3_result_null, http://sqlite.org/c3ref/result_blob.html func (c *SQLiteContext) ResultNull() { C.sqlite3_result_null((*C.sqlite3_context)(c)) } // ResultText sets the result of an SQL function. // See: sqlite3_result_text, http://sqlite.org/c3ref/result_blob.html func (c *SQLiteContext) ResultText(s string) { h := (*reflect.StringHeader)(unsafe.Pointer(&s)) cs, l := (*C.char)(unsafe.Pointer(h.Data)), C.int(h.Len) C.my_result_text((*C.sqlite3_context)(c), cs, l) } // ResultZeroblob sets the result of an SQL function. // See: sqlite3_result_zeroblob, http://sqlite.org/c3ref/result_blob.html func (c *SQLiteContext) ResultZeroblob(n int) { C.sqlite3_result_zeroblob((*C.sqlite3_context)(c), C.int(n)) }
vendor/github.com/mattn/go-sqlite3/sqlite3_context.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0007230420014820993, 0.00022955586609896272, 0.00016581553791183978, 0.0001709149801172316, 0.0001571646862430498 ]
{ "id": 3, "code_window": [ "\tv1qos \"k8s.io/kubernetes/pkg/apis/core/v1/helper/qos\"\n", ")\n", "\n", "const (\n", "\t// PodInfraOOMAdj is very docker specific. For arbitrary runtime, it may not make\n" ], "labels": [ "add", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\"k8s.io/kubernetes/pkg/kubelet/types\"\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "add", "edit_start_line_idx": 21 }
package(default_visibility = ["//visibility:public"]) load( "@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", ) go_binary( name = "es-image", embed = [":go_default_library"], ) go_library( name = "go_default_library", srcs = ["elasticsearch_logging_discovery.go"], importpath = "k8s.io/kubernetes/cluster/addons/fluentd-elasticsearch/es-image", deps = [ "//pkg/apis/core:go_default_library", "//pkg/client/clientset_generated/internalclientset:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", "//staging/src/k8s.io/client-go/rest:go_default_library", "//staging/src/k8s.io/client-go/tools/clientcmd:go_default_library", "//staging/src/k8s.io/client-go/tools/clientcmd/api:go_default_library", "//vendor/k8s.io/klog:go_default_library", ], ) filegroup( name = "package-srcs", srcs = glob(["**"]), tags = ["automanaged"], visibility = ["//visibility:private"], ) filegroup( name = "all-srcs", srcs = [":package-srcs"], tags = ["automanaged"], )
cluster/addons/fluentd-elasticsearch/es-image/BUILD
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.002786298980936408, 0.0008546823519282043, 0.00016990739095490426, 0.00017552617646288127, 0.0010139134246855974 ]
{ "id": 4, "code_window": [ "// multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000\n", "// and 1000. Containers with higher OOM scores are killed if the system runs out of memory.\n", "// See https://lwn.net/Articles/391222/ for more information.\n", "func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int {\n", "\tswitch v1qos.GetPodQOS(pod) {\n", "\tcase v1.PodQOSGuaranteed:\n", "\t\t// Guaranteed containers should be the last to get killed.\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\tif types.IsCriticalPod(pod) {\n", "\t\t// Critical pods should be the last to get killed.\n", "\t\treturn guaranteedOOMScoreAdj\n", "\t}\n", "\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "add", "edit_start_line_idx": 43 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package qos import ( "k8s.io/api/core/v1" v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos" ) const ( // PodInfraOOMAdj is very docker specific. For arbitrary runtime, it may not make // sense to set sandbox level oom score, e.g. a sandbox could only be a namespace // without a process. // TODO: Handle infra container oom score adj in a runtime agnostic way. PodInfraOOMAdj int = -998 KubeletOOMScoreAdj int = -999 DockerOOMScoreAdj int = -999 KubeProxyOOMScoreAdj int = -999 guaranteedOOMScoreAdj int = -998 besteffortOOMScoreAdj int = 1000 ) // GetContainerOOMAdjust returns the amount by which the OOM score of all processes in the // container should be adjusted. // The OOM score of a process is the percentage of memory it consumes // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000 // and 1000. Containers with higher OOM scores are killed if the system runs out of memory. // See https://lwn.net/Articles/391222/ for more information. func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int { switch v1qos.GetPodQOS(pod) { case v1.PodQOSGuaranteed: // Guaranteed containers should be the last to get killed. return guaranteedOOMScoreAdj case v1.PodQOSBestEffort: return besteffortOOMScoreAdj } // Burstable containers are a middle tier, between Guaranteed and Best-Effort. Ideally, // we want to protect Burstable containers that consume less memory than requested. // The formula below is a heuristic. A container requesting for 10% of a system's // memory will have an OOM score adjust of 900. If a process in container Y // uses over 10% of memory, its OOM score will be 1000. The idea is that containers // which use more than their request will have an OOM score of 1000 and will be prime // targets for OOM kills. // Note that this is a heuristic, it won't work if a container has many small processes. memoryRequest := container.Resources.Requests.Memory().Value() oomScoreAdjust := 1000 - (1000*memoryRequest)/memoryCapacity // A guaranteed pod using 100% of memory can have an OOM score of 10. Ensure // that burstable pods have a higher OOM score adjustment. if int(oomScoreAdjust) < (1000 + guaranteedOOMScoreAdj) { return (1000 + guaranteedOOMScoreAdj) } // Give burstable pods a higher chance of survival over besteffort pods. if int(oomScoreAdjust) == besteffortOOMScoreAdj { return int(oomScoreAdjust - 1) } return int(oomScoreAdjust) }
pkg/kubelet/qos/policy.go
1
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.9929807186126709, 0.255635142326355, 0.0001781238242983818, 0.023723436519503593, 0.41485604643821716 ]
{ "id": 4, "code_window": [ "// multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000\n", "// and 1000. Containers with higher OOM scores are killed if the system runs out of memory.\n", "// See https://lwn.net/Articles/391222/ for more information.\n", "func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int {\n", "\tswitch v1qos.GetPodQOS(pod) {\n", "\tcase v1.PodQOSGuaranteed:\n", "\t\t// Guaranteed containers should be the last to get killed.\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\tif types.IsCriticalPod(pod) {\n", "\t\t// Critical pods should be the last to get killed.\n", "\t\treturn guaranteedOOMScoreAdj\n", "\t}\n", "\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "add", "edit_start_line_idx": 43 }
/* Copyright The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // Code generated by informer-gen. DO NOT EDIT. package internalversion import ( time "time" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" apiregistration "k8s.io/kube-aggregator/pkg/apis/apiregistration" internalclientset "k8s.io/kube-aggregator/pkg/client/clientset_generated/internalclientset" internalinterfaces "k8s.io/kube-aggregator/pkg/client/informers/internalversion/internalinterfaces" internalversion "k8s.io/kube-aggregator/pkg/client/listers/apiregistration/internalversion" ) // APIServiceInformer provides access to a shared informer and lister for // APIServices. type APIServiceInformer interface { Informer() cache.SharedIndexInformer Lister() internalversion.APIServiceLister } type aPIServiceInformer struct { factory internalinterfaces.SharedInformerFactory tweakListOptions internalinterfaces.TweakListOptionsFunc } // NewAPIServiceInformer constructs a new informer for APIService type. // Always prefer using an informer factory to get a shared informer instead of getting an independent // one. This reduces memory footprint and number of connections to the server. func NewAPIServiceInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredAPIServiceInformer(client, resyncPeriod, indexers, nil) } // NewFilteredAPIServiceInformer constructs a new informer for APIService type. // Always prefer using an informer factory to get a shared informer instead of getting an independent // one. This reduces memory footprint and number of connections to the server. func NewFilteredAPIServiceInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.Apiregistration().APIServices().List(options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.Apiregistration().APIServices().Watch(options) }, }, &apiregistration.APIService{}, resyncPeriod, indexers, ) } func (f *aPIServiceInformer) defaultInformer(client internalclientset.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer { return NewFilteredAPIServiceInformer(client, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions) } func (f *aPIServiceInformer) Informer() cache.SharedIndexInformer { return f.factory.InformerFor(&apiregistration.APIService{}, f.defaultInformer) } func (f *aPIServiceInformer) Lister() internalversion.APIServiceLister { return internalversion.NewAPIServiceLister(f.Informer().GetIndexer()) }
staging/src/k8s.io/kube-aggregator/pkg/client/informers/internalversion/apiregistration/internalversion/apiservice.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.00022460237960331142, 0.0001799235469661653, 0.0001649051409913227, 0.00017089916218537837, 0.00001811484617064707 ]
{ "id": 4, "code_window": [ "// multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000\n", "// and 1000. Containers with higher OOM scores are killed if the system runs out of memory.\n", "// See https://lwn.net/Articles/391222/ for more information.\n", "func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int {\n", "\tswitch v1qos.GetPodQOS(pod) {\n", "\tcase v1.PodQOSGuaranteed:\n", "\t\t// Guaranteed containers should be the last to get killed.\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\tif types.IsCriticalPod(pod) {\n", "\t\t// Critical pods should be the last to get killed.\n", "\t\treturn guaranteedOOMScoreAdj\n", "\t}\n", "\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "add", "edit_start_line_idx": 43 }
/* Copyright 2017 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package create import ( "github.com/spf13/cobra" "k8s.io/cli-runtime/pkg/genericclioptions" cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util" "k8s.io/kubernetes/pkg/kubectl/generate" generateversioned "k8s.io/kubernetes/pkg/kubectl/generate/versioned" "k8s.io/kubernetes/pkg/kubectl/util/i18n" "k8s.io/kubernetes/pkg/kubectl/util/templates" ) var ( pcLong = templates.LongDesc(i18n.T(` Create a priorityclass with the specified name, value, globalDefault and description`)) pcExample = templates.Examples(i18n.T(` # Create a priorityclass named high-priority kubectl create priorityclass high-priority --value=1000 --description="high priority" # Create a priorityclass named default-priority that considered as the global default priority kubectl create priorityclass default-priority --value=1000 --global-default=true --description="default priority"`)) ) // PriorityClassOpts holds the options for 'create priorityclass' sub command type PriorityClassOpts struct { CreateSubcommandOptions *CreateSubcommandOptions } // NewCmdCreatePriorityClass is a macro command to create a new priorityClass. func NewCmdCreatePriorityClass(f cmdutil.Factory, ioStreams genericclioptions.IOStreams) *cobra.Command { options := &PriorityClassOpts{ CreateSubcommandOptions: NewCreateSubcommandOptions(ioStreams), } cmd := &cobra.Command{ Use: "priorityclass NAME --value=VALUE --global-default=BOOL [--dry-run]", DisableFlagsInUseLine: true, Aliases: []string{"pc"}, Short: i18n.T("Create a priorityclass with the specified name."), Long: pcLong, Example: pcExample, Run: func(cmd *cobra.Command, args []string) { cmdutil.CheckErr(options.Complete(f, cmd, args)) cmdutil.CheckErr(options.Run()) }, } options.CreateSubcommandOptions.PrintFlags.AddFlags(cmd) cmdutil.AddApplyAnnotationFlags(cmd) cmdutil.AddValidateFlags(cmd) cmdutil.AddGeneratorFlags(cmd, generateversioned.PriorityClassV1Alpha1GeneratorName) cmd.Flags().Int32("value", 0, i18n.T("the value of this priority class.")) cmd.Flags().Bool("global-default", false, i18n.T("global-default specifies whether this PriorityClass should be considered as the default priority.")) cmd.Flags().String("description", "", i18n.T("description is an arbitrary string that usually provides guidelines on when this priority class should be used.")) return cmd } // Complete completes all the required options func (o *PriorityClassOpts) Complete(f cmdutil.Factory, cmd *cobra.Command, args []string) error { name, err := NameFromCommandArgs(cmd, args) if err != nil { return err } var generator generate.StructuredGenerator switch generatorName := cmdutil.GetFlagString(cmd, "generator"); generatorName { case generateversioned.PriorityClassV1Alpha1GeneratorName: generator = &generateversioned.PriorityClassV1Generator{ Name: name, Value: cmdutil.GetFlagInt32(cmd, "value"), GlobalDefault: cmdutil.GetFlagBool(cmd, "global-default"), Description: cmdutil.GetFlagString(cmd, "description"), } default: return errUnsupportedGenerator(cmd, generatorName) } return o.CreateSubcommandOptions.Complete(f, cmd, args, generator) } // Run calls the CreateSubcommandOptions.Run in the PriorityClassOpts instance func (o *PriorityClassOpts) Run() error { return o.CreateSubcommandOptions.Run() }
pkg/kubectl/cmd/create/create_priorityclass.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.00017892812320496887, 0.00017114158254116774, 0.00016419892199337482, 0.00017037070938386023, 0.000004373127467260929 ]
{ "id": 4, "code_window": [ "// multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000\n", "// and 1000. Containers with higher OOM scores are killed if the system runs out of memory.\n", "// See https://lwn.net/Articles/391222/ for more information.\n", "func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int {\n", "\tswitch v1qos.GetPodQOS(pod) {\n", "\tcase v1.PodQOSGuaranteed:\n", "\t\t// Guaranteed containers should be the last to get killed.\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep" ], "after_edit": [ "\tif types.IsCriticalPod(pod) {\n", "\t\t// Critical pods should be the last to get killed.\n", "\t\treturn guaranteedOOMScoreAdj\n", "\t}\n", "\n" ], "file_path": "pkg/kubelet/qos/policy.go", "type": "add", "edit_start_line_idx": 43 }
// Copyright ©2016 The Gonum Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // // Some of the loop unrolling code is copied from: // http://golang.org/src/math/big/arith_amd64.s // which is distributed under these terms: // // Copyright (c) 2012 The Go Authors. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. //+build !noasm,!appengine,!safe #include "textflag.h" #define X_PTR SI #define LEN CX #define TAIL BX #define INC_X R8 #define INCx3_X R9 #define ALPHA X0 #define ALPHA_2 X1 // func ScalInc(alpha float64, x []float64, n, incX uintptr) TEXT ·ScalInc(SB), NOSPLIT, $0 MOVSD alpha+0(FP), ALPHA // ALPHA = alpha MOVQ x_base+8(FP), X_PTR // X_PTR = &x MOVQ incX+40(FP), INC_X // INC_X = incX SHLQ $3, INC_X // INC_X *= sizeof(float64) MOVQ n+32(FP), LEN // LEN = n CMPQ LEN, $0 JE end // if LEN == 0 { return } MOVQ LEN, TAIL ANDQ $3, TAIL // TAIL = LEN % 4 SHRQ $2, LEN // LEN = floor( LEN / 4 ) JZ tail_start // if LEN == 0 { goto tail_start } MOVUPS ALPHA, ALPHA_2 // ALPHA_2 = ALPHA for pipelining LEAQ (INC_X)(INC_X*2), INCx3_X // INCx3_X = INC_X * 3 loop: // do { // x[i] *= alpha unrolled 4x. MOVSD (X_PTR), X2 // X_i = x[i] MOVSD (X_PTR)(INC_X*1), X3 MOVSD (X_PTR)(INC_X*2), X4 MOVSD (X_PTR)(INCx3_X*1), X5 MULSD ALPHA, X2 // X_i *= a MULSD ALPHA_2, X3 MULSD ALPHA, X4 MULSD ALPHA_2, X5 MOVSD X2, (X_PTR) // x[i] = X_i MOVSD X3, (X_PTR)(INC_X*1) MOVSD X4, (X_PTR)(INC_X*2) MOVSD X5, (X_PTR)(INCx3_X*1) LEAQ (X_PTR)(INC_X*4), X_PTR // X_PTR = &(X_PTR[incX*4]) DECQ LEN JNZ loop // } while --LEN > 0 CMPQ TAIL, $0 JE end // if TAIL == 0 { return } tail_start: // Reset loop registers MOVQ TAIL, LEN // Loop counter: LEN = TAIL SHRQ $1, LEN // LEN = floor( LEN / 2 ) JZ tail_one tail_two: // do { MOVSD (X_PTR), X2 // X_i = x[i] MOVSD (X_PTR)(INC_X*1), X3 MULSD ALPHA, X2 // X_i *= a MULSD ALPHA, X3 MOVSD X2, (X_PTR) // x[i] = X_i MOVSD X3, (X_PTR)(INC_X*1) LEAQ (X_PTR)(INC_X*2), X_PTR // X_PTR = &(X_PTR[incX*2]) ANDQ $1, TAIL JZ end tail_one: MOVSD (X_PTR), X2 // X_i = x[i] MULSD ALPHA, X2 // X_i *= ALPHA MOVSD X2, (X_PTR) // x[i] = X_i end: RET
vendor/gonum.org/v1/gonum/internal/asm/f64/scalinc_amd64.s
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.00017833181482274085, 0.000169613616890274, 0.00016281665011774749, 0.0001698198902886361, 0.000004343491127656307 ]
{ "id": 5, "code_window": [ "\n", "import (\n", "\t\"strconv\"\n", "\t\"testing\"\n", "\n", "\t\"k8s.io/api/core/v1\"\n", "\t\"k8s.io/apimachinery/pkg/api/resource\"\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\tv1 \"k8s.io/api/core/v1\"\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "replace", "edit_start_line_idx": 22 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package qos import ( "strconv" "testing" "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" ) const ( standardMemoryAmount = 8000000000 ) var ( cpuLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceCPU): resource.MustParse("10"), }, }, }, }, }, } memoryLimitCPURequest = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceCPU): resource.MustParse("0"), }, Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), }, }, }, }, }, } zeroMemoryLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("0"), }, }, }, }, }, } noRequestLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{}, }, }, }, } equalRequestLimitCPUMemory = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), }, Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), }, }, }, }, }, } cpuUnlimitedMemoryLimitedWithRequests = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse(strconv.FormatInt(standardMemoryAmount/2, 10)), v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), }, Limits: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse("10G"), }, }, }, }, }, } requestNoLimit = v1.Pod{ Spec: v1.PodSpec{ Containers: []v1.Container{ { Resources: v1.ResourceRequirements{ Requests: v1.ResourceList{ v1.ResourceName(v1.ResourceMemory): resource.MustParse(strconv.FormatInt(standardMemoryAmount-1, 10)), v1.ResourceName(v1.ResourceCPU): resource.MustParse("5m"), }, }, }, }, }, } ) type oomTest struct { pod *v1.Pod memoryCapacity int64 lowOOMScoreAdj int // The max oom_score_adj score the container should be assigned. highOOMScoreAdj int // The min oom_score_adj score the container should be assigned. } func TestGetContainerOOMScoreAdjust(t *testing.T) { oomTests := []oomTest{ { pod: &cpuLimit, memoryCapacity: 4000000000, lowOOMScoreAdj: 999, highOOMScoreAdj: 999, }, { pod: &memoryLimitCPURequest, memoryCapacity: 8000000000, lowOOMScoreAdj: 999, highOOMScoreAdj: 999, }, { pod: &zeroMemoryLimit, memoryCapacity: 7230457451, lowOOMScoreAdj: 1000, highOOMScoreAdj: 1000, }, { pod: &noRequestLimit, memoryCapacity: 4000000000, lowOOMScoreAdj: 1000, highOOMScoreAdj: 1000, }, { pod: &equalRequestLimitCPUMemory, memoryCapacity: 123456789, lowOOMScoreAdj: -998, highOOMScoreAdj: -998, }, { pod: &cpuUnlimitedMemoryLimitedWithRequests, memoryCapacity: standardMemoryAmount, lowOOMScoreAdj: 495, highOOMScoreAdj: 505, }, { pod: &requestNoLimit, memoryCapacity: standardMemoryAmount, lowOOMScoreAdj: 2, highOOMScoreAdj: 2, }, } for _, test := range oomTests { oomScoreAdj := GetContainerOOMScoreAdjust(test.pod, &test.pod.Spec.Containers[0], test.memoryCapacity) if oomScoreAdj < test.lowOOMScoreAdj || oomScoreAdj > test.highOOMScoreAdj { t.Errorf("oom_score_adj should be between %d and %d, but was %d", test.lowOOMScoreAdj, test.highOOMScoreAdj, oomScoreAdj) } } }
pkg/kubelet/qos/policy_test.go
1
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.009351489134132862, 0.0006483172765001655, 0.0001643452123971656, 0.00016909718397073448, 0.001998557709157467 ]
{ "id": 5, "code_window": [ "\n", "import (\n", "\t\"strconv\"\n", "\t\"testing\"\n", "\n", "\t\"k8s.io/api/core/v1\"\n", "\t\"k8s.io/apimachinery/pkg/api/resource\"\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\tv1 \"k8s.io/api/core/v1\"\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "replace", "edit_start_line_idx": 22 }
/* Copyright 2017 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package strategy_test import ( . "github.com/onsi/ginkgo" "k8s.io/kubernetes/pkg/kubectl/apply/strategy" ) var _ = Describe("Merging fields with the retainkeys strategy", func() { Context("where some fields are only defined remotely", func() { It("should drop those fields ", func() { recorded := create(` apiVersion: apps/v1 kind: Deployment spec: strategy: `) local := create(` apiVersion: apps/v1 kind: Deployment spec: strategy: type: Recreate `) remote := create(` apiVersion: apps/v1 kind: Deployment spec: strategy: type: RollingUpdate rollingUpdate: maxUnavailable: 1 maxSurge: 1 `) expected := create(` apiVersion: apps/v1 kind: Deployment spec: strategy: type: Recreate `) run(strategy.Create(strategy.Options{}), recorded, local, remote, expected) }) }) Context("where some fields are defined both locally and remotely", func() { It("should merge those fields", func() { recorded := create(` apiVersion: apps/v1 kind: Deployment spec: strategy: `) local := create(` apiVersion: apps/v1 kind: Deployment spec: strategy: type: RollingUpdate rollingUpdate: maxUnavailable: 2 `) remote := create(` apiVersion: apps/v1 kind: Deployment spec: strategy: type: RollingUpdate rollingUpdate: maxSurge: 1 `) expected := create(` apiVersion: apps/v1 kind: Deployment spec: strategy: type: RollingUpdate rollingUpdate: maxUnavailable: 2 maxSurge: 1 `) run(strategy.Create(strategy.Options{}), recorded, local, remote, expected) }) }) Context("where the elements are in a list and some fields are only defined remotely", func() { It("should drop those fields ", func() { recorded := create(` apiVersion: apps/v1 kind: Deployment spec: template: spec: `) local := create(` apiVersion: apps/v1 kind: Deployment spec: template: spec: volumes: - name: cache-volume emptyDir: `) remote := create(` apiVersion: apps/v1 kind: Deployment spec: template: spec: volumes: - name: cache-volume hostPath: path: /tmp/cache-volume `) expected := create(` apiVersion: apps/v1 kind: Deployment spec: template: spec: volumes: - name: cache-volume emptyDir: `) run(strategy.Create(strategy.Options{}), recorded, local, remote, expected) }) }) Context("where the elements are in a list", func() { It("the fields defined both locally and remotely should be merged", func() { recorded := create(` apiVersion: apps/v1 kind: Deployment spec: template: spec: `) local := create(` apiVersion: apps/v1 kind: Deployment spec: template: spec: volumes: - name: cache-volume hostPath: path: /tmp/cache-volume emptyDir: `) remote := create(` apiVersion: apps/v1 kind: Deployment spec: template: spec: volumes: - name: cache-volume hostPath: path: /tmp/cache-volume type: Directory `) expected := create(` apiVersion: apps/v1 kind: Deployment spec: template: spec: volumes: - name: cache-volume hostPath: path: /tmp/cache-volume type: Directory emptyDir: `) run(strategy.Create(strategy.Options{}), recorded, local, remote, expected) }) }) })
pkg/kubectl/apply/strategy/retain_keys_test.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.00026475833146832883, 0.00017507218581158668, 0.00016406776558142155, 0.0001708803465589881, 0.000020768035028595477 ]
{ "id": 5, "code_window": [ "\n", "import (\n", "\t\"strconv\"\n", "\t\"testing\"\n", "\n", "\t\"k8s.io/api/core/v1\"\n", "\t\"k8s.io/apimachinery/pkg/api/resource\"\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\tv1 \"k8s.io/api/core/v1\"\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "replace", "edit_start_line_idx": 22 }
// Code generated by protoc-gen-go. DO NOT EDIT. // source: google/protobuf/struct.proto package structpb import proto "github.com/golang/protobuf/proto" import fmt "fmt" import math "math" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package // `NullValue` is a singleton enumeration to represent the null value for the // `Value` type union. // // The JSON representation for `NullValue` is JSON `null`. type NullValue int32 const ( // Null value. NullValue_NULL_VALUE NullValue = 0 ) var NullValue_name = map[int32]string{ 0: "NULL_VALUE", } var NullValue_value = map[string]int32{ "NULL_VALUE": 0, } func (x NullValue) String() string { return proto.EnumName(NullValue_name, int32(x)) } func (NullValue) EnumDescriptor() ([]byte, []int) { return fileDescriptor_struct_3a5a94e0c7801b27, []int{0} } func (NullValue) XXX_WellKnownType() string { return "NullValue" } // `Struct` represents a structured data value, consisting of fields // which map to dynamically typed values. In some languages, `Struct` // might be supported by a native representation. For example, in // scripting languages like JS a struct is represented as an // object. The details of that representation are described together // with the proto support for the language. // // The JSON representation for `Struct` is JSON object. type Struct struct { // Unordered map of dynamically typed values. Fields map[string]*Value `protobuf:"bytes,1,rep,name=fields" json:"fields,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *Struct) Reset() { *m = Struct{} } func (m *Struct) String() string { return proto.CompactTextString(m) } func (*Struct) ProtoMessage() {} func (*Struct) Descriptor() ([]byte, []int) { return fileDescriptor_struct_3a5a94e0c7801b27, []int{0} } func (*Struct) XXX_WellKnownType() string { return "Struct" } func (m *Struct) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Struct.Unmarshal(m, b) } func (m *Struct) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_Struct.Marshal(b, m, deterministic) } func (dst *Struct) XXX_Merge(src proto.Message) { xxx_messageInfo_Struct.Merge(dst, src) } func (m *Struct) XXX_Size() int { return xxx_messageInfo_Struct.Size(m) } func (m *Struct) XXX_DiscardUnknown() { xxx_messageInfo_Struct.DiscardUnknown(m) } var xxx_messageInfo_Struct proto.InternalMessageInfo func (m *Struct) GetFields() map[string]*Value { if m != nil { return m.Fields } return nil } // `Value` represents a dynamically typed value which can be either // null, a number, a string, a boolean, a recursive struct value, or a // list of values. A producer of value is expected to set one of that // variants, absence of any variant indicates an error. // // The JSON representation for `Value` is JSON value. type Value struct { // The kind of value. // // Types that are valid to be assigned to Kind: // *Value_NullValue // *Value_NumberValue // *Value_StringValue // *Value_BoolValue // *Value_StructValue // *Value_ListValue Kind isValue_Kind `protobuf_oneof:"kind"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *Value) Reset() { *m = Value{} } func (m *Value) String() string { return proto.CompactTextString(m) } func (*Value) ProtoMessage() {} func (*Value) Descriptor() ([]byte, []int) { return fileDescriptor_struct_3a5a94e0c7801b27, []int{1} } func (*Value) XXX_WellKnownType() string { return "Value" } func (m *Value) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Value.Unmarshal(m, b) } func (m *Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_Value.Marshal(b, m, deterministic) } func (dst *Value) XXX_Merge(src proto.Message) { xxx_messageInfo_Value.Merge(dst, src) } func (m *Value) XXX_Size() int { return xxx_messageInfo_Value.Size(m) } func (m *Value) XXX_DiscardUnknown() { xxx_messageInfo_Value.DiscardUnknown(m) } var xxx_messageInfo_Value proto.InternalMessageInfo type isValue_Kind interface { isValue_Kind() } type Value_NullValue struct { NullValue NullValue `protobuf:"varint,1,opt,name=null_value,json=nullValue,enum=google.protobuf.NullValue,oneof"` } type Value_NumberValue struct { NumberValue float64 `protobuf:"fixed64,2,opt,name=number_value,json=numberValue,oneof"` } type Value_StringValue struct { StringValue string `protobuf:"bytes,3,opt,name=string_value,json=stringValue,oneof"` } type Value_BoolValue struct { BoolValue bool `protobuf:"varint,4,opt,name=bool_value,json=boolValue,oneof"` } type Value_StructValue struct { StructValue *Struct `protobuf:"bytes,5,opt,name=struct_value,json=structValue,oneof"` } type Value_ListValue struct { ListValue *ListValue `protobuf:"bytes,6,opt,name=list_value,json=listValue,oneof"` } func (*Value_NullValue) isValue_Kind() {} func (*Value_NumberValue) isValue_Kind() {} func (*Value_StringValue) isValue_Kind() {} func (*Value_BoolValue) isValue_Kind() {} func (*Value_StructValue) isValue_Kind() {} func (*Value_ListValue) isValue_Kind() {} func (m *Value) GetKind() isValue_Kind { if m != nil { return m.Kind } return nil } func (m *Value) GetNullValue() NullValue { if x, ok := m.GetKind().(*Value_NullValue); ok { return x.NullValue } return NullValue_NULL_VALUE } func (m *Value) GetNumberValue() float64 { if x, ok := m.GetKind().(*Value_NumberValue); ok { return x.NumberValue } return 0 } func (m *Value) GetStringValue() string { if x, ok := m.GetKind().(*Value_StringValue); ok { return x.StringValue } return "" } func (m *Value) GetBoolValue() bool { if x, ok := m.GetKind().(*Value_BoolValue); ok { return x.BoolValue } return false } func (m *Value) GetStructValue() *Struct { if x, ok := m.GetKind().(*Value_StructValue); ok { return x.StructValue } return nil } func (m *Value) GetListValue() *ListValue { if x, ok := m.GetKind().(*Value_ListValue); ok { return x.ListValue } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*Value) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _Value_OneofMarshaler, _Value_OneofUnmarshaler, _Value_OneofSizer, []interface{}{ (*Value_NullValue)(nil), (*Value_NumberValue)(nil), (*Value_StringValue)(nil), (*Value_BoolValue)(nil), (*Value_StructValue)(nil), (*Value_ListValue)(nil), } } func _Value_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*Value) // kind switch x := m.Kind.(type) { case *Value_NullValue: b.EncodeVarint(1<<3 | proto.WireVarint) b.EncodeVarint(uint64(x.NullValue)) case *Value_NumberValue: b.EncodeVarint(2<<3 | proto.WireFixed64) b.EncodeFixed64(math.Float64bits(x.NumberValue)) case *Value_StringValue: b.EncodeVarint(3<<3 | proto.WireBytes) b.EncodeStringBytes(x.StringValue) case *Value_BoolValue: t := uint64(0) if x.BoolValue { t = 1 } b.EncodeVarint(4<<3 | proto.WireVarint) b.EncodeVarint(t) case *Value_StructValue: b.EncodeVarint(5<<3 | proto.WireBytes) if err := b.EncodeMessage(x.StructValue); err != nil { return err } case *Value_ListValue: b.EncodeVarint(6<<3 | proto.WireBytes) if err := b.EncodeMessage(x.ListValue); err != nil { return err } case nil: default: return fmt.Errorf("Value.Kind has unexpected type %T", x) } return nil } func _Value_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*Value) switch tag { case 1: // kind.null_value if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Kind = &Value_NullValue{NullValue(x)} return true, err case 2: // kind.number_value if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.Kind = &Value_NumberValue{math.Float64frombits(x)} return true, err case 3: // kind.string_value if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Kind = &Value_StringValue{x} return true, err case 4: // kind.bool_value if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Kind = &Value_BoolValue{x != 0} return true, err case 5: // kind.struct_value if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Struct) err := b.DecodeMessage(msg) m.Kind = &Value_StructValue{msg} return true, err case 6: // kind.list_value if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(ListValue) err := b.DecodeMessage(msg) m.Kind = &Value_ListValue{msg} return true, err default: return false, nil } } func _Value_OneofSizer(msg proto.Message) (n int) { m := msg.(*Value) // kind switch x := m.Kind.(type) { case *Value_NullValue: n += 1 // tag and wire n += proto.SizeVarint(uint64(x.NullValue)) case *Value_NumberValue: n += 1 // tag and wire n += 8 case *Value_StringValue: n += 1 // tag and wire n += proto.SizeVarint(uint64(len(x.StringValue))) n += len(x.StringValue) case *Value_BoolValue: n += 1 // tag and wire n += 1 case *Value_StructValue: s := proto.Size(x.StructValue) n += 1 // tag and wire n += proto.SizeVarint(uint64(s)) n += s case *Value_ListValue: s := proto.Size(x.ListValue) n += 1 // tag and wire n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } // `ListValue` is a wrapper around a repeated field of values. // // The JSON representation for `ListValue` is JSON array. type ListValue struct { // Repeated field of dynamically typed values. Values []*Value `protobuf:"bytes,1,rep,name=values" json:"values,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *ListValue) Reset() { *m = ListValue{} } func (m *ListValue) String() string { return proto.CompactTextString(m) } func (*ListValue) ProtoMessage() {} func (*ListValue) Descriptor() ([]byte, []int) { return fileDescriptor_struct_3a5a94e0c7801b27, []int{2} } func (*ListValue) XXX_WellKnownType() string { return "ListValue" } func (m *ListValue) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListValue.Unmarshal(m, b) } func (m *ListValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_ListValue.Marshal(b, m, deterministic) } func (dst *ListValue) XXX_Merge(src proto.Message) { xxx_messageInfo_ListValue.Merge(dst, src) } func (m *ListValue) XXX_Size() int { return xxx_messageInfo_ListValue.Size(m) } func (m *ListValue) XXX_DiscardUnknown() { xxx_messageInfo_ListValue.DiscardUnknown(m) } var xxx_messageInfo_ListValue proto.InternalMessageInfo func (m *ListValue) GetValues() []*Value { if m != nil { return m.Values } return nil } func init() { proto.RegisterType((*Struct)(nil), "google.protobuf.Struct") proto.RegisterMapType((map[string]*Value)(nil), "google.protobuf.Struct.FieldsEntry") proto.RegisterType((*Value)(nil), "google.protobuf.Value") proto.RegisterType((*ListValue)(nil), "google.protobuf.ListValue") proto.RegisterEnum("google.protobuf.NullValue", NullValue_name, NullValue_value) } func init() { proto.RegisterFile("google/protobuf/struct.proto", fileDescriptor_struct_3a5a94e0c7801b27) } var fileDescriptor_struct_3a5a94e0c7801b27 = []byte{ // 417 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0x41, 0x8b, 0xd3, 0x40, 0x14, 0xc7, 0x3b, 0xc9, 0x36, 0x98, 0x17, 0x59, 0x97, 0x11, 0xb4, 0xac, 0xa2, 0xa1, 0x7b, 0x09, 0x22, 0x29, 0xd6, 0x8b, 0x18, 0x2f, 0x06, 0xd6, 0x5d, 0x30, 0x2c, 0x31, 0xba, 0x15, 0xbc, 0x94, 0x26, 0x4d, 0x63, 0xe8, 0x74, 0x26, 0x24, 0x33, 0x4a, 0x8f, 0x7e, 0x0b, 0xcf, 0x1e, 0x3d, 0xfa, 0xe9, 0x3c, 0xca, 0xcc, 0x24, 0xa9, 0xb4, 0xf4, 0x94, 0xbc, 0xf7, 0x7e, 0xef, 0x3f, 0xef, 0xff, 0x66, 0xe0, 0x71, 0xc1, 0x58, 0x41, 0xf2, 0x49, 0x55, 0x33, 0xce, 0x52, 0xb1, 0x9a, 0x34, 0xbc, 0x16, 0x19, 0xf7, 0x55, 0x8c, 0xef, 0xe9, 0xaa, 0xdf, 0x55, 0xc7, 0x3f, 0x11, 0x58, 0x1f, 0x15, 0x81, 0x03, 0xb0, 0x56, 0x65, 0x4e, 0x96, 0xcd, 0x08, 0xb9, 0xa6, 0xe7, 0x4c, 0x2f, 0xfc, 0x3d, 0xd8, 0xd7, 0xa0, 0xff, 0x4e, 0x51, 0x97, 0x94, 0xd7, 0xdb, 0xa4, 0x6d, 0x39, 0xff, 0x00, 0xce, 0x7f, 0x69, 0x7c, 0x06, 0xe6, 0x3a, 0xdf, 0x8e, 0x90, 0x8b, 0x3c, 0x3b, 0x91, 0xbf, 0xf8, 0x39, 0x0c, 0xbf, 0x2d, 0x88, 0xc8, 0x47, 0x86, 0x8b, 0x3c, 0x67, 0xfa, 0xe0, 0x40, 0x7c, 0x26, 0xab, 0x89, 0x86, 0x5e, 0x1b, 0xaf, 0xd0, 0xf8, 0x8f, 0x01, 0x43, 0x95, 0xc4, 0x01, 0x00, 0x15, 0x84, 0xcc, 0xb5, 0x80, 0x14, 0x3d, 0x9d, 0x9e, 0x1f, 0x08, 0xdc, 0x08, 0x42, 0x14, 0x7f, 0x3d, 0x48, 0x6c, 0xda, 0x05, 0xf8, 0x02, 0xee, 0x52, 0xb1, 0x49, 0xf3, 0x7a, 0xbe, 0x3b, 0x1f, 0x5d, 0x0f, 0x12, 0x47, 0x67, 0x7b, 0xa8, 0xe1, 0x75, 0x49, 0x8b, 0x16, 0x32, 0xe5, 0xe0, 0x12, 0xd2, 0x59, 0x0d, 0x3d, 0x05, 0x48, 0x19, 0xeb, 0xc6, 0x38, 0x71, 0x91, 0x77, 0x47, 0x1e, 0x25, 0x73, 0x1a, 0x78, 0xa3, 0x54, 0x44, 0xc6, 0x5b, 0x64, 0xa8, 0xac, 0x3e, 0x3c, 0xb2, 0xc7, 0x56, 0x5e, 0x64, 0xbc, 0x77, 0x49, 0xca, 0xa6, 0xeb, 0xb5, 0x54, 0xef, 0xa1, 0xcb, 0xa8, 0x6c, 0x78, 0xef, 0x92, 0x74, 0x41, 0x68, 0xc1, 0xc9, 0xba, 0xa4, 0xcb, 0x71, 0x00, 0x76, 0x4f, 0x60, 0x1f, 0x2c, 0x25, 0xd6, 0xdd, 0xe8, 0xb1, 0xa5, 0xb7, 0xd4, 0xb3, 0x47, 0x60, 0xf7, 0x4b, 0xc4, 0xa7, 0x00, 0x37, 0xb7, 0x51, 0x34, 0x9f, 0xbd, 0x8d, 0x6e, 0x2f, 0xcf, 0x06, 0xe1, 0x0f, 0x04, 0xf7, 0x33, 0xb6, 0xd9, 0x97, 0x08, 0x1d, 0xed, 0x26, 0x96, 0x71, 0x8c, 0xbe, 0xbc, 0x28, 0x4a, 0xfe, 0x55, 0xa4, 0x7e, 0xc6, 0x36, 0x93, 0x82, 0x91, 0x05, 0x2d, 0x76, 0x4f, 0xb1, 0xe2, 0xdb, 0x2a, 0x6f, 0xda, 0x17, 0x19, 0xe8, 0x4f, 0x95, 0xfe, 0x45, 0xe8, 0x97, 0x61, 0x5e, 0xc5, 0xe1, 0x6f, 0xe3, 0xc9, 0x95, 0x16, 0x8f, 0xbb, 0xf9, 0x3e, 0xe7, 0x84, 0xbc, 0xa7, 0xec, 0x3b, 0xfd, 0x24, 0x3b, 0x53, 0x4b, 0x49, 0xbd, 0xfc, 0x17, 0x00, 0x00, 0xff, 0xff, 0xe8, 0x1b, 0x59, 0xf8, 0xe5, 0x02, 0x00, 0x00, }
vendor/github.com/golang/protobuf/ptypes/struct/struct.pb.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0001966137351701036, 0.00017023991676978767, 0.00016305077588185668, 0.00016950462304521352, 0.000006825140189903323 ]
{ "id": 5, "code_window": [ "\n", "import (\n", "\t\"strconv\"\n", "\t\"testing\"\n", "\n", "\t\"k8s.io/api/core/v1\"\n", "\t\"k8s.io/apimachinery/pkg/api/resource\"\n" ], "labels": [ "keep", "keep", "keep", "keep", "keep", "replace", "keep" ], "after_edit": [ "\tv1 \"k8s.io/api/core/v1\"\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "replace", "edit_start_line_idx": 22 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // Package namespace contains a controller that handles namespace lifecycle package namespace // import "k8s.io/kubernetes/pkg/controller/namespace"
pkg/controller/namespace/doc.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0001750411611283198, 0.00017145660240203142, 0.00016787204367574304, 0.00017145660240203142, 0.0000035845587262883782 ]
{ "id": 6, "code_window": [ "\t\"k8s.io/apimachinery/pkg/api/resource\"\n", ")\n", "\n", "const (\n", "\tstandardMemoryAmount = 8000000000\n" ], "labels": [ "add", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\"k8s.io/kubernetes/pkg/apis/scheduling\"\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 24 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package qos import ( "k8s.io/api/core/v1" v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos" ) const ( // PodInfraOOMAdj is very docker specific. For arbitrary runtime, it may not make // sense to set sandbox level oom score, e.g. a sandbox could only be a namespace // without a process. // TODO: Handle infra container oom score adj in a runtime agnostic way. PodInfraOOMAdj int = -998 KubeletOOMScoreAdj int = -999 DockerOOMScoreAdj int = -999 KubeProxyOOMScoreAdj int = -999 guaranteedOOMScoreAdj int = -998 besteffortOOMScoreAdj int = 1000 ) // GetContainerOOMAdjust returns the amount by which the OOM score of all processes in the // container should be adjusted. // The OOM score of a process is the percentage of memory it consumes // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000 // and 1000. Containers with higher OOM scores are killed if the system runs out of memory. // See https://lwn.net/Articles/391222/ for more information. func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int { switch v1qos.GetPodQOS(pod) { case v1.PodQOSGuaranteed: // Guaranteed containers should be the last to get killed. return guaranteedOOMScoreAdj case v1.PodQOSBestEffort: return besteffortOOMScoreAdj } // Burstable containers are a middle tier, between Guaranteed and Best-Effort. Ideally, // we want to protect Burstable containers that consume less memory than requested. // The formula below is a heuristic. A container requesting for 10% of a system's // memory will have an OOM score adjust of 900. If a process in container Y // uses over 10% of memory, its OOM score will be 1000. The idea is that containers // which use more than their request will have an OOM score of 1000 and will be prime // targets for OOM kills. // Note that this is a heuristic, it won't work if a container has many small processes. memoryRequest := container.Resources.Requests.Memory().Value() oomScoreAdjust := 1000 - (1000*memoryRequest)/memoryCapacity // A guaranteed pod using 100% of memory can have an OOM score of 10. Ensure // that burstable pods have a higher OOM score adjustment. if int(oomScoreAdjust) < (1000 + guaranteedOOMScoreAdj) { return (1000 + guaranteedOOMScoreAdj) } // Give burstable pods a higher chance of survival over besteffort pods. if int(oomScoreAdjust) == besteffortOOMScoreAdj { return int(oomScoreAdjust - 1) } return int(oomScoreAdjust) }
pkg/kubelet/qos/policy.go
1
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.014562331140041351, 0.002010124735534191, 0.00016578375652898103, 0.00017600166029296815, 0.004745264071971178 ]
{ "id": 6, "code_window": [ "\t\"k8s.io/apimachinery/pkg/api/resource\"\n", ")\n", "\n", "const (\n", "\tstandardMemoryAmount = 8000000000\n" ], "labels": [ "add", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\"k8s.io/kubernetes/pkg/apis/scheduling\"\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 24 }
/* Copyright 2016 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package e2e_node import ( "bytes" "context" "fmt" "io/ioutil" "os" "os/exec" "regexp" "strconv" "strings" "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/apimachinery/pkg/watch" watchtools "k8s.io/client-go/tools/watch" "k8s.io/kubernetes/pkg/security/apparmor" "k8s.io/kubernetes/test/e2e/framework" "github.com/davecgh/go-spew/spew" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "k8s.io/klog" ) var _ = framework.KubeDescribe("AppArmor [Feature:AppArmor][NodeFeature:AppArmor]", func() { if isAppArmorEnabled() { BeforeEach(func() { By("Loading AppArmor profiles for testing") framework.ExpectNoError(loadTestProfiles(), "Could not load AppArmor test profiles") }) Context("when running with AppArmor", func() { f := framework.NewDefaultFramework("apparmor-test") It("should reject an unloaded profile", func() { status := runAppArmorTest(f, false, apparmor.ProfileNamePrefix+"non-existent-profile") expectSoftRejection(status) }) It("should enforce a profile blocking writes", func() { status := runAppArmorTest(f, true, apparmor.ProfileNamePrefix+apparmorProfilePrefix+"deny-write") if len(status.ContainerStatuses) == 0 { framework.Failf("Unexpected pod status: %s", spew.Sdump(status)) return } state := status.ContainerStatuses[0].State.Terminated Expect(state).ToNot(BeNil(), "ContainerState: %+v", status.ContainerStatuses[0].State) Expect(state.ExitCode).To(Not(BeZero()), "ContainerStateTerminated: %+v", state) }) It("should enforce a permissive profile", func() { status := runAppArmorTest(f, true, apparmor.ProfileNamePrefix+apparmorProfilePrefix+"audit-write") if len(status.ContainerStatuses) == 0 { framework.Failf("Unexpected pod status: %s", spew.Sdump(status)) return } state := status.ContainerStatuses[0].State.Terminated Expect(state).ToNot(BeNil(), "ContainerState: %+v", status.ContainerStatuses[0].State) Expect(state.ExitCode).To(BeZero(), "ContainerStateTerminated: %+v", state) }) }) } else { Context("when running without AppArmor", func() { f := framework.NewDefaultFramework("apparmor-test") It("should reject a pod with an AppArmor profile", func() { status := runAppArmorTest(f, false, apparmor.ProfileRuntimeDefault) expectSoftRejection(status) }) }) } }) const apparmorProfilePrefix = "e2e-node-apparmor-test-" const testProfiles = ` #include <tunables/global> profile e2e-node-apparmor-test-deny-write flags=(attach_disconnected) { #include <abstractions/base> file, # Deny all file writes. deny /** w, } profile e2e-node-apparmor-test-audit-write flags=(attach_disconnected) { #include <abstractions/base> file, # Only audit file writes. audit /** w, } ` func loadTestProfiles() error { f, err := ioutil.TempFile("/tmp", "apparmor") if err != nil { return fmt.Errorf("failed to open temp file: %v", err) } defer os.Remove(f.Name()) defer f.Close() if _, err := f.WriteString(testProfiles); err != nil { return fmt.Errorf("failed to write profiles to file: %v", err) } // TODO(random-liu): The test is run as root now, no need to use sudo here. cmd := exec.Command("sudo", "apparmor_parser", "-r", "-W", f.Name()) stderr := &bytes.Buffer{} cmd.Stderr = stderr out, err := cmd.Output() // apparmor_parser does not always return an error code, so consider any stderr output an error. if err != nil || stderr.Len() > 0 { if stderr.Len() > 0 { klog.Warning(stderr.String()) } if len(out) > 0 { klog.Infof("apparmor_parser: %s", out) } return fmt.Errorf("failed to load profiles: %v", err) } klog.V(2).Infof("Loaded profiles: %v", out) return nil } func runAppArmorTest(f *framework.Framework, shouldRun bool, profile string) v1.PodStatus { pod := createPodWithAppArmor(f, profile) if shouldRun { // The pod needs to start before it stops, so wait for the longer start timeout. framework.ExpectNoError(framework.WaitTimeoutForPodNoLongerRunningInNamespace( f.ClientSet, pod.Name, f.Namespace.Name, framework.PodStartTimeout)) } else { // Pod should remain in the pending state. Wait for the Reason to be set to "AppArmor". w, err := f.PodClient().Watch(metav1.SingleObject(metav1.ObjectMeta{Name: pod.Name})) framework.ExpectNoError(err) ctx, cancel := watchtools.ContextWithOptionalTimeout(context.Background(), framework.PodStartTimeout) defer cancel() _, err = watchtools.UntilWithoutRetry(ctx, w, func(e watch.Event) (bool, error) { switch e.Type { case watch.Deleted: return false, errors.NewNotFound(schema.GroupResource{Resource: "pods"}, pod.Name) } switch t := e.Object.(type) { case *v1.Pod: if t.Status.Reason == "AppArmor" { return true, nil } } return false, nil }) framework.ExpectNoError(err) } p, err := f.PodClient().Get(pod.Name, metav1.GetOptions{}) framework.ExpectNoError(err) return p.Status } func createPodWithAppArmor(f *framework.Framework, profile string) *v1.Pod { pod := &v1.Pod{ ObjectMeta: metav1.ObjectMeta{ Name: fmt.Sprintf("test-apparmor-%s", strings.Replace(profile, "/", "-", -1)), Annotations: map[string]string{ apparmor.ContainerAnnotationKeyPrefix + "test": profile, }, }, Spec: v1.PodSpec{ Containers: []v1.Container{{ Name: "test", Image: busyboxImage, Command: []string{"touch", "foo"}, }}, RestartPolicy: v1.RestartPolicyNever, }, } return f.PodClient().Create(pod) } func expectSoftRejection(status v1.PodStatus) { args := []interface{}{"PodStatus: %+v", status} Expect(status.Phase).To(Equal(v1.PodPending), args...) Expect(status.Reason).To(Equal("AppArmor"), args...) Expect(status.Message).To(ContainSubstring("AppArmor"), args...) Expect(status.ContainerStatuses[0].State.Waiting.Reason).To(Equal("Blocked"), args...) } func isAppArmorEnabled() bool { // TODO(tallclair): Pass this through the image setup rather than hardcoding. if strings.Contains(framework.TestContext.NodeName, "-gci-dev-") { gciVersionRe := regexp.MustCompile("-gci-dev-([0-9]+)-") matches := gciVersionRe.FindStringSubmatch(framework.TestContext.NodeName) if len(matches) == 2 { version, err := strconv.Atoi(matches[1]) if err != nil { klog.Errorf("Error parsing GCI version from NodeName %q: %v", framework.TestContext.NodeName, err) return false } return version >= 54 } return false } if strings.Contains(framework.TestContext.NodeName, "-ubuntu-") { return true } return apparmor.IsAppArmorEnabled() }
test/e2e_node/apparmor_test.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.001388156902976334, 0.0002611805102787912, 0.00016521535872016102, 0.00016865209909155965, 0.00030136684654280543 ]
{ "id": 6, "code_window": [ "\t\"k8s.io/apimachinery/pkg/api/resource\"\n", ")\n", "\n", "const (\n", "\tstandardMemoryAmount = 8000000000\n" ], "labels": [ "add", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\"k8s.io/kubernetes/pkg/apis/scheduling\"\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 24 }
/* Copyright 2016 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package glusterfs import ( "testing" ) func TestNewFree(t *testing.T) { min := 1 max := 10 m, err := NewMinMaxAllocator(min, max) if err != nil { t.Errorf("error creating new allocator: '%v'", err) } if f := m.Free(); f != (max - min + 1) { t.Errorf("expect to get %d free, but got %d", (max - min + 1), f) } } func TestNewInvalidRange(t *testing.T) { if _, err := NewMinMaxAllocator(10, 1); err != ErrInvalidRange { t.Errorf("expect to get Error '%v', got '%v'", ErrInvalidRange, err) } } func TestSetRange(t *testing.T) { min := 1 max := 10 m, err := NewMinMaxAllocator(min, max) if err != nil { t.Errorf("error creating new allocator: '%v'", err) } if err = m.SetRange(10, 1); err != ErrInvalidRange { t.Errorf("expected to get error '%v', got '%v'", ErrInvalidRange, err) } if err = m.SetRange(1, 2); err != nil { t.Errorf("error setting range: '%v'", err) } if f := m.Free(); f != 2 { t.Errorf("expect to get %d free, but got %d", 2, f) } if ok, _ := m.Allocate(1); !ok { t.Errorf("error allocate offset %v", 1) } if f := m.Free(); f != 1 { t.Errorf("expect to get 1 free, but got %d", f) } if err = m.SetRange(1, 1); err != nil { t.Errorf("error setting range: '%v'", err) } if f := m.Free(); f != 0 { t.Errorf("expect to get 0 free, but got %d", f) } if err = m.SetRange(2, 2); err != nil { t.Errorf("error setting range: '%v'", err) } if f := m.Free(); f != 1 { t.Errorf("expect to get 1 free, but got %d", f) } } func TestAllocateNext(t *testing.T) { min := 1 max := 10 m, err := NewMinMaxAllocator(min, max) if err != nil { t.Errorf("error creating new allocator: '%v'", err) } el, ok, _ := m.AllocateNext() if !ok { t.Fatalf("unexpected error") } if !m.Has(el) { t.Errorf("expect element %v allocated", el) } if f := m.Free(); f != (max-min+1)-1 { t.Errorf("expect to get %d free, but got %d", (max-min+1)-1, f) } } func TestAllocateMax(t *testing.T) { min := 1 max := 10 m, err := NewMinMaxAllocator(min, max) if err != nil { t.Errorf("error creating new allocator: '%v'", err) } for i := 1; i <= max; i++ { if _, ok, _ := m.AllocateNext(); !ok { t.Fatalf("unexpected error") } } if _, ok, _ := m.AllocateNext(); ok { t.Errorf("unexpected success") } if f := m.Free(); f != 0 { t.Errorf("expect to get %d free, but got %d", 0, f) } } func TestAllocate(t *testing.T) { min := 1 max := 10 offset := 3 m, err := NewMinMaxAllocator(min, max) if err != nil { t.Errorf("error creating new allocator: '%v'", err) } if ok, err := m.Allocate(offset); !ok { t.Errorf("error allocate offset %v: %v", offset, err) } if !m.Has(offset) { t.Errorf("expect element %v allocated", offset) } if f := m.Free(); f != (max-min+1)-1 { t.Errorf("expect to get %d free, but got %d", (max-min+1)-1, f) } } func TestAllocateConflict(t *testing.T) { min := 1 max := 10 offset := 3 m, err := NewMinMaxAllocator(min, max) if err != nil { t.Errorf("error creating new allocator: '%v'", err) } if ok, err := m.Allocate(offset); !ok { t.Errorf("error allocate offset %v: %v", offset, err) } ok, err := m.Allocate(offset) if ok { t.Errorf("unexpected success") } if err != ErrConflict { t.Errorf("expected error '%v', got '%v'", ErrConflict, err) } } func TestAllocateOutOfRange(t *testing.T) { min := 1 max := 10 offset := 11 m, err := NewMinMaxAllocator(min, max) if err != nil { t.Errorf("error creating new allocator: '%v'", err) } ok, err := m.Allocate(offset) if ok { t.Errorf("unexpected success") } if err != ErrOutOfRange { t.Errorf("expected error '%v', got '%v'", ErrOutOfRange, err) } } func TestRelease(t *testing.T) { min := 1 max := 10 offset := 3 m, err := NewMinMaxAllocator(min, max) if err != nil { t.Errorf("error creating new allocator: '%v'", err) } if ok, err := m.Allocate(offset); !ok { t.Errorf("error allocate offset %v: %v", offset, err) } if !m.Has(offset) { t.Errorf("expect offset %v allocated", offset) } if err = m.Release(offset); err != nil { t.Errorf("unexpected error: %v", err) } if m.Has(offset) { t.Errorf("expect offset %v not allocated", offset) } }
pkg/volume/glusterfs/glusterfs_minmax_test.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.00026545976288616657, 0.00017552811186760664, 0.00016765546752139926, 0.0001709332427708432, 0.00001947621967701707 ]
{ "id": 6, "code_window": [ "\t\"k8s.io/apimachinery/pkg/api/resource\"\n", ")\n", "\n", "const (\n", "\tstandardMemoryAmount = 8000000000\n" ], "labels": [ "add", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\"k8s.io/kubernetes/pkg/apis/scheduling\"\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 24 }
/* Copyright The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: k8s.io/kubernetes/vendor/k8s.io/apiserver/pkg/apis/example/v1/generated.proto /* Package v1 is a generated protocol buffer package. It is generated from these files: k8s.io/kubernetes/vendor/k8s.io/apiserver/pkg/apis/example/v1/generated.proto It has these top-level messages: Pod PodCondition PodList PodSpec PodStatus */ package v1 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import k8s_io_apimachinery_pkg_apis_meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package func (m *Pod) Reset() { *m = Pod{} } func (*Pod) ProtoMessage() {} func (*Pod) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{0} } func (m *PodCondition) Reset() { *m = PodCondition{} } func (*PodCondition) ProtoMessage() {} func (*PodCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{1} } func (m *PodList) Reset() { *m = PodList{} } func (*PodList) ProtoMessage() {} func (*PodList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{2} } func (m *PodSpec) Reset() { *m = PodSpec{} } func (*PodSpec) ProtoMessage() {} func (*PodSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{3} } func (m *PodStatus) Reset() { *m = PodStatus{} } func (*PodStatus) ProtoMessage() {} func (*PodStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{4} } func init() { proto.RegisterType((*Pod)(nil), "k8s.io.apiserver.pkg.apis.example.v1.Pod") proto.RegisterType((*PodCondition)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodCondition") proto.RegisterType((*PodList)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodList") proto.RegisterType((*PodSpec)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodSpec") proto.RegisterType((*PodStatus)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodStatus") } func (m *Pod) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Pod) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintGenerated(dAtA, i, uint64(m.ObjectMeta.Size())) n1, err := m.ObjectMeta.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 dAtA[i] = 0x12 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.Spec.Size())) n2, err := m.Spec.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 dAtA[i] = 0x1a i++ i = encodeVarintGenerated(dAtA, i, uint64(m.Status.Size())) n3, err := m.Status.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 return i, nil } func (m *PodCondition) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *PodCondition) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Type))) i += copy(dAtA[i:], m.Type) dAtA[i] = 0x12 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Status))) i += copy(dAtA[i:], m.Status) dAtA[i] = 0x1a i++ i = encodeVarintGenerated(dAtA, i, uint64(m.LastProbeTime.Size())) n4, err := m.LastProbeTime.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n4 dAtA[i] = 0x22 i++ i = encodeVarintGenerated(dAtA, i, uint64(m.LastTransitionTime.Size())) n5, err := m.LastTransitionTime.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n5 dAtA[i] = 0x2a i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Reason))) i += copy(dAtA[i:], m.Reason) dAtA[i] = 0x32 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Message))) i += copy(dAtA[i:], m.Message) return i, nil } func (m *PodList) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *PodList) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintGenerated(dAtA, i, uint64(m.ListMeta.Size())) n6, err := m.ListMeta.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n6 if len(m.Items) > 0 { for _, msg := range m.Items { dAtA[i] = 0x12 i++ i = encodeVarintGenerated(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } return i, nil } func (m *PodSpec) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *PodSpec) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x1a i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.RestartPolicy))) i += copy(dAtA[i:], m.RestartPolicy) if m.TerminationGracePeriodSeconds != nil { dAtA[i] = 0x20 i++ i = encodeVarintGenerated(dAtA, i, uint64(*m.TerminationGracePeriodSeconds)) } if m.ActiveDeadlineSeconds != nil { dAtA[i] = 0x28 i++ i = encodeVarintGenerated(dAtA, i, uint64(*m.ActiveDeadlineSeconds)) } if len(m.NodeSelector) > 0 { keysForNodeSelector := make([]string, 0, len(m.NodeSelector)) for k := range m.NodeSelector { keysForNodeSelector = append(keysForNodeSelector, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForNodeSelector) for _, k := range keysForNodeSelector { dAtA[i] = 0x3a i++ v := m.NodeSelector[string(k)] mapSize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + len(v) + sovGenerated(uint64(len(v))) i = encodeVarintGenerated(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintGenerated(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } dAtA[i] = 0x42 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.ServiceAccountName))) i += copy(dAtA[i:], m.ServiceAccountName) dAtA[i] = 0x4a i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.DeprecatedServiceAccount))) i += copy(dAtA[i:], m.DeprecatedServiceAccount) dAtA[i] = 0x52 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.NodeName))) i += copy(dAtA[i:], m.NodeName) dAtA[i] = 0x58 i++ if m.HostNetwork { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x60 i++ if m.HostPID { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x68 i++ if m.HostIPC { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Hostname))) i += copy(dAtA[i:], m.Hostname) dAtA[i] = 0x8a i++ dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Subdomain))) i += copy(dAtA[i:], m.Subdomain) dAtA[i] = 0x9a i++ dAtA[i] = 0x1 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.SchedulerName))) i += copy(dAtA[i:], m.SchedulerName) return i, nil } func (m *PodStatus) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *PodStatus) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Phase))) i += copy(dAtA[i:], m.Phase) if len(m.Conditions) > 0 { for _, msg := range m.Conditions { dAtA[i] = 0x12 i++ i = encodeVarintGenerated(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } dAtA[i] = 0x1a i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Message))) i += copy(dAtA[i:], m.Message) dAtA[i] = 0x22 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Reason))) i += copy(dAtA[i:], m.Reason) dAtA[i] = 0x2a i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.HostIP))) i += copy(dAtA[i:], m.HostIP) dAtA[i] = 0x32 i++ i = encodeVarintGenerated(dAtA, i, uint64(len(m.PodIP))) i += copy(dAtA[i:], m.PodIP) if m.StartTime != nil { dAtA[i] = 0x3a i++ i = encodeVarintGenerated(dAtA, i, uint64(m.StartTime.Size())) n7, err := m.StartTime.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n7 } return i, nil } func encodeVarintGenerated(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *Pod) Size() (n int) { var l int _ = l l = m.ObjectMeta.Size() n += 1 + l + sovGenerated(uint64(l)) l = m.Spec.Size() n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) return n } func (m *PodCondition) Size() (n int) { var l int _ = l l = len(m.Type) n += 1 + l + sovGenerated(uint64(l)) l = len(m.Status) n += 1 + l + sovGenerated(uint64(l)) l = m.LastProbeTime.Size() n += 1 + l + sovGenerated(uint64(l)) l = m.LastTransitionTime.Size() n += 1 + l + sovGenerated(uint64(l)) l = len(m.Reason) n += 1 + l + sovGenerated(uint64(l)) l = len(m.Message) n += 1 + l + sovGenerated(uint64(l)) return n } func (m *PodList) Size() (n int) { var l int _ = l l = m.ListMeta.Size() n += 1 + l + sovGenerated(uint64(l)) if len(m.Items) > 0 { for _, e := range m.Items { l = e.Size() n += 1 + l + sovGenerated(uint64(l)) } } return n } func (m *PodSpec) Size() (n int) { var l int _ = l l = len(m.RestartPolicy) n += 1 + l + sovGenerated(uint64(l)) if m.TerminationGracePeriodSeconds != nil { n += 1 + sovGenerated(uint64(*m.TerminationGracePeriodSeconds)) } if m.ActiveDeadlineSeconds != nil { n += 1 + sovGenerated(uint64(*m.ActiveDeadlineSeconds)) } if len(m.NodeSelector) > 0 { for k, v := range m.NodeSelector { _ = k _ = v mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + len(v) + sovGenerated(uint64(len(v))) n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) } } l = len(m.ServiceAccountName) n += 1 + l + sovGenerated(uint64(l)) l = len(m.DeprecatedServiceAccount) n += 1 + l + sovGenerated(uint64(l)) l = len(m.NodeName) n += 1 + l + sovGenerated(uint64(l)) n += 2 n += 2 n += 2 l = len(m.Hostname) n += 2 + l + sovGenerated(uint64(l)) l = len(m.Subdomain) n += 2 + l + sovGenerated(uint64(l)) l = len(m.SchedulerName) n += 2 + l + sovGenerated(uint64(l)) return n } func (m *PodStatus) Size() (n int) { var l int _ = l l = len(m.Phase) n += 1 + l + sovGenerated(uint64(l)) if len(m.Conditions) > 0 { for _, e := range m.Conditions { l = e.Size() n += 1 + l + sovGenerated(uint64(l)) } } l = len(m.Message) n += 1 + l + sovGenerated(uint64(l)) l = len(m.Reason) n += 1 + l + sovGenerated(uint64(l)) l = len(m.HostIP) n += 1 + l + sovGenerated(uint64(l)) l = len(m.PodIP) n += 1 + l + sovGenerated(uint64(l)) if m.StartTime != nil { l = m.StartTime.Size() n += 1 + l + sovGenerated(uint64(l)) } return n } func sovGenerated(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozGenerated(x uint64) (n int) { return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Pod) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Pod{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "PodSpec", "PodSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "PodStatus", "PodStatus", 1), `&`, ``, 1) + `,`, `}`, }, "") return s } func (this *PodCondition) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&PodCondition{`, `Type:` + fmt.Sprintf("%v", this.Type) + `,`, `Status:` + fmt.Sprintf("%v", this.Status) + `,`, `LastProbeTime:` + strings.Replace(strings.Replace(this.LastProbeTime.String(), "Time", "k8s_io_apimachinery_pkg_apis_meta_v1.Time", 1), `&`, ``, 1) + `,`, `LastTransitionTime:` + strings.Replace(strings.Replace(this.LastTransitionTime.String(), "Time", "k8s_io_apimachinery_pkg_apis_meta_v1.Time", 1), `&`, ``, 1) + `,`, `Reason:` + fmt.Sprintf("%v", this.Reason) + `,`, `Message:` + fmt.Sprintf("%v", this.Message) + `,`, `}`, }, "") return s } func (this *PodList) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&PodList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Pod", "Pod", 1), `&`, ``, 1) + `,`, `}`, }, "") return s } func (this *PodSpec) String() string { if this == nil { return "nil" } keysForNodeSelector := make([]string, 0, len(this.NodeSelector)) for k := range this.NodeSelector { keysForNodeSelector = append(keysForNodeSelector, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNodeSelector) mapStringForNodeSelector := "map[string]string{" for _, k := range keysForNodeSelector { mapStringForNodeSelector += fmt.Sprintf("%v: %v,", k, this.NodeSelector[k]) } mapStringForNodeSelector += "}" s := strings.Join([]string{`&PodSpec{`, `RestartPolicy:` + fmt.Sprintf("%v", this.RestartPolicy) + `,`, `TerminationGracePeriodSeconds:` + valueToStringGenerated(this.TerminationGracePeriodSeconds) + `,`, `ActiveDeadlineSeconds:` + valueToStringGenerated(this.ActiveDeadlineSeconds) + `,`, `NodeSelector:` + mapStringForNodeSelector + `,`, `ServiceAccountName:` + fmt.Sprintf("%v", this.ServiceAccountName) + `,`, `DeprecatedServiceAccount:` + fmt.Sprintf("%v", this.DeprecatedServiceAccount) + `,`, `NodeName:` + fmt.Sprintf("%v", this.NodeName) + `,`, `HostNetwork:` + fmt.Sprintf("%v", this.HostNetwork) + `,`, `HostPID:` + fmt.Sprintf("%v", this.HostPID) + `,`, `HostIPC:` + fmt.Sprintf("%v", this.HostIPC) + `,`, `Hostname:` + fmt.Sprintf("%v", this.Hostname) + `,`, `Subdomain:` + fmt.Sprintf("%v", this.Subdomain) + `,`, `SchedulerName:` + fmt.Sprintf("%v", this.SchedulerName) + `,`, `}`, }, "") return s } func (this *PodStatus) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&PodStatus{`, `Phase:` + fmt.Sprintf("%v", this.Phase) + `,`, `Conditions:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Conditions), "PodCondition", "PodCondition", 1), `&`, ``, 1) + `,`, `Message:` + fmt.Sprintf("%v", this.Message) + `,`, `Reason:` + fmt.Sprintf("%v", this.Reason) + `,`, `HostIP:` + fmt.Sprintf("%v", this.HostIP) + `,`, `PodIP:` + fmt.Sprintf("%v", this.PodIP) + `,`, `StartTime:` + strings.Replace(fmt.Sprintf("%v", this.StartTime), "Time", "k8s_io_apimachinery_pkg_apis_meta_v1.Time", 1) + `,`, `}`, }, "") return s } func valueToStringGenerated(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Pod) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Pod: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Pod: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.ObjectMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Spec", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Spec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthGenerated } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *PodCondition) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: PodCondition: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: PodCondition: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Type = PodConditionType(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Status = ConditionStatus(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field LastProbeTime", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.LastProbeTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field LastTransitionTime", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.LastTransitionTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Reason", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Reason = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Message = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthGenerated } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *PodList) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: PodList: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: PodList: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ListMeta", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.ListMeta.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Items", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Items = append(m.Items, Pod{}) if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthGenerated } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *PodSpec) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: PodSpec: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: PodSpec: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field RestartPolicy", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.RestartPolicy = RestartPolicy(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field TerminationGracePeriodSeconds", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.TerminationGracePeriodSeconds = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field ActiveDeadlineSeconds", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.ActiveDeadlineSeconds = &v case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NodeSelector", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NodeSelector == nil { m.NodeSelector = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthGenerated } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthGenerated } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipGenerated(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthGenerated } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NodeSelector[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ServiceAccountName", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.ServiceAccountName = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field DeprecatedServiceAccount", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.DeprecatedServiceAccount = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NodeName", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.NodeName = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 11: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field HostNetwork", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.HostNetwork = bool(v != 0) case 12: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field HostPID", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.HostPID = bool(v != 0) case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field HostIPC", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.HostIPC = bool(v != 0) case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Hostname", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Hostname = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Subdomain", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Subdomain = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 19: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SchedulerName", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.SchedulerName = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthGenerated } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *PodStatus) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: PodStatus: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: PodStatus: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Phase", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Phase = PodPhase(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Conditions", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Conditions = append(m.Conditions, PodCondition{}) if err := m.Conditions[len(m.Conditions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Message = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Reason", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Reason = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field HostIP", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.HostIP = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field PodIP", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.PodIP = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StartTime", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGenerated } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthGenerated } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StartTime == nil { m.StartTime = &k8s_io_apimachinery_pkg_apis_meta_v1.Time{} } if err := m.StartTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthGenerated } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipGenerated(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGenerated } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGenerated } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGenerated } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthGenerated } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGenerated } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipGenerated(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthGenerated = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGenerated = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("k8s.io/kubernetes/vendor/k8s.io/apiserver/pkg/apis/example/v1/generated.proto", fileDescriptorGenerated) } var fileDescriptorGenerated = []byte{ // 1052 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x55, 0xcf, 0x6e, 0xdb, 0xc6, 0x13, 0x36, 0x2d, 0xcb, 0x92, 0xd6, 0x56, 0x62, 0x6f, 0x62, 0x80, 0x31, 0x10, 0xc9, 0xf1, 0xef, 0x07, 0xc3, 0x29, 0x1a, 0xb2, 0x36, 0xd2, 0x22, 0x6d, 0x0f, 0x41, 0x68, 0x17, 0xb5, 0x0b, 0xff, 0x21, 0x56, 0x06, 0x02, 0x14, 0x3d, 0x74, 0x45, 0x4e, 0x64, 0x56, 0x22, 0x97, 0x58, 0xae, 0xd4, 0xea, 0xd6, 0x47, 0x68, 0x1f, 0xa0, 0x4f, 0xd1, 0x43, 0x81, 0x3e, 0x81, 0x8f, 0x39, 0xe6, 0x24, 0xd4, 0xea, 0x5b, 0xf8, 0x54, 0xec, 0xf2, 0x8f, 0x48, 0x4b, 0x75, 0xe5, 0xdb, 0xee, 0xcc, 0xf7, 0x7d, 0x33, 0x9c, 0x1d, 0xce, 0xa0, 0xd3, 0xee, 0xab, 0xc8, 0xf0, 0x98, 0xd9, 0xed, 0xb7, 0x81, 0x07, 0x20, 0x20, 0x32, 0x07, 0x10, 0xb8, 0x8c, 0x9b, 0x89, 0x83, 0x86, 0x5e, 0x04, 0x7c, 0x00, 0xdc, 0x0c, 0xbb, 0x1d, 0x75, 0x33, 0xe1, 0x27, 0xea, 0x87, 0x3d, 0x30, 0x07, 0x7b, 0x66, 0x07, 0x02, 0xe0, 0x54, 0x80, 0x6b, 0x84, 0x9c, 0x09, 0x86, 0xff, 0x1f, 0xb3, 0x8c, 0x8c, 0x65, 0x84, 0xdd, 0x8e, 0xba, 0x19, 0x09, 0xcb, 0x18, 0xec, 0x6d, 0xbe, 0xe8, 0x78, 0xe2, 0xb2, 0xdf, 0x36, 0x1c, 0xe6, 0x9b, 0x1d, 0xd6, 0x61, 0xa6, 0x22, 0xb7, 0xfb, 0xef, 0xd4, 0x4d, 0x5d, 0xd4, 0x29, 0x16, 0xdd, 0x7c, 0x39, 0x49, 0xc5, 0xa7, 0xce, 0xa5, 0x17, 0x00, 0x1f, 0x4e, 0xb2, 0xf1, 0x41, 0xd0, 0x19, 0xa9, 0x6c, 0x9a, 0xff, 0xc6, 0xe2, 0xfd, 0x40, 0x78, 0x3e, 0x4c, 0x11, 0x3e, 0xfb, 0x2f, 0x42, 0xe4, 0x5c, 0x82, 0x4f, 0x6f, 0xf3, 0xb6, 0x7f, 0x5d, 0x44, 0x25, 0x9b, 0xb9, 0xf8, 0x7b, 0x54, 0x95, 0xb9, 0xb8, 0x54, 0x50, 0x5d, 0xdb, 0xd2, 0x76, 0x57, 0xf6, 0x3f, 0x31, 0x26, 0xe5, 0xc8, 0x24, 0x27, 0x15, 0x91, 0x68, 0x63, 0xb0, 0x67, 0x9c, 0xb7, 0x7f, 0x00, 0x47, 0x9c, 0x82, 0xa0, 0x16, 0xbe, 0x1a, 0x35, 0x17, 0xc6, 0xa3, 0x26, 0x9a, 0xd8, 0x48, 0xa6, 0x8a, 0xcf, 0xd1, 0x52, 0x14, 0x82, 0xa3, 0x2f, 0x2a, 0xf5, 0x17, 0xc6, 0x3c, 0xc5, 0x36, 0x6c, 0xe6, 0xb6, 0x42, 0x70, 0xac, 0xd5, 0x44, 0x7a, 0x49, 0xde, 0x88, 0x12, 0xc2, 0x6f, 0xd1, 0x72, 0x24, 0xa8, 0xe8, 0x47, 0x7a, 0x49, 0x49, 0x9a, 0xf3, 0x4b, 0x2a, 0x9a, 0xf5, 0x20, 0x11, 0x5d, 0x8e, 0xef, 0x24, 0x91, 0xdb, 0xfe, 0xbd, 0x84, 0x56, 0x6d, 0xe6, 0x1e, 0xb0, 0xc0, 0xf5, 0x84, 0xc7, 0x02, 0xfc, 0x12, 0x2d, 0x89, 0x61, 0x08, 0xaa, 0x30, 0x35, 0x6b, 0x2b, 0xcd, 0xe5, 0x62, 0x18, 0xc2, 0xcd, 0xa8, 0xb9, 0x96, 0xc7, 0x4a, 0x1b, 0x51, 0x68, 0xfc, 0x79, 0x96, 0xdf, 0xa2, 0xe2, 0x3d, 0x2b, 0x86, 0xbb, 0x19, 0x35, 0x1f, 0x66, 0xb4, 0x62, 0x06, 0xb8, 0x83, 0xea, 0x3d, 0x1a, 0x09, 0x9b, 0xb3, 0x36, 0x5c, 0x78, 0x3e, 0x24, 0x5f, 0xf8, 0xd1, 0x7c, 0x4f, 0x22, 0x19, 0xd6, 0x46, 0x12, 0xad, 0x7e, 0x92, 0x17, 0x22, 0x45, 0x5d, 0x3c, 0x40, 0x58, 0x1a, 0x2e, 0x38, 0x0d, 0xa2, 0x38, 0x7f, 0x19, 0x6d, 0xe9, 0xde, 0xd1, 0x36, 0x93, 0x68, 0xf8, 0x64, 0x4a, 0x8d, 0xcc, 0x88, 0x80, 0x77, 0xd0, 0x32, 0x07, 0x1a, 0xb1, 0x40, 0x2f, 0xab, 0xda, 0x64, 0x4f, 0x41, 0x94, 0x95, 0x24, 0x5e, 0xfc, 0x1c, 0x55, 0x7c, 0x88, 0x22, 0xda, 0x01, 0x7d, 0x59, 0x01, 0x1f, 0x26, 0xc0, 0xca, 0x69, 0x6c, 0x26, 0xa9, 0x7f, 0xfb, 0x0f, 0x0d, 0x55, 0x6c, 0xe6, 0x9e, 0x78, 0x91, 0xc0, 0xdf, 0x4d, 0x75, 0xb3, 0x31, 0xdf, 0xc7, 0x48, 0xb6, 0xea, 0xe5, 0xb5, 0x24, 0x4e, 0x35, 0xb5, 0xe4, 0x3a, 0xf9, 0x0c, 0x95, 0x3d, 0x01, 0xbe, 0x7c, 0xd7, 0xd2, 0xee, 0xca, 0xfe, 0xf3, 0xb9, 0xfb, 0xce, 0xaa, 0x27, 0xaa, 0xe5, 0x63, 0xc9, 0x27, 0xb1, 0xcc, 0xf6, 0x9f, 0x15, 0x95, 0xb9, 0x6c, 0x6d, 0x7c, 0x82, 0xea, 0x1c, 0x22, 0x41, 0xb9, 0xb0, 0x59, 0xcf, 0x73, 0x86, 0xea, 0xe5, 0x6b, 0xd6, 0x4e, 0xfa, 0x9a, 0x24, 0xef, 0xbc, 0xb9, 0x6d, 0x20, 0x45, 0x32, 0xee, 0xa0, 0xa7, 0x02, 0xb8, 0xef, 0x05, 0x54, 0x56, 0xfe, 0x6b, 0x4e, 0x1d, 0xb0, 0x81, 0x7b, 0xcc, 0x6d, 0x81, 0xc3, 0x02, 0x37, 0x52, 0x2f, 0x5d, 0xb2, 0x9e, 0x8d, 0x47, 0xcd, 0xa7, 0x17, 0x77, 0x01, 0xc9, 0xdd, 0x3a, 0xf8, 0x1c, 0x6d, 0x50, 0x47, 0x78, 0x03, 0x38, 0x04, 0xea, 0xf6, 0xbc, 0x00, 0xd2, 0x00, 0x65, 0x15, 0xe0, 0xc9, 0x78, 0xd4, 0xdc, 0x78, 0x33, 0x0b, 0x40, 0x66, 0xf3, 0xf0, 0x10, 0xad, 0x06, 0xcc, 0x85, 0x16, 0xf4, 0xc0, 0x11, 0x8c, 0xeb, 0x15, 0x55, 0xea, 0xd7, 0xf7, 0x9a, 0x1a, 0xc6, 0x59, 0x4e, 0xe1, 0xab, 0x40, 0xf0, 0xa1, 0xf5, 0x38, 0xa9, 0xe3, 0x6a, 0xde, 0x45, 0x0a, 0xa1, 0xf0, 0x37, 0x08, 0x4b, 0x6d, 0xcf, 0x81, 0x37, 0x8e, 0xc3, 0xfa, 0x81, 0x38, 0xa3, 0x3e, 0xe8, 0x55, 0xf5, 0x0e, 0x59, 0x9f, 0xb7, 0xa6, 0x10, 0x64, 0x06, 0x0b, 0x1f, 0xa1, 0x07, 0x45, 0xab, 0x5e, 0x2b, 0xcc, 0x10, 0xfd, 0x10, 0x42, 0x0e, 0x8e, 0x1c, 0xc8, 0x45, 0x45, 0x72, 0x8b, 0x87, 0x3f, 0x46, 0x55, 0x99, 0xa5, 0xca, 0x05, 0x29, 0x8d, 0xac, 0x45, 0xcf, 0x12, 0x3b, 0xc9, 0x10, 0xf8, 0x53, 0xb4, 0x72, 0xc9, 0x22, 0x71, 0x06, 0xe2, 0x47, 0xc6, 0xbb, 0xfa, 0xca, 0x96, 0xb6, 0x5b, 0xb5, 0x1e, 0x25, 0x84, 0x95, 0xa3, 0x89, 0x8b, 0xe4, 0x71, 0xf2, 0x77, 0x93, 0x57, 0xfb, 0xf8, 0x50, 0x5f, 0x55, 0x94, 0xec, 0x77, 0x3b, 0x8a, 0xcd, 0x24, 0xf5, 0xa7, 0xd0, 0x63, 0xfb, 0x40, 0xaf, 0x4f, 0x43, 0x8f, 0xed, 0x03, 0x92, 0xfa, 0x65, 0xea, 0xf2, 0x18, 0xc8, 0xd4, 0xd7, 0x8a, 0xa9, 0x1f, 0x25, 0x76, 0x92, 0x21, 0xb0, 0x89, 0x6a, 0x51, 0xbf, 0xed, 0x32, 0x9f, 0x7a, 0x81, 0xbe, 0xae, 0xe0, 0xeb, 0x09, 0xbc, 0xd6, 0x4a, 0x1d, 0x64, 0x82, 0xc1, 0x5f, 0xa2, 0xba, 0x5c, 0x6e, 0x6e, 0xbf, 0x07, 0x5c, 0xc5, 0x78, 0xa4, 0x48, 0xd9, 0x00, 0x6c, 0xa5, 0x4e, 0x55, 0xa3, 0x22, 0x76, 0xf3, 0x35, 0x5a, 0x9f, 0xea, 0x12, 0xbc, 0x86, 0x4a, 0x5d, 0x18, 0xc6, 0xe3, 0x9e, 0xc8, 0x23, 0x7e, 0x8c, 0xca, 0x03, 0xda, 0xeb, 0x43, 0x3c, 0xca, 0x49, 0x7c, 0xf9, 0x62, 0xf1, 0x95, 0xb6, 0xfd, 0x5b, 0x09, 0xd5, 0xb2, 0x95, 0x82, 0x4d, 0x54, 0x0e, 0x2f, 0x69, 0x94, 0xae, 0x8a, 0x27, 0xe9, 0xff, 0x6e, 0x4b, 0xe3, 0xcd, 0xa8, 0x59, 0xb5, 0x99, 0xab, 0xce, 0x24, 0xc6, 0xe1, 0x77, 0x08, 0x39, 0xe9, 0x12, 0x48, 0x07, 0xca, 0xfe, 0xdc, 0x5d, 0x9e, 0xed, 0x8f, 0xc9, 0xee, 0xcd, 0x4c, 0x11, 0xc9, 0x29, 0xe7, 0x07, 0x69, 0xe9, 0xee, 0x41, 0x9a, 0x9b, 0xcd, 0x4b, 0x77, 0xce, 0xe6, 0x1d, 0xb4, 0x1c, 0xbf, 0xf0, 0xed, 0x19, 0x1e, 0x37, 0x00, 0x49, 0xbc, 0xf8, 0x7f, 0xa8, 0x1c, 0x32, 0xf7, 0xd8, 0x4e, 0x26, 0x78, 0x36, 0x03, 0x6d, 0x69, 0x24, 0xb1, 0x0f, 0xbf, 0x45, 0x35, 0x35, 0xb8, 0xd4, 0xfe, 0xa9, 0xdc, 0x7b, 0xff, 0xd4, 0x55, 0x77, 0xa4, 0x02, 0x64, 0xa2, 0x65, 0xed, 0x5e, 0x5d, 0x37, 0x16, 0xde, 0x5f, 0x37, 0x16, 0x3e, 0x5c, 0x37, 0x16, 0x7e, 0x1e, 0x37, 0xb4, 0xab, 0x71, 0x43, 0x7b, 0x3f, 0x6e, 0x68, 0x1f, 0xc6, 0x0d, 0xed, 0xaf, 0x71, 0x43, 0xfb, 0xe5, 0xef, 0xc6, 0xc2, 0xb7, 0x8b, 0x83, 0xbd, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x7a, 0x1b, 0x54, 0x4e, 0x0a, 0x00, 0x00, }
staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.01303530391305685, 0.0003837479744106531, 0.00016502232756465673, 0.0001695454411674291, 0.0013532154262065887 ]
{ "id": 7, "code_window": [ "\t\t\t\t\t},\n", "\t\t\t\t},\n", "\t\t\t},\n", "\t\t},\n", "\t}\n", ")\n", "\n", "type oomTest struct {\n", "\tpod *v1.Pod\n", "\tmemoryCapacity int64\n" ], "labels": [ "keep", "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\n", "\tsystemCritical = scheduling.SystemCriticalPriority\n", "\n", "\tcritical = v1.Pod{\n", "\t\tSpec: v1.PodSpec{\n", "\t\t\tPriority: &systemCritical,\n", "\t\t\tContainers: []v1.Container{\n", "\t\t\t\t{\n", "\t\t\t\t\tResources: v1.ResourceRequirements{},\n", "\t\t\t\t},\n", "\t\t\t},\n", "\t\t},\n", "\t}\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 137 }
package(default_visibility = ["//visibility:public"]) load( "@io_bazel_rules_go//go:def.bzl", "go_library", "go_test", ) go_test( name = "go_default_test", srcs = ["policy_test.go"], embed = [":go_default_library"], deps = [ "//staging/src/k8s.io/api/core/v1:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/api/resource:go_default_library", ], ) go_library( name = "go_default_library", srcs = [ "doc.go", "policy.go", ], importpath = "k8s.io/kubernetes/pkg/kubelet/qos", deps = [ "//pkg/apis/core/v1/helper/qos:go_default_library", "//staging/src/k8s.io/api/core/v1:go_default_library", ], ) filegroup( name = "package-srcs", srcs = glob(["**"]), tags = ["automanaged"], visibility = ["//visibility:private"], ) filegroup( name = "all-srcs", srcs = [":package-srcs"], tags = ["automanaged"], )
pkg/kubelet/qos/BUILD
1
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0001756929705152288, 0.00017408367421012372, 0.0001727790222503245, 0.00017429802392143756, 0.0000010827826599779655 ]
{ "id": 7, "code_window": [ "\t\t\t\t\t},\n", "\t\t\t\t},\n", "\t\t\t},\n", "\t\t},\n", "\t}\n", ")\n", "\n", "type oomTest struct {\n", "\tpod *v1.Pod\n", "\tmemoryCapacity int64\n" ], "labels": [ "keep", "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\n", "\tsystemCritical = scheduling.SystemCriticalPriority\n", "\n", "\tcritical = v1.Pod{\n", "\t\tSpec: v1.PodSpec{\n", "\t\t\tPriority: &systemCritical,\n", "\t\t\tContainers: []v1.Container{\n", "\t\t\t\t{\n", "\t\t\t\t\tResources: v1.ResourceRequirements{},\n", "\t\t\t\t},\n", "\t\t\t},\n", "\t\t},\n", "\t}\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 137 }
// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package raft import ( "bytes" "fmt" pb "github.com/coreos/etcd/raft/raftpb" ) func (st StateType) MarshalJSON() ([]byte, error) { return []byte(fmt.Sprintf("%q", st.String())), nil } // uint64Slice implements sort interface type uint64Slice []uint64 func (p uint64Slice) Len() int { return len(p) } func (p uint64Slice) Less(i, j int) bool { return p[i] < p[j] } func (p uint64Slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } func min(a, b uint64) uint64 { if a > b { return b } return a } func max(a, b uint64) uint64 { if a > b { return a } return b } func IsLocalMsg(msgt pb.MessageType) bool { return msgt == pb.MsgHup || msgt == pb.MsgBeat || msgt == pb.MsgUnreachable || msgt == pb.MsgSnapStatus || msgt == pb.MsgCheckQuorum } func IsResponseMsg(msgt pb.MessageType) bool { return msgt == pb.MsgAppResp || msgt == pb.MsgVoteResp || msgt == pb.MsgHeartbeatResp || msgt == pb.MsgUnreachable || msgt == pb.MsgPreVoteResp } // voteResponseType maps vote and prevote message types to their corresponding responses. func voteRespMsgType(msgt pb.MessageType) pb.MessageType { switch msgt { case pb.MsgVote: return pb.MsgVoteResp case pb.MsgPreVote: return pb.MsgPreVoteResp default: panic(fmt.Sprintf("not a vote message: %s", msgt)) } } // EntryFormatter can be implemented by the application to provide human-readable formatting // of entry data. Nil is a valid EntryFormatter and will use a default format. type EntryFormatter func([]byte) string // DescribeMessage returns a concise human-readable description of a // Message for debugging. func DescribeMessage(m pb.Message, f EntryFormatter) string { var buf bytes.Buffer fmt.Fprintf(&buf, "%x->%x %v Term:%d Log:%d/%d", m.From, m.To, m.Type, m.Term, m.LogTerm, m.Index) if m.Reject { fmt.Fprintf(&buf, " Rejected") if m.RejectHint != 0 { fmt.Fprintf(&buf, "(Hint:%d)", m.RejectHint) } } if m.Commit != 0 { fmt.Fprintf(&buf, " Commit:%d", m.Commit) } if len(m.Entries) > 0 { fmt.Fprintf(&buf, " Entries:[") for i, e := range m.Entries { if i != 0 { buf.WriteString(", ") } buf.WriteString(DescribeEntry(e, f)) } fmt.Fprintf(&buf, "]") } if !IsEmptySnap(m.Snapshot) { fmt.Fprintf(&buf, " Snapshot:%v", m.Snapshot) } return buf.String() } // DescribeEntry returns a concise human-readable description of an // Entry for debugging. func DescribeEntry(e pb.Entry, f EntryFormatter) string { var formatted string if e.Type == pb.EntryNormal && f != nil { formatted = f(e.Data) } else { formatted = fmt.Sprintf("%q", e.Data) } return fmt.Sprintf("%d/%d %s %s", e.Term, e.Index, e.Type, formatted) } func limitSize(ents []pb.Entry, maxSize uint64) []pb.Entry { if len(ents) == 0 { return ents } size := ents[0].Size() var limit int for limit = 1; limit < len(ents); limit++ { size += ents[limit].Size() if uint64(size) > maxSize { break } } return ents[:limit] }
vendor/github.com/coreos/etcd/raft/util.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.00020469556329771876, 0.00017405439575668424, 0.00016558612696826458, 0.00017077504890039563, 0.000009874400348053314 ]
{ "id": 7, "code_window": [ "\t\t\t\t\t},\n", "\t\t\t\t},\n", "\t\t\t},\n", "\t\t},\n", "\t}\n", ")\n", "\n", "type oomTest struct {\n", "\tpod *v1.Pod\n", "\tmemoryCapacity int64\n" ], "labels": [ "keep", "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\n", "\tsystemCritical = scheduling.SystemCriticalPriority\n", "\n", "\tcritical = v1.Pod{\n", "\t\tSpec: v1.PodSpec{\n", "\t\t\tPriority: &systemCritical,\n", "\t\t\tContainers: []v1.Container{\n", "\t\t\t\t{\n", "\t\t\t\t\tResources: v1.ResourceRequirements{},\n", "\t\t\t\t},\n", "\t\t\t},\n", "\t\t},\n", "\t}\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 137 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package v1 import metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" // +genclient // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object // TestType is a top-level type. A client is created for it. type TestType struct { metav1.TypeMeta `json:",inline"` // +optional metav1.ObjectMeta `json:"metadata,omitempty"` // +optional Status TestTypeStatus `json:"status,omitempty"` } // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object // TestTypeList is a top-level list type. The client methods for lists are automatically created. // You are not supposed to create a separated client for this one. type TestTypeList struct { metav1.TypeMeta `json:",inline"` // +optional metav1.ListMeta `json:"metadata,omitempty"` Items []TestType `json:"items"` } type TestTypeStatus struct { Blah string }
staging/src/k8s.io/code-generator/_examples/apiserver/apis/example2/v1/types.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0006471705855801702, 0.0002688219246920198, 0.00016803266771603376, 0.00017629876674618572, 0.00018920494767371565 ]
{ "id": 7, "code_window": [ "\t\t\t\t\t},\n", "\t\t\t\t},\n", "\t\t\t},\n", "\t\t},\n", "\t}\n", ")\n", "\n", "type oomTest struct {\n", "\tpod *v1.Pod\n", "\tmemoryCapacity int64\n" ], "labels": [ "keep", "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\n", "\tsystemCritical = scheduling.SystemCriticalPriority\n", "\n", "\tcritical = v1.Pod{\n", "\t\tSpec: v1.PodSpec{\n", "\t\t\tPriority: &systemCritical,\n", "\t\t\tContainers: []v1.Container{\n", "\t\t\t\t{\n", "\t\t\t\t\tResources: v1.ResourceRequirements{},\n", "\t\t\t\t},\n", "\t\t\t},\n", "\t\t},\n", "\t}\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 137 }
# Copyright 2016 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. SRCS=nettest ARCH ?= amd64 TARGET ?= $(CURDIR) GOLANG_VERSION ?= latest SRC_DIR = $(notdir $(shell pwd)) export bin: ../image-util.sh bin $(SRCS) .PHONY: bin
test/images/nettest/Makefile
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0001784682390280068, 0.00017446106357965618, 0.00016757985576987267, 0.00017733511049300432, 0.000004887692739430349 ]
{ "id": 8, "code_window": [ "\t\t\tmemoryCapacity: standardMemoryAmount,\n", "\t\t\tlowOOMScoreAdj: 2,\n", "\t\t\thighOOMScoreAdj: 2,\n", "\t\t},\n", "\t}\n", "\tfor _, test := range oomTests {\n", "\t\toomScoreAdj := GetContainerOOMScoreAdjust(test.pod, &test.pod.Spec.Containers[0], test.memoryCapacity)\n", "\t\tif oomScoreAdj < test.lowOOMScoreAdj || oomScoreAdj > test.highOOMScoreAdj {\n", "\t\t\tt.Errorf(\"oom_score_adj should be between %d and %d, but was %d\", test.lowOOMScoreAdj, test.highOOMScoreAdj, oomScoreAdj)\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t{\n", "\t\t\tpod: &critical,\n", "\t\t\tmemoryCapacity: 4000000000,\n", "\t\t\tlowOOMScoreAdj: -998,\n", "\t\t\thighOOMScoreAdj: -998,\n", "\t\t},\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 190 }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package qos import ( "k8s.io/api/core/v1" v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos" ) const ( // PodInfraOOMAdj is very docker specific. For arbitrary runtime, it may not make // sense to set sandbox level oom score, e.g. a sandbox could only be a namespace // without a process. // TODO: Handle infra container oom score adj in a runtime agnostic way. PodInfraOOMAdj int = -998 KubeletOOMScoreAdj int = -999 DockerOOMScoreAdj int = -999 KubeProxyOOMScoreAdj int = -999 guaranteedOOMScoreAdj int = -998 besteffortOOMScoreAdj int = 1000 ) // GetContainerOOMAdjust returns the amount by which the OOM score of all processes in the // container should be adjusted. // The OOM score of a process is the percentage of memory it consumes // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000 // and 1000. Containers with higher OOM scores are killed if the system runs out of memory. // See https://lwn.net/Articles/391222/ for more information. func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int { switch v1qos.GetPodQOS(pod) { case v1.PodQOSGuaranteed: // Guaranteed containers should be the last to get killed. return guaranteedOOMScoreAdj case v1.PodQOSBestEffort: return besteffortOOMScoreAdj } // Burstable containers are a middle tier, between Guaranteed and Best-Effort. Ideally, // we want to protect Burstable containers that consume less memory than requested. // The formula below is a heuristic. A container requesting for 10% of a system's // memory will have an OOM score adjust of 900. If a process in container Y // uses over 10% of memory, its OOM score will be 1000. The idea is that containers // which use more than their request will have an OOM score of 1000 and will be prime // targets for OOM kills. // Note that this is a heuristic, it won't work if a container has many small processes. memoryRequest := container.Resources.Requests.Memory().Value() oomScoreAdjust := 1000 - (1000*memoryRequest)/memoryCapacity // A guaranteed pod using 100% of memory can have an OOM score of 10. Ensure // that burstable pods have a higher OOM score adjustment. if int(oomScoreAdjust) < (1000 + guaranteedOOMScoreAdj) { return (1000 + guaranteedOOMScoreAdj) } // Give burstable pods a higher chance of survival over besteffort pods. if int(oomScoreAdjust) == besteffortOOMScoreAdj { return int(oomScoreAdjust - 1) } return int(oomScoreAdjust) }
pkg/kubelet/qos/policy.go
1
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.8410308361053467, 0.11157781630754471, 0.00017872845637612045, 0.0011528031900525093, 0.2759586274623871 ]
{ "id": 8, "code_window": [ "\t\t\tmemoryCapacity: standardMemoryAmount,\n", "\t\t\tlowOOMScoreAdj: 2,\n", "\t\t\thighOOMScoreAdj: 2,\n", "\t\t},\n", "\t}\n", "\tfor _, test := range oomTests {\n", "\t\toomScoreAdj := GetContainerOOMScoreAdjust(test.pod, &test.pod.Spec.Containers[0], test.memoryCapacity)\n", "\t\tif oomScoreAdj < test.lowOOMScoreAdj || oomScoreAdj > test.highOOMScoreAdj {\n", "\t\t\tt.Errorf(\"oom_score_adj should be between %d and %d, but was %d\", test.lowOOMScoreAdj, test.highOOMScoreAdj, oomScoreAdj)\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t{\n", "\t\t\tpod: &critical,\n", "\t\t\tmemoryCapacity: 4000000000,\n", "\t\t\tlowOOMScoreAdj: -998,\n", "\t\t\thighOOMScoreAdj: -998,\n", "\t\t},\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 190 }
package(default_visibility = ["//visibility:public"]) load( "@io_bazel_rules_go//go:def.bzl", "go_library", "go_test", ) go_library( name = "go_default_library", srcs = ["fuzzer.go"], importpath = "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/fuzzer", deps = [ "//cmd/kubeadm/app/apis/kubeadm:go_default_library", "//cmd/kubeadm/app/apis/kubeadm/v1beta1:go_default_library", "//cmd/kubeadm/app/constants:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/runtime/serializer:go_default_library", "//vendor/github.com/google/gofuzz:go_default_library", ], ) filegroup( name = "package-srcs", srcs = glob(["**"]), tags = ["automanaged"], visibility = ["//visibility:private"], ) filegroup( name = "all-srcs", srcs = [":package-srcs"], tags = ["automanaged"], ) go_test( name = "go_default_test", srcs = ["fuzzer_test.go"], embed = [":go_default_library"], deps = [ "//cmd/kubeadm/app/apis/kubeadm/scheme:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip:go_default_library", ], )
cmd/kubeadm/app/apis/kubeadm/fuzzer/BUILD
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.000177009918843396, 0.00017438836221117526, 0.00017155648674815893, 0.00017518893582746387, 0.0000019377614535187604 ]
{ "id": 8, "code_window": [ "\t\t\tmemoryCapacity: standardMemoryAmount,\n", "\t\t\tlowOOMScoreAdj: 2,\n", "\t\t\thighOOMScoreAdj: 2,\n", "\t\t},\n", "\t}\n", "\tfor _, test := range oomTests {\n", "\t\toomScoreAdj := GetContainerOOMScoreAdjust(test.pod, &test.pod.Spec.Containers[0], test.memoryCapacity)\n", "\t\tif oomScoreAdj < test.lowOOMScoreAdj || oomScoreAdj > test.highOOMScoreAdj {\n", "\t\t\tt.Errorf(\"oom_score_adj should be between %d and %d, but was %d\", test.lowOOMScoreAdj, test.highOOMScoreAdj, oomScoreAdj)\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t{\n", "\t\t\tpod: &critical,\n", "\t\t\tmemoryCapacity: 4000000000,\n", "\t\t\tlowOOMScoreAdj: -998,\n", "\t\t\thighOOMScoreAdj: -998,\n", "\t\t},\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 190 }
/* Copyright 2017 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package create import ( "fmt" "strings" "github.com/spf13/cobra" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" utilflag "k8s.io/apiserver/pkg/util/flag" "k8s.io/cli-runtime/pkg/genericclioptions" cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util" "k8s.io/kubernetes/pkg/kubectl/util/i18n" "k8s.io/kubernetes/pkg/kubectl/util/templates" ) var ( clusterRoleLong = templates.LongDesc(i18n.T(` Create a ClusterRole.`)) clusterRoleExample = templates.Examples(i18n.T(` # Create a ClusterRole named "pod-reader" that allows user to perform "get", "watch" and "list" on pods kubectl create clusterrole pod-reader --verb=get,list,watch --resource=pods # Create a ClusterRole named "pod-reader" with ResourceName specified kubectl create clusterrole pod-reader --verb=get --resource=pods --resource-name=readablepod --resource-name=anotherpod # Create a ClusterRole named "foo" with API Group specified kubectl create clusterrole foo --verb=get,list,watch --resource=rs.extensions # Create a ClusterRole named "foo" with SubResource specified kubectl create clusterrole foo --verb=get,list,watch --resource=pods,pods/status # Create a ClusterRole name "foo" with NonResourceURL specified kubectl create clusterrole "foo" --verb=get --non-resource-url=/logs/* # Create a ClusterRole name "monitoring" with AggregationRule specified kubectl create clusterrole monitoring --aggregation-rule="rbac.example.com/aggregate-to-monitoring=true"`)) // Valid nonResource verb list for validation. validNonResourceVerbs = []string{"*", "get", "post", "put", "delete", "patch", "head", "options"} ) // CreateClusterRoleOptions is returned by NewCmdCreateClusterRole type CreateClusterRoleOptions struct { *CreateRoleOptions NonResourceURLs []string AggregationRule map[string]string } // NewCmdCreateClusterRole initializes and returns new ClusterRoles command func NewCmdCreateClusterRole(f cmdutil.Factory, ioStreams genericclioptions.IOStreams) *cobra.Command { c := &CreateClusterRoleOptions{ CreateRoleOptions: NewCreateRoleOptions(ioStreams), AggregationRule: map[string]string{}, } cmd := &cobra.Command{ Use: "clusterrole NAME --verb=verb --resource=resource.group [--resource-name=resourcename] [--dry-run]", DisableFlagsInUseLine: true, Short: clusterRoleLong, Long: clusterRoleLong, Example: clusterRoleExample, Run: func(cmd *cobra.Command, args []string) { cmdutil.CheckErr(c.Complete(f, cmd, args)) cmdutil.CheckErr(c.Validate()) cmdutil.CheckErr(c.RunCreateRole()) }, } c.PrintFlags.AddFlags(cmd) cmdutil.AddApplyAnnotationFlags(cmd) cmdutil.AddValidateFlags(cmd) cmdutil.AddDryRunFlag(cmd) cmd.Flags().StringSliceVar(&c.Verbs, "verb", c.Verbs, "Verb that applies to the resources contained in the rule") cmd.Flags().StringSliceVar(&c.NonResourceURLs, "non-resource-url", c.NonResourceURLs, "A partial url that user should have access to.") cmd.Flags().StringSlice("resource", []string{}, "Resource that the rule applies to") cmd.Flags().StringArrayVar(&c.ResourceNames, "resource-name", c.ResourceNames, "Resource in the white list that the rule applies to, repeat this flag for multiple items") cmd.Flags().Var(utilflag.NewMapStringString(&c.AggregationRule), "aggregation-rule", "An aggregation label selector for combining ClusterRoles.") return cmd } // Complete completes all the required options func (c *CreateClusterRoleOptions) Complete(f cmdutil.Factory, cmd *cobra.Command, args []string) error { // Remove duplicate nonResourceURLs nonResourceURLs := []string{} for _, n := range c.NonResourceURLs { if !arrayContains(nonResourceURLs, n) { nonResourceURLs = append(nonResourceURLs, n) } } c.NonResourceURLs = nonResourceURLs return c.CreateRoleOptions.Complete(f, cmd, args) } // Validate makes sure there is no discrepency in CreateClusterRoleOptions func (c *CreateClusterRoleOptions) Validate() error { if c.Name == "" { return fmt.Errorf("name must be specified") } if len(c.AggregationRule) > 0 { if len(c.NonResourceURLs) > 0 || len(c.Verbs) > 0 || len(c.Resources) > 0 || len(c.ResourceNames) > 0 { return fmt.Errorf("aggregation rule must be specified without nonResourceURLs, verbs, resources or resourceNames") } return nil } // validate verbs. if len(c.Verbs) == 0 { return fmt.Errorf("at least one verb must be specified") } if len(c.Resources) == 0 && len(c.NonResourceURLs) == 0 { return fmt.Errorf("one of resource or nonResourceURL must be specified") } // validate resources if len(c.Resources) > 0 { for _, v := range c.Verbs { if !arrayContains(validResourceVerbs, v) { return fmt.Errorf("invalid verb: '%s'", v) } } if err := c.validateResource(); err != nil { return err } } //validate non-resource-url if len(c.NonResourceURLs) > 0 { for _, v := range c.Verbs { if !arrayContains(validNonResourceVerbs, v) { return fmt.Errorf("invalid verb: '%s' for nonResourceURL", v) } } for _, nonResourceURL := range c.NonResourceURLs { if nonResourceURL == "*" { continue } if nonResourceURL == "" || !strings.HasPrefix(nonResourceURL, "/") { return fmt.Errorf("nonResourceURL should start with /") } if strings.ContainsRune(nonResourceURL[:len(nonResourceURL)-1], '*') { return fmt.Errorf("nonResourceURL only supports wildcard matches when '*' is at the end") } } } return nil } // RunCreateRole creates a new clusterRole func (c *CreateClusterRoleOptions) RunCreateRole() error { clusterRole := &rbacv1.ClusterRole{ // this is ok because we know exactly how we want to be serialized TypeMeta: metav1.TypeMeta{APIVersion: rbacv1.SchemeGroupVersion.String(), Kind: "ClusterRole"}, } clusterRole.Name = c.Name var err error if len(c.AggregationRule) == 0 { rules, err := generateResourcePolicyRules(c.Mapper, c.Verbs, c.Resources, c.ResourceNames, c.NonResourceURLs) if err != nil { return err } clusterRole.Rules = rules } else { clusterRole.AggregationRule = &rbacv1.AggregationRule{ ClusterRoleSelectors: []metav1.LabelSelector{ { MatchLabels: c.AggregationRule, }, }, } } // Create ClusterRole. if !c.DryRun { clusterRole, err = c.Client.ClusterRoles().Create(clusterRole) if err != nil { return err } } return c.PrintObj(clusterRole) }
pkg/kubectl/cmd/create/create_clusterrole.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0007552011520601809, 0.00020264199702069163, 0.0001641492999624461, 0.00017252967518288642, 0.0001221074053319171 ]
{ "id": 8, "code_window": [ "\t\t\tmemoryCapacity: standardMemoryAmount,\n", "\t\t\tlowOOMScoreAdj: 2,\n", "\t\t\thighOOMScoreAdj: 2,\n", "\t\t},\n", "\t}\n", "\tfor _, test := range oomTests {\n", "\t\toomScoreAdj := GetContainerOOMScoreAdjust(test.pod, &test.pod.Spec.Containers[0], test.memoryCapacity)\n", "\t\tif oomScoreAdj < test.lowOOMScoreAdj || oomScoreAdj > test.highOOMScoreAdj {\n", "\t\t\tt.Errorf(\"oom_score_adj should be between %d and %d, but was %d\", test.lowOOMScoreAdj, test.highOOMScoreAdj, oomScoreAdj)\n" ], "labels": [ "keep", "keep", "keep", "add", "keep", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t\t{\n", "\t\t\tpod: &critical,\n", "\t\t\tmemoryCapacity: 4000000000,\n", "\t\t\tlowOOMScoreAdj: -998,\n", "\t\t\thighOOMScoreAdj: -998,\n", "\t\t},\n" ], "file_path": "pkg/kubelet/qos/policy_test.go", "type": "add", "edit_start_line_idx": 190 }
/* Copyright 2016 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package rollout import ( "fmt" "github.com/spf13/cobra" "k8s.io/kubernetes/pkg/kubectl/polymorphichelpers" "k8s.io/cli-runtime/pkg/genericclioptions" "k8s.io/cli-runtime/pkg/genericclioptions/printers" "k8s.io/cli-runtime/pkg/genericclioptions/resource" cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util" "k8s.io/kubernetes/pkg/kubectl/scheme" "k8s.io/kubernetes/pkg/kubectl/util/i18n" "k8s.io/kubernetes/pkg/kubectl/util/templates" ) // UndoOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of // referencing the cmd.Flags() type UndoOptions struct { PrintFlags *genericclioptions.PrintFlags ToPrinter func(string) (printers.ResourcePrinter, error) Builder func() *resource.Builder ToRevision int64 DryRun bool Resources []string Namespace string EnforceNamespace bool RESTClientGetter genericclioptions.RESTClientGetter resource.FilenameOptions genericclioptions.IOStreams } var ( undoLong = templates.LongDesc(` Rollback to a previous rollout.`) undoExample = templates.Examples(` # Rollback to the previous deployment kubectl rollout undo deployment/abc # Rollback to daemonset revision 3 kubectl rollout undo daemonset/abc --to-revision=3 # Rollback to the previous deployment with dry-run kubectl rollout undo --dry-run=true deployment/abc`) ) // NewRolloutUndoOptions returns an initialized UndoOptions instance func NewRolloutUndoOptions(streams genericclioptions.IOStreams) *UndoOptions { return &UndoOptions{ PrintFlags: genericclioptions.NewPrintFlags("rolled back").WithTypeSetter(scheme.Scheme), IOStreams: streams, ToRevision: int64(0), } } // NewCmdRolloutUndo returns a Command instance for the 'rollout undo' sub command func NewCmdRolloutUndo(f cmdutil.Factory, streams genericclioptions.IOStreams) *cobra.Command { o := NewRolloutUndoOptions(streams) validArgs := []string{"deployment", "daemonset", "statefulset"} cmd := &cobra.Command{ Use: "undo (TYPE NAME | TYPE/NAME) [flags]", DisableFlagsInUseLine: true, Short: i18n.T("Undo a previous rollout"), Long: undoLong, Example: undoExample, Run: func(cmd *cobra.Command, args []string) { cmdutil.CheckErr(o.Complete(f, cmd, args)) cmdutil.CheckErr(o.Validate()) cmdutil.CheckErr(o.RunUndo()) }, ValidArgs: validArgs, } cmd.Flags().Int64Var(&o.ToRevision, "to-revision", o.ToRevision, "The revision to rollback to. Default to 0 (last revision).") usage := "identifying the resource to get from a server." cmdutil.AddFilenameOptionFlags(cmd, &o.FilenameOptions, usage) cmdutil.AddDryRunFlag(cmd) o.PrintFlags.AddFlags(cmd) return cmd } // Complete completes al the required options func (o *UndoOptions) Complete(f cmdutil.Factory, cmd *cobra.Command, args []string) error { o.Resources = args o.DryRun = cmdutil.GetDryRunFlag(cmd) var err error if o.Namespace, o.EnforceNamespace, err = f.ToRawKubeConfigLoader().Namespace(); err != nil { return err } o.ToPrinter = func(operation string) (printers.ResourcePrinter, error) { o.PrintFlags.NamePrintFlags.Operation = operation if o.DryRun { o.PrintFlags.Complete("%s (dry run)") } return o.PrintFlags.ToPrinter() } o.RESTClientGetter = f o.Builder = f.NewBuilder return err } func (o *UndoOptions) Validate() error { if len(o.Resources) == 0 && cmdutil.IsFilenameSliceEmpty(o.Filenames) { return fmt.Errorf("required resource not specified") } return nil } // RunUndo performs the execution of 'rollout undo' sub command func (o *UndoOptions) RunUndo() error { r := o.Builder(). WithScheme(scheme.Scheme, scheme.Scheme.PrioritizedVersionsAllGroups()...). NamespaceParam(o.Namespace).DefaultNamespace(). FilenameParam(o.EnforceNamespace, &o.FilenameOptions). ResourceTypeOrNameArgs(true, o.Resources...). ContinueOnError(). Latest(). Flatten(). Do() if err := r.Err(); err != nil { return err } err := r.Visit(func(info *resource.Info, err error) error { if err != nil { return err } rollbacker, err := polymorphichelpers.RollbackerFn(o.RESTClientGetter, info.ResourceMapping()) if err != nil { return err } result, err := rollbacker.Rollback(info.Object, nil, o.ToRevision, o.DryRun) if err != nil { return err } printer, err := o.ToPrinter(result) if err != nil { return err } return printer.PrintObj(info.Object, o.Out) }) return err }
pkg/kubectl/cmd/rollout/rollout_undo.go
0
https://github.com/kubernetes/kubernetes/commit/7dcf1fe5f8b06e9f06247bd0fdd49442f7028727
[ 0.0001791401591617614, 0.0001731006777845323, 0.0001638045214349404, 0.00017312908312305808, 0.000003499580770949251 ]
{ "id": 0, "code_window": [ "\tputInt24(fsize, headbuf) // TODO: check overflow\n", "\tcopy(headbuf[3:], zeroHeader)\n", "\trw.enc.XORKeyStream(headbuf[:16], headbuf[:16]) // first half is now encrypted\n", "\tcopy(headbuf[16:], updateHeaderMAC(rw.egressMAC, rw.macCipher, headbuf[:16]))\n", "\tif _, err := rw.conn.Write(headbuf); err != nil {\n", "\t\treturn err\n", "\t}\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep" ], "after_edit": [ "\n", "\t// write header MAC\n", "\tcopy(headbuf[16:], updateMAC(rw.egressMAC, rw.macCipher, headbuf[:16]))\n" ], "file_path": "p2p/rlpx.go", "type": "replace", "edit_start_line_idx": 64 }
package p2p import ( "bytes" "crypto/aes" "crypto/cipher" "crypto/hmac" "errors" "hash" "io" "github.com/ethereum/go-ethereum/rlp" ) var ( // this is used in place of actual frame header data. // TODO: replace this when Msg contains the protocol type code. zeroHeader = []byte{0xC2, 0x80, 0x80} // sixteen zero bytes zero16 = make([]byte, 16) ) type rlpxFrameRW struct { conn io.ReadWriter enc cipher.Stream dec cipher.Stream macCipher cipher.Block egressMAC hash.Hash ingressMAC hash.Hash } func newRlpxFrameRW(conn io.ReadWriter, s secrets) *rlpxFrameRW { macc, err := aes.NewCipher(s.MAC) if err != nil { panic("invalid MAC secret: " + err.Error()) } encc, err := aes.NewCipher(s.AES) if err != nil { panic("invalid AES secret: " + err.Error()) } // we use an all-zeroes IV for AES because the key used // for encryption is ephemeral. iv := make([]byte, encc.BlockSize()) return &rlpxFrameRW{ conn: conn, enc: cipher.NewCTR(encc, iv), dec: cipher.NewCTR(encc, iv), macCipher: macc, egressMAC: s.EgressMAC, ingressMAC: s.IngressMAC, } } func (rw *rlpxFrameRW) WriteMsg(msg Msg) error { ptype, _ := rlp.EncodeToBytes(msg.Code) // write header headbuf := make([]byte, 32) fsize := uint32(len(ptype)) + msg.Size putInt24(fsize, headbuf) // TODO: check overflow copy(headbuf[3:], zeroHeader) rw.enc.XORKeyStream(headbuf[:16], headbuf[:16]) // first half is now encrypted copy(headbuf[16:], updateHeaderMAC(rw.egressMAC, rw.macCipher, headbuf[:16])) if _, err := rw.conn.Write(headbuf); err != nil { return err } // write encrypted frame, updating the egress MAC while writing to conn. tee := cipher.StreamWriter{S: rw.enc, W: io.MultiWriter(rw.conn, rw.egressMAC)} if _, err := tee.Write(ptype); err != nil { return err } if _, err := io.Copy(tee, msg.Payload); err != nil { return err } if padding := fsize % 16; padding > 0 { if _, err := tee.Write(zero16[:16-padding]); err != nil { return err } } // write packet-mac. egress MAC is up to date because // frame content was written to it as well. mac := updateHeaderMAC(rw.egressMAC, rw.macCipher, rw.egressMAC.Sum(nil)) _, err := rw.conn.Write(mac) return err } func (rw *rlpxFrameRW) ReadMsg() (msg Msg, err error) { // read the header headbuf := make([]byte, 32) if _, err := io.ReadFull(rw.conn, headbuf); err != nil { return msg, err } // verify header mac shouldMAC := updateHeaderMAC(rw.ingressMAC, rw.macCipher, headbuf[:16]) if !hmac.Equal(shouldMAC[:16], headbuf[16:]) { return msg, errors.New("bad header MAC") } rw.dec.XORKeyStream(headbuf[:16], headbuf[:16]) // first half is now decrypted fsize := readInt24(headbuf) // ignore protocol type for now // read the frame content var rsize = fsize // frame size rounded up to 16 byte boundary if padding := fsize % 16; padding > 0 { rsize += 16 - padding } framebuf := make([]byte, rsize) if _, err := io.ReadFull(rw.conn, framebuf); err != nil { return msg, err } // read and validate frame MAC. we can re-use headbuf for that. rw.ingressMAC.Write(framebuf) if _, err := io.ReadFull(rw.conn, headbuf); err != nil { return msg, err } shouldMAC = updateHeaderMAC(rw.ingressMAC, rw.macCipher, rw.ingressMAC.Sum(nil)) if !hmac.Equal(shouldMAC, headbuf) { return msg, errors.New("bad frame MAC") } // decrypt frame content rw.dec.XORKeyStream(framebuf, framebuf) // decode message code content := bytes.NewReader(framebuf[:fsize]) if err := rlp.Decode(content, &msg.Code); err != nil { return msg, err } msg.Size = uint32(content.Len()) msg.Payload = content return msg, nil } func updateHeaderMAC(mac hash.Hash, block cipher.Block, header []byte) []byte { aesbuf := make([]byte, aes.BlockSize) block.Encrypt(aesbuf, mac.Sum(nil)) for i := range aesbuf { aesbuf[i] ^= header[i] } mac.Write(aesbuf) return mac.Sum(nil) } func readInt24(b []byte) uint32 { return uint32(b[2]) | uint32(b[1])<<8 | uint32(b[0])<<16 } func putInt24(v uint32, b []byte) { b[0] = byte(v >> 16) b[1] = byte(v >> 8) b[2] = byte(v) }
p2p/rlpx.go
1
https://github.com/ethereum/go-ethereum/commit/d344054e5a2844241bf0e4f64ccfc4d2ad259718
[ 0.9979336261749268, 0.16584885120391846, 0.00016625027637928724, 0.005886992439627647, 0.33536913990974426 ]
{ "id": 0, "code_window": [ "\tputInt24(fsize, headbuf) // TODO: check overflow\n", "\tcopy(headbuf[3:], zeroHeader)\n", "\trw.enc.XORKeyStream(headbuf[:16], headbuf[:16]) // first half is now encrypted\n", "\tcopy(headbuf[16:], updateHeaderMAC(rw.egressMAC, rw.macCipher, headbuf[:16]))\n", "\tif _, err := rw.conn.Write(headbuf); err != nil {\n", "\t\treturn err\n", "\t}\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep" ], "after_edit": [ "\n", "\t// write header MAC\n", "\tcopy(headbuf[16:], updateMAC(rw.egressMAC, rw.macCipher, headbuf[:16]))\n" ], "file_path": "p2p/rlpx.go", "type": "replace", "edit_start_line_idx": 64 }
package core
core/filter_test.go
0
https://github.com/ethereum/go-ethereum/commit/d344054e5a2844241bf0e4f64ccfc4d2ad259718
[ 0.0001708476775093004, 0.0001708476775093004, 0.0001708476775093004, 0.0001708476775093004, 0 ]
{ "id": 0, "code_window": [ "\tputInt24(fsize, headbuf) // TODO: check overflow\n", "\tcopy(headbuf[3:], zeroHeader)\n", "\trw.enc.XORKeyStream(headbuf[:16], headbuf[:16]) // first half is now encrypted\n", "\tcopy(headbuf[16:], updateHeaderMAC(rw.egressMAC, rw.macCipher, headbuf[:16]))\n", "\tif _, err := rw.conn.Write(headbuf); err != nil {\n", "\t\treturn err\n", "\t}\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep" ], "after_edit": [ "\n", "\t// write header MAC\n", "\tcopy(headbuf[16:], updateMAC(rw.egressMAC, rw.macCipher, headbuf[:16]))\n" ], "file_path": "p2p/rlpx.go", "type": "replace", "edit_start_line_idx": 64 }
package otto import ( "strconv" ) func (runtime *_runtime) newBooleanObject(value Value) *_object { return runtime.newPrimitiveObject("Boolean", toValue_bool(toBoolean(value))) } func booleanToString(value bool) string { return strconv.FormatBool(value) }
Godeps/_workspace/src/github.com/obscuren/otto/type_boolean.go
0
https://github.com/ethereum/go-ethereum/commit/d344054e5a2844241bf0e4f64ccfc4d2ad259718
[ 0.00017029048467520624, 0.0001700826542219147, 0.00016987482376862317, 0.0001700826542219147, 2.0783045329153538e-7 ]
{ "id": 0, "code_window": [ "\tputInt24(fsize, headbuf) // TODO: check overflow\n", "\tcopy(headbuf[3:], zeroHeader)\n", "\trw.enc.XORKeyStream(headbuf[:16], headbuf[:16]) // first half is now encrypted\n", "\tcopy(headbuf[16:], updateHeaderMAC(rw.egressMAC, rw.macCipher, headbuf[:16]))\n", "\tif _, err := rw.conn.Write(headbuf); err != nil {\n", "\t\treturn err\n", "\t}\n" ], "labels": [ "keep", "keep", "keep", "replace", "keep", "keep", "keep" ], "after_edit": [ "\n", "\t// write header MAC\n", "\tcopy(headbuf[16:], updateMAC(rw.egressMAC, rw.macCipher, headbuf[:16]))\n" ], "file_path": "p2p/rlpx.go", "type": "replace", "edit_start_line_idx": 64 }
package dagger import ( "hash" "math/big" "math/rand" "time" "github.com/ethereum/go-ethereum/crypto/sha3" "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/logger" ) var powlogger = logger.NewLogger("POW") type Dagger struct { hash *big.Int xn *big.Int } var Found bool func (dag *Dagger) Find(obj *big.Int, resChan chan int64) { r := rand.New(rand.NewSource(time.Now().UnixNano())) for i := 0; i < 1000; i++ { rnd := r.Int63() res := dag.Eval(big.NewInt(rnd)) powlogger.Infof("rnd %v\nres %v\nobj %v\n", rnd, res, obj) if res.Cmp(obj) < 0 { // Post back result on the channel resChan <- rnd // Notify other threads we've found a valid nonce Found = true } // Break out if found if Found { break } } resChan <- 0 } func (dag *Dagger) Search(hash, diff *big.Int) ([]byte, []byte, []byte) { // TODO fix multi threading. Somehow it results in the wrong nonce amountOfRoutines := 1 dag.hash = hash obj := ethutil.BigPow(2, 256) obj = obj.Div(obj, diff) Found = false resChan := make(chan int64, 3) var res int64 for k := 0; k < amountOfRoutines; k++ { go dag.Find(obj, resChan) // Wait for each go routine to finish } for k := 0; k < amountOfRoutines; k++ { // Get the result from the channel. 0 = quit if r := <-resChan; r != 0 { res = r } } return big.NewInt(res).Bytes(), nil, nil } func (dag *Dagger) Verify(hash, diff, nonce *big.Int) bool { dag.hash = hash obj := ethutil.BigPow(2, 256) obj = obj.Div(obj, diff) return dag.Eval(nonce).Cmp(obj) < 0 } func DaggerVerify(hash, diff, nonce *big.Int) bool { dagger := &Dagger{} dagger.hash = hash obj := ethutil.BigPow(2, 256) obj = obj.Div(obj, diff) return dagger.Eval(nonce).Cmp(obj) < 0 } func (dag *Dagger) Node(L uint64, i uint64) *big.Int { if L == i { return dag.hash } var m *big.Int if L == 9 { m = big.NewInt(16) } else { m = big.NewInt(3) } sha := sha3.NewKeccak256() sha.Reset() d := sha3.NewKeccak256() b := new(big.Int) ret := new(big.Int) for k := 0; k < int(m.Uint64()); k++ { d.Reset() d.Write(dag.hash.Bytes()) d.Write(dag.xn.Bytes()) d.Write(big.NewInt(int64(L)).Bytes()) d.Write(big.NewInt(int64(i)).Bytes()) d.Write(big.NewInt(int64(k)).Bytes()) b.SetBytes(Sum(d)) pk := b.Uint64() & ((1 << ((L - 1) * 3)) - 1) sha.Write(dag.Node(L-1, pk).Bytes()) } ret.SetBytes(Sum(sha)) return ret } func Sum(sha hash.Hash) []byte { //in := make([]byte, 32) return sha.Sum(nil) } func (dag *Dagger) Eval(N *big.Int) *big.Int { pow := ethutil.BigPow(2, 26) dag.xn = pow.Div(N, pow) sha := sha3.NewKeccak256() sha.Reset() ret := new(big.Int) for k := 0; k < 4; k++ { d := sha3.NewKeccak256() b := new(big.Int) d.Reset() d.Write(dag.hash.Bytes()) d.Write(dag.xn.Bytes()) d.Write(N.Bytes()) d.Write(big.NewInt(int64(k)).Bytes()) b.SetBytes(Sum(d)) pk := (b.Uint64() & 0x1ffffff) sha.Write(dag.Node(9, pk).Bytes()) } return ret.SetBytes(Sum(sha)) }
pow/dagger/dagger.go
0
https://github.com/ethereum/go-ethereum/commit/d344054e5a2844241bf0e4f64ccfc4d2ad259718
[ 0.00017778885376174003, 0.00016935667372308671, 0.0001647902390686795, 0.0001691178185865283, 0.0000028994588774367003 ]
{ "id": 1, "code_window": [ "\tif _, err := rw.conn.Write(headbuf); err != nil {\n", "\t\treturn err\n", "\t}\n", "\n", "\t// write encrypted frame, updating the egress MAC while writing to conn.\n", "\ttee := cipher.StreamWriter{S: rw.enc, W: io.MultiWriter(rw.conn, rw.egressMAC)}\n", "\tif _, err := tee.Write(ptype); err != nil {\n", "\t\treturn err\n", "\t}\n" ], "labels": [ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t// write encrypted frame, updating the egress MAC hash with\n", "\t// the data written to conn.\n" ], "file_path": "p2p/rlpx.go", "type": "replace", "edit_start_line_idx": 69 }
package p2p import ( "bytes" "crypto/aes" "crypto/cipher" "crypto/hmac" "errors" "hash" "io" "github.com/ethereum/go-ethereum/rlp" ) var ( // this is used in place of actual frame header data. // TODO: replace this when Msg contains the protocol type code. zeroHeader = []byte{0xC2, 0x80, 0x80} // sixteen zero bytes zero16 = make([]byte, 16) ) type rlpxFrameRW struct { conn io.ReadWriter enc cipher.Stream dec cipher.Stream macCipher cipher.Block egressMAC hash.Hash ingressMAC hash.Hash } func newRlpxFrameRW(conn io.ReadWriter, s secrets) *rlpxFrameRW { macc, err := aes.NewCipher(s.MAC) if err != nil { panic("invalid MAC secret: " + err.Error()) } encc, err := aes.NewCipher(s.AES) if err != nil { panic("invalid AES secret: " + err.Error()) } // we use an all-zeroes IV for AES because the key used // for encryption is ephemeral. iv := make([]byte, encc.BlockSize()) return &rlpxFrameRW{ conn: conn, enc: cipher.NewCTR(encc, iv), dec: cipher.NewCTR(encc, iv), macCipher: macc, egressMAC: s.EgressMAC, ingressMAC: s.IngressMAC, } } func (rw *rlpxFrameRW) WriteMsg(msg Msg) error { ptype, _ := rlp.EncodeToBytes(msg.Code) // write header headbuf := make([]byte, 32) fsize := uint32(len(ptype)) + msg.Size putInt24(fsize, headbuf) // TODO: check overflow copy(headbuf[3:], zeroHeader) rw.enc.XORKeyStream(headbuf[:16], headbuf[:16]) // first half is now encrypted copy(headbuf[16:], updateHeaderMAC(rw.egressMAC, rw.macCipher, headbuf[:16])) if _, err := rw.conn.Write(headbuf); err != nil { return err } // write encrypted frame, updating the egress MAC while writing to conn. tee := cipher.StreamWriter{S: rw.enc, W: io.MultiWriter(rw.conn, rw.egressMAC)} if _, err := tee.Write(ptype); err != nil { return err } if _, err := io.Copy(tee, msg.Payload); err != nil { return err } if padding := fsize % 16; padding > 0 { if _, err := tee.Write(zero16[:16-padding]); err != nil { return err } } // write packet-mac. egress MAC is up to date because // frame content was written to it as well. mac := updateHeaderMAC(rw.egressMAC, rw.macCipher, rw.egressMAC.Sum(nil)) _, err := rw.conn.Write(mac) return err } func (rw *rlpxFrameRW) ReadMsg() (msg Msg, err error) { // read the header headbuf := make([]byte, 32) if _, err := io.ReadFull(rw.conn, headbuf); err != nil { return msg, err } // verify header mac shouldMAC := updateHeaderMAC(rw.ingressMAC, rw.macCipher, headbuf[:16]) if !hmac.Equal(shouldMAC[:16], headbuf[16:]) { return msg, errors.New("bad header MAC") } rw.dec.XORKeyStream(headbuf[:16], headbuf[:16]) // first half is now decrypted fsize := readInt24(headbuf) // ignore protocol type for now // read the frame content var rsize = fsize // frame size rounded up to 16 byte boundary if padding := fsize % 16; padding > 0 { rsize += 16 - padding } framebuf := make([]byte, rsize) if _, err := io.ReadFull(rw.conn, framebuf); err != nil { return msg, err } // read and validate frame MAC. we can re-use headbuf for that. rw.ingressMAC.Write(framebuf) if _, err := io.ReadFull(rw.conn, headbuf); err != nil { return msg, err } shouldMAC = updateHeaderMAC(rw.ingressMAC, rw.macCipher, rw.ingressMAC.Sum(nil)) if !hmac.Equal(shouldMAC, headbuf) { return msg, errors.New("bad frame MAC") } // decrypt frame content rw.dec.XORKeyStream(framebuf, framebuf) // decode message code content := bytes.NewReader(framebuf[:fsize]) if err := rlp.Decode(content, &msg.Code); err != nil { return msg, err } msg.Size = uint32(content.Len()) msg.Payload = content return msg, nil } func updateHeaderMAC(mac hash.Hash, block cipher.Block, header []byte) []byte { aesbuf := make([]byte, aes.BlockSize) block.Encrypt(aesbuf, mac.Sum(nil)) for i := range aesbuf { aesbuf[i] ^= header[i] } mac.Write(aesbuf) return mac.Sum(nil) } func readInt24(b []byte) uint32 { return uint32(b[2]) | uint32(b[1])<<8 | uint32(b[0])<<16 } func putInt24(v uint32, b []byte) { b[0] = byte(v >> 16) b[1] = byte(v >> 8) b[2] = byte(v) }
p2p/rlpx.go
1
https://github.com/ethereum/go-ethereum/commit/d344054e5a2844241bf0e4f64ccfc4d2ad259718
[ 0.9974607229232788, 0.13359655439853668, 0.00016685169248376042, 0.0033369422890245914, 0.32667118310928345 ]
{ "id": 1, "code_window": [ "\tif _, err := rw.conn.Write(headbuf); err != nil {\n", "\t\treturn err\n", "\t}\n", "\n", "\t// write encrypted frame, updating the egress MAC while writing to conn.\n", "\ttee := cipher.StreamWriter{S: rw.enc, W: io.MultiWriter(rw.conn, rw.egressMAC)}\n", "\tif _, err := tee.Write(ptype); err != nil {\n", "\t\treturn err\n", "\t}\n" ], "labels": [ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t// write encrypted frame, updating the egress MAC hash with\n", "\t// the data written to conn.\n" ], "file_path": "p2p/rlpx.go", "type": "replace", "edit_start_line_idx": 69 }
// Copyright (c) 2013, Suryandaru Triandana <[email protected]> // All rights reserved. // // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package leveldb import ( "bytes" "fmt" "io" "math/rand" "testing" "github.com/syndtr/goleveldb/leveldb/cache" "github.com/syndtr/goleveldb/leveldb/opt" "github.com/syndtr/goleveldb/leveldb/storage" ) const ctValSize = 1000 type dbCorruptHarness struct { dbHarness } func newDbCorruptHarnessWopt(t *testing.T, o *opt.Options) *dbCorruptHarness { h := new(dbCorruptHarness) h.init(t, o) return h } func newDbCorruptHarness(t *testing.T) *dbCorruptHarness { return newDbCorruptHarnessWopt(t, &opt.Options{ BlockCache: cache.NewLRUCache(100), Strict: opt.StrictJournalChecksum, }) } func (h *dbCorruptHarness) recover() { p := &h.dbHarness t := p.t var err error p.db, err = Recover(h.stor, h.o) if err != nil { t.Fatal("Repair: got error: ", err) } } func (h *dbCorruptHarness) build(n int) { p := &h.dbHarness t := p.t db := p.db batch := new(Batch) for i := 0; i < n; i++ { batch.Reset() batch.Put(tkey(i), tval(i, ctValSize)) err := db.Write(batch, p.wo) if err != nil { t.Fatal("write error: ", err) } } } func (h *dbCorruptHarness) buildShuffled(n int, rnd *rand.Rand) { p := &h.dbHarness t := p.t db := p.db batch := new(Batch) for i := range rnd.Perm(n) { batch.Reset() batch.Put(tkey(i), tval(i, ctValSize)) err := db.Write(batch, p.wo) if err != nil { t.Fatal("write error: ", err) } } } func (h *dbCorruptHarness) deleteRand(n, max int, rnd *rand.Rand) { p := &h.dbHarness t := p.t db := p.db batch := new(Batch) for i := 0; i < n; i++ { batch.Reset() batch.Delete(tkey(rnd.Intn(max))) err := db.Write(batch, p.wo) if err != nil { t.Fatal("write error: ", err) } } } func (h *dbCorruptHarness) corrupt(ft storage.FileType, offset, n int) { p := &h.dbHarness t := p.t var file storage.File ff, _ := p.stor.GetFiles(ft) for _, f := range ff { if file == nil || f.Num() > file.Num() { file = f } } if file == nil { t.Fatalf("no such file with type %q", ft) } r, err := file.Open() if err != nil { t.Fatal("cannot open file: ", err) } x, err := r.Seek(0, 2) if err != nil { t.Fatal("cannot query file size: ", err) } m := int(x) if _, err := r.Seek(0, 0); err != nil { t.Fatal(err) } if offset < 0 { if -offset > m { offset = 0 } else { offset = m + offset } } if offset > m { offset = m } if offset+n > m { n = m - offset } buf := make([]byte, m) _, err = io.ReadFull(r, buf) if err != nil { t.Fatal("cannot read file: ", err) } r.Close() for i := 0; i < n; i++ { buf[offset+i] ^= 0x80 } err = file.Remove() if err != nil { t.Fatal("cannot remove old file: ", err) } w, err := file.Create() if err != nil { t.Fatal("cannot create new file: ", err) } _, err = w.Write(buf) if err != nil { t.Fatal("cannot write new file: ", err) } w.Close() } func (h *dbCorruptHarness) removeAll(ft storage.FileType) { ff, err := h.stor.GetFiles(ft) if err != nil { h.t.Fatal("get files: ", err) } for _, f := range ff { if err := f.Remove(); err != nil { h.t.Error("remove file: ", err) } } } func (h *dbCorruptHarness) removeOne(ft storage.FileType) { ff, err := h.stor.GetFiles(ft) if err != nil { h.t.Fatal("get files: ", err) } f := ff[rand.Intn(len(ff))] h.t.Logf("removing file @%d", f.Num()) if err := f.Remove(); err != nil { h.t.Error("remove file: ", err) } } func (h *dbCorruptHarness) check(min, max int) { p := &h.dbHarness t := p.t db := p.db var n, badk, badv, missed, good int iter := db.NewIterator(nil, p.ro) for iter.Next() { k := 0 fmt.Sscanf(string(iter.Key()), "%d", &k) if k < n { badk++ continue } missed += k - n n = k + 1 if !bytes.Equal(iter.Value(), tval(k, ctValSize)) { badv++ } else { good++ } } err := iter.Error() iter.Release() t.Logf("want=%d..%d got=%d badkeys=%d badvalues=%d missed=%d, err=%v", min, max, good, badk, badv, missed, err) if good < min || good > max { t.Errorf("good entries number not in range") } } func TestCorruptDB_Journal(t *testing.T) { h := newDbCorruptHarness(t) h.build(100) h.check(100, 100) h.closeDB() h.corrupt(storage.TypeJournal, 19, 1) h.corrupt(storage.TypeJournal, 32*1024+1000, 1) h.openDB() h.check(36, 36) h.close() } func TestCorruptDB_Table(t *testing.T) { h := newDbCorruptHarness(t) h.build(100) h.compactMem() h.compactRangeAt(0, "", "") h.compactRangeAt(1, "", "") h.closeDB() h.corrupt(storage.TypeTable, 100, 1) h.openDB() h.check(99, 99) h.close() } func TestCorruptDB_TableIndex(t *testing.T) { h := newDbCorruptHarness(t) h.build(10000) h.compactMem() h.closeDB() h.corrupt(storage.TypeTable, -2000, 500) h.openDB() h.check(5000, 9999) h.close() } func TestCorruptDB_MissingManifest(t *testing.T) { rnd := rand.New(rand.NewSource(0x0badda7a)) h := newDbCorruptHarnessWopt(t, &opt.Options{ BlockCache: cache.NewLRUCache(100), Strict: opt.StrictJournalChecksum, WriteBuffer: 1000 * 60, }) h.build(1000) h.compactMem() h.buildShuffled(1000, rnd) h.compactMem() h.deleteRand(500, 1000, rnd) h.compactMem() h.buildShuffled(1000, rnd) h.compactMem() h.deleteRand(500, 1000, rnd) h.compactMem() h.buildShuffled(1000, rnd) h.compactMem() h.closeDB() h.stor.SetIgnoreOpenErr(storage.TypeManifest) h.removeAll(storage.TypeManifest) h.openAssert(false) h.stor.SetIgnoreOpenErr(0) h.recover() h.check(1000, 1000) h.build(1000) h.compactMem() h.compactRange("", "") h.closeDB() h.recover() h.check(1000, 1000) h.close() } func TestCorruptDB_SequenceNumberRecovery(t *testing.T) { h := newDbCorruptHarness(t) h.put("foo", "v1") h.put("foo", "v2") h.put("foo", "v3") h.put("foo", "v4") h.put("foo", "v5") h.closeDB() h.recover() h.getVal("foo", "v5") h.put("foo", "v6") h.getVal("foo", "v6") h.reopenDB() h.getVal("foo", "v6") h.close() } func TestCorruptDB_SequenceNumberRecoveryTable(t *testing.T) { h := newDbCorruptHarness(t) h.put("foo", "v1") h.put("foo", "v2") h.put("foo", "v3") h.compactMem() h.put("foo", "v4") h.put("foo", "v5") h.compactMem() h.closeDB() h.recover() h.getVal("foo", "v5") h.put("foo", "v6") h.getVal("foo", "v6") h.reopenDB() h.getVal("foo", "v6") h.close() } func TestCorruptDB_CorruptedManifest(t *testing.T) { h := newDbCorruptHarness(t) h.put("foo", "hello") h.compactMem() h.compactRange("", "") h.closeDB() h.corrupt(storage.TypeManifest, 0, 1000) h.openAssert(false) h.recover() h.getVal("foo", "hello") h.close() } func TestCorruptDB_CompactionInputError(t *testing.T) { h := newDbCorruptHarness(t) h.build(10) h.compactMem() h.closeDB() h.corrupt(storage.TypeTable, 100, 1) h.openDB() h.check(9, 9) h.build(10000) h.check(10000, 10000) h.close() } func TestCorruptDB_UnrelatedKeys(t *testing.T) { h := newDbCorruptHarness(t) h.build(10) h.compactMem() h.closeDB() h.corrupt(storage.TypeTable, 100, 1) h.openDB() h.put(string(tkey(1000)), string(tval(1000, ctValSize))) h.getVal(string(tkey(1000)), string(tval(1000, ctValSize))) h.compactMem() h.getVal(string(tkey(1000)), string(tval(1000, ctValSize))) h.close() } func TestCorruptDB_Level0NewerFileHasOlderSeqnum(t *testing.T) { h := newDbCorruptHarness(t) h.put("a", "v1") h.put("b", "v1") h.compactMem() h.put("a", "v2") h.put("b", "v2") h.compactMem() h.put("a", "v3") h.put("b", "v3") h.compactMem() h.put("c", "v0") h.put("d", "v0") h.compactMem() h.compactRangeAt(1, "", "") h.closeDB() h.recover() h.getVal("a", "v3") h.getVal("b", "v3") h.getVal("c", "v0") h.getVal("d", "v0") h.close() } func TestCorruptDB_RecoverInvalidSeq_Issue53(t *testing.T) { h := newDbCorruptHarness(t) h.put("a", "v1") h.put("b", "v1") h.compactMem() h.put("a", "v2") h.put("b", "v2") h.compactMem() h.put("a", "v3") h.put("b", "v3") h.compactMem() h.put("c", "v0") h.put("d", "v0") h.compactMem() h.compactRangeAt(0, "", "") h.closeDB() h.recover() h.getVal("a", "v3") h.getVal("b", "v3") h.getVal("c", "v0") h.getVal("d", "v0") h.close() } func TestCorruptDB_MissingTableFiles(t *testing.T) { h := newDbCorruptHarness(t) h.put("a", "v1") h.put("b", "v1") h.compactMem() h.put("c", "v2") h.put("d", "v2") h.compactMem() h.put("e", "v3") h.put("f", "v3") h.closeDB() h.removeOne(storage.TypeTable) h.openAssert(false) h.close() }
Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/corrupt_test.go
0
https://github.com/ethereum/go-ethereum/commit/d344054e5a2844241bf0e4f64ccfc4d2ad259718
[ 0.002902608597651124, 0.000273488083621487, 0.00016238144598901272, 0.00017368585395161062, 0.000433815352153033 ]
{ "id": 1, "code_window": [ "\tif _, err := rw.conn.Write(headbuf); err != nil {\n", "\t\treturn err\n", "\t}\n", "\n", "\t// write encrypted frame, updating the egress MAC while writing to conn.\n", "\ttee := cipher.StreamWriter{S: rw.enc, W: io.MultiWriter(rw.conn, rw.egressMAC)}\n", "\tif _, err := tee.Write(ptype); err != nil {\n", "\t\treturn err\n", "\t}\n" ], "labels": [ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t// write encrypted frame, updating the egress MAC hash with\n", "\t// the data written to conn.\n" ], "file_path": "p2p/rlpx.go", "type": "replace", "edit_start_line_idx": 69 }
// XXX: The documentation is duplicated here and in the the doc variable // below. Update both at the same time. // Command genqrc packs resource files into the Go binary. // // Usage: genqrc [options] <subdir1> [<subdir2> ...] // // The genqrc tool packs all resource files under the provided subdirectories into // a single qrc.go file that may be built into the generated binary. Bundled files // may then be loaded by Go or QML code under the URL "qrc:///some/path", where // "some/path" matches the original path for the resource file locally. // // For example, the following will load a .qml file from the resource pack, and // that file may in turn reference other content (code, images, etc) in the pack: // // component, err := engine.LoadFile("qrc://path/to/file.qml") // // Starting with Go 1.4, this tool may be conveniently run by the "go generate" // subcommand by adding a line similar to the following one to any existent .go // file in the project (assuming the subdirectories ./code/ and ./images/ exist): // // //go:generate genqrc code images // // Then, just run "go generate" to update the qrc.go file. // // During development, the generated qrc.go can repack the filesystem content at // runtime to avoid the process of regenerating the qrc.go file and rebuilding the // application to test every minor change made. Runtime repacking is enabled by // setting the QRC_REPACK environment variable to 1: // // export QRC_REPACK=1 // // This does not update the static content in the qrc.go file, though, so after // the changes are performed, genqrc must be run again to update the content that // will ship with built binaries. package main import ( "flag" "fmt" "io/ioutil" "os" "path/filepath" "text/template" "gopkg.in/qml.v1" ) const doc = ` Usage: genqrc [options] <subdir1> [<subdir2> ...] The genqrc tool packs all resource files under the provided subdirectories into a single qrc.go file that may be built into the generated binary. Bundled files may then be loaded by Go or QML code under the URL "qrc:///some/path", where "some/path" matches the original path for the resource file locally. For example, the following will load a .qml file from the resource pack, and that file may in turn reference other content (code, images, etc) in the pack: component, err := engine.LoadFile("qrc://path/to/file.qml") Starting with Go 1.4, this tool may be conveniently run by the "go generate" subcommand by adding a line similar to the following one to any existent .go file in the project (assuming the subdirectories ./code/ and ./images/ exist): //go:generate genqrc code images Then, just run "go generate" to update the qrc.go file. During development, the generated qrc.go can repack the filesystem content at runtime to avoid the process of regenerating the qrc.go file and rebuilding the application to test every minor change made. Runtime repacking is enabled by setting the QRC_REPACK environment variable to 1: export QRC_REPACK=1 This does not update the static content in the qrc.go file, though, so after the changes are performed, genqrc must be run again to update the content that will ship with built binaries. ` // XXX: The documentation is duplicated here and in the the package comment // above. Update both at the same time. var packageName = flag.String("package", "main", "package name that qrc.go will be under (not needed for go generate)") func main() { flag.Usage = func() { fmt.Fprintf(os.Stderr, "%s", doc) flag.PrintDefaults() } flag.Parse() if err := run(); err != nil { fmt.Fprintf(os.Stderr, "error: %v\n", err) os.Exit(1) } } func run() error { subdirs := flag.Args() if len(subdirs) == 0 { return fmt.Errorf("must provide at least one subdirectory path") } var rp qml.ResourcesPacker for _, subdir := range flag.Args() { err := filepath.Walk(subdir, func(path string, info os.FileInfo, err error) error { if err != nil { return err } if info.IsDir() { return nil } data, err := ioutil.ReadFile(path) if err != nil { return err } rp.Add(filepath.ToSlash(path), data) return nil }) if err != nil { return err } } resdata := rp.Pack().Bytes() f, err := os.Create("qrc.go") if err != nil { return err } defer f.Close() data := templateData{ PackageName: *packageName, SubDirs: subdirs, ResourcesData: resdata, } // $GOPACKAGE is set automatically by go generate. if pkgname := os.Getenv("GOPACKAGE"); pkgname != "" { data.PackageName = pkgname } return tmpl.Execute(f, data) } type templateData struct { PackageName string SubDirs []string ResourcesData []byte } func buildTemplate(name, content string) *template.Template { return template.Must(template.New(name).Parse(content)) } var tmpl = buildTemplate("qrc.go", `package {{.PackageName}} // This file is automatically generated by gopkg.in/qml.v1/cmd/genqrc import ( "io/ioutil" "os" "path/filepath" "gopkg.in/qml.v1" ) func init() { var r *qml.Resources var err error if os.Getenv("QRC_REPACK") == "1" { err = qrcRepackResources() if err != nil { panic("cannot repack qrc resources: " + err.Error()) } r, err = qml.ParseResources(qrcResourcesRepacked) } else { r, err = qml.ParseResourcesString(qrcResourcesData) } if err != nil { panic("cannot parse bundled resources data: " + err.Error()) } qml.LoadResources(r) } func qrcRepackResources() error { subdirs := {{printf "%#v" .SubDirs}} var rp qml.ResourcesPacker for _, subdir := range subdirs { err := filepath.Walk(subdir, func(path string, info os.FileInfo, err error) error { if err != nil { return err } if info.IsDir() { return nil } data, err := ioutil.ReadFile(path) if err != nil { return err } rp.Add(filepath.ToSlash(path), data) return nil }) if err != nil { return err } } qrcResourcesRepacked = rp.Pack().Bytes() return nil } var qrcResourcesRepacked []byte var qrcResourcesData = {{printf "%q" .ResourcesData}} `)
Godeps/_workspace/src/github.com/obscuren/qml/cmd/genqrc/main.go
0
https://github.com/ethereum/go-ethereum/commit/d344054e5a2844241bf0e4f64ccfc4d2ad259718
[ 0.0037892393302172422, 0.00044641189742833376, 0.0001622217387193814, 0.0001696155231911689, 0.0008916789083741605 ]
{ "id": 1, "code_window": [ "\tif _, err := rw.conn.Write(headbuf); err != nil {\n", "\t\treturn err\n", "\t}\n", "\n", "\t// write encrypted frame, updating the egress MAC while writing to conn.\n", "\ttee := cipher.StreamWriter{S: rw.enc, W: io.MultiWriter(rw.conn, rw.egressMAC)}\n", "\tif _, err := tee.Write(ptype); err != nil {\n", "\t\treturn err\n", "\t}\n" ], "labels": [ "keep", "keep", "keep", "keep", "replace", "keep", "keep", "keep", "keep" ], "after_edit": [ "\t// write encrypted frame, updating the egress MAC hash with\n", "\t// the data written to conn.\n" ], "file_path": "p2p/rlpx.go", "type": "replace", "edit_start_line_idx": 69 }
// +build none package main import ( "fmt" "log" "os" "github.com/ethereum/go-ethereum/crypto/secp256k1" "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/p2p" "github.com/ethereum/go-ethereum/whisper" ) func main() { logger.AddLogSystem(logger.NewStdLogSystem(os.Stdout, log.LstdFlags, logger.InfoLevel)) pub, _ := secp256k1.GenerateKeyPair() whisper := whisper.New() srv := p2p.Server{ MaxPeers: 10, Identity: p2p.NewSimpleClientIdentity("whisper-go", "1.0", "", string(pub)), ListenAddr: ":30300", NAT: p2p.UPNP(), Protocols: []p2p.Protocol{whisper.Protocol()}, } if err := srv.Start(); err != nil { fmt.Println("could not start server:", err) os.Exit(1) } select {} }
whisper/main.go
0
https://github.com/ethereum/go-ethereum/commit/d344054e5a2844241bf0e4f64ccfc4d2ad259718
[ 0.0001746886846376583, 0.0001675126259215176, 0.00016052406863309443, 0.00016741888248361647, 0.000005127630174683873 ]