1
0
Fork 0
Commit Graph

11977 Commits

Author SHA1 Message Date
Esteban Lombeyda a38d43a450 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2014-04-01 08:40:18 +02:00
Jan Steemann bc5428021f changed function name 2014-04-01 09:20:27 +02:00
Jan Steemann 9cce65a0ac added missing files 2014-04-01 09:19:10 +02:00
Esteban Lombeyda 0a4e416ebc number of visible charaters of the prompt is saved in current structure 2014-04-01 08:39:43 +02:00
Esteban Lombeyda 92c43d1f89 Bug fix delete key; cleaning code (not finished) 2014-04-01 08:00:08 +02:00
Jan Steemann 9d231223fd Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-03-31 16:45:26 +02:00
Max Neunhoeffer 59e314d2bd Merge branch 'devel' of ssh://github.com/triAGENS/ArangoDB into devel 2014-03-31 16:26:20 +02:00
Max Neunhoeffer 53f2203c8b New test. 2014-03-31 16:26:14 +02:00
gschwab 30a1389426 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-03-31 16:15:22 +02:00
gschwab 7655ce3c18 fixed issue #800 2014-03-31 16:14:26 +02:00
Esteban Lombeyda a62abac85d Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2014-03-31 16:12:13 +02:00
Esteban Lombeyda 22545acbf6 Moving to begining of line respectively end of line is fixed 2014-03-31 16:09:52 +02:00
Esteban Lombeyda f6f8281f7e Cursor is positioned whith help of relative coordinates 2014-03-31 15:52:39 +02:00
scottashton f7ceebe35b reformated tests 2014-03-31 14:31:39 +02:00
scottashton 75d123eea4 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-03-31 14:21:42 +02:00
scottashton 6c09b13d56 fixed tests 2014-03-31 14:21:38 +02:00
Esteban Lombeyda dade1c03c8 Bug fix by deleting of the last word 2014-03-31 14:15:45 +02:00
Jan Steemann b9293dee2c Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-03-31 13:47:23 +02:00
Jan Steemann c39510820d added tests 2014-03-31 13:47:17 +02:00
Max Neunhoeffer c2316ba473 Fix three bugs with memory management in associative-multi.c 2014-03-31 13:40:31 +02:00
scottashton b111ffd8c2 Revert " finished router tests and reformated test files"
This reverts commit 2352b41ba8a067eb7fb02258d322bba8ddc37809.
2014-03-31 13:33:39 +02:00
Esteban Lombeyda 7491a2ea02 navigation in editing line works fine 2014-03-31 13:32:12 +02:00
scottashton fd88f2fc47 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-03-31 13:06:45 +02:00
scottashton 86dd3cc94b finished router tests and reformated test files 2014-03-31 13:05:36 +02:00
Jan Steemann 5f3ea348bc separated FNV hashing functions 2014-03-31 11:41:23 +02:00
Esteban Lombeyda 8ece132b71 Buf fix in positioning the cursor at the begin of the next line 2014-03-31 11:28:00 +02:00
Max Neunhoeffer 4ae51b42bf Sort out internal statistics and polish future pair stuff. 2014-03-31 11:06:40 +02:00
Max Neunhoeffer 377a3688c1 Switch off authentication in relative configuration. 2014-03-31 09:25:56 +02:00
Max Neunhoeffer 9dfbb0efdb Use UNIX line endings in xxhash. 2014-03-31 09:25:05 +02:00
Max Neunhoeffer 4ed8230b3a Merge branch 'devel' into associative_tests 2014-03-31 08:46:36 +02:00
Jan Steemann 3644a73554 speed up CRC calculation
measured speedup on an x86_64 Linux
-----------------------------------

clang, -O2, without patch:
* 5,000,000x CRC of a 256 byte buffer: TOOK: 0.858567
* 5,000,000x CRC of a 512 byte buffer: TOOK: 1.67744
* 5,000,000x CRC of a 1024 byte buffer: TOOK: 3.31552
* 5,000,000x CRC of a 2048 byte buffer: TOOK: 6.58735
* 5,000,000x CRC of a 4096 byte buffer: TOOK: 13.1924

clang, -O2, with patch
* 5,000,000x CRC of a 256 byte buffer: TOOK: 0.669745
* 5,000,000x CRC of a 512 byte buffer: TOOK: 1.3234
* 5,000,000x CRC of a 1024 byte buffer: TOOK: 2.63565
* 5,000,000x CRC of a 2048 byte buffer: TOOK: 5.26927
* 5,000,000x CRC of a 4096 byte buffer: TOOK: 10.6086

gcc, -O2, without patch:
* 5,000,000x CRC of a 256 byte buffer: TOOK: 0.752911
* 5,000,000x CRC of a 512 byte buffer: TOOK: 1.46402
* 5,000,000x CRC of a 1024 byte buffer: TOOK: 2.88934
* 5,000,000x CRC of a 2048 byte buffer: TOOK: 5.74819
* 5,000,000x CRC of a 4096 byte buffer: TOOK: 11.4839

gcc, -O2, with patch:
* 5,000,000x CRC of a 256 byte buffer: TOOK: 0.643093
* 5,000,000x CRC of a 512 byte buffer: TOOK: 1.20488
* 5,000,000x CRC of a 1024 byte buffer: TOOK: 2.39155
* 5,000,000x CRC of a 2048 byte buffer: TOOK: 4.75178
* 5,000,000x CRC of a 4096 byte buffer: TOOK: 9.34864
2014-03-28 20:26:56 +01:00
Jan Steemann 7ee2caf94e simplified usage of arango-statement 2014-03-28 16:57:59 +01:00
Jan Steemann 55f0dc5739 logfile opening/closing fixes 2014-03-28 16:45:06 +01:00
Max Neunhoeffer f7476a36ef Take out some diagnostics. 2014-03-28 16:25:13 +01:00
Max Neunhoeffer 7f11440402 Repair graphs with new edge index. 2014-03-28 16:21:18 +01:00
Jan Steemann 202cbcf05d pacified jslint 2014-03-28 12:04:01 +01:00
Max Neunhoeffer 078687fe00 Change edge index. Compiles but does not work yet. 2014-03-28 11:10:49 +01:00
Jan Steemann b6dff63218 disable version notification 2014-03-28 11:07:13 +01:00
gschwab 58541ce436 currentUser as global var 2014-03-28 09:35:13 +01:00
gschwab dfc7ab72a1 small fix: modal dialog will be filled, when using profile-link 2014-03-28 09:17:20 +01:00
Max Neunhoeffer 05c9e4fd54 Cleanup resizing of MultiPointerHash 2014-03-28 09:14:20 +01:00
Esteban Lombeyda a0f6c9d138 Compiler Fix 2014-03-27 17:10:34 +01:00
Esteban Lombeyda e493bd716f Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel
Compiler Bug fix
2014-03-27 17:07:06 +01:00
gschwab aeb75f1d08 moved edit userProfile to user management 2014-03-27 17:05:56 +01:00
Esteban Lombeyda ae36a41bb4 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2014-03-27 17:01:48 +01:00
Esteban Lombeyda 99dbeb4726 Bug fix in setCursorPos 2014-03-27 16:57:13 +01:00
Max Neunhoeffer 3dc507d0ed Fix after merge from devel. 2014-03-27 16:37:10 +01:00
Max Neunhoeffer b4e80d5a26 Merge branch 'devel' into associative_tests 2014-03-27 16:32:56 +01:00
Max Neunhoeffer 650d852db9 Graph tests work again. 2014-03-27 16:32:24 +01:00
Esteban Lombeyda c502f37c1b Non used variables were commented out (Compiler warning C4101) 2014-03-27 16:06:13 +01:00