text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
I already have LLVM installed. I'd rather not download, configure, compile, and install a duplicate LLVM, wasting several hours. I realize that it's an incredible help to do this automatically for Julia users, but for those that already have LLVM version Whatever, could the Makefiles be modified to only install LLVM ...
Currently, you can only access global variables by a combination of `dlsym` and `dlopen`: `convert(Ptr{T}, dlsym(dlopen("libname"), "varname"))`. Not only is this ugly, but it will also make things difficult for future static compilation (where we would like to directly link any needed shared libraries with `ld`, rat...
0
I accidentally left the "Use Regex" option for "Find in Project" on and searched for a string that resulted in an invalid regular expression, and the resulting exception bubbled to the top of the stack: Uncaught SyntaxError: Invalid regular expression: /.run (DsEvent/: Unterminated group - results-mode...
When trying to create a new file or a new folder from the right-click menu, Atom crashes. The bug remains even when Atom is launched with `atom --safe`. ![crash](https://cloud.githubusercontent.com/assets/769237/5664252/dd385d78-9746-11e4-8d41-0151f5761e3a.jpg) OS: Windows 8.1 x64 Atom Version: 0.168.0
0
**Rick Herrick** opened **SPR-1439** and commented Our system is a mish-mash of various mailing systems, including sendmail, JavaMail, KanaMail, and some others. I'd like to be able to collect all of these different message types in a list and do a batch send. The problem is that the base MailSender.send() method t...
**Den Orlov** opened **SPR-5079** and commented #### Background I have integration tests that: 1. put some test data into database using Hibernate 2. wait some time, so DB stored procedures triggered by scheduler will process my data 3. retrieve from db some data and check its correctness, again using Hiber...
0
example-deno/file_usage.js example-deno/sort_worka.js
The most widely available global is `self` as it is in both workers and in the main window in browsers. It would be very useful to define this global for cross-platform support. As a further point it could even be worth having it replace `window` since `typeof window` is typically done for an `isBrowser` detection,...
1
8329381051 > #@ > > transformers/src/transformers/utils/hub.py > > Line 734 in fe861e5 > > | def push_to_hub( > ---|--- / ```python` #23655 [WlP] add transfer script
# 🌟 New model addition ## Model description Facebook AI is introducing, M2M-100 the first multilingual machine translation (MMT) model that translates between any pair of 100 languages without relying on English data. ## Open source status * the model implementation is available: (give details) https://git...
0
# Normalize string / No interpolation * Replace `interpolate1 = "" "${componentName0 == null ? "" : componentName0}" ""` with `interpolate1 = " " + stringify(componentName0) + " ";` NOTE: will require import of `stringify` method. I think `${}` creates extra unneeded checks, so simple string concat `+` should be b...
**I'm submitting a ...** [X] bug report **Current behavior** I have some routes like: const routes = [ { path: "", component: HomeComponent, pathMatch: "full" }, { path: "profile", component: ProfileComponent }, { path: "menu", component: MenuComponent, out...
0
Drag and drop .bat file to Windows PowerShell/CMD and start execution of script. This will make running of .bat scripts much more convenient. ![DropScript](https://user- images.githubusercontent.com/17230877/65967191-8375b200-e461-11e9-8f21-68acaef84b98.gif)
Hi Guys. I have an profile with ssh.exe which connects to one of my linux boxes. All works fine but i would like to adjust it a little bit. My problem is that when i connect to that linux box then tab title is automatically changed to 'OpenSSH SSH client". I would like to to keep it as i named it "My linux box". I...
0
## Bug Report **Current Behavior** Using webpack + preset-env with useBuiltIns: usage + corejs3 does not work on IE11 without additional configuration of webpack entries. The generated code currently fails with "Unhandled promise rejection TypeError: Target is not iterable" raised from core-js/internal/iterate.js...
## Bug Report **Current Behavior** Dynamic imports are not working in IE10. The following error is shown in the console: "Unhandled promise rejectionTypeError: Target is not iterable". @babel/preset-env is used with core-js@3. `.browserslistrc` contains `ie <= 10`. **Input Code** https://github.com/jorenvanhee/...
1
* [x ] I have searched the issues of this repository and believe that this is not a duplicate. ## Context I want to inline style Dialog's Backdrop and Paper (actually only Paper but same question can be posed for Backdrop). <Dialog open={this.state.open} ...
### Problem description When switching a LinearProgress's mode, the indeterminate mode is not indeterminate anymore but instead acts as determinate progress bar that is fully filled. ### Link to minimal working code that reproduces the issue https://www.webpackbin.com/bins/-KgQZpihdEJ0etZArvl9 This switches ...
0
Docker 1.12 is going to be relased in a week and it will contain feature "The option --dns and --net=host should not be mutually exclusive" (moby/moby#22408) Let's enable using this functionality in kubelet. For now in case of "hostNetwork: true" set all dns settings are ignored if any.
With 1.1, we allow pods to be created with hostNetwork = true. These pods should be allowed to use Cluster DNS, if the pod spec says so. We have already wired the kube-proxy to support traffic from the host machine to be directed to kube-services. We should similarly allow cluster dns names to be looked up by pods...
1
It works in class component but in the hooks the val function calling infinity times can any one have solution for this........... import React, { useState } from 'react' function Inhook(props) { const initialState = 0; const [records, setRecords] = useState([]); const [count, setCount] = useState(initialS...
Hello, I have an error regarding hooks in a lerna architecture project where we import a ux lib made of style component inside a react project. If component are host in the same app, error is not thrown. **Do you want to request a _feature_ or report a _bug_?** Report a bug **What is the current behavior?** A...
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: 3.7.6 * Operating System version: Mac os * Java version: java8 nacos1.1.4 ### Steps to reprodu...
* 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.5 * Operating System version: xxx * Java version: 1.8 dubbo 2.7.5+nacos 1.1.4启动应用会在nacos配置列表...
0
Hi! While installing `jaxlib` from sources on macos 11.2.2. by following docs the installation fails with `ld: 2 duplicate symbols` error that points to output in `bazel-out/`. The log below is taken from rerunning `python3 build/build.py` (fails with same error). Thank you for any tips what I can be missing! Follow...
### Description The difference operation between two `BCOO` sparse matrices implicitly removes zeros. The behaviour is different from the one observed for the addition. Consider the example below. import jax.experimental.sparse as jsp import jax.numpy as jnp a = jsp.BCOO((jnp.array([1.0])...
0
We have an Electron app which launches a new window containing a Flash application from the main window. We set `plugins` to `true` in the `BrowserWindow` options and away it goes. All good. However, the Flash app itself then launches another window containing a Flash component. The Flash component fails because it ...
If we initialize a browser window with `{ show: false }`, but the browser window runs JS code that opens a javascript window, then a new browser window will open, regardless of `{ show: false }` Here's an example: var app = require('app') var BrowserWindow = require('browser-window'); app...
1
When I plot a heatmap and want to show the given values on top of the cells, only the cell at the bottom/left of the heatmap gets annotated. import numpy as np import seaborn as sns import matplotlib.pyplot as plt m = np.array([[1, 2, 3], [4, 5, 6], [7, 8 ,9]]) sns.heatmap(m, annot=True...
In version 0.6.0, annotations do not show up on the heatmap (for me at least). Here is a minimal example to reproduce the problem: import numpy as np import seaborn import matplotlib.pyplot as plt data = np.random.random((5, 5)) seaborn.heatmap(data, annot=True) plt.savefig("te...
1
##### System information (version) * OpenCV => 4.1.0 * Operating System / Platform => Ubuntu 5.4.0-6ubuntu1~16.04.10 * Compiler => Java ##### Detailed description I use jdk1.8 and opencv410 to read webp picture,I can open and write webp format from file with no problem, but I can't decode from memory. The co...
Python 3.7.3 opencv-python 4.1.0.25 from pip install opencv-python I can open and write webp format from file with no problem, but I can't decode from memory. The code (at the end) returns: > imdecode_(''): can't read data: OpenCV(4.1.0) > /io/opencv/modules/imgcodecs/src/grfmt_webp.cpp:164: error: (-215:Asserti...
1
### Which version of ShardingSphere did you use? 5.3.0 ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? ShardingSphere-JDBC ### Expected behavior When I use DruidDatasource, shardingjdbc can be loaded successfully. ### Actual behavior Throw an Exception, Message is 'url not set'. ##...
## Bug Report ### Which version of ShardingSphere did you use? 5.1.1 ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? ShardingSphere-JDBC ### Expected behavior Execute a simple sql statement ### Actual behavior Throw a Exception org.springframework.beans.factory.BeanC...
1
### First Check * I added a very descriptive title to this issue. * 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. * I already read...
### First Check * I added a very descriptive title to this issue. * 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. * I already read...
1
Hi, I'm working on node.js with npm. I've written a TS library and I want to use it in another project by doing npm install. I'm not sure what will should be the contents in my npm package: should it be only .js, only .ts, or .js with additional declaration files (d.ts)? Furthermore if I'm using the third opti...
**TypeScript Version:** 1.8.0 **Code** interface Class<T> { new(): T; } declare function create1<T>(ctor: Class<T>): T; declare function create2<T, C extends Class<T>>(ctor: C): T; class A {} let a1 = create1(A); // a: A --> OK let a2 = create2(A); // a: {} --> S...
0
### Bug report **Bug summary** Histogram missing in Matplotlib 2.1.0. See the following figures, one is from 2.1.0 and the other is from 2.0.2. **Code for reproduction** This code is exactly the same code we are using except the data is changed to random one. I suppose it will be minimal enough? #!...
### Bug report **Bug summary** Setting a logarithmic y-axis with `ax.set_yscale('log')` causes histograms to disappear from the axis. This occurs in 2.1.0 but not in 2.0.2. **Code for reproduction** import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as plt import numpy as n...
1
Uncaught Error: spawn pyflakes ENOENT **Atom Version** : 0.154.0 **System** : Mac OS X 10.10.1 **Thrown From** : Atom Core ### Steps To Reproduce 1. `apm install linter linter-pyflakes` 2. Open any Python file $ pyflakes --version 0.8.1 ### Stack Trace At events.js:8...
Uncaught Error: spawn pyflakes ENOENT **Atom Version** : 0.154.0 **System** : Mac OS X 10.9.5 **Thrown From** : Atom Core $ pyflakes --version 0.8.1 Linter 0.8.0, Linter Python Pyflakes 0.1.0 (bsnux) ### Steps To Reproduce 1. Started atom in a (mostly python) project with the followi...
1
hi, here is my site richer-poorer.com/devsite. its in magento. magento use prototype.js file. but with that file included my reponsive menu only work one time. after that clicking on collapse button does nothing. I cant remove the prototype.js because that causes magento to stop. Can anyone help about it? ...
Hi everyone, i'm using Prototype and bootstrap. So i have to use jQuery **noConflict**. The Problem: Responsive Navbar doesn't work correctly. It works one time and than it get height:0px and display:none. When i delete noConflict it works fine (except prototype). I've tried to load jquery and bootstrap in head o...
1
![1](https://user- images.githubusercontent.com/6039305/44960959-01872280-af09-11e8-80d1-a5a5bca24675.PNG) I want to place this error message to center. This is not possible with currently. I tried almost every approach. * textAlign: TextAlign.center, is not helping to move error message to center. It moves the ...
When used with the `TextField` the `InputDecorator` 'errorText' uses the `TextField`'s `textAlign` property (I suspect). This is a problem when the `TextField` is used to show numerical values in which case the value should be right-aligned but the error message should be left-aligned.
1
**I'm submitting a ...** (check one with "x") [ ] bug report [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question **Current behavior** Due to script tags being stripped ...
## I'm submitting a... [x] Bug report [x] Feature request ## Background Imagine you have the following webcomponent: <expression> <script type='text/plain'> If(var1 < var2, Sum([Field 1]) , Sum([Field 2]) ) </script> </expression...
1
if the PC has "helvetica" font, and css sais font-family: "helvetica"; IE 9&10 can not display anything. so I think it is important, "helvetica" should be removed from defolt "font-family". thank you.
as a developer I got helvetica Neue install in my win7. ie8 are okay in ie9/ie10 it just show a blank page, even official bootstrap webpage possibly due to http://bobbyjoneswebdesign.blogspot.hk/2011/12/internet- explorer-9-type-1-font-bug.html currently I am override font setting with body, input, butto...
1
As discussed on the mailing list, adding type information to an array of tuples actually slows down Julia. This doesn't seem right: f = rand(Float64,10^6) i = rand(Int,10^6) v1 = collect(zip(f,i)) # Vector{(Float64,Int64)} v2 = convert(Vector{Any}, v1) @time sort(v1); @time sort(v2)...
Hi all, The following code seems to allocate a lot of memory: function test!(arr::Array{(Int, Int)}) for i = 1:10_000_000 arr[1] = arr[2] end end a = [(1, 1), (2, 2)] test!(a) Here are the results of `@time test!(a)` (using HEAD on the master branch, commi...
1
There are a lot of duplicated code `EncryptSQLRewriterParameterizedTest`, `MixSQLRewriterParameterizedTest` and `ShardingSQLRewriterParameterizedTest`, It could be a template implementation.
## 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...
0
## Steps to Reproduce Playing Space Blast on my iPhone6+ for under five minutes leads to app crashing, followed by app being stuck in black screen of death. ## Flutter Doctor $ flutter doctor [✓] Flutter (on Mac OS, channel master) • Flutter at /Users/brettmorgan/github/flutter • ...
Code is here: https://drive.google.com/open?id=0B-w2rH1ryIJdekEzZjREdVpTakE This app runs on Android, but crashes on my iPod running 9.2.1 iOS when I tap the floating action button. Output of `flutter log`: Unable to connect to the Observatory at port 16193. Showing iPod touch logs: Apr 19 15...
1
**I'm submitting a ...** (check one with "x") [X] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
Dependency Injection not working for Components/Directives inherited from Angular2 Components/Directives if using TypeScript Compiler instead of Angular Template Compiler. **Steps to reproduce and a minimal demo of the problem** 1. Define DatePicker directive inherited from DefaultValueAccessor. 2. Add any addi...
1
#### Challenge Name https://www.freecodecamp.com/challenges/call-out-optional-actions-with-button- info Many challenges before and after. #### Issue Description The type cursor doesn't always end up where clicked by the mouse cursor. In some areas of text, you can't click anywhere within it. When it is possible ...
In all the exercises, we the users are forced to press the enter key before writing any code. * * * #### Update: We have locked the conversation temporarily on this thread to collaborators only, this has been resolved in staging, and will be live soon. The fix can be confirmed on the beta website. The workaround...
1
This issue can be quite easily understood from the source of the carousel's pause method. It is the this.cycle() that is the problem. Since that is run without any argument, it sets this.paused to false, effectively undoing what was just set a few lines before. Then the next time cycle fires with an event, like mouse...
carousels example I thought this one was fixed with the clearInterval() function, but its not.. =/ go to the carousel example and click on one of the indicators, and stay on the image or indicators.. the carousel doesnt stay paused, it keeps cycling through the images event if you're still hovering on top of them....
1
the bug is described at pytorch/examples#148. I just wonder if this is a bug in PyTorch itself, as the example code looks clean to me. Also, I wonder if this is related to #1120.
## 🚀 Feature Add sparse tensor support for torch.blkdiag. ## Motivation Dense matrix support was implemented for issue #31932, but we need sparse as well. ## Pitch See #31932 ## Alternatives See #31932 cc @vincentqb
0
### Problem description With 0.18.3 version my TextFields lose custom colors. After downgrading to 0.18.2 colors work as expected. As I see, it's related to #7065 ### Link to minimal working code that reproduces the issue https://www.webpackbin.com/bins/-KnEbDVKdLKisHPScLox ### Versions * Material-UI: 0.18.3...
Material UI versions: 0.18.1 and 0.18.3. (I didn't test 0.18.2) <TextField className="app-bar-searchbar" hintStyle={{ color: grey300, fontSize: '12px' }} inputStyle={{ color: white, fontSize: '12px' }} ...
1
I've a component whose `render` method looks like render() { const {condition} = this.state; if (!condition) { return null; } return <div onClick={() => { doSomething(); }} > ... </div> } When the state changes and `condition`...
Hello, After updating to React 15.0.1, we are getting the following error: Uncaught TypeError: Cannot read property 'addEventListener' of null ![image](https://cloud.githubusercontent.com/assets/4996164/14602577/5bb4e9f2-0571-11e6-9aa1-98de49f50d76.png)
1
# Summary of the new feature/enhancement I usually have hundreds and sometimes thousands of files with maybe 10 or 20 different naming variations and I always have to select all files, right click, open PowerRename, write regex, apply changes, select all files again, right click, open PowerRename, write regex, apply...
# Summary of the new feature/enhancement Clicking on Window toolbars requires a needless degree of precision when all you're trying to do is move a window (or resize with respect to the corner). In Linux you can use ALT+Left Mouse to move a Window so long as the cursor is anywhere within the window and use ALT+Right...
0
MaxPool gradient of a gradient is not supported as determined in keras- team/keras#4694, which means that examples work in keras with the theano backend but not with the TensorFlow backend. I believe the relevant place where the op is registered is at https://github.com/tensorflow/tensorflow/blob/master/tensorflow/co...
Currently, neither `tf.nn.avg_pool` or `tf.nn.max_pool` support automatically taking second derivatives, making it difficult to experiment with second-order methods on neural networks that use any sort of pooling (which unfortunately includes most modern networks). Trying to take a second derivative gives a `LookupEr...
1
### 💻 * Would you like to work on a fix? ### How are you using Babel? Other (Next.js, Gatsby, vue-cli, ...) ### Input code var [ x , x ] = [ 0 , , ] ; ### Configuration file name _No response_ ### Configuration _No response_ ### Current and expected behavior `x` is expected to be `undefine...
I followed the instructions for typescript on this page: https://babeljs.io/docs/en/babel-preset-typescript And ended up with a .babelrc file: { "presets": ["@babel/preset-typescript"], "isTSX": true, "allExtensions": true } babel setup (inside gatsby): ─ @b...
0
Integrated terminal master issue: #143 Steps to Reproduce: 1. Toggle terminal 2. Launch vim (color scheme changes) 3. Exit vim (vim's changed color scheme remains)
1
There seems to have been a recent regression in the placement of the cursor and end-of-line marker on lines with accented characters. For example ὤὤὤὤὤὤὤὤὤὤ Has ten _characters_ but if you ctrl-E to the end of the line the cursor is in the wrong place: ![screen shot 2015-03-15 at 5 18 12 pm](https://cloud.githubus...
Halp ticket: * support/e61e5074bc3011e396a434cf997499c3 > Support for Unicode is incomplete. Unicode characters are shown, but the > cursor get stuck, and the navigation with the keyboard arrows stop working. The user was using this string as an example `ג׳ג׳ג׳dwdwdww` Here's a GIF of me pressing just the right...
1
* Electron version: v1.7.0 * Operating system: Linux Mint 18 x64 I tried to debug an electron with visual studio code. But I got an error so I tried to start electron with the same arguments in the shell: "electron --debug-brk", which produces an segmentation fault immediately. Also using "electron --debug" prod...
* Electron version: 1.7.0 * Operating system: macOS ### Expected behavior Electron works with `--debug` or `-debug` argument ### Actual behavior Electron won't run with arguments above. ### How to reproduce I've tried the standalone .app and the npm modules: * for standalone .app it shows an error and re...
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
Hello, could it be possible to add one or two additional variables to the onResourceReady callback, which states whether the image was downloaded or loaded from cache? For example: //final int FROM_INTERNET=0; //final int FROM_CACHE=1; //final int FROM_EXTERNAL=2; Glide.with(c).load(u...
I have a ViewPager with 3 fragments inside. Each fragment is a list to retrieve some exercises from a remote server. The 3 fragments are in order: "explore", "favorite", "recent". In "explore" list, all images correctly appear. unfortunately in the "favorite" no image appears (just place holder thumbnail). This is ...
0
When using the openblas based pypi package for numpy on windows, a simply import allocates a lot (25-30MB/core) of committed memory per CPU core by default. This leads to MemoryErrors due to memory exhaustion, when all memory of a machine is committed used up. This can easily happen when using multiprocessing or othe...
Related to vscode-restructuredtext/snooty-parser#24 and networkx/networkx#4857 ![image](https://user- images.githubusercontent.com/1829149/120243452-77d12480-c21c-11eb-82ab-a8d7f160e4b9.png) I expect `import numpy` to commit close to 0 memory. ### Reproducing code example: import numpy as np ### Er...
1
As part of #33900 and also long running desires to clean up some incomplete abstractions, we need to normalize and resolve the status of `pkg/api/unversioned` (which is versioned) by moving it to a versioned package. 1. All "common" server logic will be in `pkg/apis/meta/v1`, or associated with that package. 2. ...
Forked from #1743 One of the critical features we're lacking on the configuration front is template parameterization. We should decide on what approach we want to take. Working list of requirements: * It should be schema-respecting, not arbitrary textual transformation, in order to facilitate schema validation a...
0
I have some code that deadlocks, I think during some phase of code generation. Here's a little test case. Not quite the same context as my code, but I think the same bug: Threads.@threads for i in 1:1 end no_such_function() This should give an error of course, because `no_such_function` is und...
Totally confused by the segmentation fault I'm getting on dev branch. Started seeing it perhaps a couple weeks back but had a hard time getting a small test case that would reliably trigger the error. The following snippet works fine if threads are off and works v1.1 with threads on or off. For some reason importing...
1
### Vue.js version 1.0.21 ### Reproduction Link http://matkovsky.com/vue-svg/ (The left icon is inside a `<template>` block, the right one is not.) ### Steps to reproduce Put an `<svg>` tag with an external svg file (with symbols) inside a `<template v-if="foo === bar">` block. ### What is Expected? The SVG ...
### Vue.js version 1.0.16 ### Reproduction Link https://github.com/asakurayoh/vuejs-svg-bug/tree/master ### Steps to reproduce Only load the index.html in a webserver. ### What is Expected? The svg icon should be display event if in a . ### What is actually happening? The svg do not seam to be rendered in ch...
1
{(char*)"stride", (getter)getTupleAttr<ConvForward, std::vector<int>, ConvParams, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ torch/csrc/autograd/functions/init.cpp:82:11: note: candidate template ignored: invalid explicitly-specified argument for templat...
One representative error: torch/csrc/autograd/functions/init.cpp:220:37: error: address of overloaded function 'getTupleAttr' does not match required type '_object *(_object *, void *)' {(char*)"output_padding", (getter)getTupleAttr<ConvBackwardBackward, std::vector<int>, ConvParams, ...
1
Slider does not update self state value if min, max, value props are changed together, so slider gets out of the page layout. ![2017-11-21 17 57 58](https://user- images.githubusercontent.com/19636070/33079030-8d53c3cc- cee5-11e7-990b-fb9cb107b95d.png) * I have searched the issues of this repository and believe ...
Below you can see two problems with SelectField - one is the wrong position and the second is that hintText is present even if the value is selected. ![hint](https://cloud.githubusercontent.com/assets/4790217/8746480/145a329e-2c8a-11e5-9996-714235dd6453.png) ![position](https://cloud.githubusercontent.com/asse...
0
Whenever suggest widget (e.g. a completion list) is summoned (by a configured trigger character, e.g. `.` or `>`), both Tab and Enter are valid for selection by default. More than once I've accidentally accepted the suggestion rather than doing a line break as intended. mitaki28/vscode-clang#8 is a good example of t...
Don't try to content assist / perform intellisense when writing a comment. Really really annoying, when every other word pops up suggestions. Don't want it. Dupe of #538 that got closed but not fixed really though.
1
**Patrick Ryan** opened **SPR-1719** and commented I described this in the forum at: http://forum.springframework.org/showthread.php?t=22377 I have recently tried the 2.0 M2 Spring.jar and immediately found that what was working for PropertyPlaceholderConfigurer is suddenly not working in 2.0. I have a bean wit...
**Craig** opened **SPR-8604** and commented I'm attempting to use RestTemplate.execute() and it takes a RequestCallback instance and a ResponseExtractor instance as parameters. It seems that I should be able to use (via direct instantiation or inheritance) the really useful RestTemplate implementations of these int...
0
Hi, Since yesterday I am facing problem with creation new deployments and pods assigned to those deployments. Due to some reason RC creates a lot of pods and right after terminates them. My pod require to have volume attached in AWS so I assume that is not possible to attach/detach volume more than several times wit...
In the document, `expose` should take rc and service as input. I tried `kubectl expose po nginx --port=80 --target-port=8080` and `kubectl expose -f pod-nginx.yaml ...`, they all worked (when pod has labels). Another thing is, in `expose` command, service name is duplicated from input resource name(when `--name` is ...
0
### action: deno run --allow-read --allow-net xxx.ts ### result: **Check** file:///....../xxx.ts **error** : TS2322 [ERROR]: Type `'import("https://deno.land/std@0.75.0/http/server.ts").ServerRequest | null'` is not assignable to type `'import("https://deno.land/std/http/server.ts").ServerRequest | null'`. Type ...
// main.ts import { serve } from "https://deno.land/std/http/server.ts"; #### 1.4.6 ❯❯❯ rm -rf $DENO_DIR ❯❯❯ deno1.4.6 run -A --reload main.ts Download https://deno.land/std/http/server.ts Warning Implicitly using latest version (0.75.0) for https://deno.land/std/http/serv...
1
Challenge Add Placeholder Text to a Text Field has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <link href...
In all the exercises, we the users are forced to press the enter key before writing any code. * * * #### Update: We have locked the conversation temporarily on this thread to collaborators only, this has been resolved in staging, and will be live soon. The fix can be confirmed on the beta website. The workaround...
1
In [1]: import numpy as np In [2]: np.append([], (unichr(0))) Out[2]: array([u''], dtype='<U32') In [3]: np.append([], (unichr(1))) Out[3]: array([u'\x01'], dtype='<U32') In [4]: np.unique(unichr(0)) Out[4]: array([u''], dty...
### Describe the issue: On osx-arm64, running the following import numpy as np Sigma = np.full((5, 5), 0.7) np.fill_diagonal(Sigma, 1) rng = np.random.default_rng(12) X = rng.multivariate_normal(np.zeros(5), Sigma, 1) print(X) prints [[ 0.7989866 0....
0
##### Description of the problem When using BasisTextureLoaded with a ShaderPass, the texture will only be used properly if the uniform value is set after the instantiation of the ShaderPass. > let shaderPass = new ShaderPass( { > > > vertexShader: vertexShader, > fragmentShader: fragmentShader, > ...
UniformsUtils.merge use the clone method that does not seem to clone by reference. So uniforms variables are not update into the shader So this, is not working: uniforms = { time: { type: "f", value: 1.0 }, }; var material = new THREE.ShaderMaterial( { uniforms: THREE.Un...
1
I'm using IntelliJ CE 2017.2.3 EAP and I get missing plugin warnings in `flutter doctor` when it seems like everything is installed properly and I have no issues building. ![screen shot 2017-09-05 at 6 35 37 pm](https://user- images.githubusercontent.com/3614291/30086432-0acb906e-9269-11e7-8ae3-b2caca9fba16.png) ![...
Hi, I have two local instances of Android Studio: 3.3 and 3.4 Preview. Both have the latest available Flutter and Dart plugins installed. When I run `flutter doctor`, it consistently fails to detect the plugins in the second instance. flutter doctor -v [✓] Flutter (Channel beta, v1.0.0, on Mac OS...
1
Some code: #![crate_type="lib"] pub mod variant0 { pub enum A { A(()) } pub static B: A = A(()); pub fn main() { } } #[cfg(variant1)] pub mod variant1 { pub enum A { A(()) } pub static B: A = A(()); // <-- error here ... ...
When compiling static val: [u8, ..1] = [0]; fn main() { match [1] { val => (), _ => () } } The error message $ rustc errormsg.rs errormsg.rs:1:25: 1:28 error: unsupported constant expr errormsg.rs:1 static val: [u8, ..1]...
1
**Migrated issue, originally created by Anonymous** I tried to redefine some of my classes and mappers using the declarative extension in 0.4.5, but I couldn't see how to set the schema argument on the table. At runtime, schema==None, which won't work for this application. Looking at the code, it appears only "aut...
**Migrated issue, originally created by Michael Bayer (@zzzeek)** consolidating #1328, #2797, #2845 as these are all dealing with the same thing from different angles. SomeClass.some_m2o, which refers to OtherEntity as a many-to-one, would be interpreted: 1. for `sess.query(SomeClass.some_m2o)` as `sess.query(O...
0
The `@gridColumns`, `@gridColumnWidth`, and `@gridGutterWidth` options previously available on the Bootstrap 2 custom compile page seem to be missing from http://getbootstrap.com/customize/.
See: * http://www.paulirish.com/2012/box-sizing-border-box-ftw/ * http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ box-sizing: border-box is currently implemented with a note on avoiding conflicts with third party components: // Heads up! This reset may cause co...
0
When using `read_excel` to read excel files, I have to install `xlrd.` `read_excel` has parameter `engine,` but its value only can be `None` or `xlrd.` `ExcelWrite` can use `openpyxl` as `engine.` Why we cannot use `openpyxl` to read excel files in `pandas`? Or whether I can or not?
I took a brief look at the existing code for importing files with xlrd but it looks tightly coupled with that library and not particularly straightforward to adapt. I think that the read-only mode of openpyxl would be a good fit for Pandas and would like to work with you to provide the necessary API to go from rows ...
1
If the user waits for few minutes before giving pageoffset to get more results then user is getting duplicated results .This happens as the pageoffset we use for pagination becomes invalid due to merging of druid segments and search starts from offset 0 in new segment. Is there any way to know the pageoffset is valid...
How should I handle the below query in Druid? In classic sql, it would be a simple sub-query & a JOIN. (Don't worry, I understand the reasons we don't support JOINs in Druid explained in the spec doc) So I'm wondering, for those experienced with Druid and faced with this problem, what would you do? ### Desired Quer...
0
I'm seeing lots of inconsistencies with JSX highlighting in 0.10.5: ![image](https://cloud.githubusercontent.com/assets/941075/11912828/5f282f1c-a636-11e5-8d46-ffa7ad560741.png) * `export` and `default` are keywords and should be colored accordingly * A class should be colored too * `render` is a method and s...
I've upgraded from 0.10.3 to 0.10.5, and the javascript syntax highlighting doesn't work as well as before (OSX El Capitan): from this: ![screen shot 2015-12-19 at 10 36 26](https://cloud.githubusercontent.com/assets/120693/11912441/d67bc7b2-a63c-11e5-9ab1-05bfc22ee527.png) to this: ![screen shot 2015-12-19 at ...
1
**Romeo Gregorie** opened **SPR-3176** and commented I was exploring Spring remoting with the jpetstore sample from 2.0.2 release and wasted half a day trying to figure "...table not found..." errors and additionally created hsql database files ending with the \r char. It turned out the shell script has DOS line e...
**Christofer Dutz** opened **SPR-9246** and commented I implemented a custom PersistenceUnitManager to allow easy merging of persistence-contexts. Unfortunately I cannot use this with Spring 3.1 anymore. Unfortunately the class is implemented in a way, that makes it impossible to extend it in a sensible way. Here ...
0
* VSCode Version:1.2.0 * OS Version:Windows 10 Steps to Reproduce: 1. selected text from terminal 2. tried right click. no context menu open
* VSCode Version: 1.1.1 * OS Version: Windows 10 Enterprise Steps to Reproduce: 1. Create a new file and add a few lines of text, separated by newlines 2. Open find dialog, enable regex, use regex "\n" 3. No matches will be found. Expected behavior would be to find the newlines. Also does not work with rep...
0
**Migrated issue, originally created by Raphaël Slinckx** Here is a test case yielding different results between sqlalchemy 0.9.9 and 1.0+ import json from sqlalchemy import create_engine, Column from sqlalchemy.types import TypeDecorator, UnicodeText, Integer from sqlalchemy.ext.muta...
**Migrated issue, originally created by Anonymous** If I create a join object and then use it as a parameter for relation's **primaryjoin** , the mapper will compile without complaining, but accessing the property that maps to such a relation generates illegal SQL and throws ProgrammingError. Ie.: c...
0
* **Electron Version:** * 4.0.7 * **Operating System:** * Linux x86_64 4.20.x * **Last Known Working Electron version:** : * 3.0.9 (not tested afterwards) ### Expected Behavior When calling `webContents.print` and cancelling the native print dialog the callback should be called directly. ### Act...
* Electron version: 3.0.10 * Operating System: macOS Mojave and Window 10 **Expected Behavior** When we cancel the printing (button cancel in the print dialog) after a call to `win.webContents.print()`, the callback should return something. **Actual behavior** When we cancel the printing (button cancel in t...
1
#### Description According to documentation in http://scikit- learn.org/stable/modules/label_propagation.html, when the alpha parameter, clamping factor, is 1, the algorithm performs hard clamping, which does not allow the labels to change cluster. However this is not the case in the following case. I copied and sli...
In some cases the labels don't stay clamped in `LabelPropagation`. For example: from sklearn.semi_supervised import LabelPropagation import numpy as np lp = LabelPropagation(kernel = 'knn', n_neighbors = 2) X = np.array([[1.,1.],[1.,0.],[0.,1.]]) y = np.array([1.,0.,-1.]) lp.fit(X,y...
1
# Environment Microsoft Windows [Version 10.0.18362.239] # Steps to reproduce Sorry, I don't figure out clearly but this step always make cmd.exe hang. At present, the method that can be reliably reproduced is to start vim.exe at the bottom line of cmd.exe. # Expected behavior Do not hang. # ...
There is a new feature that appears to automatically generate profiles based on existing WSL distributions. ![image](https://user- images.githubusercontent.com/6083371/65738178-e1f50600-e0d8-11e9-8ecf-6342fccd7be5.png) I tried messing around with these automatically-generated profiles, and it looks like you can add...
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/.): yes **What keywords did you search in Kubernetes issues before filing this one?** (If you have found any duplicates, you should instead reply there.):...
kubernetes-soak-continuous-e2e-gce-1.1 is timeout since Jan 18: 11:49:43 Kubelet regular resource usage tracking 11:49:43 over 30m0s with 0 pods per node. 11:49:43 /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:129 11:49:43 [BeforeEach] K...
0
Seems like getgrouplist is slightly different on darwin. $ man getgrouplist GETGROUPLIST(3) BSD Library Functions Manual GETGROUPLIST(3) NAME getgrouplist -- calculate partial group access list LIBRARY Standard system libraries. SY...
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? go version devel +8969ab8 Mon Mar 7 22:41:22 2016 +0000 darwin/amd64 1. What operating system and processor architecture are you using (`go env`)? mac osx 10.11.3 gcc --version Configured...
1
For historic reasons, scan implementation returns first the count, and then the hits in subsequent requests. While scrolling with regular search returns the first N results immediately. It would be nice if SCAN behaved the same as regular scrolling? Maybe even automatically execute in "scan" mode if sort is set to a...
Scrolling with the search_type scan have a different initial response compared with scrolling without scan. Scans do not return documents in the initial response, but regular scrolling does. This can be a bit confusing for end users. According to @kimchy, this difference is no longer required by the implementation, b...
1
Please consider adding an automation language for Visual Studio Code, so that common operations, such as installing many extensions, performing search & replaces, opening folders / files, Git operations, etc. can be streamlined. Not a priority, but certainly something that would be helpful and make VSCode much more ...
Need VIM Mode,Thanks
0
### 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 As screenshot, electron sends out ...
### 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:** * 11...
0
**I'm submitting a ...** (check one with "x") [X] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
**I'm submitting a ...** [x] bug report => search github for a similar issue or PR before submitting **Current behavior** To allow a module to be loaded lazily, I define its route like so: { path: 'report', loadChildren: '/app/report/report.module' } And...
1
Uncaught Error: spawn pep8 ENOENT **Atom Version** : 0.155.0 **System** : Mac OS X 10.10.1 **Thrown From** : Atom Core ### Steps To Reproduce 1. ... 2. ... ### Stack Trace At events.js:85 Error: spawn pep8 ENOENT at exports._errnoException (util.js:742:11) at Process.Ch...
Uncaught Error: spawn pep8 ENOENT **Atom Version** : 0.153.0 **System** : linux 3.13.0-39-generic **Thrown From** : Atom Core
1
##### Description of the problem This form is for three.js bug reports and feature requests only. This is NOT a help site. Do not ask help questions here. If you need help, please use the forum or stackoverflow. Describe the bug or feature request in detail. **Are there any plans to port the three.js library to...
This week Chrome announced their intent to ship WebGL 2.0 so I guess it's about time to start adding support! There are already some PRs that add support to `WebGLRenderer` for some of the new features but, somehow, it didn't feel it was good idea to make `WebGLRenderer` support both `webgl` and `webgl2`. Say hello...
1
The use case: I'm running FastAPI behind a nginx reverse proxy, at the path `http://localhost/api/`. The documentation front ends (swagger and redoc) are expecting `openapi.json` at `http://localhost/openapi.json` but it's actually routed at `http://localhost/api/openapi.json`. Setting `openapi_url` to `/api/openap...
I have a model that include an ID field, which I return in responses. However, in requests (when POSTing new instances), I don't want the user to be able to specify the ID. Similarly to how we can include/exclude fields in the response, we should be able to exclude fields in the request. Declaring more classes just ...
0
It is very common to read random rows in a large csv file, typically for testing with a small dataset, or fit the limit of memory. The parameter `nrows` is used for read the first n lines, but I didn't find any feature to read random lines. Such parameter might be named `keeprows` (opposite to `skiprows`), which supp...
propose an option, `sample` or `keeprows` (#14285) maybe taking a callable, for really just something like `sample=10` to return you every 10th row if it takes a callbale couuld use something like: `lambda x: x % 10` easy way to get a `sample` of the csv file useful to avoid specifying `skiprows` with a big list...
1
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME include and include_tasks ##### ANSIBLE VERSION ansible 2.4.3.0 config file = /etc/ansible/ansible.cfg configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python mod...
Relative to the setup dir, ansible should treat the following paths just like they were in vars_files: ./groups/groupname.yml ./vars/hostname.yml This will allow people to not have to explicitly duplicate this kind of magic in each playbook, and will give the INI format users a very good way to have complex per-g...
0
Seems to be caused at the model merge stage: https://github.com/keras- team/keras/blob/45c838cc7a0a5830c0a54a2f58f48fc61950eb68/keras/utils/training_utils.py#L172_L177 Reproduction of the issue here along with possible change that would suffix the model names running on the GPUs uniquely by index: https://gist.gi...
Hi, I am using Keras to segment images to road and background pixels. As you can imagine percentage of road pixels are much lower than that of background pixels. Hence, I want to use class_weight= {0:0.05, 1:0.95} while fitting the model so that cnn won't predict every pixel as background. But, when I do this I got ...
0
I've encountered a very severe bug (Atom 0.198.0) where if you attempt to close a window with tabs with unsaved changes, and you hit cancel in the warning dialog that appears, it closes the window anyway (presumably _without_ saving).
It looks like the same issue as #1989. I'm runing 0.142.0 on Windows 7. I've tracked it down to three 'beforeunload' handlers being called, one of them honoring the Cancel request but only to have its result flag trampled by the third handler. Could not go further for now. It behaves as if "Don't Save" was chosen....
1
* I have searched the issues of this repository and believe that this is not a duplicate. I wanted to move styled-jsx code to a dedicated variable and then inject it into the `render()` method like this: const divstyle = ( <style jsx>{` div { color: red; } `} ...
* I have searched the issues of this repository and believe that this is not a duplicate. I'm struggling to make the isomorphic routing work with an express server. The routing works just fine on the server, but when I try to do client side routing via the Link tag I get the flashing 404 and then the page. I've...
0
### Problem description If there is already an issue concerning this topic, feel free to close. When inserting text into the text input component, the IE11 and Edge show a (very large) reset X. Other browsers don't show the x. The size of the x is also not appropriate to the rest of the text(input). It just looks w...
### Problem description Single-line `TextField` components render a large 'X', floated to the right, on IE 11 when the field is focused and the code was built with `'process.env.NODE_ENV': JSON.stringify('production')`. In my project: ![x](https://cloud.githubusercontent.com/assets/1571918/17904002/674b9094-6922-1...
1
## Proposal Allow projects to specify list of recommended/required extensions. ### Proposed solution For example, vscode may have in the `.vscode/settings.json` { "extensions.extendedConfigurations": { "chrome.debugger": { "required": True } ...
Similar to what atom provides in the project explorer: 1. New files are displayed green. 2. Modified are displayed yellow/orange. 3. Ignored files are displayed transparent-ish. Thanks
0
Hi, I'm using camera plugin to capture video. I changed multiple lines, but the problem exists in the sample as well. I'm using an **Oneplus 2** (real device) and the quality of the saved video is way to bad. I get 1MB for 10 seconds of video recording. The resolution is fine (1080x1440) but i think the bitrate is ...
I have a TextFormField with attribute `textAlign: TextAlign.right`, but when i run the app, the cursor indicator is on the left only if contains 1 character, for more character the cursor go to right ![capturar](https://user- images.githubusercontent.com/14947820/41515107-dae159ba-7282-11e8-8c59-4fd8d778a5a2.PNG) ...
0
I think there is a bug in the method predict of the class _PLS. More specifically, if I choose to scale the dataset during training (scale=True), then the method "predict" does not seem to reverse the scaling operation: > return Ypred + self.y_mean_ (line 435 of the source code available at https://github.com/sciki...
I am trying to fit some spectral data using PLS, and am having difficulties with the module. Essentially, when I use the default value of `scale=False`, I get a prediction, BUT all my predictions are scaled, and I just cannot figure out how to convert back to my original data space. The same is true for the example ...
1
# Description of the new feature/enhancement settings/preference gui please # Proposed technical implementation details (optional) i want gui settings
# Environment Windows build number: Microsoft Windows [Versión 10.0.18362.295] Windows Terminal version: 0.4.2382.0 # Steps to reproduce 1. Set the `initialRows` value to something like 30 rows (a value that makes the openned window has less rows than the maximized window should have). 2...
0
1. How to convert from given Flask to FastAPI: 2. Will I get better performance doing so in this Kakfa context? producer.py: from flask import Flask, request, jsonify from kafka import KafkaProducer import json app = Flask(__name__) producer = KafkaProducer(bootstrap_servers='k...
After upgrading from 0.55.1 to 0.60.1 all of my endpoints containing an optional trailing slash in the path regex (like "/?") now result in 404 Not Found. Example to reproduce in 0.60.1: from fastapi import FastAPI app = FastAPI() @app.get("/items/{item_id}/?") async def read_ite...
0
when using x.nest.land, which **redirects** to the arweave URL ![image](https://user- images.githubusercontent.com/28438021/97530340-e674a800-19d7-11eb-8dea- cc7b635be274.png) full error error: TS2345 [ERROR]: Argument of type 'import("https://x.nest.land/std@0.74.0/log/logger.ts").LogRecord' is not ...
// main.ts import { serve } from "https://deno.land/std/http/server.ts"; #### 1.4.6 ❯❯❯ rm -rf $DENO_DIR ❯❯❯ deno1.4.6 run -A --reload main.ts Download https://deno.land/std/http/server.ts Warning Implicitly using latest version (0.75.0) for https://deno.land/std/http/serv...
1
* [x ] I have searched the issues of this repository and this could be a duplicate of #841. ## Current Behavior ## Expected Behavior <Dialog title='Make transaction' modal={false} open={this.state.open...
Hi Everyone, I am using horizontal stepper from material UI and integrated in my react app. In all steps i am having different forms and submit button, i need to trigger next button event on form submit button click. I tried various options but unable to duplicate next event on form submit button. Example:- ...
0
I would like to propose the addition of another method to `reflect.StructTag`. The proposed change is very simple, and I'm happy to produce a design document and a PR. I have filed this issue to see if there is any likelihood of this change being accepted. The `reflect.StructTag` currently has one method, `Get`, whi...
Before filing a bug, please check whether it has been fixed since the latest release: run "hg pull -u" and retry what you did to reproduce the problem. Thanks. What steps will reproduce the problem? Try the program: package main import "fmt" func f(ch chan...
0
* VSCode Version: 0.10.11 * OS Version: Windows 7 Professional (x64) Steps to Reproduce: 1. Create new file with C++ language 2. Add the following code: void fn() { f(";", value); // Line must begin with at least 1 space. } Syntax highlighting for string begins from the second ...
* VSCode Version: 0.10.11 * OS Version: Windows 7 ## Issue 1: In the following code (using C++ syntax highlighting), the string literal(s) are not highlighted at all. This issue is exclusive to C++ syntax highlighting and does not occur with C syntax highlighting. #### Code: int main() { ...
1
#### Code Sample df = pd.DataFrame({'A':[1,2,3],'B':[4,5,6]}) df = df.stack() df.loc[0] = [0,0] This returns In [27]: df Out[27]: 0 A 0 B 0 1 A 2 B 5 2 A 3 B 6 dtype: int64 Then, if I try df.loc[0...
Best shown with an example. import numpy as np, pandas as pd timestamps = map(pd.Timestamp, ['2014-01-01', '2014-02-01']) categories = ['A', 'B', 'C', 'D'] df = pd.DataFrame(index=pd.MultiIndex.from_product([timestamps, categories], names=['ts', 'cat']), columns=['Col1...
1
# 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...
# 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 have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Next.JS should successfully compile without any errors/warnings. ## Current Behavior `Parse errors in imported module '../lib/Apollo/withData': Unexpected token = (24:24) import/no-named-as-default` ...
# Bug report ## Describe the bug When running next.js in dev mode and clicking on a link, the error `Unhandled Rejection (TypeError): Cannot read property 'call' of undefined` until the linked page has been refreshed at least once. It seems to be related to using sass, css and typescript exports. ## To Reprodu...
0
import seaborn as sns This causes: /usr/local/lib/python3.6/dist-packages/matplotlib/__init__.py:886: MatplotlibDeprecationWarning: examples.directory is deprecated; in the future, examples will be found relative to the 'datapath' directory. "found relative to the 'datapath' di...
Seaborn triggers following `MatplotlibDeprecationWarning examples.directory is deprecated` on import. From what I understand seaborn touches this configuration with matplotlib `rcParams`, which now triggers a warning. I don't see any other side-effects yet, it is for not just annoying to see. Installed versions: ...
1
Currently any remote content for the modal dialogs are loaded once upon initialization of the Modal object. The remote content should instead be loaded in the Modal#show method instead so that the modal contents are always the latest version available on the server.
I am using the modal dialog on a Grails based application. The first time I click a link (using the <a> tag) my action is fired as I can see in my debugger and I'm able to operate on data. Any link clicked afterwards is no longer 'loading' the URL specified by data-remote so the same dialog from the first attempt is ...
1
I was trying to write a unit test which relied on code that was intended to run during `ngOnChanges`, it('should emit an event when the message has changed', injectAsync([TestComponentBuilder], (tcb) => { return tcb.createAsync(MyComponent, (fixture) => var result = fixture.componentInst...
Our package.json lists many peer dependencies as just dependencies, but should be reflected as peer dependencies: * reflect-metadata * rxjs * zone.js * es6-shim This is to make sure duplicates don't end up in bundles, and to make sure Angular is sharing the same instances of modules. This is particularly im...
0
## 🚀 Feature If a model consists of a DDP submodule, the module cannot be torchscripted since DDP itself cannot be torchscripted. ## Motivation Certain complex models (especially with model parallelism) might consist of submodules where only some of the submodules need to be replicated via DDP. Torchscripting suc...
## 🚀 Feature The `torch.distributed` package provides PyTorch support and communication primitives for multiprocess parallelism across several computation nodes running on one or more machines. It is the new basis for the `DistributedDataParallel` wrapper class, which provides a higher-level toolkit for performing ...
1
Hi, i'm facing an issue with the with_items option in combination with a variable to replace + a fixed string behind the variable name. The issue came up after updating from 1.9.4 to 2.0.0.2. ## Environment: Ansible: 2.0.0.2-1 OS: Ubuntu 14.04 Python: 2.7.5-5ubuntu3 ## Steps To Reproduce: site...
##### Issue Type: Bug Report/Regression ##### Ansible Version: ansible 2.0.0 (`f41dd57`) ##### Ansible Configuration: self-packaged version based on above revision ##### Environment: openSuSE Leap 42.1 ##### Summary: Substituting variable names based on other variables does not work in ansible 2.0.0 but used ...
1