Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| Traceback (most recent call last): | |
| File "/tmp/ipykernel_223/219424108.py", line 111, in process_all_document_embeddings_parallel | |
| results = await asyncio.gather(*tasks) | |
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
| File "/tmp/ipykernel_223/219424108.py", line 39, in process_document_batch | |
| await update_document_embeddings(conn, updates) | |
| File "/tmp/ipykernel_223/2652621049.py", line 114, in update_document_embeddings | |
| await conn.executemany(query, formatted_updates) | |
| File "/usr/local/lib/python3.12/dist-packages/asyncpg/connection.py", line 390, in executemany | |
| return await self._executemany(command, args, timeout) |
| // Bind <C-c> to exit insert mode | |
| require([ | |
| 'nbextensions/vim_binding/vim_binding', | |
| ], function(nb) { | |
| CodeMirror.Vim.map("<C-c>", "<Esc>", "insert"); | |
| nb.attach = (function() { | |
| var cached_function = nb.attach; | |
| return function(){ | |
| var result = cached_function.apply(this, arguments); | |
| var cm_config = require("notebook/js/cell").Cell.options_default.cm_config; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| beforeEach(function() { | |
| this.addMatchers({ | |
| toBeInstanceOf : function( expected ) { | |
| return this.actual instanceof expected && this.actual.length > 0; | |
| }, | |
| toBeA: function( expected ) { | |
| return typeof this.actual === expected; | |
| } | |
| }); |