text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
### Bug report **Bug summary** When writing a generical code to generate plots with sphinx documentation, this function cannot be called by other functions from the documentation in the same file **Code for reproduction** Repository layout: * docs * source * pyplots * test.py * conf....
### Bug summary Matplotlib is unable to apply the boundaries in the colorbar after updating to 3.5.0. Please compare the results in the screenshots between version 3.5.0 and the previous version 3.4.3. ### Code for reproduction import matplotlib.pyplot as plt import numpy as np from matplotli...
0
Found this while refactoring my library after the `Vector` -> `Slice` rename STR: use std::{mem, raw}; fn main() { let a = &[1, 2, 3i]; let raw::Slice { data: ptr, len: len }: raw::Slice<int> = unsafe { mem::transmute(a) }; let b = unsafe { mem::transmute(Slice { data:...
failed to find block with tag 7 error: internal compiler error: unexpected failure note: the compiler hit an unexpected failure path. this is a bug. note: we would appreciate a bug report: http://static.rust-lang.org/doc/master/complement-bugreport.html note: run with `RUST_LOG=std::rt::b...
1
For tests that must (for some reason) leak an operation or resource deno test allows us to opt out of Op and Resource sanitizing for a single test. Unfortunately, the resources purposefully leaked by a "leaky" test end up associated with other tests, causing hard to diagnose errors. I've created a minimal reproducti...
It would be nice to be able to see the async objects that are leaking and their allocation stack. I think this would be useful as a command line switch to enable it while debugging. For my complex application, one part of the system seems to be affecting a different part. Their individual unit tests execute just fine...
1
Output of a session of mine: fn factorial(x: int) -> int { if x <= 0 { 1 } else { x * factorial(x - 1) } } fn main() { let x = 4; println!("{}", factorial(x)); } $ rustc -g inspect.rs $ lldb ./inspect Current executable set to './...
The way the runtime is currently structured every time "something happens" a callback is registered with a libuv event loop that wakes up that loop to deal with it. This could be "work available to steal" or "message sent to scheduler" for example. The problem with these is that we create massive numbers of the thing...
0
### Version 2.6.10 ### Reproduction link https://jsfiddle.net/hataketed/m0t2ng8b/4/ ### Steps to reproduce just run and see the console errors ### What is expected? click alert ### What is actually happening? vue.js:634 [Vue warn]: Property or method "eventname" is not defined on the instance but referenced ...
### What problem does this feature solve? when we want to do something like hide / show password input we should add state called "IsVisible" in our data but actually this data is specific for this input not relate to our app so we shoud put it on a scope of the element to prevent our data's pollution ### What does...
0
# Feature request ## Is your feature request related to a problem? Please describe. Next.js v9.0.0 hard codes the root API directory path to `/pages/api` Making this a config option would allow for a better separation of concerns. We consider pages just that, pages, each one relates to a page you can visit, where...
* I have searched the issues of this repository and believe that this is not a duplicate. egg.js: https://github.com/eggjs/egg In this example: https://github.com/zeit/next.js/blob/master/examples/custom- server-koa/server.js. **`ctx.respond = false`** causes a large number of koa middleware to be invalid. `egg.j...
0
Hey Typescript, React's current typing for setState (at https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/react/react.d.ts#L128) is somewhat wrong - it asks for type S, while the documentation (at https://facebook.github.io/react/docs/component-api.html#setstate) specifies only that: > The first ar...
// Given: interface Foo { simpleMember: number; optionalMember?: string; objectMember: X; // Where X is a inline object type, interface, or other object-like type } // This: var foo: partial Foo; // Is equivalent to: var foo: {simpleMember?: number, o...
1
* 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: `2faf5e7` ### Steps to reproduce this issue There's no samples of provider/consumer configured by AP...
* 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.6-SNAPSHOT * Operating System version: ALL * Java version: ALL ### Steps to reproduce this i...
0
It's a great step to support importing Android lib via jcenter. However, I'm having trouble in loading pretrained models into `TensorFlowInferenceInterface`, which says `NodeDef mentions attr 'dilations' not in Op...`. I think it's a compatibility issue, meaning that the model graph is not consistent with the graph i...
Please go to Stack Overflow for help and support: https://stackoverflow.com/questions/tagged/tensorflow If you open a GitHub issue, here is our policy: 1. It must be a bug or a feature request. 2. The form below must be filled out. 3. It shouldn't be a TensorBoard issue. Those go here. **Here's why we have ...
1
### Description In #18127 Apache Superset noticed the potential of using a test framework created on the basis of Pytest to verify the Helm Chart. I believe that a synergistic effect is possible in this respect. I am aware that Apache Airflow is going to introduce some optimizations to its framework. However, they ...
**Apache Airflow version** : **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): **Environment** : * **Cloud provider or hardware configuration** : Aliyun * **OS** (e.g. from /etc/os-release): CentOS Linux" VERSION="7 (Core) * **Kernel** (e.g. `uname -a`): Linux 3.10.0-514.21.1.el7....
0
Whenever you are coding and you press ENTER in an indented line, it will add a new line, remove the indentation and start the cursor at the beginning of that line. Setting editor.formatOnType to false disables this behavior.
* VSCode Version: 0.10.11 * OS Version: Windows 8.1 The problem is observed only in the following scenario: for (i=0; attr && i<attr.length; i++) { if (attr[i].specified) { props[attr[i].name] = attr[i].value; hasAttrib = true; } } ![image](https:/...
0
##### System information (version) * OpenCV => opencv.js 4.1.0-pre * Operating System / Platform => Google Chrome 74.0.3729.39 * Compiler => opencv.js WASM build from master branch as described here. ##### Detailed description Executing cv.drawKeypoints now gives an error where it did not use to. (see https:...
Is it feasible to merge some Web-Sight and Quramy bindings with master ? I don't really know how it can be done, but I would like to do it if so. It is used for example by @Quramy in his feature_matching demo (see here) to use feature2d functions like `cv.drawMatches`, `cv.knnMatch`, `cv.drawMatchesKnn`, `cv.drawK...
1
Hi, love this code but think I see an issue which can be seen on the live example (https://threejs.org/examples/misc_controls_transform.html) where the user is able to toggle off an axis (X,Y or Z) but is still able to translate the object along that axis even while the handles are not visible... you just have to car...
##### Description of the problem Not sure how many of these are relevant to WebGL as it doens't support geometry shaders but it is a pretty decent article none the less: http://www.iquilezles.org/www/articles/stereo/stereo.htm ##### Three.js version * Dev * r76 * ... ##### Browser * All of them * Chro...
0
_Original tickethttp://projects.scipy.org/numpy/ticket/372 on 2006-11-04 by @FrancescAlted, assigned to unknown._ When you create recarrays with records.py and not specify the dtype argument explicitely, the names are generated with 1 as base (i.e. 'f1', 'f2', ...) instead of using 0 (i.e. 'f0','f1',...) which is t...
### Reproducing code example: import numpy as np x = np.rec.array([('abcd',)], dtype=[('a', str)]) print(repr(x)) ### Erroneous Behavior: `str` type is inferred as `<U` dtype. A similar expression using numpy arrays infers the length for `'<UN'` dtype. ### Numpy/Python version information: ...
0
Running a simple `select *` query on a DB table and getting an error: `DatetimeTZDtype' object has no attribute 'char'` * I have checked the superset logs for python stacktraces and included it here as text if any Traceback (most recent call last): File "/Users/ruchir/venv/lib/python2.7/site-p...
While pulling data from clickhouse within superset things work as long as fields are not of type datetime. When trying to get data for a datetime column then it gives the following python error. `AttributeError: 'DatetimeTZDtype' object has no attribute 'char'` ### Superset version `{ GIT_SHA: "", version: "0.18.2...
1
Could you please add a setting for where the brace gets placed when autoformat runs. When the auto format runs it moves the brace to a new line. This is very annoying to me.
_From@TJSoftware on January 29, 2016 17:35_ ##### Summary I am unable to format code for `xml` and `c#`. `json` and `javascript` do not have any issues. ##### What I have done Originally I modified my `editor.tabSize` to be 2 (in workspace). I removed this override and just left in the defaults. I also overwrote...
1
I just upgraded my projects from pandas 0.16.2 to pandas 0.18.1, but I have a difference on some `DataFrame.resample` operations, with Weekly frequencies. For instance, I want to resample daily data to weekly data (`W-SUN`), and apply an offset to the results, so each row will be a **MONDAY** and not a SUNDAY. ####...
#### Code Sample, a copy-pastable example if possible # Create DF df = pd.DataFrame(np.random.rand(5,2), columns=list('AB'), index=pd.date_range('2010-01-01 09:00:00', periods=5, freq='s')) print(df) A B 2010-01-01 09:00:00 ...
1
Hi, I'm trying to upload a file that weight about 3GB and I'm getting the following error: "OverflowError: string longer than 2147483647 bytes" If I understand correctly it seems like there's a 2GB limit? didnt manage to find any reference to such limiation or how to bypass it (if possible). The code i'm using i...
Summary. When creating a session and setting `verify=False` with a proxy defined value error is raised. The easiest way to setup this issue is to open Fiddler4 and run the following on Windows: import requests import urllib url = "https://www.arcgis.com/sharing/rest?f=json" proxies = urlli...
0
### Describe the issue linked to the documentation Hi folks, I am somewhat in doubt that the `sklearn.feature_selection.chi2` function is implemented correctly. At least, checking the source code, it is entirely unclear to me why that kind of scoring would make sense. Best, Felix ### Suggest a potential alterna...
### Describe the bug When looking for correlation between features (for feature selection), I found that sklearn implementation of Chi2 test of independence produce significantly different results from scipy.stats implementation. My sample data contains 300 records, with 6 anonymized categorical features and the la...
1
I have followed the below steps to generate the bug. * I have created a file named after `server.ts` using the below command: import { serve } from "https://deno.land/std@0.50.0/http/server.ts"; const s = serve({ port: 8000 }); console.log("http://localhost:8000/"); for await (const req ...
## Steps to reproduce Create `server.js` with the following content: import { serve } from "https://deno.land/std@v0.35.0/http/server.ts"; const s = serve({ port: 8000 }); console.log("http://localhost:8000/"); for await (const req of s) { req.respond({ body: "Hello World\n" }); ...
1
Currently, the only ways to adjust the offset and repeat are to either change it on the texture object or to change the UV coordinates of the geometry. However, there are cases where it would be useful and performant to adjust on the Material. For example, imagine creating a room where the walls would share a repeat...
I use the Texture.clone() function a lot in my code, because I need to set the UV coordinates differently on every model, and this slows down the initiation of the page considerably. If I don't clone the texture, then the scene renders instantly. So something is not optimal in the rendering pipeline. It seems that t...
0
My config file: { "acrylicOpacity" : 0.75, "closeOnExit" : false, "colorScheme" : "Campbell", "commandline" : "cmd.exe /k "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"", "cursorColor" : "#FFFFFF", "cursorShape" : "bar", "fontFace" : "Consolas", "fontS...
# Environment Windows build number: [run "ver" at a command prompt] Windows Terminal version (if applicable): Any other software? Today I modified the Windows Terminal configuration file and wanted to create a Pwsh with the emoji title. However, I encountered some confusion in this p...
1
1. ltisys:150: * `# transfer function is C (sI - A)**(-1) B + D` should read: `# transfer matrix is C (sI - A)**(-1) B + D` * Although, this matrix is not actually calculated, so the comment should probably be removed. 2. ltisys:179: * `type_test = A[:, 0] + B[:, 0] + C[...
### Is your feature request related to a problem? Please describe. If we specify the covariance matrix manually, we usually do it in a form of rotation matrix and variances. So running the decomposition internally is redundant and inefficient. ### Describe the solution you'd like. Internally the covariance matrix ...
0
all.bash fails on fedora-vm, uname -a Linux fedora-amd64.localdomain 4.2.8-200.fc22.x86_64 #1 SMP Tue Dec 15 16:50:23 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux git rev-parse HEAD acc7161320038ee6377d589890526cd11912b4e8 ulimit -a core file size (blocks, -c) 0 da...
While stress testing TestStackBarrierProfiling at `54bd5a7` on master, I got a segfault in `sigtrampgo` in signal_linux.go because g != nil, but g.m == nil. I've saved the binary and core file. Here is some preliminary digging through the core: Core was generated by `./pprof.test -test.run=TestStackBa...
1
Hi @mwaskom , I raised an issue regarding importing seaborn error #1200 while trying to run the flask application in IIS server. However since I couldn't provide much information at that time you couldn't help me. Sorry for late reply. But I tried to log the traceback error caused due to importing seaborn. Result...
I'm fairly certain that I found a bug; though it could be user error on my part. If this is a known issue, please feel free to close :) Minimal Code: import numpy as np import seaborn as sns import matplotlib.pyplot as plt import pandas as pd # technically not necessary, but looks...
0
The labels-badges. less file uses the nested ampersand & operator to create extra classes by appending "-important", "-warning" etc. to the names ".label" and ".badge". This generates some weird CSS if you use .label or .badge as a mixin on something that ends with a tag rather than a class e.g. ".text-with-labels ...
Simply browse the docs page in IE Tester (http://my- debugbar.com/wiki/IETester/HomePage): http://twitter.github.com/bootstrap/javascript.html#tooltips None of the tooltip examples work.
0
I am working on the IBM POWER9 Series cluster. When compute the fft with torch. I have to transfer it to GPU and then transfer back to CPU. It's real bad experience espcially when realted code called on Dataloader. Then I have to disable the multi-worker to prevent the error. x = torch.randn(10,10,2) ...
## 🐛 Bug `fft: ATen not compiled with MKL support` RuntimeError thrown when trying to compute Spectrogram on Jetson Nano that uses ARM64 processor. ## To Reproduce Code sample: import torchaudio waveform, sample_rate = torchaudio.load('test.wav') spectrogram = torchaudio.transforms.Spe...
1
Inlined functions do not show up in backtraces. It would be interesting to add support for inlined functions in backtraces so that inlining of non-leaf functions does not break behaviour.
by **consalus** : On darwin amd64 at b7b92d1bdcf4+ tip: "test.bash" in misc/cgo/stdio fails with the following output: CGOPKGPATH= cgo -- align.go file.go test.go test1.go 6g -o _go_.6 align.cgo1.go file.cgo1.go test.cgo1.go test1.cgo1.go _cgo_gotypes.go 6c -FVw -I"/Users/u...
0
### Bug report **Bug summary** The marker edges are not painted nicely on the edge of the marker. **Code for reproduction** import matplotlib.pyplot as plt x = [42,43,44] y=[42,43,44] plt.scatter(x,y,alpha=0.7,sizes=[500], linewidths=[15], marker='s') plt.savefig('sample.pdf') **Ac...
### Bug report **Bug summary** Marker edge overlaps with marker and the edge appears to be double the width specified. This becomes obvious when you use alpha transparency and a very larger point marker with a large edge width or in the case where I noticed it a small figure (about 2 inches wide) with the default r...
1
# 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...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussions forum 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
Is this a request for help? (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.): No ## What keywords did you search in Kubernetes issues before filing this one? (If you have found any duplicates, you should instead reply there.): kube...
Possibly a duplicate of an earlier issue. I can't delete pods and I have to keep re-trying `kubectl delete` which often fails. GCE. satnam@asia-east1-b:~/gocode/src/github.com/GoogleCloudPlatform/kubernetes/test/soak/serve_hostnames$ kubectl delete pods --all --namespace=serve-hostnames-3506 pods/s...
0
Bug. If I put several input type="radio" with same name (as in jsfiddle example below) onChange handler triggered only once for individual input when mouse click on input happen. <input type="radio" name="some" onChange={...} /> <input type="radio" name="some" onChange={...} /> ... Example: h...
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** In React 15.6.1, this behaviour is changed; In 15.5.4, it fires the change event reliably. 15.6.1 - https://codesandbox.io/embed/VPA42ZnRo 15.5.4 - https://codesandbox.io/embed/JZ0mnE5oy You'll need to have the c...
1
# Description of the new feature/enhancement If some link is shown in the terminal, it would be nice to allow open it whether clicking over it. # Proposed technical implementation details (optional) Maybe `ctrl+left mouse key` as default combination could produce a similar behaviour like VSCode integrated terminal...
# Environment Windows build number: Microsoft Windows [Version 10.0.18362.476] Windows Terminal version (if applicable): Windows Terminal (Preview) Version: 0.5.2762.0 # Steps to reproduce open multiple tabs in terminal. The switch tab between them # Expected behavior I can see w...
0
I build and install Atom on my Gentoo. But when I open any file I see chrome console that contains `Uncaught Error: spawn ENOENT`. ![snapshot2](https://cloud.githubusercontent.com/assets/6450725/3790792/536f7a7a-1b1a-11e4-9aed-965a27369d3f.png)
I'm getting an error when ever lint tries to run on my *.ts files: activate linter-csslint init.coffee:8 activate linter-jscs init.coffee:9 activate linter-jshint init.coffee:8 activate linter-scss-lint init.coffee:7 Window load time: 1394ms /Applications/Atom.app/Contents/Resources/app...
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 6.0.11...
### Issue Details * **Electron Version:** v5.0.2 * **Operating System:** Windows 10 ### Expected Behavior On app ready start nodejs worker which consoles string. ### Actual Behavior App crash immediately after run ### To Reproduce * git clone https://github.com/BorysTyminski/electron-issue.git * c...
1
I'm using Atom 0.196.0 on Windows, when deleting a folder and this folder is open at atom folder explorer (enpanded on left bar) EPERM is thrown. Expected Behavior: 1. Atom shouldn't lock the folder,allowing to delete it from another running program 2. After the folder is deleted, atom must reload the file ...
Instead of vaguely explaining, here are the steps for reproducing the bug: 1. If you have a Yeoman-created project folder i.e. `generator-webapp` created project, run `grunt serve`. It'll create a .tmp file, and I'll assume you haven't had one at first. 2. When everything goes well expand the folder .tmp in Atom...
1
### Version 2.6.11 ### Reproduction link https://codepen.io/davegould41/pen/qBRqyRo?editors=101 ### Steps to reproduce * Create an input element with event modifier `v-model.number="num"` * try typing .01 * notice it resets the value to 1 * (inputting 0.01 works though) ### What is expected? If the use...
### Version 2.5.8 ### Reproduction link https://jsfiddle.net/50wL7mdz/79189/ ### Steps to reproduce Included in fiddle ### What is expected? Input type='number' should not clear values, accept stings formatted in different locales. v-model.number should not return string. ### What is actually happening? Inpu...
1
I am getting a compiler failure on the latest rust under linux. The problem seems to be the combination of cross-crate, pub use and an empty struct. task 'rustc' failed at 'expected bare rust fn or an intrinsic', /home/rustbuild/src/rust-buildbot/slave/nightly-linux/build/src/librustc/middle/trans/base...
// foo.rs #[crate_type = "lib"]; pub use foo::{T, foo}; mod foo { pub struct T; pub fn foo(x: T) { } } fn bar(x: T) { } // bar.rs extern crate foo; fn main() { let x = foo::T; foo::foo(x); } ...
1
I built a project using (Merge, merge) layer once, and use share layer in another. The problem I can't find any documentation that explains how merge or share layer works like convolution or max-pooling layers. I will be grateful if anyone can direct me or suggest some paper to me ???
* Check that you are up-to-date with the master branch of Keras. You can update with: pip install git+git://github.com/fchollet/keras.git --upgrade --no-deps * If running on TensorFlow, check that you are up-to-date with the latest version. The installation instructions can be found here. * Provide a link t...
0
Code: interface Foo { } interface Bar implements Foo { } Expected (from old compiler): > (4,15): Interface declaration cannot have 'implements' clause. Actual (current): > (4,15): '{' expected. > (4,26): ';' expected. > (4,30): ';' expected.
Now with the dedicated `Path` type (#5462), we should be able to minimize the number of normalization in tsserver by changing all the file name strings to the `Path` type. We also have many duplicated file name normalization in `program.ts` and other places.
0
**UPDATED DESCRIPTION:** We now allow the original problem, but some corner cases are still unhandled. See comments below. **ORIGINAL DESCRIPTION:** Where clauses right now require predicates to contain type parameters, as in: trait Foo { fn foo(&self); } struct Bar<T> { ...
Today’s rust-nightly-x86_64-unknown-linux-gnu.tar.gz is 125MiB in size. I did a `make dist-tar-bins` which output ~~the same~~ tarball, but only 88MiB in size. ~~This is 70% of whatever we publish to s3.~~ I took liberty to also test: * ~~xz (the default level, -6) → 69MiB (55% original);~~ * ~~xz -9 → 59MiB (4...
0
Here's the error Error: Plugin 0 specified in "/home/ubuntu/grok/source/node_modules/next/babel.js" provided an invalid property of "default" (While processing preset: "/home/ubuntu/grok/source/node_modules/next/babel.js") at Plugin.init (/home/ubuntu/grok/source/node_modules/babel-register/nod...
I just upgraded to `next@6.0.0`, I use a custom server, when I try to `run dev`, I get an error. npm run dev > frontend-next@1.0.0 dev /Users/foo/gitlab/next-project/backend > babel-node ./src/server.js /Users/foo/gitlab/next-project/backend/node_modules/babel-core/lib/transformat...
1
Right now it's "firebase_storage" instead of "plugins.flutter.io/firebase_storage" I think we should also rename `FirebaseStorage._channel` to `FirebaseStorage.channel` and mark it `@visibleForTesting` so it can only be used in tests, like we do for firebase_auth. Then we wouldn't need to duplicate the channel name ...
I happened to have a file called `BUILD` in my directory. I think we already had this reported but I didn't see one when searching. FYI @danrubel I doubt this will be a common error. flutter run Launching loader on iPhone SE... Exception from flutter run: FileSystemException: Creation fail...
0
Windows 7, atom already opened with the window in the background. When I open a file via the explorer, the symbol in the task bar is blinking but atom doesn't come to the front. Is this a wanted behavior? (I couldn't find any existing issue. If this is the case, please let me know)
When Atom is restored but hidden behind several windows. "Open with Atom" right click function should send it to the front.
1
##### Description of the problem InstancedMesh instancing breaks if the supplied material has been already been used. If a .clone() of the material is passed into the InstancedMesh, it works. Repro showing the issue... remove the .clone() operation to see instancing break. https://jsfiddle.net/4u1aox7j/ ##### Th...
##### Description of the problem I'm having a problem where the InstancedMesh method `setMatrixAt` seems to fail (the matrix positions doesn't change visually) whenever I add another object with the same material object (not a clone) in the scene. No log/warning/errors are emitted. The following briefly illustrates...
1
In continuing to try to get astropy's `Quantity` to behave with `__numpy_ufunc__`, I found what probably is another bug. One of our tests checks that an integer can be used as an `__index__` to, e.g., multiply a list, as in: import numpy as np np.array([2]) * ['a', 'b'] (which yields `['a', '...
There is a complex set of questions around how to handle method resolution in the presence of `__numpy_ufunc__`. Currently in master is an extremely complicated set of rules that isn't documented and that I don't actually understand (see #5748 for the latest set of changes to this), so it's kinda hard to know whether...
1
**Glide Version** : glide_version = '4.7.1' **Integration libraries** : retrofit_version = '2.4.0' rxjava = '2.2.0' rxandroid = '2.0.2' **Device/Android Version** : all **Issue details / Repro steps / Use case background** : **Glide load line /`GlideModule` (if any) / list Adapter code (if any)**: ...
Glide 4.7 : public GifDrawable(Context context, GifDecoder gifDecoder, BitmapPool bitmapPool, Transformation frameTransformation, int targetFrameWidth, int targetFrameHeight, Bitmap firstFrame) { this(context, gifDecoder, frameTransformation, targetFrameWidth, targetFrameHeight, firstFrame); } public GifDrawab...
0
After the update, the new confirm, alert and prompt do not work properly. Platform: Windows 10 x 86_64 I was able to reproduce the issue in another Windows machine. let name = prompt("What's your name?"); let sure = confirm(`Is ${name} your real name?`); if (sure) { alert("OK, you are...
to reproduce: Linux (WSL) | Windows ![image](https://user- images.githubusercontent.com/28438021/97340972-761c3880-18aa-11eb-89d5-1a51d6ba1226.png) isn't limited to repl ![image](https://user- images.githubusercontent.com/28438021/97341736-77019a00-18ab-11eb-980d-5ca55ae1b496.png)
1
[Enter steps to reproduce below:] 1. Open legacy rails(1.2.3) project from ubuntu terminal with command "atom ." 2. ... **Atom Version** : 0.165.0 **System** : linux 3.13.0-43-generic **Thrown From** : Atom Core ### Stack Trace Uncaught Error: spawn /usr/share/atom/atom (deleted) ENOENT At ...
**TEMPORARY WORKAROUND** : `ln -s /usr/share/atom/atom "/usr/share/atom/atom (deleted)"` Uncaught Error: spawn /opt/atom/atom (deleted) ENOENT **Atom Version** : 0.152.0 **System** : linux 3.13.0-40-generic **Thrown From** : Atom Core ### Steps To Reproduce 1. ... 2. ... ### Stack Trace A...
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 anymore and we c...
## Bug Report i have raise this bug for twice, but the project owner close it twice. But it's not a duplicated and nonsensical issue, it's really a bug, please pay attention to the description as below. select * from t_order where create_time between '2018-01-01 00:00:00' and '2018-01-02 00:00:00' ...
0
These volumes don't support stats metrics, and yet the errors got printed out periodically for each pod. I0614 17:01:54.337456 30118 volume_stat_caculator.go:103] Failed to calculate volume metrics for pod kube-proxy-e2e-test-yjhong-minion-group-21rr_kube-system(b7c4ad73450e2cf13c9cb849231754c2) volu...
Many volumes do not support GetMetrics and return an error when called. Because this returns an error, we cannot differentiate from an actual error condition when a volume that does support metrics fails to gather metrics. The latter should be logged and investigated, whereas the former should be silently ignored.
1
Trying to create an FTP Extension but I need a way to be able to view the contents on the FTP server. A side bar panel would be great or at least the have access to the folder panel to create a virtual tree for the user to use for navigation.
One great feature that could be added to VsCode is the possibility to add more "tabs" in the letf area like the Git and the Debug one. This way one developer can add other things like Sql server browser, github issues and more ![vscode](https://cloud.githubusercontent.com/assets/1300681/11424016/cb99b700-9449-11e5...
1
rustdoc panic in certain combinations of inline code blocks, list items and headlines : this works : //! - `test` this works too : //! # Overview //! - `test` But this fails : //! # Overview //! //! - ` test` with the following er...
When I run `make check` today (at commit `e72c917`), I hit the following assertion failure with 100% reproducibility. This is a recent regression because I ran `make check` successfully yesterday (perhaps at commit bffe308). test private::at_exit::test_at_exit ... Assertion failed: (runner == at_exit_runner && "ther...
0
This has lost so much work in the las few days. I can't find a pattern: it happens in different file types and there doesn't appear to be any trigger, other than Undo. I hit (Cmd-Z, with the keyboard), and occasionally and randomly it takes the file back to some previous state, but it's clearly NOT the last saved st...
The default keyboard mapping for `editor:checkout-head-revision` is `Cmd+Alt+Z` or `Ctrl+Alt+Z` on Windows/Linux. This is pretty easy to fat- finger and there is no confirmation dialog. Also, the Redo command doesn't restore what was lost ... but Undo does ... which is confusing when this command is accidentally trig...
1
### System info * Playwright Version: [v1.36.1] * Operating System: [Linux 6.4.2-3-MANJARO] * Browser: [All] * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. **Link to the GitHub repository with the repro** [https://github.com/deepanchal/playwright...
Note: this is ultimately a problem between chair and keyboard but I'm filing an issue as it might be worth considering to make Playwright more robust against the problem described here. If not, maybe it'll at least help someone else who runs into this in the future. **Context:** * Playwright Version: 1.15.0 * O...
0
julia> immutable Words32 lo::UInt32 hi::UInt32 end julia> isbits(Words32) true julia> a=UInt64(0x123456789abcdef0) 0x123456789abcdef0 julia> b=reinterpret(Words32,a) ERROR: reinterpret: expected bits type as first argument in reinterpret a...
I was wondering, why this works: reinterpret(Float32, Int32(0)) @assert isbits(ImmutableType1) && isbits(ImmutableType2) && (sizeof(ImmutableType1) == sizeof(ImmutableType2)) reinterpret(ImmutableType1, Array(ImmutableType2, 42)) and this does not: reinterpret(ImmutableType1, I...
1
## 📝 Provide a description of the new feature ## Every now and then, I want to use normal half-width Aero snap for one of my windows when the rest of them are in FancyZones zones and _I know_ I can just drag as usual, but because I use Fancy Zones so much, I find I've gone and pressed the Shift modifier by accident...
Make it so that Win+Arrow will also cycle through Aero Snap locations as part of the rotation.
1
[Environment] Windows 10 1903 18362.356 1.In general, when I type 'cmd' in the address bar of a folder, cmd will switch the directory location to the location of the folder.However, if the open is 'wt', it is still the same, he still opens C:\Users\XXXX,even if I did not write the parameter ”startingDirectory“. 2...
This bug-tracker is monitored by Windows Console development team and other technical types. **We like detail!** If you have a feature request, please post to the UserVoice. > **Important: When reporting BSODs or security issues, DO NOT attach memory > dumps, logs, or traces to Github issues**. Instead, send dumps/...
0
I only have this error in windows. In linux it works fine. When I type the character in settings view it does work. In the editor if I do "alt gr + [" it doesn't print the character. Instead it prints nothing at all.
Original issue: atom/atom#1625 * * * Use https://atom.io/packages/keyboard-localization until this issue gets fixed (should be in the Blink upstream).
1
This script: #!/bin/bash set -e while true; do date rm -rf $GOPATH/pkg/linux_amd64 GOMAXPROCS=1 go install -x -work launchpad.net/juju-core/cmd/... done Breaks down after a couple of tries with errors like...
by **webmaster@webmaster.ms** : I use GC 1.0.1 from http://code.google.com/p/go/downloads/list Windows 2008 Server Testcase: === package main import ( "fmt" "runtime" ) func main() { for i:=0; i<10000; i++ { buf := make([]byte, 0...
0
When I read the documentation of the rust standard library from google, I don't know to which version of rust it refers. It could be great to have a footer with the version and a text which appear when we put our cursor on the rust logo which display the version of the library this doc refer to. That mean improving ...
I recently was using a library whose online documentation was out of date. One of the method signatures had changed and that wasn't reflected in the documentation. I checked the source code of the project to confirm that the signature had changed, but it also would have been nice to see on the documentation page that...
1
Per discussion at https://groups.google.com/forum/#!topic/ansible- project/A79N7LRm-9I, when I add systems to a group using group_by, they don't get variables for that group which are defined in group_vars. I've given an example that shows the issue in current devel (`c41a23a`) in a gist at https://gist.github.com/m...
##### ISSUE TYPE Bug Report ##### COMPONENT NAME inventory files ##### ANSIBLE VERSION ansible 2.4.1.0 config file = /Users/craig.bryan/.ansible.cfg configured module search path = [u'/Users/craig.bryan/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible pyth...
0
This issue is an exact analog of numpy 3733, because the code between these this function and `np.percentile` is mostly duplicated. `scoreatpercentile` claims to function with the `per` argument (the percentiles to calculate) being either a scalar or an array_like. However, the initial lines of code do: ...
The discussion started in #4864 . I propose that the usage of `polish` in the `_differentialevolution.py` must be deprecated. The polish functionality simply repeats the functionality of other `scipy.optimize` module. The library functions must be simple, universal and not specialised and overfeatured. The polish can...
0
support/6be6d1eaa44911e38bd5c0467822a465?page=1 ![screen shot 2014-03-06 at 4 21 49 pm](https://camo.githubusercontent.com/083b5472896f2ccf565018dcb5fdeacf09ee817001e0d49eb7382c48c4ff401c/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313437362f323335323632332f39346132616131652d613538652d3131653...
First of all, can't find any references about this thing around the issue tracker, so sorry if this is a duplicate. Windows 8.1 here, title says it all. When I Alt+Tab on something else and then back to the editor the cursor disappears and forgets the place it was at. Can't immediately type after getting back to the...
0
This is an existing issue that has been fixed, but it has returned in 3.1.1. A tooltip is not removed after parent element has been removed either in normal or modal window. I am preparing a demo.
I use Tooltip on buttons initiating AJAX loads, which remove the content including the tooltip parent element. In that case the tooltip won't hide. Steps to reproduce: 1. Mouseover the button with tooltip 2. Tooltip is shown 3. Click the button (while the tooltip is shown) 4. The element where the tooltip p...
1
##### System information (version) OpenCV => 4.3 Operating system : windows 10 64 bit Compiler : Mingw-64 v8.1.0 C:\opencv\build>gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=C:/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/../libexec/gcc/x86_64-w64-mingw32...
##### System information (version) * OpenCV => 4.3.0 * Operating System / Platform => Windows 64-bit * Compiler => mingw-w64 v7.3.0 ##### Detailed description Our current build script fails on our Appveyor CI build when we update to OpenCV 4.3.0. Not sure about the origin of this issue. Thanks for any help. ...
1
I got this code, a simplified form of what I saw in the Guide (section Testing): fn three_times_four() -> int { 3 * 4 } #[test] fn test_1() { assert_eq!(12, three_times_four()); } #[cfg(test)] mod test { use super::three_times_four; #[test] ...
## _Believed_ current test case (pnkfelix says: "if you are looking at this bug, please try to keep this test up-to-date ... potentially by checking the newest linked dupes in the comment feed below.") // Very // sensitive pub struct BytePos(pub u32); // to particular /...
1
<<Please describe the issue in detail here, and for bug reports fill in the fields below.>> I want to use interpolate.splprep but it returns SystemError ### Reproducing code example: from scipy import interpolate A = [-50.49072266, -50.49072266, -54.49072266, -54.49072266] tck, t = interpola...
_Original tickethttp://projects.scipy.org/scipy/ticket/978 on 2009-07-28 by @josef-pkt, assigned to unknown._ floating point errors in ceil is not corrected in nbinom._ppf PierreGM >>> from scipy.stats.distributions import nbinom >>> nbinom(.3,.15).ppf(nbinom(.3,.15).cdf(np.arange(20))) ar...
0
Open Gallery, go into Expansion Panels, tap into Trip name, then tap into the Trip name text field. Notice how the cursor is at the right of the string, but the cursor handle is at the left of the string. (The expectation is that the cursor handle is under the cursor.)
## Steps to Reproduce When I type something with the Android keyboard, the keyboard hangs on the key press animation. Code snippet: // newRecipient is a field inside a State that is connected to a StatefulWidget // Text Changed Handler void _handleInputChange(InputValue input) { ...
1
### Reproducing code example: python -c 'import numpy as np; np.test()' ### Error message: ======================================================= FAILURES =======================================================__________________________________________ TestLinspace.test_denormal_number...
I am on hackerrank, I installed anaconda before and numpy works fine on my spyder IDE but not on hackerrank. My os is windows 10 and I don't have multiple versions of python installed. ### Reproducing code example: ` import numpy` import numpy as np << your code here >> ### Error message: ### N...
0
Babel 6.1.1 (babel-core 6.0.20) class Foo { bar() { let bar = 2 console.log(bar) } } ./node_modules/.bin/babel test.js TypeError: test.js: Duplicate declaration "bar" 2 | 3 | bar() { > 4 | let bar = 2 ...
Recently, LICENSE files were added to packages/* for Babel 7 and Babel 6 (I think). However, packages/babel-runtime appears to be missing its LICENSE file. Can a LICENSE file please be added to packages/babel-runtime, like with the other packages?
0
# Environment Windows 10, PS 6, Windows Terminal. Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 PSVersion 5.1.18362.145 BuildVersion 10.0.18362.145 Windows Terminal version 0.6.2951.0 In addition to trying the ootb PowerShell experience, I've added in a profile matching my SharePoint Online Manageme...
When copying and pasting a multiline command to the terminal. I get weird extra lines and terminal errors that command was not valid. In particular this is related to PowerShell (5 and 6 core) Even function definitions that are complex also show errors Here is a sample response from Powershell when pasting the fun...
0
Lesson: http://www.freecodecamp.com/challenges/waypoint-mobile-responsive- images 1. Instructions are the wrong way around, should assign the class after instructing you to make the new `img` tag 2. Switches from `https://` to `http://` requirement for second `img` 3. If you add `img-responsive` to the existin...
Challenge http://www.freecodecamp.org/challenges/waypoint-mobile-responsive- images has an issue. Please describe how to reproduce it, and include links to screen shots if possible. The following will pass the test: <img class="img-responsive" src="http://bit.ly/fcc-kittens2" Note: it's missing a `>`...
1
Debian systems generally don't install sudo, and none of our production servers have it installed. Instead, when we need to execute commands as another user, we use `su username -c`. Could Ansible be modified to support different user-switching techniques than sudo? `su -c` can't be made to accept the same options a...
file.set_context_if_different() contains this code: for i in range(len(context)): if context[i] is not None and context[i] != cur_context[i]: On my box `context` looks like this: [None, None, None, u's0'] And `cur_context` looks like this: [u'user_u', u...
0
Hi, I've found a small big in the email validation that is causing me some grief. Using a compound email validator, the following email address is considered as valid: foo.@domain.com However when trying to send an email to this email address using swiftmailer, an exception is thrown with the following message: ...
Q | A ---|--- Bug report? | yes Feature request? | no BC Break report? | no RFC? | no Symfony version | v4.0.4 (probably older) I have something along the lines of: $io = new SymfonyStyle($input, $output); $io->comment( sprintf( 'Loading the configuration fil...
0
With Python 2.7 (from homebrew) on OSX 10.7.5, "sudo pip install pandas" gives: Downloading/unpacking pandas Running setup.py egg_info for package pandas warning: no files found matching 'TODO.rst' warning: no files found matching 'setupegg.py' no previously-included directories found matchi...
#### Code Sample, a copy-pastable example if possible # A value is trying to be set on a copy of a slice from a DataFrame. #### Problem description It is better to add some hints beside this error, or this information will coufuse many people. Suggestion: you can add a sentence like "Maybe you should...
0
# Toggle console with a Hotkey When I'm working I use a lot of windows and I think it would be a good idea to have a HotKey to toggle the console (minimize/on top).
# Environment Version: 1903 OS BUILD: 18362.10006 (Microsoft Windows [Version 10.0.18362.10006]) Windows Terminal version (if applicable): Any other software? # Steps to reproduce Build code from 42c1e58966b50c72039808b09b663b74180519ce and the build completes, but when I start the app, I...
0
Cannot style the expandalble Icon button version 0.18.1 by npm * I have searched the issues of this repository and believe that this is not a duplicate. This is my code class TaskCard extends React.Component { constructor(props){ super(props); } render(){ const {da...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When clicking on the TableSortLabel I would expect to see the aria-label change value to be "ascending" or "descending" for that element it nested inside of. It would look something like this example her...
0
When you use "TAB" and you select a checkbox it looks like in picture1. If you set programmatically the focus of the checkbox it does not have the effect. If you set the checkbox programmatically it doesn`t have the effect and looks like in picture2. ![checkbox_materialui](https://user- images.githubusercontent.com/...
In the docs, the `<Slide>` component specifies that `<Transition>` properties are also available. Transition allows for a function or a React Element for the children prop, but the Slide component is expecting only an element. If you do use a function, it works as defined in the Transition docs, but supplies the ...
0
![screen shot 2016-01-19 at 20 07 13](https://cloud.githubusercontent.com/assets/16451955/12433578/c2c6a8ce- bef9-11e5-89ae-ec2c3ac0b290.png)
After completing a challenge I press `CTRL` \+ `Enter` or `Cmd` \+ `Enter`, this submits my challenge. Doing the same once again should take me to the next challenge as per the behaviour of the current site.
0
I'm very sorry about the quality of this issue report, I've yet to be able to resolve it to a smaller reproduction. The background is we have an API server which instruments types and exposes their methods over an RPC interface. This stack trace is from the sever side, attempting to dispatch to `agent.(*AgentAPIV1)....
What steps will reproduce the problem? I'm starting a gotest of some code that uses lots of goroutines, but the process very early (before even running any useful code). I find this issue reproduces more readily on a specific machine x86_64, 8 cores, Fedora 14, 2.6.35.11-83.fc14...
0
ESModules without dynamic import is incomplete. We cannot do this: if( whenWeNeed() ) import 'some_thing'; nor this: const need= whatWeNeed(); import need; Only dynamic import can make ESM as strong as CommonJS or AMD. Maybe there are some security reasons. But local...
I know this is already on the radar, but wanted to create a distinct issue. (This is required for a test runner.)
1
Hi, Tooltip placement In version 2.3.0 only place in top of elements By all of placement (top-right-bottom-left) !!! http://twitter.github.com/bootstrap/javascript.html#tooltips
congrats on releasing 2.3.0! I was checking out some of the docs and saw that tooltips data-placement is not working correctly. I think its because of the one pull request that makes options set in javascript override the options that were set in the html but I'm not sure..
1
# Bug report **What is the current behavior?** After upgrade to Webpack@5, in development mode with HMR, module resolution fails for indirect dependencies via webpack-bundled libraries. **If the current behavior is a bug, please provide the steps to reproduce.** Here is the repo with minimal reproduction of the...
# Bug report **What is the current behavior?** `__webpack_require__` goes bang attempting to import a library local to our project (i.e. a sibling package in the same lerna monorepo). We did not experience this problem in webpack 4.25.1, but we do experience the problem in webpack 5.0.0-beta.23. Depending on how ...
1
System Information: * OpenCV => 4.2 * Operating System / Platform => Windows 7/ 32 Bit * Compiler => Visual Studio 2015 ##### Detailed description I am currently editing cap_ffmpeg_impl.hpp in modules/videoio/src and compiling the binaries. As FFMPEG is a 3rd party library it doesn't register changes in the ...
##### System information (version) * OpenCV => 3.1.0 * Operating System / Platform => Windows 7 64 Bit * Compiler => Visual Studio 2013 ##### Detailed description ##### Steps to reproduce
1
The comments imply, to me, that specifying --cert-dir will cause the apiserver to look in --cert-dir for some appopriately named certs and will use those. This is in lieu of the user specifying --tls-cert-file and --tls-private-key manually. Two problems: one, the flag descriptions don't tell the user what the cert/...
It seems to actually overwrite existing ones
1
* 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.6.2 * Operating System version:Windows10 * Java version: 1.8 ### Steps to reproduce this issue...
* 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.6-SNAPSHOT ### Steps to reproduce this issue Looks like there are some potential code issues in...
0
### Description I got following error [2021-11-09, 08:25:30 UTC] {base.py:70} INFO - Using connection to: id: rdb_conn_id. Host: rdb, Port: 5432, Schema: configuration, Login: user, Password: ***, extra: {'sslmode': 'allow', 'client_encoding': 'utf8'} [2021-11-09, 08:25:30 UTC] {taskinstance.py:17...
### Apache Airflow Provider(s) cncf-kubernetes ### Versions of Apache Airflow Providers apache-airflow-providers-cncf-kubernetes==4.4.0, but it appears in the most recent code I have seen. ### Apache Airflow version apache-airflow==2.4.3 ### Operating System Ubuntu ### Deployment Official Apache Airflow Helm...
0
Hi there, Challenge http://freecodecamp.com/challenges/waypoint-target-html-elements- with-selectors-using-jquery has an issue. Please describe how to reproduce it, and include links to screenshots if possible. During "Run code" my browser (Mozilla 39.0) hung and asked to wait or stop running scenario. Meanwhile m...
![](https://camo.githubusercontent.com/c90da90b9d5a16c77e11b06a3d0f66d9d0b99260fa20349ac632cdc3d651a1e6/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f41725f63317a466f55685650584a41352d49754b766d764e5a376c65322d744b565030422f696d6167652e706e67)
0
This feature was requested before #4988 but the bug was closed as WAI. I believe having popcnt part of standard library would benefit greatly many libraries. For example there are two popcnt implementation in the golang tools: https://github.com/golang/go/blob/dev.ssa/src/cmd/internal/ssa/regalloc.go#L39 https:/...
by **fuzxxl** : The Popcount (or hammington weight) is a function that determines the number of one-bits in an integer. This function is useful for cryptographic applications and certain data structures. As it is possible to implement this function efficiently with special instructions (VCN...
1
Type the entire first line, move to the second line, the text bar starts in front of the first word on the second line and caret is placed at the beginning of the first word. * [ x] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Caret is placed after ...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When I use a Select Field, it should "feel" responsive and fast. Currently, before the menu with all select options pops up, we wait until the mouseclick is over. Instead, at least on non-touch devic...
0
# Environment Windows build number: 10.0.18362.0 Windows Terminal version: 0.5.2762.0 # Steps to reproduce Just keep typing. # Expected behavior Keep the history. # Actual behavior Lost the history. See the GIF file: ![terminal](https://user- images.githubusercontent.com/1520283/666...
## Environment data PS version: 5.1.17712.1000 PSReadline version: 2.0.0-beta2 os: 10.0.17712.1000 (WinBuild.160101.0800) PS file version: 10.0.17712.1000 (WinBuild.160101.0800) ## Steps to reproduce or exception report Make sure that the prompt is at the bottom of the screen, then press ...
1
This test is failing often on the gci-serial suite both on master and release-1.4. Test Grid link GCI is the default in v1.4 and so it is imperative to at-least triage the flakes soon. cc @kubernetes/autoscaling
Forked from #27194 @ichekrygin reported a weird cpu/usage_rate issue from heapster I am running on v1.3.5 and this still seems to be an issue curl http://localhost:8001/api/v1/proxy/namespaces/kube-system/services/heapster/api/v1/model/namespaces/production/pods/rain-377063289-tz0tq/metrics/cpu/usage...
1
## "type id is VariableTensorId" runtime error for some mobile models guard torch::jit::load() with AutoGradMode & AutoNonVariableTypeMode Summary: Since PR #25597 landed some models started failing to run with mobile build with the following error: type id is VariableTensorId terminate calle...
## 🐛 Bug In pytorch 1.3, when doing inference with resnet34 on CPU with variable input shapes, much more memory is used compared to pytorch 1.1 (both CPU-only builds on one core): 6 GB for pytorch 1.3 vs. ~0.5 GB for pytorch 1.1 ## To Reproduce Steps to reproduce the behavior: Run the following script https://gi...
0
The close button in the feedback dialog is wrongly positioned (try highlighting the dialog by clicking, then hovering the button).
* VSCode Version: 0.10.11 * OS Version: Windows 10 Steps to Reproduce: 1. Create a new JavaScript snippet, for example: { "console.log": { "prefix": "cl", "body": [ "console.log('${1:arg}', ${1:arg});" ] } } 2. If you cr...
0
I had some error related to `libexpat-1` so as mentioned in the https://github.com/JuliaLang/julia/blob/master/README.windows.md file I ran `make win-extras` and copied the files into `usr/bin` (overwriting existing files). After that Julia crashes at startup, without error message beside the default windows popup. ...
It happened twice. After running Pkg.update() when I launch julia it crashes immediately. On the second time I removed .julia/v0.4, rebuilt julia with make cleanall and reinstalled Pkg with Pkg.add("ImageView") and again the same thing. Launching a new julia session crashes right away.
1
Challenge Waypoint: Add Borders Around your Elements http://www.freecodecamp.com/challenges/waypoint-add-borders-around-your- elements has an issue. User Agent is: code>Mozilla/5.0 Windows NT 6.3; WOW64; rv:41.0 Gecko/20100101 Firefox/41.0 /code>. Please describe how to reproduce this issue, and include links to scre...
Challenge http://freecodecamp.com/challenges/waypoint-add-borders-around-your- elements has an issue. "Give your image a border width of 10px doesn't work. ![](https://camo.githubusercontent.com/589755355db80b2b5bf6cdc491c5d610e532d09c7608d3af7affbc40aee974ca/687474703a2f2f692e696d6775722e636f6d2f54635a366776372e706...
1
_From@mlakmal on March 8, 2016 0:47_ We are extensively using javascript auto format code feature in vs code to reduce js lint errors. Ex: spaces after function and function name etc ... after updating to v0.10.10 above formatting is not working any more and it reset all the formatted functions without spaces. C...
_From@isidorn on January 26, 2016 15:50_ 1. js workspace, have salsa enabled 2. "editor.formatOnType": true 3. The format on type is too aggrressive and does not respect current indentiation. This is especially noticable when trying to create object literals 4. if salse is disabled this works nicely _Copie...
1
* VSCode Version: 1.2 * OS Version: win 7 Following is the link- https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync When i try to install extension via VS Code Quick Open (Ctrl+P) and paste `ext install code-settings-sync` and hit enter. My extension doesnt come at first and selecte...
From @Tyriar, related to #7105 > I think this should be dealt with sooner rather than later, right now the > installation advice given on the marketplace is wrong because of this. > Consider > https://marketplace.visualstudio.com/items?itemName=AdamCaviness.theme- > monokai-dark-soda > > > ![image](https://cloud.git...
1
by **smith.malcolm.james** : Calling syscall with float32 arguments passes the values correctly to the dll. But the float32 return value is incorrect What steps will reproduce the problem? visual C++ 6.0 program: #include "stdafx.h" #include <stdio.h> extern "C" __de...
by **arnaud.lb** : What does 'go version' print? go version go1.3 darwin/amd64 What steps reproduce the problem? 1. go build -gcflags "-N -l" x.go # x.go attached 2. ./x 3. gdb -p <pid> 4. info goroutines What happened? (gdb) info goroutines ...
0