text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
Steps to reproduce: 1. right click on project folder in tree view, open or closed **Atom Version** : 0.211.0 **System** : Microsoft Windows 8.1 Pro **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Modul...
I right-clicked on a folder in the tree view **Atom Version** : 0.194.0 **System** : Windows 7 Entreprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Fu...
1
**Update from bpasero:** The main issue is that our glob patterns are folder based (e.g. exclude `**/node_modules`) and not file based (e.g. exclude `**/node_modules/**`). When we apply the patterns to in-memory editors and editor history we always pass in the full path of the resource and that makes the glob matc...
feature request: since the build system is kinda useless when build steps require multiple commands, being able to send commands to the integrated terminal from script. my personal reason for this is that for skyrim modding, its a multiple step build system which requires the editor being wrapped by MO so that the a...
0
#### Problems with : * Create a JavaScript Slot Machine * Bring your JavaScript Slot Machine to Life * Give your JavaScript Slot Machine some Stylish Images #### Issue Description Despite entering the code correctly and as illustrated, the following tests never get resolved: (In Create a JavaScript Slot Mac...
Challenge create-a-javascript-slot-machine has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.101 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. slotOne=Math.fl...
1
As an user, when completing challenges in a non-english language and running into a challenge that does not have an active translation, I want a notification explaining that translation is being worked on, and the current one is missing. And invitation to contribute with it, perhaps? Said notification should link to...
cc/ @QuincyLarson
1
#### Challenge Name All of them. #### Issue Description Whenever I start a new challenge and try to place my curser in the code to start editing it, my curser won't go to or move to where I need it to go. I can place my curser somewhere near where I need it and try to arrow over to where I need it to go, but it ge...
#### Challenge Name https://www.freecodecamp.com/challenges/style-text-inputs-as-form-controls But its the same with all other challenges. #### Issue Description Happens when using Chrome in macOS fullscreen and while hiding the toolbars (2nd in "Views" tab). Then it often happens that when I try to click on c...
0
### Reproducing code example: In [1]: import numpy as np In [2]: import sys In [3]: sys.version Out[3]: '3.7.3 (default, Mar 27 2019, 17:13:21) [MSC v.1915 64 bit (AMD64)]' In [4]: np.__version__ Out[4]: '1.16.4' In [5]: np.sum(np.arange(10**5)) Out[5]: 7...
Simple demo: In [1]: np.uint8(0) - np.uint8(1) RuntimeWarning: overflow encountered in ubyte_scalars Out[1]: 255 In [2]: np.uint8(0)[...] - np.uint8(1)[...] Out[2]: 255 Should we even warn at all for unsigned integers?
1
It'd be nice if `displaysize(tty)` after `close(tty)` can throw an exception rather than segfault. MWE: julia> tty = Base.TTY(fd(Base.Filesystem.open("/proc/self/fd/1", Base.Filesystem.JL_O_WRONLY))) Base.TTY(RawFD(0x00000016) open, 0 bytes waiting) julia> displaysize(tty) (43, 114) ...
When redefining a variable containing an anonymous function with an anonymous function containing the variable itself, that reference is not expanded properly before the new assignment. Therefore, the new function (now bound to the variable) contains a reference to itself and not the old function. I do think this is...
0
I have the following ES6 class class MyClass { constructor(){ this.myclassvar = 'abc'; } } When compiled/transpiled through TypeScript it generates error TS2339: Property 'myclassvar' does not exist on type 'MyClass'. If the above code snippet is valid ES6 then TypeScr...
Currently `import myClass from './myClass.ts';` transpile to `var myClass_ts_1 = require('./myClass.ts')'`. Since `myClass.ts` is transpile to `myClass.js`, the transpiled code does not work. I try to stick to pure ES6 as much as possible so I want to avoid using internal module syntax. Thanks!
0
It appears that `GC_Diff.allocd` can sometimes be negative after `GC_Diff()` is called. This causes a `DomainError` when `prettyprint_getunits()` (called from `time_print()`) tries to take the log of this negative value.
I believe the following was caused by a call to `@time`, but I haven't been able to narrow it down: ERROR: LoadError: DomainError: log will only return a complex result if called with a complex argument. Try log(complex(x)). in nan_dom_err(::Float64, ::Float64) at ./math.jl:134 in log(::F...
1
Clicking "Restart and Update" from the release notes page or the Atom menu causes Atom to close and fail to restart. Moreover, upon restarting manually, Atom is not updated. I have tried clearing the ~/.atom/storage directory, as suggested here but it doesn't solve the problem here. Platform: OSX 10.10.3, Atom 0.20...
Using the Restart and Update button on the release notes view doesn't properly restart and update. Atom closes, but it never restarts. When launched again, it hasn't updated. Restart and update from the Atom Menu works fine. 2010 iMac, OSX 10.10.2
1
##### System information (version) * OpenCV => 4.0 * Operating System / Platform => ARM 64 * Compiler => GCC ##### Detailed description I passed the input image with lena.jpg, got the following error. error: (-215:Assertion failed) !fixedSize() || ((Mat*)obj)->size.operator()() == _sz in function 'create' ...
Inside the function, outer quads might be added through function icvAddOuterQuad. However, icvAddOuterQuad doesn't check the bound of the allocated quads buffer when adding a new quad. The same bug has existed as early as opencv 2.4, as well as in 3.0. I verified this bug with the following code on Windows 7 64bit: ...
0
**Thomas Timbul** opened **SPR-5199** and commented For the sake of clarity/modularisation in my XML I am trying to separate out certain service definitions into separate files. It would be nice to see the re-emergence of 'merge' on the util: collection definitions in a way that definitions with the same ID are mer...
**Balázs Szabó** opened **SPR-884** and commented When a proxy is created with the lookup-method injection, and dependency checking is switched on, then it complains for a previously non-existing property called 'callbacks'. I figured out that it is because cglib proxies automatically implements the Factory interf...
0
Following the example given in the documentation I am using `rv_continuous` to generate a custom pdf. The following code snippet works as expected in scipy v0.18.1 but exhibits a very large (~GB) memory consumption when run with scipy v0.19.0 from scipy.stats import rv_continuous import numpy as np...
After updating Scipy to 0.19.0 I have experienced an increase in memory consumption which seems to be related to integrate.quad. The following code calculates some quadratures and checks the available RAM before and after: import numpy as np from scipy.integrate import quad import psutil im...
1
\--- FAIL: TestAddTwoFireEarly (10.15s) delaying_queue_test.go:92: unexpected err: timed out waiting for the condition https://storage.googleapis.com/kubernetes-jenkins/pr- logs/pull/24164/kubernetes-pull-test-unit-integration/22236/build-log.txt
ERROR: type should be string, got "\n\nhttps://console.cloud.google.com/storage/browser/kubernetes-jenkins/pr-\nlogs/pull/26631/kubernetes-pull-test-unit-integration/28744/\n\nFAIL \nFAIL k8s.io/kubernetes/pkg/util/workqueue 10.275s\n\nI believe it's this test:\n\n \n \n queue_test.go:60: Worker 0: begin processing 8\n queue_test.go:60: Worker 1: begin processing 0\n queue_test.go:60: Worker 2: begin processing 1\n queue_test.go:60: Worker 3: begin processing 2\n queue_test.go:60: Worker 4: begin processing 3\n queue_test.go:60: Worker 5: begin processing 5\n queue_test.go:62: Worker 0: done processing 8\n queue_test.go:62: Worker 2: done processing 1\n queue_test.go:60: Worker 6: begin processing 4\n queue_test.go:62: Worker 5: done processing 5\n queue_test.go:62: Worker 6: done processing 4\n queue_test.go:62: Worker 4: done processing 3\n queue_test.go:62: Worker 1: done processing 0\n queue_test.go:62: Worker 3: done processing 2\n queue_test.go:60: Worker 0: begin processing 7\n queue_test.go:60: Worker 7: begin processing 12\n queue_test.go:60: Worker 8: begin processing 9\n queue_test.go:60: Worker 2: begin processing 6\n queue_test.go:60: Worker 4: begin processing 10\n queue_test.go:60: Worker 1: begin processing 14\n queue_test.go:60: Worker 9: begin processing 11\n queue_test.go:60: Worker 5: begin processing 15\n queue_test.go:60: Worker 3: begin processing 13\n queue_test.go:62: Worker 0: done processing 7\n queue_test.go:62: Worker 7: done processing 12\n queue_test.go:62: Worker 2: done processing 6\n queue_test.go:62: Worker 4: done processing 10\n queue_test.go:60: Worker 0: begin processing 16\n queue_test.go:60: Worker 4: begin processing 17\n queue_test.go:62: Worker 9: done processing 11\n queue_test.go:62: Worker 3: done processing 13\n queue_test.go:62: Worker 1: done processing 14\n queue_test.go:62: Worker 5: done processing 15\n queue_test.go:62: Worker 8: done processing 9\n queue_test.go:60: Worker 7: begin processing 18\n queue_test.go:60: Worker 2: begin processing 19\n queue_test.go:60: Worker 1: begin processing 20\n queue_test.go:60: Worker 5: begin processing 21\n queue_test.go:60: Worker 8: begin processing 22\n queue_test.go:60: Worker 9: begin processing 23\n queue_test.go:60: Worker 3: begin processing 24\n queue_test.go:62: Worker 0: done processing 16\n queue_test.go:62: Worker 4: done processing 17\n queue_test.go:60: Worker 0: begin processing 25\n queue_test.go:60: Worker 4: begin processing 26\n queue_test.go:62: Worker 7: done processing 18\n queue_test.go:62: Worker 5: done processing 21\n queue_test.go:62: Worker 8: done processing 22\n queue_test.go:60: Worker 7: begin processing 27\n queue_test.go:60: Worker 8: begin processing 29\n queue_test.go:60: Worker 5: begin processing 28\n queue_test.go:62: Worker 9: done processing 23\n queue_test.go:62: Worker 1: done processing 20\n queue_test.go:60: Worker 1: begin processing 31\n queue_test.go:60: Worker 9: begin processing 30\n queue_test.go:62: Worker 3: done processing 24\n queue_test.go:60: Worker 3: begin processing 32\n queue_test.go:62: Worker 2: done processing 19\n queue_test.go:60: Worker 2: begin processing 33\n queue_test.go:62: Worker 0: done processing 25\n queue_test.go:62: Worker 4: done processing 26\n queue_test.go:60: Worker 4: begin processing 35\n queue_test.go:60: Worker 0: begin processing 34\n queue_test.go:62: Worker 7: done processing 27\n queue_test.go:62: Worker 5: done processing 28\n queue_test.go:62: Worker 8: done processing 29\n queue_test.go:62: Worker 9: done processing 30\n queue_test.go:60: Worker 9: begin processing 36\n queue_test.go:62: Worker 3: done processing 32\n queue_test.go:62: Worker 1: done processing 31\n queue_test.go:62: Worker 2: done processing 33\n queue_test.go:60: Worker 7: begin processing 37\n queue_test.go:60: Worker 6: begin processing 38\n queue_test.go:60: Worker 5: begin processing 39\n queue_test.go:60: Worker 8: begin processing 40\n queue_test.go:60: Worker 3: begin processing 41\n queue_test.go:60: Worker 1: begin processing 42\n queue_test.go:62: Worker 4: done processing 35\n queue_test.go:60: Worker 2: begin processing 43\n queue_test.go:60: Worker 4: begin processing 44\n queue_test.go:62: Worker 0: done processing 34\n queue_test.go:60: Worker 0: begin processing 45\n queue_test.go:62: Worker 9: done processing 36\n queue_test.go:60: Worker 9: begin processing 47\n queue_test.go:62: Worker 6: done processing 38\n queue_test.go:62: Worker 7: done processing 37\n queue_test.go:62: Worker 8: done processing 40\n queue_test.go:62: Worker 5: done processing 39\n queue_test.go:60: Worker 8: begin processing 48\n queue_test.go:62: Worker 3: done processing 41\n queue_test.go:60: Worker 7: begin processing 46\n queue_test.go:62: Worker 1: done processing 42\n queue_test.go:62: Worker 4: done processing 44\n queue_test.go:62: Worker 2: done processing 43\n queue_test.go:60: Worker 6: begin processing 49\n queue_test.go:62: Worker 0: done processing 45\n queue_test.go:60: Worker 0: begin processing 1\n queue_test.go:60: Worker 2: begin processing 8\n queue_test.go:60: Worker 3: begin processing 3\n queue_test.go:60: Worker 1: begin processing 0\n queue_test.go:60: Worker 4: begin processing 5\n queue_test.go:60: Worker 5: begin processing 2\n queue_test.go:62: Worker 9: done processing 47\n queue_test.go:60: Worker 9: begin processing 7\n queue_test.go:62: Worker 8: done processing 48\n queue_test.go:60: Worker 8: begin processing 12\n queue_test.go:62: Worker 7: done processing 46\n queue_test.go:60: Worker 7: begin processing 10\n queue_test.go:62: Worker 6: done processing 49\n queue_test.go:60: Worker 6: begin processing 11\n queue_test.go:62: Worker 2: done processing 8\n queue_test.go:62: Worker 0: done processing 1\n queue_test.go:60: Worker 0: begin processing 6\n queue_test.go:60: Worker 2: begin processing 14\n queue_test.go:62: Worker 3: done processing 3\n queue_test.go:62: Worker 4: done processing 5\n queue_test.go:60: Worker 3: begin processing 15\n queue_test.go:60: Worker 4: begin processing 9\n queue_test.go:62: Worker 1: done processing 0\n queue_test.go:62: Worker 5: done processing 2\n queue_test.go:60: Worker 1: begin processing 13\n queue_test.go:60: Worker 5: begin processing 16\n queue_test.go:62: Worker 9: done processing 7\n queue_test.go:62: Worker 8: done processing 12\n queue_test.go:60: Worker 9: begin processing 17\n queue_test.go:60: Worker 8: begin processing 18\n queue_test.go:62: Worker 7: done processing 10\n queue_test.go:60: Worker 7: begin processing 22\n queue_test.go:62: Worker 6: done processing 11\n queue_test.go:60: Worker 6: begin processing 21\n queue_test.go:62: Worker 0: done processing 6\n queue_test.go:60: Worker 0: begin processing 23\n queue_test.go:62: Worker 2: done processing 14\n queue_test.go:60: Worker 2: begin processing 20\n queue_test.go:62: Worker 4: done processing 9\n queue_test.go:62: Worker 3: done processing 15\n queue_test.go:60: Worker 3: begin processing 24\n queue_test.go:62: Worker 1: done processing 13\n queue_test.go:62: Worker 5: done processing 16\n queue_test.go:60: Worker 4: begin processing 19\n queue_test.go:60: Worker 1: begin processing 25\n queue_test.go:60: Worker 5: begin processing 26\n queue_test.go:62: Worker 9: done processing 17\n queue_test.go:60: Worker 9: begin processing 4\n queue_test.go:62: Worker 7: done processing 22\n queue_test.go:62: Worker 6: done processing 21\n queue_test.go:60: Worker 6: begin processing 30\n queue_test.go:62: Worker 8: done processing 18\n queue_test.go:62: Worker 0: done processing 23\n queue_test.go:60: Worker 8: begin processing 28\n queue_test.go:60: Worker 0: begin processing 29\n queue_test.go:60: Worker 7: begin processing 27\n queue_test.go:62: Worker 2: done processing 20\n queue_test.go:60: Worker 2: begin processing 32\n queue_test.go:62: Worker 3: done processing 24\n queue_test.go:60: Worker 3: begin processing 31\n queue_test.go:62: Worker 4: done processing 19\n queue_test.go:62: Worker 5: done processing 26\n queue_test.go:60: Worker 4: begin processing 33\n queue_test.go:62: Worker 1: done processing 25\n queue_test.go:60: Worker 5: begin processing 35\n queue_test.go:60: Worker 1: begin processing 34\n queue_test.go:62: Worker 9: done processing 4\n queue_test.go:60: Worker 9: begin processing 36\n queue_test.go:62: Worker 6: done processing 30\n queue_test.go:60: Worker 6: begin processing 38\n queue_test.go:62: Worker 8: done processing 28\n queue_test.go:60: Worker 8: begin processing 37\n queue_test.go:62: Worker 0: done processing 29\n queue_test.go:62: Worker 7: done processing 27\n queue_test.go:62: Worker 2: done processing 32\n queue_test.go:62: Worker 3: done processing 31\n queue_test.go:60: Worker 2: begin processing 42\n queue_test.go:60: Worker 0: begin processing 40\n queue_test.go:62: Worker 4: done processing 33\n queue_test.go:60: Worker 3: begin processing 43\n queue_test.go:62: Worker 5: done processing 35\n queue_test.go:60: Worker 7: begin processing 41\n queue_test.go:62: Worker 1: done processing 34\n queue_test.go:62: Worker 6: done processing 38\n queue_test.go:62: Worker 8: done processing 37\n queue_test.go:62: Worker 7: done processing 41\n queue_test.go:62: Worker 3: done processing 43\n queue_test.go:62: Worker 2: done processing 42\n queue_test.go:62: Worker 9: done processing 36\n queue_test.go:62: Worker 0: done processing 40\n queue_test.go:60: Worker 4: begin processing 45\n queue_test.go:60: Worker 5: begin processing 39\n queue_test.go:60: Worker 1: begin processing 44\n queue_test.go:60: Worker 6: begin processing 47\n queue_test.go:60: Worker 8: begin processing 48\n queue_test.go:60: Worker 9: begin processing 46\n queue_test.go:60: Worker 7: begin processing 49\n queue_test.go:60: Worker 3: begin processing 1\n queue_test.go:60: Worker 0: begin processing 8\n queue_test.go:60: Worker 2: begin processing 3\n queue_test.go:62: Worker 4: done processing 45\n queue_test.go:60: Worker 4: begin processing 5\n queue_test.go:62: Worker 1: done processing 44\n queue_test.go:60: Worker 1: begin processing 0\n queue_test.go:62: Worker 5: done processing 39\n queue_test.go:60: Worker 5: begin processing 2\n queue_test.go:62: Worker 9: done processing 46\n queue_test.go:60: Worker 9: begin processing 7\n queue_test.go:62: Worker 6: done processing 47\n queue_test.go:60: Worker 6: begin processing 12\n queue_test.go:62: Worker 8: done processing 48\n queue_test.go:60: Worker 8: begin processing 10\n queue_test.go:62: Worker 7: done processing 49\n queue_test.go:60: Worker 7: begin processing 11\n queue_test.go:62: Worker 3: done processing 1\n queue_test.go:60: Worker 3: begin processing 6\n queue_test.go:62: Worker 0: done processing 8\n queue_test.go:60: Worker 0: begin processing 14\n queue_test.go:62: Worker 2: done processing 3\n queue_test.go:60: Worker 2: begin processing 15\n queue_test.go:62: Worker 4: done processing 5\n queue_test.go:60: Worker 4: begin processing 9\n queue_test.go:62: Worker 1: done processing 0\n queue_test.go:60: Worker 1: begin processing 13\n queue_test.go:62: Worker 9: done processing 7\n queue_test.go:60: Worker 9: begin processing 16\n queue_test.go:62: Worker 5: done processing 2\n queue_test.go:60: Worker 5: begin processing 17\n queue_test.go:62: Worker 6: done processing 12\n queue_test.go:60: Worker 6: begin processing 21\n queue_test.go:62: Worker 8: done processing 10\n queue_test.go:60: Worker 8: begin processing 22\n queue_test.go:62: Worker 2: done processing 15\n queue_test.go:60: Worker 2: begin processing 18\n queue_test.go:62: Worker 7: done processing 11\n queue_test.go:60: Worker 7: begin processing 23\n queue_test.go:62: Worker 3: done processing 6\n queue_test.go:60: Worker 3: begin processing 20\n queue_test.go:62: Worker 0: done processing 14\n queue_test.go:60: Worker 0: begin processing 24\n queue_test.go:62: Worker 4: done processing 9\n queue_test.go:60: Worker 4: begin processing 19\n queue_test.go:62: Worker 1: done processing 13\n queue_test.go:60: Worker 1: begin processing 26\n queue_test.go:62: Worker 9: done processing 16\n queue_test.go:60: Worker 9: begin processing 25\n queue_test.go:62: Worker 5: done processing 17\n queue_test.go:60: Worker 5: begin processing 4\n queue_test.go:62: Worker 6: done processing 21\n queue_test.go:60: Worker 6: begin processing 30\n queue_test.go:62: Worker 8: done processing 22\n queue_test.go:60: Worker 8: begin processing 28\n queue_test.go:62: Worker 2: done processing 18\n queue_test.go:62: Worker 7: done processing 23\n queue_test.go:60: Worker 2: begin processing 29\n queue_test.go:62: Worker 3: done processing 20\n queue_test.go:60: Worker 3: begin processing 27\n queue_test.go:60: Worker 7: begin processing 32\n queue_test.go:62: Worker 0: done processing 24\n queue_test.go:60: Worker 0: begin processing 31\n queue_test.go:62: Worker 4: done processing 19\n queue_test.go:60: Worker 4: begin processing 33\n queue_test.go:62: Worker 1: done processing 26\n queue_test.go:62: Worker 9: done processing 25\n queue_test.go:60: Worker 9: begin processing 34\n queue_test.go:60: Worker 1: begin processing 35\n queue_test.go:62: Worker 5: done processing 4\n queue_test.go:60: Worker 5: begin processing 38\n queue_test.go:62: Worker 6: done processing 30\n queue_test.go:62: Worker 8: done processing 28\n queue_test.go:60: Worker 8: begin processing 37\n queue_test.go:60: Worker 6: begin processing 36\n queue_test.go:62: Worker 2: done processing 29\n queue_test.go:60: Worker 2: begin processing 41\n queue_test.go:62: Worker 7: done processing 32\n queue_test.go:62: Worker 3: done processing 27\n queue_test.go:60: Worker 7: begin processing 43\n queue_test.go:60: Worker 3: begin processing 40\n queue_test.go:62: Worker 0: done processing 31\n queue_test.go:60: Worker 0: begin processing 42\n queue_test.go:62: Worker 4: done processing 33\n queue_test.go:60: Worker 4: begin processing 45\n queue_test.go:62: Worker 1: done processing 35\n queue_test.go:60: Worker 1: begin processing 44\n queue_test.go:62: Worker 9: done processing 34\n queue_test.go:60: Worker 9: begin processing 39\n queue_test.go:62: Worker 5: done processing 38\n queue_test.go:60: Worker 5: begin processing 46\n queue_test.go:62: Worker 8: done processing 37\n queue_test.go:60: Worker 8: begin processing 47\n queue_test.go:62: Worker 6: done processing 36\n queue_test.go:60: Worker 6: begin processing 48\n queue_test.go:62: Worker 2: done processing 41\n queue_test.go:62: Worker 3: done processing 40\n queue_test.go:62: Worker 7: done processing 43\n queue_test.go:62: Worker 0: done processing 42\n queue_test.go:60: Worker 2: begin processing 49\n queue_test.go:60: Worker 3: begin processing 1\n queue_test.go:60: Worker 7: begin processing 8\n queue_test.go:60: Worker 0: begin processing 3\n queue_test.go:62: Worker 4: done processing 45\n queue_test.go:60: Worker 4: begin processing 5\n queue_test.go:62: Worker 1: done processing 44\n queue_test.go:60: Worker 1: begin processing 0\n queue_test.go:62: Worker 9: done processing 39\n queue_test.go:60: Worker 9: begin processing 7\n queue_test.go:62: Worker 5: done processing 46\n queue_test.go:60: Worker 5: begin processing 2\n queue_test.go:62: Worker 8: done processing 47\n queue_test.go:60: Worker 8: begin processing 12\n queue_test.go:62: Worker 6: done processing 48\n queue_test.go:60: Worker 6: begin processing 10\n queue_test.go:62: Worker 2: done processing 49\n queue_test.go:60: Worker 2: begin processing 15\n queue_test.go:62: Worker 3: done processing 1\n queue_test.go:60: Worker 3: begin processing 11\n queue_test.go:62: Worker 7: done processing 8\n queue_test.go:60: Worker 7: begin processing 6\n queue_test.go:62: Worker 0: done processing 3\n queue_test.go:60: Worker 0: begin processing 14\n queue_test.go:62: Worker 4: done processing 5\n queue_test.go:60: Worker 4: begin processing 9\n queue_test.go:62: Worker 1: done processing 0\n queue_test.go:60: Worker 1: begin processing 13\n queue_test.go:62: Worker 9: done processing 7\n queue_test.go:60: Worker 9: begin processing 16\n queue_test.go:62: Worker 5: done processing 2\n queue_test.go:60: Worker 5: begin processing 17\n queue_test.go:62: Worker 8: done processing 12\n queue_test.go:60: Worker 8: begin processing 21\n queue_test.go:62: Worker 6: done processing 10\n queue_test.go:60: Worker 6: begin processing 22\n queue_test.go:62: Worker 2: done processing 15\n queue_test.go:60: Worker 2: begin processing 18\n queue_test.go:62: Worker 3: done processing 11\n queue_test.go:60: Worker 3: begin processing 20\n queue_test.go:62: Worker 7: done processing 6\n queue_test.go:60: Worker 7: begin processing 23\n queue_test.go:62: Worker 0: done processing 14\n queue_test.go:60: Worker 0: begin processing 24\n queue_test.go:62: Worker 4: done processing 9\n queue_test.go:60: Worker 4: begin processing 19\n queue_test.go:62: Worker 1: done processing 13\n queue_test.go:60: Worker 1: begin processing 26\n queue_test.go:62: Worker 9: done processing 16\n queue_test.go:60: Worker 9: begin processing 25\n queue_test.go:62: Worker 5: done processing 17\n queue_test.go:60: Worker 5: begin processing 4\n queue_test.go:62: Worker 8: done processing 21\n queue_test.go:60: Worker 8: begin processing 28\n queue_test.go:62: Worker 6: done processing 22\n queue_test.go:60: Worker 6: begin processing 30\n queue_test.go:62: Worker 2: done processing 18\n queue_test.go:60: Worker 2: begin processing 29\n queue_test.go:62: Worker 3: done processing 20\n queue_test.go:60: Worker 3: begin processing 32\n queue_test.go:62: Worker 7: done processing 23\n queue_test.go:60: Worker 7: begin processing 27\n queue_test.go:62: Worker 0: done processing 24\n queue_test.go:60: Worker 0: begin processing 31\n queue_test.go:62: Worker 4: done processing 19\n queue_test.go:60: Worker 4: begin processing 33\n queue_test.go:62: Worker 1: done processing 26\n queue_test.go:60: Worker 1: begin processing 35\n queue_test.go:62: Worker 9: done processing 25\n queue_test.go:60: Worker 9: begin processing 34\n queue_test.go:62: Worker 5: done processing 4\n queue_test.go:60: Worker 5: begin processing 38\n queue_test.go:62: Worker 8: done processing 28\n queue_test.go:60: Worker 8: begin processing 37\n queue_test.go:62: Worker 6: done processing 30\n queue_test.go:60: Worker 6: begin processing 36\n queue_test.go:62: Worker 2: done processing 29\n queue_test.go:60: Worker 2: begin processing 41\n queue_test.go:62: Worker 3: done processing 32\n queue_test.go:60: Worker 3: begin processing 40\n queue_test.go:62: Worker 7: done processing 27\n queue_test.go:60: Worker 7: begin processing 43\n queue_test.go:62: Worker 0: done processing 31\n queue_test.go:60: Worker 0: begin processing 42\n queue_test.go:62: Worker 4: done processing 33\n queue_test.go:60: Worker 4: begin processing 45\n queue_test.go:62: Worker 1: done processing 35\n queue_test.go:60: Worker 1: begin processing 44\n queue_test.go:62: Worker 9: done processing 34\n queue_test.go:60: Worker 9: begin processing 39\n queue_test.go:62: Worker 5: done processing 38\n queue_test.go:60: Worker 5: begin processing 46\n queue_test.go:62: Worker 8: done processing 37\n queue_test.go:60: Worker 8: begin processing 47\n queue_test.go:62: Worker 6: done processing 36\n queue_test.go:60: Worker 6: begin processing 48\n queue_test.go:62: Worker 2: done processing 41\n queue_test.go:60: Worker 2: begin processing 49\n queue_test.go:62: Worker 3: done processing 40\n queue_test.go:62: Worker 7: done processing 43\n queue_test.go:62: Worker 0: done processing 42\n queue_test.go:62: Worker 4: done processing 45\n queue_test.go:62: Worker 1: done processing 44\n queue_test.go:62: Worker 9: done processing 39\n queue_test.go:62: Worker 5: done processing 46\n queue_test.go:62: Worker 8: done processing 47\n queue_test.go:62: Worker 6: done processing 48\n queue_test.go:62: Worker 2: done processing 49\n \n\ncc @lavalamp @deads2k @liggitt @wojtek-t\n\n"
1
#### Challenge Name http://beta.freecodecamp.com/en/map #### Issue Description I have noticed that each time I move onto a new challenge the old code still displays on the iPhone screen even thought the code in the text editor is completely new. For instance, if my previous challenge displays a blue box on the iPh...
Challenge Warn your Users of a Dangerous Action has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.86 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: ...
0
When hitting various breakpoints in a complicated program, it might be helpful for the stack frame area of the debug viewlet to highlight / animate in a tasteful fashion the stack frame delta. e.g. Before stack fileA:35 fileB:40 fileC:50 -> steps into or continues After stack fileA:29 fileA:35 fileB:4...
In the `tasks.json` configuration file, you can specify a task to be defined as a watch task by stating `isWatching: true`. I don't believe I see any benefit to explicitly stating that a task is a watch task. What I believe would be useful is if the watch task defined in `tasks.json` is actually started automaticall...
0
I'm since one year in programming, but never seen an issue this, no matter how many times I updated angular cli, uninstalled node, but the issue is still there, the only difference it make that the error or issue change it's names. I'm trying to run ng new to create a project since 2, 3 days it continuously reportin...
### *Updated* as of 01/15/2021 **Note: Please readthis doc before filing a new issue.**
1
xref #8596 >>> df a 0 1 >>> df.dtypes a int64 dtype: object >>> df.loc[1, 'a'] = 2 >>> df a 0 1 1 2 >>> df.dtypes a float64 dtype: object in an intermediate step `nan` is inserted, and the data are casted to floats
http://stackoverflow.com/questions/22044766/adding-row-to-pandas-dataframe- changes-dtype/22045011#22045011 A bit non-trival (maybe coerce back after) if possible? maybe just change this to an actual append? In [1]: df = DataFrame({'a' : range(10)}, dtype='i4') In [2]: df Out[2]: ...
1
#### Description I thinks default value of n_clusters is not always 2, as passing the same data points will be clustered as two different clusters which is not possible practically: #### Steps/Code to Reproduce Example: > > > X = np.array([[1,2],[1,2]]) > clustering = AgglomerativeClustering(linkage='single')....
### Describe the issue linked to the documentation There are two `and` in the description of `sklearn.metrics.log_loss` function, lines For a single sample with true label :math:`y \in \{0,1\}` and and a probability estimate :math:`p = \operatorname{Pr}(y = 1)`, the log ### Suggest a...
0
I'm developing an app and want to dynamically load content into my application. I am using flux, so there is a fairly defined pipeline for getting and managing data. What I want is to do something like this: <MyRootComponent ...> <LoadSomethingInteresting ...> <ComponentThatUsesLoadedDat...
* * * ## Note from maintainers: We know this is an issue and we know exactly what set of problem can be solved. We want this too but it is a _hard problem_ with our current architecture. Additional comments expressing desire for this feature are not helpful. Feel free to subscribe to the issue (there's button in th...
1
> Font rendering looks non-native. In particular, on non-retina displays with > subpixel font rendering enabled, it looks like your fonts are using a > different rendering engine (Freetype?) and at least are not using subpixel > antialiasing. It looks janky. I suppose you don't notice on a retina > display? From: su...
I install many versions, when I try the version more than 0.187.0 ,it can't display chinese normal. I have read former Issues, many people say I can't try to change the font-family , but it doesn't work.
0
I want to go through Tensorflow's CUDA kernels and optimize them. It seems like all the CUDA kernels are defined in `tensorflow/core/kernels` and `tensorflow/contrib` with some helper functions in `tensorflow/core/util`. 1. Is it okay for me to optimize kernels in tensorflow/core/kernels and send pull request? ...
I want to go through Tensorflow's CUDA kernels and optimize them. It seems like all the CUDA kernels are defined in `tensorflow/core/kernels` and `tensorflow/contrib` with some helper functions in `tensorflow/core/util`. 1. Is it okay for me to optimize kernels in `tensorflow/core/kernels` and send pull request? ...
1
I may be totally off on this, but I wanted to point it out... I noticed that on the "Customize" page, you can set the @screen-sm-min, @screen-md-min, @screen-lg-min variables, as well as the @container-sm, @container-md and @container-lg variables. But after compiling it, I still seem to be getting the default break...
When customizing bootstrap (e.g. http://getbootstrap.com/customize/?id=7880081) and setting @screen-md-min = 1280px @screen-lg-min = 1900px @container-md = ((1220px + @grid-gutter-width)) @container-lg = ((1860px + @grid-gutter-width)) it will generate the default @screen-md-min 992px instead of 1280px boots...
1
**System information**. * Have I written custom code (as opposed to using a stock example script provided in Keras): No * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Win10 * TensorFlow installed from (source or binary): Anaconda * TensorFlow version (use command below): 2.9.1 * Python version...
**System information**. * Have I written custom code (as opposed to using a stock example script provided in Keras: no * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 20.04 * TensorFlow installed from (source or binary): binary * TensorFlow version (use command below): v2.4.0-rc4-71-g582c8...
0
ref #16560 #15730 Here is the road-map: Writing Client-gen: * Generate the common methods, ignore the methods operating on subresources for now * Unify the signature of the common methods in our individual typed clients * Make a test type, then write the test against this type instead of every type * manu...
Background: Client proposal in #15730, api type structure proposal in #16062 At first I was thinking we'd generate based on tags in the comments, e.g. something like: // Pod documentation here // +generate=Create,Update,List,Get,Delete type Pod struct { ... } And the result would be...
1
I'm running into huge build time issues with webpack. We're using a combination of TypeScript, CoffeeScript, and SCSS. I've tried poking around with disabling source maps and other stuff but it seems like the core issue is that the compilers for these languages are just slow. If I understand correctly, all of these l...
The current watch mode for webpack is fairly good at caching load results and general workload between file changes as long as you keep the same webpack process running. The initial build for some projects, on the other hand, can be on the order of more than a minute. This can make the build process very slow if for ...
1
A example. In my computer output. 4.814477205276489 0.03499555587768555 code import torch import numpy as np import time a = [np.random.random([512, 512, 3]).astype(np.float32) for i in range(10)] t1 = time.time() b = torch.tensor(a, dtype=torch.f...
I just started learning PyTorch, but it is puzzling that neither Pycharm nor VS Code can automatically complete the code for some functions, such as torch.empty(), torch.zeros(), etc. Can you give me some advice? Thanks~ o( _ ̄︶ ̄_ )o
0
Currently, if I close the editor and open it again, I have to go through the same steps to open the project again. Why not to remember the previously opened project and open it automatically once the user starts the editor?
A feature I love about ST2 and iA Writer, which I'm missing in Atom, is when you quit the app with open windows (including unsaved documents), they all appear again when you reopen. This has saved me countless times in my workflow to handle having to do a system restart for software update, etc and not have to take ...
1
relevant snippet: - name: grab benchmark results fetch: src={{ result.test_archive }} dest="{{ staging_dir }}/{{ ansible_hostname }}/" flat=yes TASK: [grab benchmark results] ************************************************ fatal: [10.42.0.200] => Traceback (most recent call la...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ec2_vpc_igw ##### ANSIBLE VERSION ansible 2.3.1.0 config file = /home/derek/Code/ansible-aws/ansible.cfg configured module search path = Default w/o overrides python version = 2.7.13 (default, Jul 21 2017, 03:24:34) [GCC 7.1.1 2...
0
**Do you want to request a _feature_ or report a _bug_?** Feature. **If this is a feature request, what is motivation or use case for changing the behavior?** webpack-cli does a lot of neat things, but it's huge, has a huge dependency list, and I don't personally need _any_ of its features other than a tiny CLI th...
# Bug report **What is the current behavior?** Currently have 42 line of codes in a utils.js file which will be used in another Module Federation. **Federate Module 1** delta.js // with 22 line of codes export const SAMPLE = 'SAMPLE'; utils.js // with 42 line of codes. All are exported funct...
0
It works, but when i run it again it fails. Some sort of state / data race condition i think. Kind of worrying... Env: OSX Sierra. Flutter was installed with the git clone command. Wow i am on alpha. Is this why its flaky ? x-MacBook-Pro:~ apple$ which flutter /usr/local/flutter/flutter/...
0
### Bug report **Bug summary** Some colorbar labels are printed twice when I use a colorbar with LogNorm and small ranges of numbers after setting the ticks manually with set_ticks(). See figure below: By setting the minor_thresholds to something low, the double ticklabel at 20000 disappears, so it could have some...
Travis has been failing a lot lately, and I'm pretty sure the reason is baseline image reuse + parallel tests. I believe pytest parallelizes across extension and baseline image, so when a test writes to the same baseline more than once, there's a high possibility that one figure will be saved on top of another while ...
0
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke-serial/1619/\n\nFailed: [k8s.io] [HPA] Horizontal pod autoscaling (scale resource: CPU)\n[k8s.io] [Serial] [Slow] ReplicationController Should scale from 1 pod to 3\npods and from 3 to 5 and verify decision stability {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:70\n Expected error:\n <*errors.StatusError | 0xc8214e6200>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server has asked for the client to provide credentials (get replicationControllers rc)\",\n Reason: \"Unauthorized\",\n Details: {\n Name: \"rc\",\n Group: \"\",\n Kind: \"replicationControllers\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Unauthorized\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 401,\n },\n }\n the server has asked for the client to provide credentials (get replicationControllers rc)\n not to have occurred\n \n\nPrevious issues for this test: #27479 #27675\n\n"
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke/10735/\n\nMultiple broken tests:\n\nFailed: [k8s.io] Kubectl client [k8s.io] Update Demo should do a rolling\nupdate of a replication controller [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:233\n Expected error:\n <*errors.errorString | 0xc8207c7f70>: {\n s: \"Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.209.82 --kubeconfig=/workspace/.kube/config rolling-update update-demo-nautilus --update-period=1s -f - --namespace=e2e-tests-kubectl-f1wr3] [] 0xc820ae8ae0 Created update-demo-kitten\\n Error from server: the server does not allow access to the requested resource (put replicationControllers update-demo-nautilus)\\n [] <nil> 0xc820ae9100 exit status 1 <nil> true [0xc8200ba088 0xc8200ba540 0xc8200ba7a8] [0xc8200ba088 0xc8200ba540 0xc8200ba7a8] [0xc8200ba0a8 0xc8200ba130 0xc8200ba548] [0xa9ec00 0xa9ed60 0xa9ed60] 0xc820d6a6c0}:\\nCommand stdout:\\nCreated update-demo-kitten\\n\\nstderr:\\nError from server: the server does not allow access to the requested resource (put replicationControllers update-demo-nautilus)\\n\\nerror:\\nexit status 1\\n\",\n }\n Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.209.82 --kubeconfig=/workspace/.kube/config rolling-update update-demo-nautilus --update-period=1s -f - --namespace=e2e-tests-kubectl-f1wr3] [] 0xc820ae8ae0 Created update-demo-kitten\n Error from server: the server does not allow access to the requested resource (put replicationControllers update-demo-nautilus)\n [] <nil> 0xc820ae9100 exit status 1 <nil> true [0xc8200ba088 0xc8200ba540 0xc8200ba7a8] [0xc8200ba088 0xc8200ba540 0xc8200ba7a8] [0xc8200ba0a8 0xc8200ba130 0xc8200ba548] [0xa9ec00 0xa9ed60 0xa9ed60] 0xc820d6a6c0}:\n Command stdout:\n Created update-demo-kitten\n \n stderr:\n Error from server: the server does not allow access to the requested resource (put replicationControllers update-demo-nautilus)\n \n error:\n exit status 1\n \n not to have occurred\n \n\nIssues about this test specifically: #26425 #26715\n\nFailed: [k8s.io] Kubectl client [k8s.io] Simple pod should support exec\nthrough an HTTP proxy {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:279\n Expected error:\n <*errors.errorString | 0xc8202aa550>: {\n s: \"Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.209.82 --kubeconfig=/workspace/.kube/config get rc,svc -l name=nginx --no-headers --namespace=e2e-tests-kubectl-4q19c] [] <nil> the server does not allow access to the requested resource (get services)\\n [] <nil> 0xc82072a7c0 exit status 1 <nil> true [0xc8201081b8 0xc8201081f0 0xc820108308] [0xc8201081b8 0xc8201081f0 0xc820108308] [0xc8201081d0 0xc820108300] [0xa9ed60 0xa9ed60] 0xc820d062a0}:\\nCommand stdout:\\n\\nstderr:\\nthe server does not allow access to the requested resource (get services)\\n\\nerror:\\nexit status 1\\n\",\n }\n Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.209.82 --kubeconfig=/workspace/.kube/config get rc,svc -l name=nginx --no-headers --namespace=e2e-tests-kubectl-4q19c] [] <nil> the server does not allow access to the requested resource (get services)\n [] <nil> 0xc82072a7c0 exit status 1 <nil> true [0xc8201081b8 0xc8201081f0 0xc820108308] [0xc8201081b8 0xc8201081f0 0xc820108308] [0xc8201081d0 0xc820108300] [0xa9ed60 0xa9ed60] 0xc820d062a0}:\n Command stdout:\n \n stderr:\n the server does not allow access to the requested resource (get services)\n \n error:\n exit status 1\n \n not to have occurred\n \n\nIssues about this test specifically: #27156\n\nFailed: [k8s.io] Services should serve a basic endpoint from pods\n[Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133\n Jul 7 17:24:27.653: Couldn't delete ns \"e2e-tests-services-w86n1\": the server does not allow access to the requested resource (delete namespaces e2e-tests-services-w86n1)\n \n\nIssues about this test specifically: #26678\n\nFailed: [k8s.io] ResourceQuota should verify ResourceQuota with best effort\nscope. {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/resource_quota.go:481\n Expected error:\n <*errors.StatusError | 0xc820d64100>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get resourceQuotas quota-not-besteffort)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"quota-not-besteffort\",\n Group: \"\",\n Kind: \"resourceQuotas\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/namespaces/e2e-tests-resourcequota-pjhoj/resourcequotas/quota-not-besteffort\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get resourceQuotas quota-not-besteffort)\n not to have occurred\n \n\nFailed: [k8s.io] Pods should not start app containers and fail the pod if init\ncontainers fail on a RestartNever pod {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pods.go:988\n Jul 7 17:24:23.180: Error watching a pod: the server does not allow access to the requested resource (get pods)\n \n\nIssues about this test specifically: #27465\n\nPrevious issues for this suite: #26742 #27839\n\n"
1
**Apache Airflow version** : 1.10.15 **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): **Environment** : * **OS** (e.g. from /etc/os-release): Redhat 8.3 **What happened** : Installed airflow with pip, it picked up sql alchemy 1.4.6 as a dependency. This causes airflow to fil to r...
**Apache Airflow version** : 2.0.1 **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): N/A **Environment** : * **Cloud provider or hardware configuration** : * **OS** (e.g. from /etc/os-release): Mac OS Big Sur * **Kernel** (e.g. `uname -a`): * **Install tools** : pip 20.1.1 * ...
1
http://stackoverflow.com/questions/38530831/webpack-vendor-chunk-changing- every-time **Webpack version:** "^1.13.1" **Please tell us about your environment:** OSX El Capitan **Current behavior:** **Expected/desired behavior:** * **If the current behavior is a bug, please provide the steps to reproduce and...
I'm trying to split my vendor code from my app code and got it all working. However, every time I change some code in my app and create a new build, the vendor file gets a new chunkhash and thus is downloaded by the clients again. The contents are exactly the same though. Here is a fully working small example showin...
1
Challenge Clone an Element Using jQuery has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <script> $(document...
Spanish language translation for PR #9647 Added text: "Together with the commands used in Step 11, this adds additional parameters to the mongod command to allow MongoDB to run in the C9 environment." & "Note: Use the command mongod --port 27017 in place of mongod --port 27017 --dbpath=./data to avoid a duplicate ...
0
### Describe the bug I am unable to use big integer columns with `tuple_` when querying the DB. ### To Reproduce The following code is a minimal example: big_int = 2**31 + 123 session.add(Actor(id=big_int)) await session.commit() s = select(Actor.id).where(tuple_(Actor.id, Actor.id)...
**Migrated issue, originally created by Henrique Alves (@hcarvalhoalves)** I'm trying to do something that, in principle, should be simple: inject a expression-based column into an ORM-based Query. I've tried this: query = db.session.query(MyClass).all() # Using `now` just as an example, ideally ...
0
by **rounin.urashima** : ./hello displays Illegal instruction using hg update default on ARM CPU based CISCO Linksys NSLU2 Before filing a bug, please check whether it has been fixed since the latest release. Search the issue tracker and check that you're running the latest version...
Enabling cpu profiling on a go program running on arm produces warnings from the runtime. alarm(~/internet) % crawl -a 202 -b 114 -c 206 -d 221 2013/08/02 04:00:05 profile: cpu profiling enabled, /tmp/profile167829215/cpu.pprof runtime: unexpected return pc for runtime.parfordo called f...
0
VSCode support extension, that's good. but i found extension will not auto update. nor auto check update , nor notify us to update. So i suggest can you please improve extension update? 1. Auto check update 2. Notify user to update or not 3. User can setting check up frequency(every start? one day? one week?)...
Such as `IEncodingSupport::setEncoding` , i want to code an extension for detect file's encoding. now detect encoding successed, but i don't known how to change encoding by API, could u help me?
0
How do we add additional responses (e.g. 401, 403, 500, etc..) to the documentation other than the default 200 response and the 422 validation error response?
### First check * I used the GitHub search to find a similar issue and didn't find it. * I searched the FastAPI documentation, with the integrated search. * I already searched in Google "How to X in FastAPI" and didn't find any information. ### Description I have a database pool with which I have to define t...
0
# Multiple FancyZones Hi all, I would like to have the possibility to activate a whole different layout by holding another set of keys. Example: 1) holding Shift key while dragging a Template previously attributed to that command would appear; 2) holding Ctrl + Shift key while dragging another Template for that com...
* User defined, meaning that the user can actually customize the hotkeys to there own liking * not Microsoft Predefined hotkeys, that cant be changed (microsoft is bad at this) ![image](https://user- images.githubusercontent.com/3206696/112462789-c0beb580-8d61-11eb-96eb-43f06a7e5e8d.png)
1
### Problem description When we display a list of MenuItems, hovering the mouse results in whatever the mouse landing on being highlighted. From that state, keyboard controls (assuming the list is receiving them) change what is selected, and therefore the highlighting, but the hover highlight does not go away. Movin...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When using the latest beta26 under TypeScript, I expect to be able to leverage the changes to zIndex, namely theme.zIndex.drawer. ## Current Behavior The TypeScript typings were not updated with the cha...
0
In UI ![obraz](https://user- images.githubusercontent.com/72373858/238871572-c3b3b6ff-56c5-43d3-9161-5ab927761554.png) In runner it is OK: ![obraz](https://user- images.githubusercontent.com/72373858/238868691-8f0fdd0b-1877-4be6-ba80-7a953e178540.png) ### System info * Playwright Version: [v1.33.0] * ...
Running playwright test with a test that have a dependency. For example the below snippet will run the `setup` dependency when running `npx playwright test`. In UI mode I would reasonably expect the same - in that when running a test that has a dependency it would run the dependency first and then run the test. This ...
1
I am pretty sure this is not a duplicate of #132, and also not a duplicate of #171, I think. The output of the build commands is below, folded in a `<details>` tab so as to not clutter up the post. _ _ __ __ | | / \ \ \/ / _ | |/ _ \ \ / | |_| / ___ \/ \ \___/_/ \/_...
Please: * Check for duplicate issues. * Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this: * If applicable, include full error messages/tracebacks. On Ubuntu 20.04. I tried to bump the JAX version for some projects on my GPU machine. Pip version is `21.1.3`. ...
0
**Apache Airflow version** : 1.10.9 **Environment** : Google Cloud Compute Instance * **OS** (e.g. from /etc/os-release): Red Hat Enterprise Linux Server Version 7.7 * **Kernel** (e.g. `uname -a`): * **Install tools** : * **Others** : **What happened** : After rebuilding an Airflow environment I...
I am using an AWS ec2 instance and installed apache-airflow there. Following steps, I am doing in that instance, 1. After initiating airflow with 'airflow initdb', I created a user with **Admin** role using 'airflow create_user' option and in airflow.cfg changed rbac = True. 2. Again ran 'airflow initdb' and 'ai...
1
## Code fn foo1(x: &str) { println!("foo1({})", x); } fn foo2(x: &str) { println!("foo2({})", x); } macro_rules! wtf { (1) => (foo1); (2) => (foo2); } macro_rules! wtf_foo { ($x:expr, $num:expr) => { ...
With the exception of metavariables with `ident` and `tt` fragment specifiers, a macro that passes a metavariable into another macro which contains the raw tokens specified by that metavariable in the matcher will throw a `no rules expected the token `{tokens}`` error, despite the raw tokens matching up. The code in...
1
I also think is a pain-in-the-ass to have to manually click on "Only in selection". NetBeans handles this quite good, if you had a selection before searching it will automatically activate that for you.
Hello, i try change keybind for ctrl-alt-f and dont work. I using windows7 and latest version of Atom. 'atom-workspace atom-text-editor:not([mini])': 'ctrl-alt-f: 'editor:fold-selection' i changed to 'atom-workspace atom-text-editor:not([mini])': 'ctrl-alt-1: 'editor:fold-selection'
0
According to https://github.com/plnice/can-i-drop-jetifier, Glide still references support libs and Jetifier cannot be turned off. * com.github.bumptech.glide:glide:4.9.0 \-- com.android.support:support-fragment:27.1.1 \-- com.android.support:animated-vector-drawable:27.1.1 \-- com.gi...
class com.bumptech.glide.load.engine.GlideException: Failed to load resource 11-27 19:24:00.443 5411-5411/com.pic*****:******* E/Glide: class com.bumptech.glide.load.engine.GlideException: Failed to load resource 11-27 19:24:00.443 5411-21483/com.pic*****:******* E/GlideExecutor: Request threw un...
0
I am trying to build the celery docker container as mentioned in the docs to setup the dev environment. But docker build fails with below error, **Command:** docker-compose build celery **docker_Version:** Docker version 19.03.2, build 6a30dfc **docker_Compse_version:** docker-compose version 1.18.0, build 8dd22...
# Checklist * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was alrea...
0
**System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Yes * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Linux Ubuntu 18.04 * TensorFlow installed from (source or binary): binary * TensorFlow version (use command below): 1.14 and ...
This is a little difficult to explain, and I'm guessing someone has to have run into it before, but it would be nice to at least get an explanation for what's going on here. The issue I'm finding is that when you specify a `model_dir` argument for any tflearn model, the first time you fit that model, the tensorboard...
0
@flipside: 'I don't use the data browser graph view as much as I'd like to because the screen gets cluttered very fast as I add more and more nodes with all the grey, unselected nodes on the screen. It'd be really great if there was a button to hide all this unselected nodes and relationships so I can get an unclutte...
@peterneubauer: ''
1
## Bug Report **For English only** , other languages will not accept. Before report a bug, make sure you have: * Searched open and closed GitHub issues. * Read documentation: ShardingSphere Doc. Please pay attention on issues you submitted, because we maybe need more details. If no response **more than 7 da...
Bug Report For English only, other languages will not accept. Before report a bug, make sure you have: Searched open and closed GitHub issues. Read documentation: ShardingSphere Doc. Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we cannot reprod...
0
Sometimes you need to parse and modify URL yourself. There is parse_url function in PHP. But it returns all components as array. Rebuilding the URL from the array is a little bit cumbersome because you need lots of checks like here http://stackoverflow.com/questions/4354904/php-parse-url-reverse-parsed- url#answer-31...
Naïve list gathered with grep. Let's make using each of these usable, standalone, in a PSR-7 centric app, or just check if there is something to do, or decide to not do it. ## May handle PSR-7: * Bridge/Doctrine (see #15414 (comment)) * Bridge/Monolog * Bridge/Swiftmailer (see #15414 (comment)) * Bridge/Twi...
1
# What This is related to this issue about Upper Case/Lower Case environment variables and npm script. I understand that due to node case folding and other constraints, npm script tend to ignore upper case `NPM_CONFIG_*` environment variables and end up adding its own lower case `npm_config_*` variables to `process...
? Would you like to add Angular routing? Yes ? Which stylesheet format would you like to use? CSS CREATE myApp/angular.json (3033 bytes) CREATE myApp/package.json (1068 bytes) CREATE myApp/README.md (995 bytes) CREATE myApp/tsconfig.json (783 bytes) CREATE myApp/.editorconfig (274 bytes) CREATE myApp/.g...
0
The change in #13567 (originally #12944) dramatically increased the size of the gallery release builds. cc @szakarias
I'm not sure what was changed, but I suddenly couldn't run my app on Android devices. I've already tried `flutter clean`. Please see the console output below. Thanks! $ flutter run Launching lib/main.dart on Nexus 5 in debug mode... Initializing gradle... 0...
0
Describe what you were doing when the bug occurred: 1. 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.10.0-11a2ae3a0d Component stack: CommitFlamegraphAutoSizer@moz-extension://6d279fb6-5484-4bfe- af1b-7776429d75f6/build/main.js:34133:50 div div div SettingsModalCon...
Describe what you were doing when the bug occurred: 1. Go to profile tag 2. Click to record 3. After stop recording, click on any commits. * * * ## Please do not remove the text below this line DevTools version: 4.9.0-75726fadfd Component stack: CommitFlamegraphAutoSizer@moz- extension://7ef91e4d-0a91-434a...
1
Dear development team, I'm using Glide to display product images in my app, e.g. on product detail page: Glide.with( context ) .load( url ) .thumbnail( Glide.with( context ) .load( placeholderResId ) .apply( new RequestOptions() ...
**Glide Version** :4.2.0 and before **Integration libraries** :OkHttp3 **Device/Android Version** :All **Issue details / Repro steps / Use case background** : 1.Clear App Cache from system setting 2.Then call GlideApp.get(context).clearDiskCache() , that will cause a exception log: `W/DiskLruCacheWrapper:...
1
It seems that the promised change of `diag`/`diagonal` to return a writeable view was forgotten in 1.10 and 1.11. Is the fix as easy as changing the flag on creation?
The ndarray.diagonal method currently returns a view, but it is not writeable. It is documented to return a writeable view in 1.10.
1
Hi, I must say I'm new to typescript, but I try to use it with React and Redux. I met the next case, here I'm trying to use the decorator `@connect` together with my component: @autobind @connect((store) => { return { states: store.states }; }) export default c...
One of the best 2d physics engines available: https://github.com/josephg/Chipmunk-js Despite a low user base it has great potential and seems to be more up-to-date than the popular Box2dWeb. TypeScript definitions would be highly appreciated :)
0
**Migrated issue, originally created by Aidan Kane (@aidankane)** I'm seeing slightly surprising behaviour around loading options when an entity is already in the session identity_map. I've attached a self-contained test case so you can more easily see what I mean. Depending on how you query for an entity (get() v...
**Migrated issue, originally created by Michael Bayer (@zzzeek)** this patch begins to provide this behavior. However a lazyloader from an expired object emits a second unnecessary load (or an unnecessary join, depending on how you look at it), and polymorphic loading breaks entirely, probably due to an incompatibi...
1
should raise when `orient='columns'` and index is non_unique `orient='index'` and column is non_unique? I'm trying out to_json and read_json on a data frame with 800k rows. However, after calling to_json on the file, read_json gets back only 2k rows. This happens if I call them in series or if I give to_json a fil...
![screen shot 2017-05-09 at 10 03 25 pm](https://cloud.githubusercontent.com/assets/2761597/25880143/a872d5e8-3503-11e7-90f0-2244a52845d4.png) In the above, I have a region that I'm querying for with a partially overlapping interval. The query succeeds when the interval is partially overlapping until it doesn't, thr...
0
the "well" class is as close as I can find to a generic rounded corner container. However, that seems somewhat specialized to me. How do you feel about a more simplistic rounded corner box without the inner box shadow?
Would you consider adding a component that is not a well, thumbnail, or modal, but something in between? Especially with Modal dropping the .hide class in v3 I see a great need. For example, take a look here on GitHub at the ReadMe box. It has similarities to a modal in that it has a heading and sits "above" the page...
1
_From @voxking on March 14, 2016 23:12_ * VSCode Version: 0.10.10 * OS Version: Windows 10 Typescript says things are duplicate when i move a file around. My guess is that the location of the file is not updated in the typescript service properly because when i restart VSCode it fixes itself but still its an...
**TypeScript Version:** If the version number were in the sources, i could answer this. bower says it's 1.8.x **Code** // this is compiled JS code from some random bit of ts... var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && type...
0
ES version: 1.4.4. One of our clients is running ES in a virtual server (OVH VPS). From what I understand, ElasticSearch stopped working after one hour with the following error. This error was repeated a couple of times at the end of the log file, then the whole VM crashed. [2015-04-13 06:02:13,5...
When I create multiple documents which have the same output value in the completion field, a suggest completion request only retrieves one object. I guess it is a feature, however, once we may set different payloads to those documents, it would make sense to retrieve multiple suggestions with the same output. My e...
0
Hello , I've got a problem ... my files in PHP are not coloring ... it always happens that involves files in PHP ... any solution? My Atom is in Patch 0.201.0 Thank you !! Waiting for answers !
I ~~am~~ was using Elementary OS and version 0.107.0, and when I write PHP and this happens: ![screenshot from 2014-06-24 18 59 36](https://cloud.githubusercontent.com/assets/6370419/3374663/022c136c-fbc1-11e3-8108-f2331315bf33.png) The surrounding HTML code is highlighted, but PHP isn't. It's even worse when you...
1
When some libraries get ahold of a Promise, they don't always add an `onFulfilled` handler, and they don't always add an `onRejected` handler using `.catch()`. Sometimes it looks like this: `.then(undefined, onError)` which is perfectly valid. I just experienced this error because GraphQL.js does this, for example:...
example of styled-jsx-postcss broken after commit `559c252` * [x ] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The custom babel-present.js in example can modify the `next/babel` ## Current Behavior after commit, `next/babel` became a function...
0
* [ x] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior A page's `getInitialProps` should only be called once per page load. ## Current Behavior Sometimes `getInitialProps` is called multiple times in one page load. ## Steps to Reproduce (for bugs...
# Bug report [ event ] build page: / [ wait ] compiling ... [ event ] build page: /about [ ready ] compiled successfully - ready on http://localhost:3000 [ event ] disposing inactive page(s): /next/dist/pages/_error [ event ] build page: /next/dist/pages/_error [ wait ] compiling ... [ ready ] comp...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.1 * Operating System version: ANY * Java version: ANY ### Steps to reproduce this issue Dub...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.4.1 * Operating System version: Linux 5.3.0-28-generic #30~18.04.1-Ubuntu * Java version: ope...
0
### Bug report It seems matplotlib's 3d plot components is not rendering things right. The lines are disappearing at the top of surface plot. **Bug summary** **Code for reproduction** from mpl_toolkits.mplot3d import Axes3D kk = 3 sigma = 0.8 t = np.linspace(-kk, kk, 128) x, y =...
This is the underlying problem raised in #1178. It is illustrated by the test below; note that boundary anomalies are visible in all forms--agg on the screen, and pdf and svg displayed with a viewer--but in different places depending on the viewer and the size of the figure as rendered. Note that the colorbar is ...
1
Adding `search_after` option to the search api will allow better deep pagination support for search request that don't use the scroll api. The `search_after` option should be used to hold the last seen sort value for each search request being executed with the same query (just like updating the `from` option). Altho...
The settings are as follows: "products_v2": { "settings": { "index": { "creation_date": "1475684313640", "analysis": { "filter": { "english_keywords": { "ignore_case": "true", ...
0
Spun off from #6895, which was closed with a request for reproducible test- cases to be filed as separate issues. The test-case I'd filed there (which failed on v15.4.1) is still failing on 15.4.2: $ node --version v6.9.4 $ npm --version 3.10.10 $ git clone git://github.com/wking/perfor...
I would like to propose a feature to be implemented in react based on this library https://github.com/myckhel/react-use-component The `react-use-component` was created to limit the use of memoised callback hooks and to create `Object Oriented` functional `Components`. I would like the react team to look into the co...
0
misc/cgo/test fails after this change https://golang.org/cl/7304104/ test crashes sometimes. Perhaps, this will help you: (gdb) disas Dump of assembler code for function runtime.usleep: 0x00416680 <+0>: mov %fs:0x14,%ecx => 0x00416687 <+7>: mov (%ecx),%ecx ...
What steps will reproduce the problem? 1. When moving code from file A to file B, I copy file A's imports as well. 2. Run gofmt, which sorts the imports. 3. Compile the code, which detects unused imports, which I can remove. 4. I still need to remove duplicate unnamed imports manually. ...
0
The class `AnimatedBuilder` should have its name replaced. As it is not related to animation in reality. For example, the following is possible : final valueNotifier = ValueNotifier(0); AnimatedBuilder( animation: valueNotifier, builder: (context, _) { return Text(valueNot...
hi, i have met the problem when i run the lib/main.dart, the below is crash log Flutter crash report; please file at https://github.com/flutter/flutter/issues. ## command flutter run ## exception FormatException: FormatException: Bad UTF-8 encoding 0xc3 (at offset 126) #0 _Utf8Decoder.convert...
0
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME import_role ##### ANSIBLE VERSION ansible 2.4.2.0 ##### CONFIGURATION ##### OS / ENVIRONMENT python version = 2.7.14 (default, Jan 17 2018, 14:28:32) [GCC 7.2.1 20170915 (Red Hat 7.2.1-2)] ##### SUMMARY Using import_role inside handler ...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ansible-inventory ##### ANSIBLE VERSION 2.4.1.0-2.4.3.0 ##### CONFIGURATION ##### OS / ENVIRONMENT redhat linux ##### SUMMARY ansible-inventory script cannot output inventory when it have yaml files with embedded ecnrypted variables ##...
0
Maybe I am overlooking something, but `useMount` and `useUpdate` seem to be useful. // Ignore didMount. Behave like didUpdate. This should be part of React imho. const didMountRef = useRef(false); useEffect(() => { if (!didMountRef.current) { didMountRef.current = true; re...
version React version: why react version in tag v17.0.2 is 17.0.0, Which commit is the source code of version 17.0.2 react ## Steps To Reproduce 1. 2. Link to code example: ## The current behavior ## The expected behavior
0
Hi all, Maybe this is not the right place to ask for hints but is the place that I know ;) In order to improve the efficiency of a python script, I am trying to convert a script based on a lot of "for loop" operations on a points cloud thanks to Numpy to speed up the process. ![PointCloud2](https://user- images.g...
_Original tickethttp://projects.scipy.org/numpy/ticket/2171 on 2012-06-19 by trac user edcjones, assigned to unknown._ I use up-to-date Debian testing (wheezy) linux, amd64 architecture. I have installed packages python3.2, version 3.2.3~rc2-1 and python3-numpy, version 1:1.6.2-1. I got the same answers with packa...
0
ismaelvc@toybox ~/D/julia (master)> julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type "help()" to list help topics | | | | | | |/ _` | | | ...
With fish as my default shell, I get the below error. Presumably that is because in Fish, (x) is like $x in bash and not a grouping operator. julia> ;ls fish: Illegal command name '(ls)' Standard input: (ls) && true ^ ERROR: failed process: Process(`/usr/local/bin/fish -i -c '(ls) && true'`, ProcessExited(12...
1
##### Issue Type: Bug report ##### Ansible Version: ansible 1.4.3 ##### Environment: RHEL 6.5 from RHEL 6.5; bug appears to be generic though. ##### Summary: The hack at https://github.com/ansible/ansible/blob/devel/lib/ansible/runner/__init__.py#L586 appears to break filter usage (name={{item | basename }}). ...
This is regarding the discussion at https://groups.google.com/forum/#!topic/ansible-project/89nAO_ncAs0 The idea is to be able to add a prefix to apt and yum so that the following would work: - name: PHP | MAIN | Install php packages apt: > pkg=php5-{{ item }} state=latest ...
1
ERROR: type should be string, got "\n\nhttps://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md\n\nThe above link is broken. Loading leads to a 404 error.\n\n"
**System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow):Yes * OS Platform and Distribution (e.g., Linux Ubuntu 16.04):Win 10 * TensorFlow installed from (source or binary):binary * TensorFlow version (use command below):2.0.0-alpha0 * Python ...
0
# Environment Windows build number: [run "ver" at a command prompt] Microsoft Windows [Version 10.0.19041.329] PowerToys version: 0.19.0 PowerToy module for which you are reporting the bug (if applicable): FancyZones # Steps to reproduce Ensure that "Hold Shift key to activate zones whil...
# Environment Windows build number: Version 10.0.20150.1000] PowerToys version: 19.0 PowerToy module for which you are reporting the bug (if applicable): FancyZones # Steps to reproduce 1. "Override Windows Snap hotkeys" active ![grafik](https://user- images.githubusercontent.com/1366...
1
The RandomState_ctor function in numpy.random. **init** makes an call to construct a new RandomState object without an explicit seed. The unseeded call results in an access to /dev/urandom which is wildly expensive. Given that the purpose of this function to add in pickling, so that the internal state will be updated...
I see the following warning when building the 1.22.0 docs: preparing documents... WARNING: unsupported theme option 'collapse_navigation' given Is there a theme version that needs to be pinned?
0
A subset of #9875, redesign the static home page, http://www.rust-lang.org. @thehydroimpulse has been working on https://github.com/TheHydroImpulse/rust- website and @adridu59 on http://adridu59.github.io/rust-www/ Nominating.
This includes rust-lang.org, the tutorials, guides, manuals and API docs. I think most of us value the spare style on our home page, so we want to preserve that general aesthetic, though not that specific design. We need something attractive and consistent across all of our pages, that can be adapted to additional c...
1
Would it make sense to define `Base.iterate(::Nothing) = nothing` ? HTTP.jl has a generic interface that accepts anything iterable. A user has reported `method matching iterate(::Nothing)` when they passed `nothing`. It seems that `eltype` is already defined. julia> eltype(nothing) Any But, `H...
julia> setdiff!([1, 2, nothing], nothing) ERROR: MethodError: no method matching start(::Nothing) Closest candidates are: start(::Core.SimpleVector) at essentials.jl:533 start(::Base.MethodList) at reflection.jl:684 start(::ExponentialBackOff) at error.jl:170 ... Stack...
1
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
0
I'm using scipy's Fisk distribution. The documentation says the pdf is: `f(x, c) = c x^{-c-1} (1 + x^{-c})^{-2}`, but it should be: `f(x, c) = c x^{c-1} (1 + x^{c})^{-2}`. I think the same applies to the documentation of the Burr distribution. I'm not sure if this is worthy of an issue, just wanted to mention it ...
In `_continuous_distns.py` [1] the method `burr_gen._pdf()` specifies the PDF of the Burr distribution, which is also used by the Fisk distribution (`fisk_gen._pdf()`). The current PDF is `c*d*(x**(-c-1.0))*((1+x**(-c*1.0))**(-d-1.0))`, however, the sign of the first `c` is wrong. The PDF should be: `c*d*(x**(c-1.0...
1
I am seeing frequent deadlocks when running tasks simplified to the below. (I purged out all the logging and a few database interactions to keep things clear.) Calling the task that calls everything else usually runs <15 tasks before locking, and restarting the workers a few times eventually clears up whatever the pr...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
0
_Original tickethttp://projects.scipy.org/scipy/ticket/1755 on 2012-10-26 by trac user jose, assigned to unknown._ I've isolated the problem to a single case. Here is the code: import numpy as np from scipy import interpolate P = np.array([[-0.32617197, -0.2920095 , -0.46557174, -0.81794...
_Original tickethttp://projects.scipy.org/scipy/ticket/783 on 2008-11-06 by trac user mauger, assigned to unknown._ interpolate.bisplrep is causing a segfault when kx=3, ky=3, s=0 for reasonably smooth data. I've attached a data file, and I've pasted a test case and the backtrace from gdb. import sci...
1
_Original tickethttp://projects.scipy.org/scipy/ticket/1354 on 2011-01-12 by trac user bubla, assigned to unknown._ Hello, as stated in the summary, something needs to be done with the Scipy FFT implementation. Consider this example: import scipy as sp import scipy.fftpack import numpy as np ...
## Problem `_linprog.py` solves linear programming problems, originally via the simplex method. An implementation of the interior-point method was later added via `_linprog_ip.py` using the original `_linprog.py` as the top-level interface. The simplex and interior-point implementations duplicate similar behaviour a...
0
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME apt module ##### ANSIBLE VERSION 12:40 $ ansible --version ansible 2.3.2.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides python version = 2.7.12 (default, Nov 19 2016, 06:48:10)...
Closing as duplicate of 8736
0
**Elasticsearch version** : # elasticsearch --version Version: 2.3.4, Build: e455fd0/2016-06-30T11:24:31Z, JVM: 1.8.0_91 **JVM version** : # java -version openjdk version "1.8.0_91" OpenJDK Runtime Environment (build 1.8.0_91-8u91-b14-1~bpo8+1-b14) OpenJDK 64-Bit S...
With #22073 and #22225 we enabled strict duplicate checks for XContent. Although our benchmarks only showed a negligible performance drop of 1 - 2% (see #19614), Elasticsearch 6.0 still allows to disable the strict duplicate checks with an undocumented flag. Hence, we also needed to keep the existing hand-coded dupli...
0
### Version Vue: 2.6.10 TS: 3.3.4000 and 3.4.5 ### Reproduction link https://github.com/octref/vue-prop-type-error ### Steps to reproduce * `git clone https://github.com/octref/vue-prop-type-error && cd vue-prop-type-error` * `yarn` * `yarn compile` ### What is expected? No error reported from this fil...
### Version 2.6.10 ### Reproduction link https://github.com/Patcher56/ts3.4.x-vuejs-issue ### Steps to reproduce 1. create a new vue typescript project (without class syntax) `vue create test-ts` 2. open `src/components/HelloWorld.vue` 3. add a data variable and try to access it in a computed property ###...
1
Hello! any plans to make dockerize deno? If this is not done, I like to help. Nathan Aw (Singapore)
@hayd started a while https://github.com/hayd/deno-docker This can be ported to be integrated as the Official Deno docker image. So 3 steps are needed: * Integrate generation of docker image in the CI * Test the generated docker image * Publish image on the docker hub / github hub on release Also do we plan ...
1
### Bug report **Bug summary** imshow is not displaying data accurately. Non existent values displayed in images, white spots as shown below. This issue was also occurring in 3.2.1. **Code for reproduction** import numpy as np import matplotlib.pyplot as plt from matplotlib.colors import fr...
### Bug report **Bug summary** `imshow()` plots different results between versions 3.1.2 and 3.2.2 for masked numpy arrays. The latest version is missing pixels that were plotted in the older version. **Code for reproduction** import numpy as np import matplotlib.pyplot as plt arr = np....
1
[Enter steps to reproduce below:] 1. Selected text 2. Right clicked it **Atom Version** : 1.0.0 **System** : Microsoft Windows 8.1 **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilen...
I right-clicked on a folder in the tree view **Atom Version** : 0.194.0 **System** : Windows 7 Entreprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Fu...
1
Since 2.1.0, Button dropdown menu items cannot be clicked/selected on iPhone (Unable to test on other touch devices to confirm). The dropdown menu closes as soon as you try to click an item from the dropdown. This issue is repeatable on the Bootstrap Sample Page: http://twitter.github.com/bootstrap/components.html#b...
Right now, you need one of the Javascript plugins for the links to be disabled completely, otherwise if you just have a hash, it will take you to the top of the page. An easy way to fix this is to allow a tag for disabled "links" with the same properties as anchors within .pagination so it doesn't break the layout. ...
0
React version: latest ## Steps To Reproduce function App() { return <h1 onClick={console.log}>h1</h1>; // console.log is replaced by "disableLog" so I can't log any event. return <h1 onClick={x => console.log(x)}>h1</h1>; // have to do this } Previous discussion at #15894 ...
### Which website or app were you using when the bug happened? Please provide a link to the URL of the website (if it is public), a CodeSandbox (https://codesandbox.io/s/new) example that reproduces the bug, or a project on GitHub that we can checkout and run locally. ### What were you doing on the website or app w...
0
![shift- tab](https://cloud.githubusercontent.com/assets/949380/13030590/73fad894-d265-11e5-97bd-36f2db4481a9.gif) Please note the key pressed at the `bottom-left` corner of the animation. Steps to reproduce: * Highlight a block of code * Press Shift + Tab * Notice the state of the editor, most of the select...
I wanted to indent multiple lines at once but it failed. This is how it looks like when I select some lines and press `Tab`. Sometimes it works though, like when creating an untitled file in split screen. ![indent](https://cloud.githubusercontent.com/assets/1913805/12911690/8a6cd162-cf14-11e5-8bba-8ff1210c10f5.gif) ...
1
### System information * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Ubuntu 16.04 (ppc64le) * **TensorFlow installed from (source or binary)** : Installed from source (v1.0.1) * **TensorFlow version (use command below)** : ('v1.0.1-0-ge895d5c-dirty', '1.0.1') * **Bazel version (if ...
###Environment info: Operating System: Ubuntu 16.04 (ppc64le) ###Installed version of CUDA and cuDNN: cuda & OpenCL disabled and all other features enabled ###Build and test INFO Built TF (version 1.0.1) successfully on Ubuntu 16.04 and RHEL 7.3. Now I am trying to run the bazel tests - 12 tests are failing o...
1
## Steps to Reproduce Following getting-started, created myapp with command _flutter create myapp_ then hit flutter run. Probably same as issue #3448. ## Flutter Doctor [✓] Flutter (on Mac OS, channel alpha) • Flutter at /Users/kubo/Library/flutter • Framework revision `9a0a0d9` (11 days ago), engine revision ...
## Steps to Reproduce On the iOS simulator... flutter create new-project cd new-project/ flutter run Wait 1 minute and nothing has occurred. The app icon is not present on the simulator. ## Flutter Doctor [✓] Flutter (on Mac OS, channel master) • Flutter at /Users...
1
fn foo(a: int, a: bool) { println(fmt!("%?", a)); } fn main() { foo(42, false); } I expect this to fail to compile on account of the duplicated argument name. Instead: <anon>:1:7: 1:8 warning: unused variable: `a` [-W unused-variable (default)] <anon>:1 fn ...
The librustc binary contains 657 string constants containing "bounds check". There is opportunity for reduction here.
0