data
Here are 9,091 public repositories matching this topic...
-
Updated
Sep 29, 2021 - Clojure
-
Updated
Sep 7, 2021 - Jupyter Notebook
-
Updated
Aug 25, 2021
There is no easy way to navigate up the parse tree provided by jsoup selector syntax. We currently can navigate down very easily with Jsoup's selector syntax value.parseHtml().select("div > p")
and also `value.parseHtml().select("div:has(@) ~ div") but
this is not directly allow DOM traversal itself. However, Jsoup conveniently provides DOM traversal for finding a https://jsoup.org/apidocs/o
-
Updated
Nov 9, 2020 - Python
-
Updated
Aug 3, 2021 - JavaScript
-
Updated
Sep 21, 2021 - Scala
-
Updated
May 30, 2020
-
Updated
Aug 7, 2021
-
Updated
Sep 1, 2021 - Python
-
Updated
Sep 29, 2021 - JavaScript
-
Updated
Sep 3, 2021 - JavaScript
Java and Python provide logging frameworks for recording errors and stack traces. Logging can be configured to format those messages, such as by removing newlines from stack traces, adding timestamps, and putting a log level (INFO, WARN, ERROR) on the message. In the future, it may also include json structured logging. Using the logging framew
-
Updated
Sep 29, 2021 - Python
-
Updated
Sep 20, 2021
-
Updated
Sep 29, 2021 - TypeScript
-
Updated
Sep 29, 2021 - JavaScript
-
Updated
Sep 29, 2021 - Python
-
Updated
Sep 28, 2021 - Python
-
Updated
Aug 11, 2021 - JavaScript
-
Updated
Mar 1, 2021 - Rust
-
Updated
Jun 14, 2021 - JavaScript
The problem
The current implementation of processElement
- Check if cache existence for
input
- If the cache returns value return it
- otherwise, aquire a semaphore
- call
asyncLookup
and pass itinput
. It return a future:F
- Maintain a list of the currently executing futures
- release a semaphore at the end each future execution
- make sure all the future are com
Improve this page
Add a description, image, and links to the data topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the data topic, visit your repo's landing page and select "manage topics."
I believe there is a bug here:
https://github.com/SheetJS/sheetjs/blob/333deae63fbe13d1ff2db42e599211a062001c32/bits/87_read.js#L69
If the input data was an
ArrayBuffer
but opts would not have atype
set we would essentially convert theArrayBuffer
toUint8Array
and callreadSync
again but without setting appropriateopts.type
. This then leads to few lines below https://github.com/Sh