data
Here are 9,011 public repositories matching this topic...
-
Updated
Sep 16, 2021 - Clojure
-
Updated
Sep 7, 2021 - Jupyter Notebook
-
Updated
Aug 25, 2021
The "Import schema" dialog from the Wikibase extension has two issues:
- the Cancel button does not have a proper label
- importing the schema should close the dialog (currently one has to click the Cancel button afterwards, which is counter-intuitive since we do not want to cancel the import)
To Reproduce
Steps to reproduce the behavior:
- First, open the dialog
- See the improper l
-
Updated
Nov 9, 2020 - Python
-
Updated
Aug 3, 2021 - JavaScript
-
Updated
Sep 3, 2021 - Scala
-
Updated
May 30, 2020
-
Updated
Aug 7, 2021
-
Updated
Sep 1, 2021 - Python
-
Updated
Sep 16, 2021 - JavaScript
-
Updated
Sep 3, 2021 - JavaScript
-
Updated
Sep 16, 2021 - Python
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
Feb 28, 2021
-
Updated
Sep 13, 2021 - TypeScript
-
Updated
Sep 16, 2021 - JavaScript
-
Updated
Sep 16, 2021 - Python
-
Updated
Sep 16, 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
asyncLookupand 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
ArrayBufferbut opts would not have atypeset we would essentially convert theArrayBuffertoUint8Arrayand callreadSyncagain but without setting appropriateopts.type. This then leads to few lines below https://github.com/Sh