swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40

sort by:
Revision Author Date Message Commit Date
fd61594 Address Further ORC review comments 25 December 2015, 14:19:12 UTC
5a9824a Merge pull request #14473 from JuliaLang/yyc/stack_init Threading compatible way for getting stack size and address 24 December 2015, 13:01:33 UTC
b108336 Merge pull request #14480 from crayxt/patch-1 Unbreak LLVM_SVN build 24 December 2015, 11:23:39 UTC
b67609b Update cgutils.cpp with LLVM38 API change. 24 December 2015, 10:36:26 UTC
c994331 Update codegen.cpp with LLVM38 API change. 24 December 2015, 10:28:53 UTC
a223af9 Threading compatible way for getting stack size and address 23 December 2015, 16:15:35 UTC
3642c96 Merge pull request #14461 from JuliaLang/ksh/sparsediag Added sparse*diagonal, diagonal*sparse methods and tests. Fixes #14416. 23 December 2015, 03:43:08 UTC
6b607e0 Added sparse*diagonal, diagonal*sparse methods and tests. Fixes #14416. 22 December 2015, 19:32:11 UTC
65937f4 Merge pull request #14436 from eschnett/eschnett/avoid-int128-try Avoid expensive try-catch for Int128 division 22 December 2015, 16:30:20 UTC
f1ae025 Merge pull request #14292 from rfourquet/powermod-Int128 use BigInt version of powermod for [U]Int128 22 December 2015, 14:55:59 UTC
58e39c7 fix zero-argument `@threadcall` (close #14468) 22 December 2015, 14:45:27 UTC
4493da9 Merge pull request #14464 from thofma/md Fix markdown plain rendering of horizontal rule 22 December 2015, 10:43:12 UTC
e448ace Fix markdown plain rendering of horizontal rule 22 December 2015, 08:59:51 UTC
15976b5 Merge pull request #14463 from JuliaLang/revert-14462-th/markdown Revert "Fix plain rendering of markdown horizontal rule" 22 December 2015, 08:32:52 UTC
7bd577a Revert "Fix plain rendering of markdown horizontal rule" 22 December 2015, 08:32:38 UTC
e37971a Merge pull request #14462 from thofma/th/markdown Fix plain rendering of markdown horizontal rule 22 December 2015, 08:30:08 UTC
62de0b7 Fix plain rendering of markdown horizontal rule 22 December 2015, 08:00:22 UTC
c601aca Merge pull request #14458 from JuliaLang/amitm/rr_deprecate add deprecation entry for RemoteRef 22 December 2015, 03:45:35 UTC
0a1c7f1 Merge pull request #14456 from JuliaLang/amitm/dictfinalizer workaround for dict access issue in a finalizer 22 December 2015, 03:42:00 UTC
f0e2ec1 Merge pull request #14325 from abhijithanilkumar/master Fix show() error while calling UDPSocket() in REPL. 21 December 2015, 20:15:58 UTC
637572a add deprecation entry for RemoteRef 21 December 2015, 12:17:03 UTC
ec574eb workaround for dict access issue in a finalizer 21 December 2015, 07:37:35 UTC
5a66fba check popen(ldconfig) return value 21 December 2015, 04:58:28 UTC
791523c Merge pull request #14453 from mariushoch/REPLCompletions Use a Set rather than a Dict for REPL completions 21 December 2015, 00:32:52 UTC
02e985b Use a Set rather than a Dict for REPL completions This is mostly syntactic sugar as Sets are internally just Dict{T,Void}. 20 December 2015, 22:55:12 UTC
433838c Merge pull request #14452 from JuliaLang/nl/readbytes Add tests and comment for readbytes() and readbytes!() 20 December 2015, 22:11:10 UTC
b1f2490 Add tests and comment for readbytes() and readbytes!() The case when array needs to be resized wasn't tested. Also, better make the trick about passing a small array from readbytes() more explicit. 20 December 2015, 14:08:02 UTC
78f1eeb use BigInt version of powermod for [U]Int128 * `widemul` is used in the non-`BigInt` version, which promotes repeatedly (in a loop) to `BigInt` if the arguments are `[U]Int128`, so better use the optimized BigInt version directly (to avoid needless heap allocations) * this also removes a tiny type instability on the argument `b` (changed to `x` here) * to resolve ambiguity (for `powermod(::BigInt, ::Integer, ::[U]Int128)`, one method in gmp.jl is made more general as: `powermod(x::Integer, p::Integer, m::BigInt)`. This seems more correct also, as that way a call like `powermod(2, 2, big(2))` will use the GMP implementation, as was probably intended. * on the other hand, the method (in gmp.jl) `powermod(x::BigInt, p::Integer, m::Integer)`, which was using the GMP implementation, has been removed: falling back to the generic implementation, which uses the type of `m` for computations, seems more efficient (a special case could be made for `[U]Int128` because of the aforementioned `widemul`); but more importantly, this method was probably the only one which didn't return a value of the same type as the modulus. 20 December 2015, 11:47:57 UTC
1c7f70a Merge pull request #9352 from JuliaLang/rf/repl-rsearch fix repl rsearch with one-char query 20 December 2015, 03:49:32 UTC
5e3dcf9 Merge pull request #14442 from mbauman/mb/14046 Remove erroneous SparseVector early exit 19 December 2015, 19:36:40 UTC
a6992dd Merge pull request #14262 from KristofferC/patch-5 fix embedding docs of jl_atexit_hook 19 December 2015, 19:33:06 UTC
09721f0 Added test for new show() function for UDPSocket() 19 December 2015, 16:21:43 UTC
109dcc0 fix embedding docs of jl_atexit_hook 19 December 2015, 10:47:06 UTC
86c7bc8 Avoid expensive try-catch for Int128 division 19 December 2015, 00:48:10 UTC
c31316b Remove erroneous SparseVector early exit There is an optimization available here, but this isn't quite it. Fix #14046. 18 December 2015, 23:09:37 UTC
e83b755 Merge pull request #14419 from JuliaLang/anj/update Rename CHOLMOD.update! -> CHOLMOD.cholfact!/CHOLMOD.ldltfact! 18 December 2015, 15:23:16 UTC
754c792 Merge pull request #14424 from JuliaLang/anj/rankupdate Rename rank one up- and downdate functions for Cholesky to rank(up/down)date 18 December 2015, 14:56:58 UTC
773fb3b add tests for REPL rsearch with UTF8 18 December 2015, 12:30:14 UTC
7efffc7 make repl rsearch utf8 compatible 18 December 2015, 12:29:51 UTC
b3a57c6 fix repl rsearch with one-char query The backward i-search needs to set the "start" parameter of rsearch to the end (minus 1) of the current search window. This fixes e.g.: * searching backwards only one character remains stuck on the same match * searching backwards 'aaa' skips one of the matches in 'aaaa' 18 December 2015, 12:29:51 UTC
3eefb6b Rename CHOLMOD.update! -> CHOLMOD.cholfact!/CHOLMOD.ldltfact! Move cholfact documentation to source 18 December 2015, 01:41:23 UTC
00589c8 Merge pull request #14377 from sarvjeetsinghghotra/issue-14291 RFC: Modified writedlm() to write leading zeros when writing floats #14291 17 December 2015, 21:58:46 UTC
b490f74 Merge pull request #14348 from mason-bially/issue14331 Fixing original issue #14331 by cleaning up print_fixed_point 17 December 2015, 21:57:16 UTC
bedd4db Merge pull request #14209 from mariushoch/replcompletions-path-unique Make sure commands suggested in REPL shell mode are unique 17 December 2015, 21:53:40 UTC
8cb7202 Merge pull request #14406 from JuliaLang/jb/fix14009 fix #14009; check for types growing due to recursion and widen them 17 December 2015, 21:37:00 UTC
ec609cc Merge pull request #14362 from eschnett/eschnett/cleanup-checked-2 Clean up implementation of checked integer arithmetic 17 December 2015, 20:11:34 UTC
bca7828 Merge pull request #14428 from MichaelHatherly/mh/inline-docs-migration Move Cartesian and Pkg docs inline. 17 December 2015, 19:01:48 UTC
be4cb8a Merge pull request #14414 from eschnett/eschnett/widen Widen small integers only to Int32, not Int 17 December 2015, 18:29:08 UTC
6a35bdf Merge pull request #14429 from drepper/ud/warn-unused-writeRecoveryFile Avoid unused function warning 17 December 2015, 18:19:06 UTC
8d7387d Clean up implementation of checked integer arithmetic - Move checked_* implementation in Base into a module Checked in a new file checked.jl - Provide missing checked_* functions for BigInt (BigInt always checks) - Provide missing type promotions for checked_* functions - Move all checked_* tests into their on file test/checked.jl - Clean up handling LLVM codegen bugs - Introduce new function jl_get_LLVM_VERSION which works already early during bootstrap - Rename intrinsics to have an "_int" suffix, like all other integer intrinsics - In coreimg.jl, emulate checked arithmetic by regular (unchecked) arithmetic 17 December 2015, 17:45:19 UTC
bd59b30 Move Pkg docs inline. 17 December 2015, 17:39:26 UTC
633a161 Move Cartesian docs inline. Add missing docs. 17 December 2015, 17:39:26 UTC
3622e7c Merge pull request #14235 from ryanhamilton/java-refactor Refactor java benchmark to remove duplicated code. 17 December 2015, 17:36:35 UTC
9d9814b fix #14009; check for types growing due to recursion and widen them 17 December 2015, 15:47:26 UTC
6137d6c Avoid unused function warning One more warning to fix: writeRecoveryFile is unconditionally defined but used only if JL_DEBUG_BUILD is defined. The fix is obvious. 17 December 2015, 14:10:52 UTC
b33c4bd Merge pull request #14421 from waTeim/waT/mklink fix arguments to mklink when executing within msys2 17 December 2015, 13:51:21 UTC
1e7e967 Merge pull request #14403 from drepper/warn-uninitialized-squashed Mark variables as initialized [cleaned up version] 17 December 2015, 13:19:29 UTC
e88ee46 Merge pull request #14365 from JuliaLang/vs/osxlaunch Simplify the launch script on os x. 17 December 2015, 08:25:03 UTC
baf174f Merge pull request #14272 from JuliaLang/kf/modulecoalescing Use ORC JIT for better compile time and runtime performance 17 December 2015, 06:46:29 UTC
381d480 Merge pull request #14404 from JuliaLang/jcb/fixannoyingdocbindingerror Fix exception being thrown when a binding is not defined 16 December 2015, 22:58:15 UTC
2778a52 Merge pull request #14413 from JuliaLang/sb/quantile improve quantile: reduce allocations, use partial sort 16 December 2015, 22:57:56 UTC
afcbab1 Merge pull request #14304 from bicycle1885/nullable-show print the type parameter of Nullable 16 December 2015, 21:10:25 UTC
cbf888e Rename rank one up- and downdate functions for Cholesky to lowrank(up/down)date Add NEWS.md entry 16 December 2015, 20:44:12 UTC
9e2f5dc add undefined binding doc tests 16 December 2015, 20:21:35 UTC
9fe0f2d Turn allocation failure into a warning 16 December 2015, 20:03:08 UTC
38c8346 Fix exception being thrown when a binding is not defined This fixes `help> iamnotdefined` error being propagated after macroexpansion of the `@var` binding macro I believe we do not explictly store bindings that do not exist so this should be safe. 16 December 2015, 19:33:35 UTC
56f9140 Merge pull request #14366 from JuliaLang/yyc/symtab-lock Try to make symbol table access thread safe. 16 December 2015, 18:40:51 UTC
500b340 Merge pull request #14391 from JuliaLang/yyc/dump-lock Lock for the (de)serializer 16 December 2015, 18:37:00 UTC
f6ad90e improve quantile: reduce allocations, use partial sort 16 December 2015, 12:58:20 UTC
7e0629a Address review comments 16 December 2015, 12:36:39 UTC
145658e Refactor java benchmark to remove duplicated code. Replace tabs with spaces. 16 December 2015, 08:58:22 UTC
79b2418 Merge pull request #14378 from MichaelHatherly/mh/purge-rst Convert stdlib to markdown. 16 December 2015, 08:25:54 UTC
2c7aef1 Rebuild stdlib docs. The only significant changes here seem to be the loss of `.. note::`s. Most other changes are extra `\ ` escapes at the end of inline code, inline math, and links. Some code blocks have been indented by an extra space, I've not managed to track down the cause of that, though they should render the same anyway. `make doctest` errors all look related to differences in backtrace line numbers and aren't related to the changes in this commit. 16 December 2015, 06:37:58 UTC
d44899a Update markdown tests for inline tex and footnotes. 16 December 2015, 06:37:58 UTC
9c17003 Fixup signature escaping in genstdlib.jl Backslashes in signatures of `writedlm`, `:`, `.\`, and `\` were causing them to be skipped after converting the respective docstrings to markdown from rst. (This appears to fix the problem and not cause any regressions elsewhere, but is a bit of a hack.) 16 December 2015, 06:37:58 UTC
3379f5d Fixup formatting in LibGit2 docs. '$WORK_DIR' was being treated as an interpolated `Symbol`. Surround it in backticks to avoid this. Also add backticks to paths and enum values in surrounding docs for consistency. 16 December 2015, 06:37:58 UTC
c5fa1ef Escape rst link backticks. 16 December 2015, 06:37:58 UTC
2238a08 Add `stripmd` methods for `Footnote`s. 16 December 2015, 06:37:58 UTC
6f694f6 Add `atkeyword` macro to basedocs.jl, move some docs inline. 16 December 2015, 06:37:58 UTC
be35ce8 Remove `atdoc_str` from inline docs and reformat. 16 December 2015, 06:37:58 UTC
2b2ce53 Remove `atdoc_str` from Base docs and reformat. 16 December 2015, 06:37:58 UTC
220f284 Remove `atdoc_str` from Profile docs and reformat. 16 December 2015, 06:37:58 UTC
78df2e5 Remove `atdoc_str` from Pkg docs and reformat. 16 December 2015, 06:37:58 UTC
749faf4 Remove `atdoc_str` from Libdl docs and reformat. 16 December 2015, 06:37:58 UTC
b1aef58 Remove `atdoc_str` from Libc docs and reformat. Also remove rst block by adding special rst link printing. 16 December 2015, 06:37:58 UTC
760f246 Remove `atdoc_str` from Dates docs and reformat. 16 December 2015, 06:37:58 UTC
2d49e87 Remove `atdoc_str` from Collections docs and reformat. 16 December 2015, 06:37:58 UTC
8f46c87 Remove `atdoc_str` from Cartesian docs and reformat. 16 December 2015, 06:37:58 UTC
eb050c7 Remove `atdoc_str` from BLAS docs and reformat. 16 December 2015, 06:37:58 UTC
ccb35ae Add double backtick syntax for inline math foo ``x + y`` bar... and block math with fenced code blocks ```math x + y ``` 16 December 2015, 06:37:58 UTC
bd25209 Special-case rendering of `:func:`-style links. 16 December 2015, 06:37:58 UTC
1517b72 Add rst table rendering. 16 December 2015, 06:37:58 UTC
5f60973 Fix blockquote rendering for rst. 16 December 2015, 06:37:58 UTC
2ba4551 Add footnote parsing and rendering. 16 December 2015, 06:37:58 UTC
6175c9f Move trailing docs to helpdb/Base.jl. 16 December 2015, 06:37:58 UTC
1036a55 Move helpdb entries for Pkg. 16 December 2015, 06:37:58 UTC
c18c092 Move helpdb entries for Dates. 16 December 2015, 06:37:58 UTC
9e4539f Move helpdb entries for Base. 16 December 2015, 06:37:58 UTC
e637ec8 Move helpdb entries for Cartesian. 16 December 2015, 06:37:58 UTC
6e9f8fa Move helpdb entries for Profile. 16 December 2015, 06:37:58 UTC
back to top