- Jan 24, 2018
-
-
Ahmad Sherif authored
Related to #39805
-
Nick Thomas authored
-
Ahmad Sherif authored
Closes gitaly#921
-
Nick Thomas authored
-
Nick Thomas authored
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
Douwe Maan authored
-
Oswaldo Ferreir authored
-
Ahmad Sherif authored
Closes gitaly#929
-
-
- Jan 23, 2018
-
-
Jan Provaznik authored
Search query is especially slow if a user searches a generic string which matches many records, in such case search can take tens of seconds or time out. To speed up the search query, we search only for first 1000 records, if there is >1000 matching records we just display "1000+" instead of precise total count supposing that with such amount the exact count is not so important for the user. Because for issues even limited search was not fast enough, 2-phase approach is used for issues: first we use simpler/faster query to get all public issues, if this exceeds the limit, we just return the limit. If the amount of matching results is lower than limit, we re-run more complex search query (which includes also confidential issues). Re-running the complex query should be fast enough in such case because the amount of matching issues is lower than limit. Because exact total_count is now limited, this patch also switches to to "prev/next" pagination. Related #40540
-
Ahmad Sherif authored
-
Oswaldo Ferreir authored
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
Tim Zallmann authored
-
Winnie Hellmann authored
-
-
- Jan 22, 2018
-
-
Mike Greiling authored
-
Mike Greiling authored
-
Mike Greiling authored
-
-
Alejandro Rodríguez authored
-
Alejandro Rodríguez authored
-
Filipa Lacerda authored
-
Filipa Lacerda authored
-
Bob Van Landuyt authored
Otherwise we'd only preload the ancestors that would fit the page. That way, when a search result was on the first page, but the ancestor didn't fit the page anymore. We would not have the preloaded ancestor when rendering the hierarchy.
-
Bob Van Landuyt authored
When a project is shared with a group, it should not be included as a descendant on the group dashboard.
-
Bob Van Landuyt authored
When searching we would limit the scope of ancestors to load because the filter would be applied to the ancestors. Instead, we need to load _all_ ancestors for matching projects.
-
Micael Bergeron authored
-
Jacopo authored
Html code now works in commits atom feed `title` and `summary`.
-
Filipa Lacerda authored
-
- Jan 21, 2018
-
-
Mark Fletcher authored
Given no search term, the `search` and `search_with_secondary_emails` methods will yield an empty result set
-
Mark Fletcher authored
-
Stan Hu authored
Closes #42249
-
- Jan 19, 2018
-
-
Mark Fletcher authored
-
Alejandro Rodríguez authored
-
Filipa Lacerda authored
-
Filipa Lacerda authored
-
Filipa Lacerda authored
Put back non triggered information
-
Sean McGivern authored
Gitlab::Profiler.profile takes a URL to profile, and returns the ruby-prof profile result. This is currently only for interactive use (in a console) or from the script runner. Note that when using this interactively, changes to the application within that console session will be used, so this can be used to test proposed performance changes.
-