aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use std::mutex instead of FastOS_Mutex.Tor Egge2017-10-271-15/+15
|
* Use std::mutex and std::condition_variable instead of FastOS_Cond.Tor Egge2017-10-272-8/+10
|
* Use std::mutex and std::condition_variable instead of FastOS_Cond.Tor Egge2017-10-272-45/+46
|
* Reduce use of FastOS_Mutex and FastOS_Cond.Tor Egge2017-10-278-286/+158
| | | | Remove handover tricks, use move constructor and move assignment instead.
* Mutex instrumentation is long gone.Tor Egge2017-10-277-8/+8
|
* Use std::mutex and std::condition_variable instead of FastOS_Cond.Tor Egge2017-10-271-8/+12
|
* Remove unneeded include statements.Tor Egge2017-10-272-2/+0
|
* Use std::mutex and std::condition_variable instead of FastOS_Cond.Tor Egge2017-10-272-22/+20
|
* Use std::mutex and std::condition_variable instead of FastOS_Cond.Tor Egge2017-10-272-10/+10
|
* Use std::unique_lock<std::mutex> to guard node manager.Tor Egge2017-10-272-66/+50
|
* Use std::unique_lock<std::mutex> to guard fnet search.Tor Egge2017-10-272-76/+85
|
* Use std::unique_lock<std::mutex> to guard engine.Tor Egge2017-10-274-31/+30
|
* Use std::atomic<int> instead of a mutex protected int to protect againstTor Egge2017-10-272-21/+6
| | | | multiple outstanding monitor queries.
* Use std::unique_lock<std::mutex> to guard data set.Tor Egge2017-10-2711-145/+140
|
* Merge pull request #3904 from vespa-engine/havardpe/tensor-cleanupHåvard Pettersen2017-10-2718-293/+208
|\ | | | | Havardpe/tensor cleanup
| * normalize to fewer operation primitivesHåvard Pettersen2017-10-262-108/+124
| |
| * add whitespaceHåvard Pettersen2017-10-261-15/+15
| |
| * remove TensorSum (use more generic TensorReduce instead)Håvard Pettersen2017-10-2617-156/+36
| |
| * test both reference and production tensor enginesHåvard Pettersen2017-10-261-16/+31
| |
| * it is not allowed to reduce over a non-existing dimensionHåvard Pettersen2017-10-261-3/+7
| |
* | Merge pull request #3873 from ↵Jon Marius Venstad2017-10-2731-920/+828
|\ \ | | | | | | | | | | | | vespa-engine/jvenstad/expose-property-info-in-application-api Jvenstad/expose property info in application api
| * | Included property info with tenant repliesJon Marius Venstad2017-10-276-48/+52
| | |
| * | Updated test fiel tooJon Marius Venstad2017-10-261-3/+3
| | |
| * | toString -> displayNameJon Marius Venstad2017-10-261-1/+1
| | |
| * | Comments taken into accountJon Marius Venstad2017-10-2611-31/+55
| | |
| * | Oops, forgot test responseJon Marius Venstad2017-10-251-0/+13
| | |
| * | Add missing copyright headersJon Marius Venstad2017-10-252-0/+2
| | |
| * | Merge branch 'master' into jvenstad/expose-property-info-in-application-apiJon Marius Venstad2017-10-2512-37/+300
| |\ \
| * | | Expose property relevant URIs and contact lists at tenant/{tenant}/propertyJon Marius Venstad2017-10-255-15/+73
| | | |
| * | | Resolved ocnflictsJon Marius Venstad2017-10-24892-18555/+15629
| |\ \ \
| * | | | Adjustments, mock and testsJon Marius Venstad2017-10-247-68/+243
| | | | |
| * | | | Refactored deployment issues >_<Jon Marius Venstad2017-10-2025-980/+542
| | | | |
| * | | | Merge master to get good unit testsJon Marius Venstad2017-10-07224-1785/+3360
| |\ \ \ \
| * | | | | Add comment, commit to popJon Marius Venstad2017-10-061-0/+1
| | | | | |
| * | | | | Cohere to local conventions, and protected constructor just in caseJon Marius Venstad2017-10-061-12/+12
| | | | | |
| * | | | | Add interface to replace Issues, Contacts, PropertiesJon Marius Venstad2017-10-061-0/+67
| | | | | |
* | | | | | Merge pull request #3915 from ↵Jon Bratseth2017-10-2710-50/+20
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | vespa-engine/hmusum/use-already-existing-activate-lock Use the already existing activate lock in tenant instance
| * | | | | | Use the already existing activate lock in tenant instanceHarald Musum2017-10-2710-50/+20
|/ / / / / /
* | | | | | Merge pull request #3911 from ↵Jon Bratseth2017-10-261-1/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | vespa-engine/bratseth/dont-record-component-triggering We never trigger component: Remove those events
| * | | | | | Correct comment typoJon Bratseth2017-10-261-1/+1
| | | | | | |
| * | | | | | We never trigger component: Remove those eventsJon Bratseth2017-10-261-1/+3
| | | | | | |
* | | | | | | Merge pull request #3912 from ↵Jon Bratseth2017-10-262-2/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vespa-engine/bratseth/dont-allow-delete-with-nonprod-deployments Don't allow delete with non-prod deployments
| * | | | | | | Don't allow delete with non-prod deploymentsJon Bratseth2017-10-262-2/+2
|/ / / / / / /
* | | | | | | Merge pull request #3910 from vespa-engine/bergum/improve-trace-of-exceptionsJon Bratseth2017-10-261-1/+22
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Add stack trace to message
| * | | | | | Logging as requested per reviewJo Kristian Bergum2017-10-261-1/+2
| | | | | | |
| * | | | | | Log insteadJo Kristian Bergum2017-10-261-1/+4
| | | | | | |
| * | | | | | Add stack trace to messageJo Kristian Bergum2017-10-261-1/+18
| | | | | | |
* | | | | | | Merge pull request #3908 from ↵Jon Marius Venstad2017-10-264-23/+26
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vespa-engine/bratseth/ony-consider-production-deployments Only consider production deployments
| * | | | | | | Only consider production deploymentsJon Bratseth2017-10-264-23/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When reasoning about versions, we should not take deployments to "dev" and "perf" into account.
* | | | | | | | Merge pull request #3909 from vespa-engine/bjorncs/fixBjørn Christian Seime2017-10-261-1/+2
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Fix invalid use of formatter