Searched refs:AnalyzedCommitRow (Results 1 – 13 of 13) sorted by relevance
/development/tools/repo_diff/service/repodiff/repositories/ |
D | denormalizer_test.go | 75 fixture := e.AnalyzedCommitRow{ 85 fixtures := []e.AnalyzedCommitRow{ 104 fakeCommitRows := []e.AnalyzedCommitRow{ 105 e.AnalyzedCommitRow{ 115 e.AnalyzedCommitRow{ 125 e.AnalyzedCommitRow{ 165 fakeCommitRows := []e.AnalyzedCommitRow{ 166 e.AnalyzedCommitRow{ 176 e.AnalyzedCommitRow{ 186 e.AnalyzedCommitRow{
|
D | helpers_test.go | 29 func fakeCommitFixtures() []ent.AnalyzedCommitRow { 30 return []ent.AnalyzedCommitRow{ 31 ent.AnalyzedCommitRow{
|
D | commit.go | 22 func (n NullCommit) InsertCommitRows(commitRows []e.AnalyzedCommitRow) error { 28 func (n NullCommit) GetMostRecentCommits() ([]e.AnalyzedCommitRow, error) { 46 func (c Commit) InsertCommitRows(commitRows []e.AnalyzedCommitRow) error { 96 func (c Commit) GetMostRecentCommits() ([]e.AnalyzedCommitRow, error) { 106 var commitRows []e.AnalyzedCommitRow 107 var commitCursor e.AnalyzedCommitRow
|
D | denormalizer.go | 241 func (s ScopedDenormalizer) DenormalizeToRecentCommits(commitRows []ent.AnalyzedCommitRow, commitTo…
|
/development/tools/repo_diff/service/repodiff/interactors/ |
D | application.go | 18 …yApplicationMutations(p AppProcessingParameters) ([]ent.AnalyzedDiffRow, []ent.AnalyzedCommitRow) { 24 …mmitRowsToAnalyzed(commitRows []ent.CommitRow, projectNameToType TypeMap) []ent.AnalyzedCommitRow { 25 analyzed := make([]ent.AnalyzedCommitRow, len(commitRows)) 27 analyzed[i] = ent.AnalyzedCommitRow{
|
/development/tools/repo_diff/service/repodiff/mappers/ |
D | csv_test.go | 12 commitRow := e.AnalyzedCommitRow{ 51 commitRow := e.AnalyzedCommitRow{ 63 []e.AnalyzedCommitRow{
|
D | csv.go | 20 func CommitEntityToCSVRow(a e.AnalyzedCommitRow) []string { argument 33 func CommitEntitiesToCSVRows(commits []e.AnalyzedCommitRow) [][]string { argument
|
D | mappers.go | 90 func commitRowToDenormalizedCols(commitRow e.AnalyzedCommitRow, firstSeen e.RepoTimestamp, rowIndex… argument 120 func commitRowToPersistCols(c e.AnalyzedCommitRow, uuidBytes string, timestamp e.RepoTimestamp, row… argument 159 func CommitRowsToDenormalizedCols(commitRows []e.AnalyzedCommitRow, commitToTimestamp map[string]e.… argument 213 func CommitRowsToPersistCols(commitRows []e.AnalyzedCommitRow, timestamp e.RepoTimestamp) [][]inter… argument 250 func SQLRowToCommitRow(iterRow *sql.Rows) (e.AnalyzedCommitRow, error) { 251 var c e.AnalyzedCommitRow
|
/development/tools/repo_diff/service/repodiff/controllers/ |
D | contract.go | 9 InsertCommitRows(commitRows []ent.AnalyzedCommitRow) error argument 11 GetMostRecentCommits() ([]ent.AnalyzedCommitRow, error)
|
D | regression_test.go | 15 analyzed := make([]ent.AnalyzedCommitRow, len(commitRows)) 17 analyzed[i] = ent.AnalyzedCommitRow{
|
D | denormalize.go | 142 func extractCommitHashes(commitRows []e.AnalyzedCommitRow) []string { argument
|
D | differential.go | 211 …(target ent.DiffTarget, diffRows []ent.AnalyzedDiffRow, commitRows []ent.AnalyzedCommitRow) error { argument
|
/development/tools/repo_diff/service/repodiff/entities/ |
D | entities.go | 52 type AnalyzedCommitRow struct { struct
|