text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
It would be nice if `@CanActivate` decorator would resolve some additional bindings if provided. For instance if the check I want to do during this step depends on some service that I've created, then I could do something like: @CanActivate((myService: MyService) => { /* here I could use `myService` th...
**I'm submitting a ...** [x] feature request **Current behavior** _Main motivation:_ print multiple object properties by using the async pipe with **1** network request For array observables `myObjects$: MyObject[]` you can use the async pipe in the following way: <div *ngFor="...
0
In a really long line of text, after the 235th character, Ruby language formatting is lost, and shows up as the last mark, such as a closing quote makes the rest of the text appear as green, or grey. This still happen with the text being word-wrapped.
I opened a Python file with the following line (#963): PrintAndLog(u"SSID: " + RememberedNetwork["SSIDString"].decode("utf-8") + u" - BSSID: " + RememberedNetwork["CachedScanRecord"]["BSSID"] + u" - RSSI: " + str(RememberedNetwork["CachedScanRecord"]["RSSI"]) + u" - Last connected: ...
1
When using InstancedMesh for repeating objects and then exporting it through ColladaExporter, only the base mesh appears in exported model, no instances.
##### Description of the problem Since the new animation system I can't make my key animations stop at their last frame. Most of the Three.js examples have animations with a infinite loop and so the bug is not visible. My animations are made to run once, but they get resetted to the first frame after the one loop. E...
0
I tried to set up kubernetes locally via Docker according to http://kubernetes.io/docs/getting-started-guides/docker/ I ran into the following problems: 1. kubedns was not running (only 2 of the three containers in the DNS pod were coming up) 2. Dashboard was not running ## kubedns problem The kubedns contain...
http://kubekins.dls.corp.google.com:8081/job/kubernetes-pull-build- test-e2e-gce/28687/ In the e2e test, the last three tests failed: * Kubernetes e2e suite.Downward API volume should update labels on modification [Conformance] * Kubernetes e2e suite.Services should be able to change the type and ports of a ser...
0
I'm experiencing this in client website, but i found it also in http://getbootstrap.com/components/ (see screenshot); maybe it's necessary to update the font .. ![screen shot 2014-05-30 at 11 18 00](https://cloud.githubusercontent.com/assets/3374610/3128899/5a46e710-e7db-11e3-8f48-34858c96a7ed.png)
![screenshot 2013-08-24 3 09 43](https://camo.githubusercontent.com/19b13eba672111a20f342e50e01824c08f7786cbd72ef49ac397c92bffd540f1/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f35353033372f313031383339362f32306138636136632d306332382d313165332d393139632d3635396565623135636638332e706e67) ![scre...
1
by **x41@freeshell.org** : Exploiting #221 in a different way: Fresh install of: Last version of Golang cb140bac9ab0 release.2009-11-12/release Tested on Ubuntu 9.04 and Ubuntu 9.10 XXXX@XXXX:~/go_src/src$ uname -a Linux XXXX 2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17...
Before filing a bug, please check whether it has been fixed since the latest release: run "hg pull", "hg update default", rebuild, and retry what you did to reproduce the problem. Thanks. What steps will reproduce the problem? Attempt to use the http.Client using the default...
0
## Since I can not re-open other's issue, I am opening this issue to address a potential type check issue that is causing a lot unexpected behavior on other issues. After viewing the source code and confused by `handleStateChange` rename to `onParentShouldUpdate`; `onCheck` rename to `handleCheck` then rename to `on...
Setting the state in the callback of `onCheck` event cancels the [V] mark on the selected box. Without setting the state, the checkbox works as expected. Working fine <Checkbox label="price" onCheck={this._handleCBPrice.bind(this)} /> _handleCBPrice(event,...
1
This happened after I introduced retry() to one of my tasks. Full trace: [2011-05-03 13:12:04,922: WARNING/MainProcess] File "/srv/geri/repository/geri/manage.py", line 11, in [2011-05-03 13:12:04,923: WARNING/MainProcess] execute_manager(settings) [2011-05-03 13:12:04,924: WARNING/MainProcess] File "/srv/geri/...
This happens probably because task logger by default is initialized with name 'celery.task.default' and worker logger with name 'celery'. Thus task logger becomes the child of the worker logger. Python logging system by default propagates messages from child logger to parent. To change this behavior `propagate` p...
0
### Version Info electron: 4.0.0 OS: Windows 10 x64 10.0.17134.472 ### Expected Behavior require('crypto').createCipheriv('rc4', 'asdasd', null) require('crypto').createCipheriv('rc4', 'asdasd', '') work well as node v10.15.0 ### Actual behavior require('crypto').createCipheriv...
### 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:** 9.0.5 ...
0
Developers often use code samples in their module readmes, so it would be really nice to have `deno fmt` format the code inside markdown code blocks. This would lead to more consistent styles in presentation as well. :)
At the moment Deno only formats JS and TS, but dprint can also format markdown including JS and TS code blocks: #6682 (comment) This would be an awesome feature for documentation, is it possible to enable it? Then we can get rid of Prettier.
1
**wang sheng** opened **SPR-2854** and commented when use HibernateTransactionManager manage hibernate transaction if begin a transaction fail it would not throw a IllegalStateException org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested exce...
**Bozhidar Bozhanov** opened **SPR-9036** and commented org.springframework.cache.interceptor.DefaultKeyGenerator is implemented by calculating the hashcode of all arguments. This is problematic in many cases: * methods with similar signature - foo(int, String), foo(int, List) - if the 2nd argument is null they w...
0
There are many different implementations of essentially the same module resolution algorithm in our system. They all do the same, but are used in different situations. 1. `CliModuleLoader::resolve` link Used with `run --no-check` and probably also for pure JS. 2. `deno::tsc::op_resolve` link Used with type ...
@MarkTiedemann I was wondering if the jsdom port is still happening? I see it was never merged: denoland/deno_std#542 It would be amazing to be able to test code for the browser in Deno 1.0. Thanks!
0
due to the use of apply_over_axis masked median operations gets incredibly slow when computing them along a small dimension of a large array: In [3]: d = np.random.uniform(size=(200, 200, 50)) In [4]: %timeit np.median(d,axis=2) 10 loops, best of 3: 40.1 ms per loop In [5]: %timeit np.nanme...
We have two pages labeled "diversity statement": * The new one: NumPy diversity and inclusion statement * The one in the Code of Conduct: Diversity Statement Neither mentions the other. * Should the new statement have at least a link to the CoC diversity statement? * Should the new statement say "Septembe...
0
Right now there are at least 3 places with duplicates of the .tmbundle: here, here, and here. This has worked fine so far, I think people have been good about syncing changes with the main repo and pulling when there are improvements. But eventually I think it will become a pain. Even now it's potentially unclear w...
I thought this was just an issue in StaticArrays (JuliaArrays/StaticArrays.jl#428), but the same thing is happening in Base. Currently: julia> mutable struct MyNumber val::Float64 end julia> Base.zero(::Type{MyNumber}) = MyNumber(0.0) julia> v = zero([MyNumb...
0
when running _nodes?plugin=true it would be great to be able to get the version of the installed plugins
Relative to #2668 Plugin developpers can now add a version number to their es-plugin.properties file: plugin=org.elasticsearch.test.integration.nodesinfo.TestPlugin version=0.0.7-SNAPSHOT Also, for site plugins, it's recommended to add a `es-plugin.properties` file in root site directory with `de...
1
select * from table; that query (with semicolon) runs fine in SQLLab but after clicking Explore on the results the Chart page gives an error about semicolon not allowed
When running the command `superset db upgrade`, I am receiving the following error: Traceback (most recent call last): File "/usr/local/bin/superset", line 33, in <module> sys.exit(load_entry_point('apache-superset', 'console_scripts', 'superset')()) File "/usr/local/lib/python3.7/s...
0
* I have searched the issues of this repository and believe that this is not a duplicate. I have searched out and get #8223 but I cant get any solution ## Expected Behavior In production build of commonjs classnames should not be duplicated ## Current Behavior There is several classnames generated with same id...
I use dialog fullScreen. When I click button open full-screen dialog, and no any operation even no click anywhere, then press 'esc' key to escape fullscreen. That button still has focus styles. This is not a issue, I just want to know how can I do remove the styles with no operation. * I have searched the issu...
0
**Migrated issue, originally created by Anonymous** # Use case for loading transient objects * Your server framework environment only ever has one session. (For example, TurboGears framework, using ScopedSession.) Or you can readily determine to which session a transient instance would belong. * You build u...
**Migrated issue, originally created by Anonymous** We got weird ("(OperationalError) (1305, 'SAVEPOINT sa_savepoint_1 does not exist') in our prod, and after investigation, this is due to the fact that our mysql server fails a commit (we don't know why), and the handling of that exception in sqlalchemy leads to an ...
0
Since latest beta, the generated transition property for tabs indicator is ` transition: all 300ms cubic-bezier(0.4, false, false.2, false) 0ms` which is invalid * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The default transitions property should ...
After installing the typescript/material/react example I saw that the build was failing. Then I found these two issues regarding the build problems I was experiencing: #9881, #9873 I would like to suggest fixing the dependency versions in place. They don't need to be exact of course. With the dependencies decla...
0
`sharex=False` works as expected: titanic = sns.load_dataset("titanic") titanic = titanic.assign(deck=titanic.deck.astype(object)).sort_values("deck") g = sns.FacetGrid(titanic, col="sex", sharex=False, sharey=False) g.map(sns.histplot, "age"); ![image](https://user- images.githubuserconte...
Trying to create a displot with non-shared axis (both y and x) using the following function call: import seaborn as sns _df = sns.load_dataset("tips") sns.displot(data=_df, x='tip', col='day', hue='smoker', stat="density", element='step', facet_kws={'sharex': False, 'sharey': False}) The ...
1
### Version 2.5.13 ### Reproduction link https://codesandbox.io/s/4895o6nm24 ### Steps to reproduce Using Typescript 2.7.1, importing Vue 2.5.13 results in `undefined`. To reproduce, create a blank .ts file: import Vue from "vue"; console.log(Vue); // <-- will be `undefined` (or `null` in Cod...
### Version 2.5.13 ### Reproduction link https://github.com/marpstar/vue-typescript-import-problems ### Steps to reproduce # Clone this repo git clone https://github.com/marpstar/vue-typescript-import-problems.git # Install dependencies npm install # Compile TS tsc ...
1
Hi experts, I've installed Anaconda 3 64-bit and Python 3.6.7 on my Windows 10 laptop, also I've installed Tensorflow, however when I try to import Tensorflow, it fails, messages are appended below, could you please give my advises and instruction of solving this problem? Thanks. (tensorflow) C:\User...
_Please make sure that this is a build/installation issue. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template_ **System information** * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 64bit ...
1
Running php app/console doctrine:generate:entities MyBundle:MyEntity on v2.5.0 I get Deprecated: getEntityNamespace is deprecated since Symfony 2.1. Use getAliasNamespace instead in .../Doctrine/Bundle/DoctrineBundle/Registry.php on line 129
Can I have this: No more app_dev.php or app.php Just index.php So what about environments? config/app.yml What would be in it? app environments: ['local'=>'local.domain', 'dev'=>'dev.mysite'] * * * Then I propose an enviro...
0
### Bug report **Bug summary** Minor ticklabels are missing at positions of major ticks. **Code for reproduction** import numpy as np import matplotlib.dates as mdates import matplotlib.pyplot as plt t = np.arange("2018-11-03", "2018-11-06", dtype="datetime64") x = np.random.ran...
### Bug report **Bug summary** Images plotted by plt.imshow are always clipped, reglardless of the clip_on argument. **Code for reproduction** import numpy as np import matplotlib.pyplot as plt from matplotlib.cbook import get_sample_data fig = plt.figure(figsize=(10,5)) ax = pl...
0
when the batch size is 1024, my model work fine, but when I change it to 1025, it throw error RuntimeError: CUDNN_STATUS_NOT_SUPPORTED this is how I load data: val_dataloader=t.utils.data.DataLoader(val_dataset,1025,True,num_workers=8,\ collate_fn=my_collate) the full trace...
Fatal CUDNN_NOT_SUPPORTED error. Reported by @namdar import torch import torch.nn as nn from torch.autograd import Variable class TestModel(nn.Module): def __init__(self,inp_size): super(TestModel, self).__init__() self.encoder = nn.Sequential( ...
1
Hi all, If there's something that bothers us is to create form to fill out polymorphic objects. Normally, when you have a polymorphic object, you first need to know the type and then build the form. Currently, there is no an elegant way to do this trick. You may create multiple embedded forms, or use two actions and...
We long have the problem of creating fields that depend on the value of other fields now. See also: * #3767 * #3768 * #4548 I want to propose a solution that seems feasible from my current point of view. Currently, I can think of two different APIs: ##### API 1 <?php $builder->addIf(...
1
**Is your feature request related to a problem? Please describe.** Prior to Windows 10, it wasn't possible to use more than one piece of software simultaneously connected to a MIDI device, for example a DAW and a MIDI device editor program. Windows 10 has a new MIDI API that developers can use which allows multipl...
### 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 a feature request that matches the one I want to file, without success. ### Electron Version 12.0.6 ### What opera...
0
I put up a gist at https://gist.github.com/felipenoris/3dbd7ff6a830be372e45dc337bb204cf with the slow code. Once julia reaches line 19: for usecache in [ false, true ] it takes a long time to start executing what´s inside the `for` loop. If I just unroll the loop (see https://gist.github.com/felipen...
The time to run N tests using `FactCheck` (which internally uses anonymous functions heavily) grows significantly faster than linear in N, causing long generated test suites to hang. This apparently is due to #13412 (tested with that commit compared to the previous one; thanks to @andreasnoack). It is approximately...
1
* vscode express smoke test repo * ctrl + shift + B, ctrl + shit + M * click on one of the errors to navigate to * get an error, event though routes/index.js exists Though this seems to work in the vscode repo nicely ![screen shot 2016-02-26 at 16 54 34](https://cloud.githubusercontent.com/assets/1926584/13...
Testing #2832 `Reapply all breakpoints` \-- I haven't seen such an action in other debuggers. IMHO it is the debugger's job to apply my breakpoints, and exposing an action to reapply all breakpoints seems like a workaround for a bug inside the debugger.
0
import 'dart:async'; import 'package:flutter/widgets.dart'; final GlobalKey _kKey = new GlobalKey(); Future main() async { runApp(new Block( children: new List<Widget>.generate( 3, (_) => new Padding( padding: const EdgeI...
* What went wrong: Execution failed for task ':app:preDebugBuild'. > Android dependency 'com.google.android.gms:play-services-tasks' has > different version for the compile (11.8.0) and runtime (15.0.1) classpath. > You should manually set the same version via DependencyResolution * * * Microsoft ...
0
![screen shot 2015-08-18 at 9 44 53 pm](https://cloud.githubusercontent.com/assets/13680558/9346381/88f747b4-45f2-11e5-9da1-f8e3a0e62a62.png) Challenge http://freecodecamp.com/challenges/waypoint-manipulate-javascript- objects has an issue. Please describe how to reproduce it, and include links to screenshots if pos...
Challenge http://www.freecodecamp.com/challenges/waypoint-manipulate- javascript-objects has an issue. Please describe how to reproduce it, and include links to screenshots if possible. "There are many ways to add and add and remove properties from objects." Should probably read as: "There are many ways to add and...
1
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION ansible 2.1.0.0 config file = /home/tessio/ansible/next/ansible.cfg configured module search path = Default w/o overrides ##### UNZIP VERSION caution: both -n and -o specified; ignoring -o UnZip 6.00 of 20 Apr...
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION **problematic** * `ansible 2.1.0.0` **working fine** * `ansible 2.0.2.0` * `ansible 1.9.6` ##### CONFIGURATION default `pip install ansible==2.1.0.0` ##### OS / ENVIRONMENT controller: fedora 23 host: centos 7 & fedora 23 ##### SUMMARY if the a...
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.7.8 * Operating System version: mac * Java version: 1.8 ### Steps to reproduce this issue 使用D...
* 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. ### Steps to reproduce this issue http://dubbo.apache.org/zh-cn/docs/2.7/user/preface/architecture/ 1. 源码导读章节没了 2. 左侧目录中,2.7 -> 开发手...
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 * **Electron Version:** * ...
Hey there I have upgraded an app to version 5 as in the list of fixes was the silent printing bug, but the issue is still the same. My code: `printWindow.webContents.print({silent: true});` Results in nothing happening at all. No errors thrown or anything. Changing it back to false, brings up the window to selec...
1
### Which version of ShardingSphere did you use? ShardingSphere-JDBC 5.1.0 + spring boot 2.3.10 <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId> <version>5.1.1</version> </dependency> ### W...
## Feature Request ### Is your feature request related to a problem? No ### Describe the feature you would like. There is a syntax for creating a shadow algorithm separately in Distsql, but cannot use a separately created shadow algorithm to create a shadow rule(I'v already check the Antler file). This makes it m...
0
* Electron version: 1.6.6 * Operating system: macOs 10.12.4 ### Expected behavior When opening a BrowserWindow with a parent, modal: false and show: false the window should start hidden. ### Actual behavior The window shows nevertheless ### How to reproduce Create a first (main) window. Create a second (c...
* Electron version: 1.6.1 * Operating system: macOS Sierra When you do this from a renderer process: new electron.remote.BrowserWindow( parent: parentBrowserWindow, show: false, ); The browser window always shows even though the `show` option is `false`. If you do not pro...
1
I want to use the seaborn violin plot due to the extrapolations of the KDE. However, the violin plot of the **last two** ones are very tiny, I need to zoom in to see the distribution. But this doesn't happen with matplotlib. import matplotlib.pyplot as plt import seaborn as sns a=[[195.0, ...
The online docs page for swarmplot uses "dodge" in an example of the behaviour of "split". Copied from the doc page: > **_Split_** each level of the hue variable along the categorical axis: > >> ax = sns.swarmplot(x="day", y="total_bill", hue="smoker", > ... data=tips, palette="Set2", **_dodge_** =True)
0
Hello, When I updated atom to version 0.189.0 in my ubuntu desktop. It has problem with thai language. Now i down grade to 0.188.0. It work. Please fix it in next version. atom is good IDE for me. Thank you.
Text: > > 这上面的夜的天空,奇怪而高,我生平没有见过这样奇怪而高的天空。他仿佛要离开人间而去,使人们仰面不再看见。然而现在却非常之蓝,闪闪地睒着几十个星星的眼,冷眼。他的口角上现出微笑,似乎自以为大有深意,而将繁霜洒在我的园里的野花草上。 ![3](https://cloud.githubusercontent.com/assets/49931/6959354/a30f8266-d94a-11e4-9167-35ea308a5ad2.png) It happen after update to 0.189.0, and it's normal in 0.188.0 . I try disabled all co...
1
# Environment Windows build number: 10.0.19023.0 Windows Terminal version: 0.6.2951.0 # Steps to reproduce 1. Download the following simple C# project: https://github.com/Treit/TerminalStress/tree/master/src 2. Launch wt.exe (Windows Terminal) and start a Developer Command Prompt for VS2019 3. Execute '...
# Environment Windows build number: [run `[Environment]::OSVersion` for powershell, or `ver` for cmd] Windows Terminal version (if applicable): Microsoft Windows [Version 10.0.18362.418] Any other software? WSL (version 1, not tried on WSL2 since not on Insider Program). Termin...
0
I tried setting the `Authorization` header manually to make a request to the Github API, but authentication failed despite the same token working fine when making the request using cURL, `urllib.request.Request()`, and other methods. ## Expected Result Successful auth and a `200 OK` response. ## Actual Result Aut...
## Summary Explicitly calling out method-level auth parameter that matches associated session-level auth seems to yield functionally different behavior. ## Expected Results I am parsing a CSV file containing references to local filenames that I am uploading via Requests to a RESTful API I'm helping test. The inten...
0
I need to type both stateless component and classic component in single component property: **TypeScript Version:** 1.8.10/1.9.0-dev.20160518-1.0 **Code** // A self-contained demonstration of the problem follows... // Ideally: interface ComponentProps { ButtonComponent: React.Statele...
It would be nice to not do `///<reference path="to/declaration.d.ts"/>` on source files to be able to compile with dependencies. It becomes problematic when you move files around and you have to go through each file that has those reference paths. I'm suggesting a different way of including reference paths, something...
0
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION [root@master ~]# ansible --version ansible 2.1.0.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION ##### OS / ENVIRONMENT ##### SUMMARY I just setup 2 b...
After I upgrade ansible 2.0.0.1 from 1.9.4, when performing a playlook always encounter intermittent fault "failed to resolve remote temporary directory from". $ ansible-playbook playlooks/playlook-filters.yml PLAY *************************************************************************** ...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The `<Tooltip>` popper should abide by the `placement` prop (default: `bottom`) when opening from within a cell in a `<TableHead>` ## Current Behavior The `<Tooltip>` popper always appears in the top l...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Have access to add html attributes to `<Button>` and `<ButtonBase>.` For example be able to set tabindex to -1 on a button. ## Current Behavior Based on the documentation, there does not appear to ...
0
The standard way of representing an LRU is to have nodes be stored in a hashmap or binary search tree, with lookup-by-key, and in a linked-list which represents recency. This allows O(1) or O(logn) lookup/insert time, and constant time update/eviction with the recency list. The representation is usually something li...
It would be really nice to have a very efficient, reusable implementation of this common pattern. It can be implemented as a hash table with an intrusive doubly linked list threaded through the entries. This is also how Python implements `OrderedDict` and Java implements `LinkedHashMap`.
1
When running a the test suite we get a number `PendingDeprecationWarning`, PendingDeprecationWarning: the matrix subclass is not the recommended way to represent matrices or deal with linear algebra (see https://docs.scipy.org/doc/numpy/user/numpy-for-matlab-users.html). Please adjust your code to use ...
For example: https://travis-ci.org/scikit-learn/scikit-learn/builds/340387057. I can reproduce locally. ________________________________ test_max_iter _________________________________ @ignore_warnings def test_max_iter(): # Test that the maximum number of iteration is reach...
0
when i run imagenet example ; in tensorflow/models/image/imagenet/classify_image.py i add * w=tf.python.training.summary_io.SummaryWriter( sess.graph_def, FLAGS.model_dir, 'graph.pbtxt') * tf.train.SummaryWriter.flush(w) * tf.train.SummaryWriter.close(w) output a file: events.out.tfevents.1452154974.ip-172-30...
### Summary Attempting to visualize the Inception v3 graph with TensorBoard results in an empty graph (after several minutes of loading). _Update: an earlier version of this issue indicated that the progress bar hung forever, but apparently, I just didn't wait long enough._ ### Environment info Operating System: ...
1
Hi it seems that the chrome dev tools in 0.27.x do not see source maps I am programming with clojurescript and when I use the chrome dev-tools on in 0.26.1 I can see both the `.js` files and the `.cljs` files. In 0.27.0 and 0.27.2 I only can see the `.js` files
Running a file through browserify using wzrd to serve the content on `localhost:9966`. wzrd index.js -- -d This works fine in regular Chrome DevTools. However, opening `http://localhost:9966/` in Electron and viewing its DevTools is not working with source maps. (They are enabled in the DevTools optio...
1
~~Good first issue.~~ throw new Error("abcd"); gives the output ![](https://user- images.githubusercontent.com/29990554/79696348-0d596100-8274-11ea-8afc-1f55ab2fb5e1.png) That second line, the "source name" is always the same as the first frame. The line number is written in three places and one of...
# Summary Deno has panicked when run bellow code at interactive mode. const str = "🌍🤖😸🎉"; console.log(str.slice(0,3)); Error message root@523db2214abf:/# RUST_BACKTRACE=1 deno Deno 1.21.3 exit using ctrl+d or close() > const str = "🌍🤖😸🎉"; undefined > con...
0
This code: mod A { struct X; mod B { use A::X; pub fn foo(_: X) {} } } Triggers: src\main.rs:6:23: 6:24 error: private type in exported type signature src\main.rs:6 pub fn foo(_: X) {} The `foo` function is only ...
type items don't work with enums. #[derive(Debug)] enum Foo { Bar, Baz, } type Loz = Foo; fn main() { let y = Loz::Bar; println!("{:?}", y); } On the stable channel the following error occurs: <anon>:8:13: 8:21 error: type `Foo` does n...
0
`OBJLoader2` is now around for a while and I think that especially the Parser has reached at least feature parity with the other implementation. It currently has less known bugs and the code is now more accessible to others than it has been in the past (code reviews&verification in R90 and R91). `OBJLoader` is more ...
I found some problem on loader .obj ![qthreejs](https://camo.githubusercontent.com/3197d36a9c5b1d67113e5e6e1887b007816d81b5e3cad3d56701ae90f726032b/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343036363136322f3833373335322f38383730396336362d663330342d313165322d396662332d36636262623631656339393...
0
### Choose one: is this a bug report or feature request? Bug report. ### Summary When attempting to import and re-export a TypeScript `enum` with `@babel/preset-env` in loose mode, Babel generates code with an undefined export that throws a `TypeError` at runtime. This issue appeared after upgrading `@babel/preset...
## Bug Report **Current Behavior** code split fail with preset-env modules:commonjs v7.5.4 **Expected behavior/code** when modules: 'common' and plugin @babel/plugin-syntax-dynamic-import''; babel will tranfrom import(...) to require(...), then will cause code split fail **Babel Configuration (.babelrc, pa...
0
# 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 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 I expected process.env.NODE_ENV on the client/browser to correspond to environment variable set when app is run: package.json "scripts": { "dev": "next", "staging": "NOD...
Hi, i have a question about minification. As i have read now in next we use Terser plugin to do it, but it seems that i am missing something because i try to catch errors with bugsnag and i need source map and minified files to upload to bugsnag. So the question is how to create source maps for serverless files...
0
**I'm submitting a ...** (check one with "x") [x ] bug report [ ] 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** The http.delete method doesn't wo...
**I'm submitting a ...** (check one with "x") [ X] bug report [ ] 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** Post RC5 upgrade, facing below err...
1
#### Challenge Name https://www.freecodecamp.com/challenges/create-a-form-element However, this issue has come up on all of my challenges. It didn't happen at first, but then it started happening some challenges ago and persisted, though I'm not sure on which one specifically. #### Issue Description Whenever I b...
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
# Send the same command to all the active tabs within windows terminal I hope windows terminal come with a feature that it can send the same command to all the active tabs. Let's say we open 4 tabs within terminal,then each tab have a connection to a SSH server. and we want to know the status of the firewall on th...
# Description of the new feature/enhancement When launching a new tab, if any error occurs during the startup of the tab (e.g. an error from the command being run), Terminal needs to display the error rather than just close the tab. This would help the user to better understand why the tab hasn't successfully opene...
0
[Enter steps to reproduce below:] 1. Opened atom from terminal while running fish shell. 2. Waited... Silent-sync package started its synchronisation. **Atom Version** : 0.190.0 **System** : Mac OS X 10.10.3 **Thrown From** : Atom Core ### Stack Trace Uncaught Error: spawn /bin/sh EAGAIN At...
Uncaught Error: spawn /bin/sh EAGAIN **Atom Version** : 0.161.0 **System** : Mac OS X 10.10.1 **Thrown From** : Atom Core ### Steps To Reproduce 1. Install atomatgit plugin 2. Attempt to launch it via command palette ### Stack Trace At events.js:85 Error: spawn /bin/sh EAGAIN ...
1
Strict mypy mode gives such errors: base/api/users/controllers.py:4: error: Module 'fastapi' has no attribute 'Depends' base/api/users/controllers.py:4: error: Module 'fastapi' has no attribute 'HTTPException' on such import statement: from fastapi import Depends, HTTPException...
### Description I want to use the jwt auth, and learn the tutorial about it. There are sth confused me: @router.post('/token') async def login(form_data: OAuth2PasswordRequestForm = Depends()): user = await authenticate_user(form_data.username, form_data.password) if not user: ...
0
**nicolas de loof** opened **SPR-1018** and commented Some classes don't expose a plublic setter for internal list (as an example, commons-configuration CompositeConfiguration) bue some addXXX(item) method. As suggested in http://forum.springframework.org/viewtopic.php?t=3617 a beanPostProcessor can be used to s...
**Ben Hutchison** opened **SPR-230** * and commented Objects that contain other objects (common examples include Swing Containers and the Collections classes) frequently cannot have their initial state specified through setting javabeans properties alone. This is a request for the spring core to include extensions...
1
Please can you add a fancy zone feature and shortcut to enable the user to maximize a window over multiple displays.
# Support zones which span several monitors Could you please add the capability to define zones across several monitors? For instance I would like to define one single zone spanning two monitors (this is my current setup with ultramon for instance). Thanks very much
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When Dialog closes, Tooltip should not appear again. ## Current Behavior Tooltip appears again, need to have a click somewhere to let it disappears. ## Steps to Reproduce (for bugs) 1. Wrap a Butto...
I have a RaisedButton I am trying to label with a KaTeX rendered span. The content of the label is hidden behind the button and the button is clickable far underneath the button. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The button should r...
0
# 🚀 Feature request Modify BERT models (src/transformers/modeling_bert.py) to conform to TorchScript requirements, so they can be `jit.script()`-ed, not just `jit.trace()`-ed (as is currently the only supported option) _Note:_ I have a working version implementing this, which I would like to contribute. See ...
`tests/test_trainer_distributed.py` fails occasionally on multi-gpu github runner CI and as a result doesn't free up the 29500 default distributed port. This could be caused by an occasional deadlock discusses in testing_utils.py's `_stream_subprocess``. When debugging one such zombie it was stuck in `exec(eval(sys....
0
# Environment Windows build number: Microsoft Windows [Version 10.0.18898.1000] Windows Terminal version: commit 6c7dfd2ce45841d32f3990147506de2f7903485d # Steps to reproduce Open the Terminal app and try to type any character that requires `Alt-Gr`, e.g., `{`, `[` or `\` on a German keyboar...
**Your Windows build number:** 10.0.18362.86 **What you're doing and what's happening:** Trying to enter the `@` sign on a Swedish keyboard in a PowerShell console using `Alt Gr` \+ `2`. See animated gif: ![terminal](https://user- images.githubusercontent.com/357872/57315225-7099c400-70f3-11e9-803f-4d60d11fee...
1
This is also present in Julia v1.1: julia> struct ProductSpace{T<:Tuple} end julia> using StaticArrays [ Info: Precompiling StaticArrays [90137ffa-7385-5640-81b9-e52037218182] julia> function convert_space(::Type{ProductSpace{Tuple{SVector{M,T},T}}}, x::SVector{N,T}) wh...
I'm making a new issue for an older issue (#22239) that was partially fixed. The problem is a StackOverflow error in the following minimal working example: bar(::Type{Val{Tuple{Tuple{T},T}}}, ::Val{T}) where {T} = 1 bar(::Type{Val{Tuple{T,Tuple{T}}}}, ::Val{T}) where {T} = 2 The output using ...
1
Since 2.7, it's recommended to use `absolute_url` to generate absolute assets URL (http://symfony.com/blog/new-in-symfony-2-7-the-new-asset-component). However, in a console command, `absolute_url` does not rely on `request_context` and, therefore, cannot generate reliable asset URLs... **Reproduction** : Clone: l...
Hi, I m trying to send emails from the CLI (with a valid scheme/host) * For the `{{ url('app_homepage') }}` => it works (cf http://symfony.com/doc/current/cookbook/console/sending_emails.html#configuring-the-request-context-per-command) * For the `{{ absolute_url(asset('img/app.jpg')) }}` => does not work Is t...
1
#### A small, complete example of the issue import pandas as pd df = pd.read_csv('greedy.txt', parse_dates=['EuroDate']) print(df) with "greedy.txt" as EuroDate 10/9/2016 30/9/2016 #### Expected Output EuroDate 0 2016-09-10 1 20...
The build dependencies could be enormously simplified if we could remove the reliance of _libs/src/util.pxd on _libs/src/numpy_helper.h. I've ported most of the functions directly to util.pxd, would like input on a few remaining ones. PANDAS_INLINE PyObject* get_value_1d(PyArrayObject* ap, Py_ssize_t i...
0
#### Problem description There are several convenient datasets available in `sklearn`. They consistently return the `Bunch` `sklearn` object. Therefore, it would not be too difficult to create a function to convert from `sklearn` into a nice, clean `pandas` dataframe. #### Proposal I am happy to take on the task o...
Users should be able to get datasets returned as [Sparse]DataFrames with named columns in this day and age, for those datasets otherwise providing a Bunch with `feature_names`. This would be controlled with an `as_frame` parameter (though `return_X_y='frame'` would mean the common usage is more succinct).
1
### Problem description ### Steps to reproduce ### Versions * Material-UI: * React: * Browser:
[x ] I have searched the issues of this repository and believe that this is not a duplicate. If using multiple prop on Select component, label goes back to placeholder position on lost focus, although value is set. ![multiselect_label_issue](https://user- images.githubusercontent.com/1487984/34601653-4c85f406-f1fd-...
0
# Environment Windows build number: Version 10.0.18362.175 Windows Terminal version (if applicable): Commit `a08666b` # Steps to reproduce 1. Start the Windows Terminal (Dev Build). 2. Open an Ubuntu tab (or whatever Linux shell you have). 3. Do a bunch of directory listings that really fill up the scr...
# Environment 18362.449: [run `[Environment]::OSVersion: 1903] Windows Terminal version (if applicable):V0.6 Any other software? # Steps to reproduce my project just use euc-jp encode powerShell command: chcp 20932 but can't read text for euc-jp encode and i can't change to ...
0
ReactBaseClasses.js:64 Uncaught TypeError: this.updater.enqueueCallback is not a function at Transition../node_modules/react-transition- group/node_modules/react/lib/ReactBaseClasses.js.ReactComponent.setState (ReactBaseClasses.js:64) at Transition.safeSetState (Transition.js:294) at Transition.performEnter (Tr...
* I have searched the issues of this repository and believe that this is not a duplicate. `MenuItem`s passing a `containerElement` prop, e.g.: <MenuItem onClick={props.toggleDrawerOpen} primaryText={t('nav.home')} containerElement={<NavLink exact to="/" />} /> ...thro...
0
I've been building an entire application to get my hands wet with deno. It's great so far. Thank you everyone for your hard work and contributions. A main development pain point I experience is importing new packages. I have to visit the package documentation, and get the url. Even for packages I have already us...
This has probably cross your mind while in the early stages of development in Deno, but what about an alias standard for packages? If I wanna import say React into most of my files I may not wanna write its url into each one(gotta admit it's kinda ugly), so why not reference it once into a file that act as a synonim...
1
Domain Errors and Bounds Errors provide incorrect tracebacks when called within loops. For example, if a file contains while true 10^(-1) end then the domain error is traced back to line 1, instead of line 2. Bounds errors provide incorrect tracebacks in the following example: ...
Should this test not succeed? using Test function becareful() @warn "attention" end @test_warn r".*attention.*" becareful() I get this error message on Julia 0.7.0 and 1.0.0 (official Linux build). ┌ Warning: attention └ @ Main REPL[2]:2 Test F...
0
When visualizing high-dimensional datasets, parallel coordinates plots are sometimes very useful. I would love for Seaborn to have a build in function to do this! **Resources** * Wikipedia: Parallel coordinates * Python Graph Gallery: Parallel coordinate plot * plotly: Parallel Coordinates Plot in Python * ...
Tested with seaborn's latest dev version, pandas 1.2.3. Dataframes can have indices with repeated entries. For example, `df.explode` which converts lists in cells into separate rows, keeps the original indices. Some seaborn functions generate an error `ValueError: cannot reindex from a duplicate axis` with such data...
0
#### Issue Description * When Issue Happens When I want to scroll down in the Map during a lesson. * Steps To Reproduce * Open a lesson. * Click Map * Try to scroll down. #### Browser Information * Browser Name, Version Safari 9.0.3 * Operating System OSX 10.11.3
This happens many times. When I click on the map tab, I cannot scroll down the list on the right. But I can scroll up normally. ![screen shot 2016-02-17 at 19 37 02](https://cloud.githubusercontent.com/assets/16045446/13109369/b980fca8-d5b3-11e5-948b-4d874153fc63.png) It seems that the "menu" button displays abno...
1
This happens every time I have a dirty form on one tab, move to another tab with the same form and come back. @MSchrenker commented a test case below to reproduce a similar issue. flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ flutter:...
## Steps to Reproduce I have a PageView that contains the top level widgets for my app, with switching between them controlled by a BottomNavBar. As per @Hixie's advice in the chat, I am adding `AutomaticKeepAliveClientMixin` to these top level widgets so the PageView won't recycle them and will preserve state. Afte...
1
While playing with #6911 I ran into a strange intermittent problem. julia> ° = pi/180 0.017453292519943295 julia> 60° ERROR: syntax: invalid character "?" julia> 60° ERROR: syntax: invalid character "?" julia> 60° ERROR: syntax: invalid character "?" ...
At first I thought it could have been an issue related to how I copied and pasted the pi character because after pasting it again it simply worked but after playing with multiplications I get seemingly random errors like: ERROR: syntax: invalid character "�" Notice how 2 * π evaluates as expected but 2π raises an e...
1
The sort functions currently require a pure comparison function. Is this actually required? For example, I need to be able to sort the results of a query where the results are not always orderable. If the comparison functions are allowed to be impure then I can add a `err: @mut ~str` argument to my function and see ...
When building current rust master, the following warning is emitted (non- fatal) rustc: x86_64-unknown-linux-gnu/stage0/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_typeck ../src/librustc_typeck/astconv.rs:1565:17: 1566:79 warning: diagnostic code E0045 already used ../src/librustc_typeck/...
0
It is often a pain to track down dependency problems, especially transient dependencies. It is helpful if Druid only ever include a jar ONCE if possible, and not shade it so that the exact version can be tracked. Unfortunately we seem to have missed a few duplicates, or they are in extensions and might be better serv...
# Proposal Adding Double precision metrics. Currently Druid stores double aggregated numbers as floats which leads to lose of precision and not expected results set for the case of Min/Max where you sort of expect to see the same precision of the actual indexed data. The goal of this work is to add support of actu...
0
This afternoon I have been writing code that relies in both elliptic integrals (`scipy.special.ellipk` and `scipy.special.ellipe`) but I was getting completely wrong values. This has been until I realized that scipy defines the elliptic integrals in a different that wikipedia or other resources do. For example, wik...
Dear All While working with special functions that can be defined in terms of the complete elliptic integrals of the first and second kind, provided by ellipk and ellipe I realized, that , in contrast to the definition found on wikipedia, i.e. K(k) = \int_0^{\pi/2} \frac{d\theta}{\sqrt{1-k^2 \sin^2\theta}} ...
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....
AsyncResult memory leak on task producers when producers retrieves task results from redis results backend. We are using redis as broker and results backend. This is issue is similar to #4839. I have attempted to backport this fix: #5332 with vine 1.3 + celery 4.2.2. However, leak of AsyncResult objects continues to...
0
Just clone JodaTime. Start out of tree.
Right now add on two Options effectively treats a `None` as a `Some(Zero::zero())`, which is: * Unnecessary because `Some(Zero::zero())` is already a valid value, why duplicate it's meaning with `None`? * Contrary to the way the `Maybe` Monad in Haskell works: If both values are a `Some`, add them, else return `...
0
Hello - thanks for all the hard work on sqlalchemy! I have an application where a handful of processes all interact with a single sqlite DB: `foo.db`. `foo.db` starts with 0 tables, and each process "lazily" bootstraps `foo.db` with a table named `"some_table"`. I notice, however, that when multiple processes call ...
**Migrated issue, originally created by Craig Weber (@weberc2)** For tables without a primary key, TableClause.count() surprisingly compiles down to `SELECT count(<first-column-in-ColumnCollection>)...` instead of `SELECT count(*)...`. As a consequence, the returned result is incorrect by the number of NULLs in the...
0
_(Please close this issue if you folks have already discussed a similar request.)_ # Summary of the new feature/enhancement Window size memory when dragging out of FancyZones alignment. # Proposed technical implementation details In default Windows snapping, once you drag a window away from a snapped position, t...
I could never figure out how to make this work. Would be nice but is a hard problem.
1
@timothysc has a comment on this on #23387. It's orthogonal to the issue but of course we could extend it to a discussion. Currently, Codec() and Versioner() wrap an input object that could be shared across different storage back-ends. The code is just a repeat for each implementation: func NewSomeImp...
BUG REPORT **Kubernetes version** (use `kubectl version`): Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.6", GitCommit:"ae4550cc9c89a593bcda6678df201db1b208133b", GitTreeState:"clean", BuildDate:"2016-08-26T18:13:23Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"} Server Versi...
0
Passing a list of strings to the DataFrame.sort() method is stable, but passing a string by itself causes the sort to be unstable. I'm defining sort stability to mean row order is maintained for duplicate values in the sorted column. ## Code to recreate >>>import pandas as pd >>>df = pd.DataFrame...
see discussion in #3059, #3095, also see #1943, #3102 This only applies with a non-unique column index Currently if duplicate columns across dtypes there are issues in getting the correct block given a column name. I think it is possible, though non-trivial, to instead have a positional map from the frame columns ...
0
[X ] bug report [ ] feature request [ ] support request **Current behavior** I am working on my Angular2 component where I have a component that displays a login status that has no dependency on which routing is picked. I have also a component that displays the proper page with . Both are...
* * _I'm submitting a ... *_ [ ] bug report [ X] feature request * **What is the current behavior?** I'm using Http in an app and accidentally forgot to include **http.dev.js** in my index.html and received the following error as the app tried to load: angular2-polyfills.js:322 Error: SyntaxError: **Unexpec...
0
##### System information (version) * OpenCV => 3.1.0-master * Operating System / Platform => macOS Sierra (10.12) x86_64 * Compiler => Apple LLVM version 8.0.0 (clang-800.0.38) * build using Homebrew [today, 08:30CEST]: brew install ant brew install opencv3 --HEAD --with-java --with-ffmpeg --with-tbb ##...
##### System information (version) * OpenCV => 3.1 * Operating System / Platform => Mac OSX * Compiler => XCode Version 8.0 (8A218a) ##### Detailed description I tried to experiment with VideoCapture class in java. It looks like there is a bug - it is possible to open the camera but closing is not possible. ...
1
##### ISSUE TYPE Bug Report ##### COMPONENT NAME group module ##### ANSIBLE VERSION 1.9 ##### SUMMARY Hi, the group module seems to not work right. I am using centos 7. The expected result is that it wouldn't fail since the group is properly present. The group was added by ´yum install docker´ Task: ...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ec2 ##### ANSIBLE VERSION ansible 2.4.0.0 config file = /etc/ansible/ansible.cfg configured module search path = [u'/Users/rpm/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /U...
0
![Screenshot 2020-06-17 at 9 45 18 AM](https://user- images.githubusercontent.com/36409924/84854453-50bb2a80-b07f-11ea-8609-92f2c44d4e8b.png) The search on documentation page keeps saying initializing search. Never searches really. I have even tried clearing cache, cookies and changing network.
Not a bug in library itself but on docs webpage. The issue is that the search bar on documentation page (fastapi.tiangolo.com) does not work on safari browser on mac. Clicking on search bar shows `Initializing search` and then nothing else happens. It works on chrome though on the same system. Here's the screenshot...
1
### System info * Playwright Version: v1.31.2 * Operating System: mcr.microsoft.com/playwright:v1.31.2-focal image * Browser: WebKit * Other info: JavaScript disabled ### Source code * I provided exact source code that allows reproducing the issue locally. **Config file** // playwright.co...
### System info * Playwright Version: [v1.34.3] * Operating System: [Windows 11] * Browser: [Chrome] **Config file** // playwright.config.ts import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ projects: [ { name: 'Chrome',...
0
Attached are 3 test cases (https://gist.github.com/ppf2/3ce59f1f1332bb41af46): # TEST 1 (Dynamically mapped fields): Create an index at index creation time. Then add data. You will see that the alias does not work. # TEST 2 (Dynamically mapped fields): Create an index with no alias defined. Add data, then create th...
Today, if we create a filtered alias or a percolator query which references a field that is not yet mapped, the field is interpreted as a string. This is a problem when (eg) the user then indexes a document where the field is really numeric or a date. Any existing filters or percolator queries will not work correctl...
1
Hi, I am using Symfony 2.8.6, and after creating a new Command, I stumbled upon an unexpected error: An argument with name "command" already exists. [Symfony\Component\Console\Exception\LogicException] An argument with name "command" already exists. After trying a lot of different solut...
Symfony toolbar in 2.8.0 is generating an error because the FileCache the doctrine is generating file with the very big name in windows 10
0
## Bug Report **Current Behavior** Failing to compile correct code **Input Code** * REPL or Repo link if applicable: import {NetworkListenerEvent} from "../listeners/network-listener"; export enum NetworkControllerEnvironment { Unicast, Multicast, Broadcast, ...
Choose one: is this a bug report or feature request? **Bug report.** ### Input Code export default interface A {} Parse error in Babel repl Works in TypeScript repl ### Babel/Babylon Configuration (.babelrc, package.json, cli command) 7.0.0-beta.35 repl with TypeScript transform enabled. ### E...
1
Let us know what functionality you'd like to see in Playwright and what is your use case. Do you think others might benefit from this as well? the selenium support it Actions actions= new Actions(driver); actions.moveToElement(webElement).clickAndHold().perform();
Drag and drop should work with playwright. Using the existing mouse apis should generate working `dragstart`, `drag`, and `drop` events. There should also be new APIs to simulate dropping in external content, and to inspect content dragged from the web page.
1
Expected result: rendered text `There was an error` Actual result: `Uncaught TypeError: Cannot read property 'unmountComponent' of undefined` JSFiddle: http://jsfiddle.net/kb3gN/10167/ The code: var Parent = React.createClass({ getInitialState: function() { return {error: false...
So I'm trying to put some graceful error handling in case 1 of my views crap out: var MyGoodView = React.createClass({ render: function () { return <p>Cool</p>; } }); var MyBadView = React.createClass({ render: function () { throw new Error('crap'); ...
1
Allow functions that return aux information, similarly to grad or jvp.
Repro case: !pip install -U -q jax jaxlib import jax, jax.numpy as jnp, functools @functools.partial(jax.custom_jvp, nondiff_argnums=(0, 2)) def sample(shape, param, seed): return jax.random.gamma(key=seed, shape=shape, a=param) @sample.defjvp def sample_jvp(sha...
0
It would be great to have a numerical dodge option for boxplot that matches the behaviour of pointplot. This would allow boxplots over violin plots: https://discourse.matplotlib.org/t/boxplots-on-top-of-violinplots/22807
Hi, thanks for the seaborn library, it's a great tool! I'd like to suggest an aesthetic improvement: A configurable gap between boxes inside a group of boxes: ![Boxplot with Gap](https://camo.githubusercontent.com/6ea6e59392a52550426c6a39b1d0379f7316b495c6bfdbf16a4d40c05313d832/68747470733a2f2f696d6167652e6962622e6...
1
Downloaded bootstrap and had to recompile it to use the grid system we are using for the site. Only changed variables.less. Once I recompiled, placeholder text on all inputs no longer works. Did some testing and found it was due to the "-webkit-transform-style: preserve-3d;" property on inputs and selects. Looked in ...
## Do not comment here. This is a tracking issue for the next release, v3.1.0. Only linked issues, pull requests, and commits should be included. See the contributing guidelines for more information. All notable changes have been mentioned here. See the v3.1.0 milestone for a complete set of changes. X-Ref: #9397. ...
0
## 🐛 Bug Model I am using (Bert, XLNet....): Bert Language I am using the model on (English, Chinese....): English The problem arise when using: * the official example scripts: modeling_bert.py The tasks I am working on is: * my own task or dataset: fine-tuning Bert with added new tokens to vocabulary ## ...
## 🐛 Bug Model I am using : **BertForMaskedLM** Language I am using the model on (English, Chinese....): **multilingual** The problem arise when using: * the official example scripts: **BertForMaskedLM** The tasks I am working on is: * my own task or dataset: **Finetuning with newly added tokens**. ## To ...
1
ICE when accessing a non-existent enum variant through a reference. Test case 1 (`Bar` is a struct, not even an enum): fn foo<T>(t: &T) {} struct Bar; fn main() { foo(&Bar::Baz); } Test case 2 (Bar::Baz is a non-existent enum variant): fn foo<T>(t: &T) {}...
The compiler seems to raise a ICE whenever an enum literal reference that's passed directly as a function parameter is missing or misspelled: enum Token { LeftParen, RightParen, Plus, Minus, /* etc */ } fn use_token(token: &Token) { unimplemented!() } fn main() { // Token::Lef...
1