Commit Graph

31311 Commits (24cc6d88e7a3f91c5b583ebea7866f395e35faa0)

Author SHA1 Message Date
John Benediktsson 24cc6d88e7
io.styles: simplify style-stream by depending on style words. 2020-04-11 20:34:11 -05:00
John Benediktsson 0a64c19c11
help.html: whoops, need to remove the extra links. 2020-04-11 20:34:10 -05:00
John Benediktsson d1c2d21721
help.html: tweak the navbar a bit. 2020-04-11 20:34:09 -05:00
John Benediktsson df814e3010
help.html: use max-width for content. 2020-04-11 20:34:08 -05:00
John Benediktsson 627b550bf0
help.html: wrap contents in a div, update style a little. 2020-04-11 20:34:07 -05:00
John Benediktsson a7aca0ca75
help: change $title to nest then style.
This changnes the HTML we produce to look like:

    <div><span>...</span></div>

Instead of:

    <span><div>...</div></span>
2020-04-11 20:34:06 -05:00
John Benediktsson fd8d19cd41
help.markup: more bold table headings. 2020-04-11 20:34:05 -05:00
John Benediktsson 3101da4c83
help: add more bold table headings. 2020-04-11 20:34:04 -05:00
John Benediktsson dac129aa4c
help: add some bold table headings. 2020-04-11 20:34:04 -05:00
John Benediktsson 905d01dbc3
bootstrap.image: define MAIN: to make-my-image. 2020-04-11 20:34:03 -05:00
John Benediktsson 765b067cd8
generic.math: some minor cleanup. 2020-04-11 20:34:02 -05:00
John Benediktsson a99ebfe11b
markov-chains: initial implementation. 2020-04-11 20:34:01 -05:00
Doug Coleman b807ccef0a
windows.gdiplus: flags{ } is in literals, fix using 2020-04-11 20:34:00 -05:00
John Benediktsson b52d5081a7
gpu.framebuffers: simplify bitor. 2020-04-11 20:33:59 -05:00
John Benediktsson d1d15718a0
opencl: use flags{ }. 2020-04-11 20:33:58 -05:00
John Benediktsson 534d70205f
io.files.trash.windows: using flags{ }. 2020-04-11 20:33:58 -05:00
John Benediktsson 6d798c4617
vocabs.loader: fix alignment of last patch. 2020-04-11 20:33:57 -05:00
John Benediktsson 7bb47a28bd
vocabs.loader: prevent create-vocab if check-vocab fails. 2020-04-11 20:33:56 -05:00
John Benediktsson 5a6181ad48
tetris.game: fix tests. 2020-04-11 20:33:55 -05:00
John Benediktsson 9d9e736b89
x11.xim: fix use of flags. 2020-04-11 20:33:54 -05:00
John Benediktsson 81b77cb14b
tetris: some cleanup, simplify. 2020-04-11 20:33:53 -05:00
John Benediktsson 33e6e7a02d
core/basis/extra: use flags{ } in places. 2020-04-11 20:33:52 -05:00
John Benediktsson 6c197330b8
io.directories.windows: don't need to wrap. 2020-04-11 20:33:51 -05:00
John Benediktsson 17f173c39f
vocabs.hierarchy: change sorting to sort visible-dirs. 2020-04-11 20:33:51 -05:00
John Benediktsson 7c58cb88c5
vocabs.hierarchy: faster all-disk-vocabs-recursive.
The old technique caused a high amount of redundant ``exists?`` checks,
even though we are traversing the directory tree.  That happens to be a
little slow on Windows, for some pathological reason, the first time
it's run. This should make it better while we also investigate why
``windows_stat`` is slower in that case.
2020-04-11 20:33:50 -05:00
John Benediktsson 8a21ff40d3
io.files.windows: make win32-file-attributes a little faster. 2020-04-11 20:33:49 -05:00
John Benediktsson eb3f6ac75b
math.statistics: adding interquartile-range, midhinge, and fivenum. 2020-04-11 20:33:48 -05:00
John Benediktsson 085436a156
tensors: cleanup using, and make a few float math operations faster. 2020-04-11 20:33:47 -05:00
John Benediktsson c196f9f022
gobject-introspection: support more number type constants. 2020-04-11 20:33:46 -05:00
Chris Double 34f1f836eb
Fix linux find-so failure if no old ld entries exist
If '/etc/ld.so.cache' does not contain any old entries
using the 'HeaderOld' struct then it fails with a bad-magic
error before looking for the HeaderNew entries.

My Ubuntu 19.10 system doesn't have any old entries so always
fails here when using 'load-all', which results in the
'extra/llvm' vocab failing due to using 'find-so'.

The fix implemented here is to catch the error and recover from
it by seeking back to the start of the header before looking for
the new header entries.
2020-04-11 20:33:45 -05:00
John Benediktsson 2d55a76eb9
math.matrices: use any? and all? directly in tests. 2020-04-11 20:33:44 -05:00
John Benediktsson 8ce628014a
math.matrices: update using on tests. 2020-04-11 20:33:43 -05:00
John Benediktsson 14d45c1b6e
bittorrent: fix check-bitfield, add a test. 2020-04-11 20:33:42 -05:00
John Benediktsson 3555f86bb9
persistent.hashtables: cleanup. 2020-04-11 20:33:41 -05:00
John Benediktsson ebd1b62a30
math: use sorted-histogram values in a few places. 2020-04-11 20:33:40 -05:00
John Benediktsson 200465c121
ui.gadgets.panes: fix for big strings on windows and linux.
Using 3639 grapheme length, which is win32 limit. Maybe cairo supports
4681 graphemes, but use the lower limit for now.
2020-04-11 20:33:40 -05:00
John Benediktsson 42b6fbec70
ui.backend.cocoa.views: some formatting cleanup. 2020-04-11 20:33:39 -05:00
kusumotonorio c8f82ecf2c
Tests for System V AMD64 ABI (#2233)
* Adds Tests for System V AMD64 ABI

* Remove TABs, etc.

* Adds a test

* Some Cleanup

* Add Callback Tests

* Add More Tests
2020-04-11 20:33:38 -05:00
kusumotonorio 50ad877da7
unix.factor: Bug fix etc., boxing.factor: Improves record/unrecord-reps 2020-04-11 20:33:37 -05:00
kusumotonorio 93066f1868
boxing.factor: Swap first and second positions 2020-04-11 20:33:36 -05:00
kusumotonorio dd6a82eb65
boxing.factor: Use count 2020-04-11 20:33:35 -05:00
kusumotonorio 1893f72d55
unix.factor: Use count 2020-04-11 20:33:34 -05:00
kusumotonorio 82d8b8409e
put alien.factor, ffi_test.* back 2020-04-11 20:33:33 -05:00
kusumotonorio 20d44c8c14
put alien.factor back 2020-04-11 20:33:33 -05:00
kusumotonorio 11cd58a5d7
Add Callback Tests 2020-04-11 20:33:32 -05:00
kusumotonorio 14b8cfeba9
Stop inc-not-f and dec-not-f, etc 2020-04-11 20:33:31 -05:00
kusumotonorio 38b64043f8
boxing.factor: Change Stack Effects 2020-04-11 20:33:30 -05:00
kusumotonorio 94a595cf5e
Remove an extra space 2020-04-11 20:33:29 -05:00
kusumotonorio 6801472db4
Improve System V AMD64 ABI compliance 2020-04-11 20:33:28 -05:00
John Benediktsson 4e0161c999
bittorrent: initial commit of message parsing. 2020-04-11 20:33:27 -05:00