text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
# Bug report ## To Reproduce I'm working on reproducing, but next.js provides zero information about what's happening, so it's nearly impossible for me to actually identify where the problem is. All I know is that my code isn't working. ## Expected behavior Clicking this component should redirect to the about pag...
const app = next({ dev, dir:'./src' }) * [ x] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior It should load all the plugins in my .babelrc. It seems like it doesn't load my .babelrc and doesn't load the presets/ ## C...
0
## Bug Report **Current Behavior** When node is installed in Version 13 or 14 yarn dev will fail with following error: yarn run v1.22.4 $ vue-cli-service serve INFO Starting development server... 98% after emitting SizeLimitsPlugin ERROR Failed to compile with 1 errors ...
## Feature Request **Is your feature request related to a problem? Please describe.** I spoke with @hzoo and one thing we realized is that it's currently very difficult to determine if a site is using Babel or not. **Describe the solution you'd like** I see two solutions: 1. **Prepend the AST to have a`__bab...
0
* VSCode Version:0.10.11 * OS Version: Windows 10, Mac OSX El Captain Hi, I'm developing console-wrapper , that is an extension for javascript console.log (other languages support will be added soon) and I need some access for clipboard content in Extensions API. I think this methods should be enough for most of...
Support writing (and maybe reading) the system clipboard. Why I need it: I want to write an extension that will take the contents of the current editor, modify it (by escaping < and >) and then copy that modified text to the clipboard.
1
## 🐛 Bug 2020-02-12 01:34:22,801 copying C:\Users\1025289\AppData\Local\Temp\2\tmp5d0w7nip to cache at C:\Users\1025289.flair\models\en-pos-ontonotes-fast-v0.4.pt 2020-02-12 01:34:22,973 removing temp file C:\Users\1025289\AppData\Local\Temp\2\tmp5d0w7nip 2020-02-12 01:34:22,988 loading file C:\Users\1025289.fl...
## 🐛 Bug Error text: ====================================================================== ERROR: test_serialization_filelike_api_requirements (__main__.TestTorch) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_t...
1
I installed pytorch, and my cuda version is upto date. But when I run my command, I get the following error: My system: Windows 10 NVIDIA GeForce GTX 960M Python 3.6(Anaconda) PyTorch 1.1.0 CUDA 10 `import torch import torch.nn as nn from data_util import config use_cuda = config.use_gpu and torch....
I am unable to use pytorch with CUDA despite having installed it. OS: Windows 10 Pytorch Version: 1.1.0 CUDA Version: 10.0 I get the following error. Any help would be appreciated. ![image](https://user- images.githubusercontent.com/31413869/58431540-f5ad4300-80cb-11e9-8f04-cc6fe98acb1e.png)
1
When single layer network math is described you have following: """If we write that out as equations, we get:""" after that comes picture with weight multiplications, but there should be W_1,1_x_1 + W_1,2_x_2 + W_1,3_x_3 + b_1 etc.. Instead there written: W_1,1_x_1 + W_1,2_x_1 + W_1,3_x_1 + b_1 etc.. ...
The following image on the Beginner's tutorial page is wrong: ![softmax-regression- scalarequation](https://cloud.githubusercontent.com/assets/10536745/11130763/d030c652-89ac-11e5-8d19-186bf9af9b28.png) Here is a corrected version: ![softmax-regression- scalarequationcorrected](https://cloud.githubusercontent.co...
1
responsiveness goes south when one of the cells is very long Notice there is no scrollbar. the entire screen is resized maybe overflow:hidden / text-overflow:ellipsis; could do the trick ![screen shot 2014-04-20 at 13 21 33](https://cloud.githubusercontent.com/assets/27051/2750496/2230e3aa-c880-11e3-999e-d1bef4f...
Using `.table-reponsive` only works on the smallest screen size. Solution 1: Use `@grid-float-breakpoint` so it becomes responsive when the navbar does (currently what we do in projects) Solution 2: Use another variable that defaults to `@screen-sm-max` that can be overwritten in another less file
1
**Oliver Drotbohm** opened **SPR-8336** and commented Currently `AnnotationTypeFilter` invokes the constructor of `AbstractTypeHierarchyTraversingFilter` setting `considerInterfaces` to `false`. This probably makes sense in most cases. However there might be `BeanDefinitionParser` implementations that declare a `Fa...
**Rodrigo Urubatan Ferreira Jardim** opened **SPR-3486** and commented I think some bean definitions are just configuration, as the Data Source, Transaction Manager, Mail Server, ... but most of then are the application code, and not configuration. for the seccond case, I think it would be very easy and clean, ...
0
by **alex.gaynor** : Trying to load a PKCS8 DSA key fails with the error: ERROR: asn1.StructuralError{Msg:"tags don't match (16 vs {class:0 tag:13 length:45 isCompound:true}) {optional:false explicit:false application:false defaultValue:<nil> tag:<nil> stringType:0 set:false omitEmpty:fal...
In http://play.golang.org/p/RoelsmSVrI, this statement yields two errors: _ = []byte{"foo"} // cannot convert "foo" to type byte // cannot use "foo" (type string) as type byte in array element One seems like plenty. FWIW, a similar pair of errors is emitted for ...
0
This was exposed by #8200 and "fixed" by #8218, but the underlying problem that caused the segfault to randomly show up and disappear when rebuilding julia is probably still exists. To summarize the thread in #8200, there's a bug that causes a segfault. However, it only affects some builds. Rebuilding can make the b...
Based on the discussion here, we need to investigate if `sparse()` can be sped up. https://groups.google.com/forum/#!topic/julia-users/X8Jca4SZMxo Potential opportunities include experimenting with different ways of sorting inputs, avoiding the use of the generic `combine` function, `@inbounds`, etc. The following...
0
Seen a few usages of this already: <my-custom-element /> HTML5 spec says this is opening tag (previous versions handled it differently) and thus this fails silently and swallows up any following DOM. Compiler should probably warn / throw here if possible.
Advantages: * We could use it in WebWorker, Server side, or with native renderers. * Proper camel casing. (We can get rid of `inner-html` vs `innerHTML`) #4923 * Errors have proper line numbers. * We can rely on attribute order (not sure if it would be relevant) * We could support self closing tags `<name ...
1
This seemed to have started recently, but I'm not sure which version of electron exactly. I've reproduced it on 0.36.4 and 0.36.5. When sending an object over ipc from the main process, additional references to the same object end up being null. The first 'instance' of that property on `state` makes it to the client...
I came across a very interesting scenario. There was some missing information in a collection that I sent between two processes. Assume the scenario, Renderer and Process. If I have an array that contains multiple entries of the **same object reference** , only the **first object** will be provided to the receiving...
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Electron Version 12.0.0 ### What opera...
Hi, I just upgraded to electron 3.0 and noticed that my applications windows controls are no longer there. I use titlebarStyle: 'hiddenInset' so that I can have the native OS's buttons as my windows controls, and it worked great until I upgraded to 3.0 **Expected Behavior** The macOS buttons should be shown on the...
0
connect to the database `sharding_db`,which is a logical postgresql database(use sharding-proxy for database-spliting). when I am using some database client-tools,such as navicat,pg_dump. It always complain that I don't specify client-encoding, even I indeed do it already: root@a15d5aac4a11:/var/lib/p...
There are 30 connections, two instances in total Problem Description: Multiple instances refresh the data source, reload the data source, and create a link. Before this process, first check the old data source and new data source, including fragment configuration; CLose new and old data sources have interactive d...
0
Hey Bootstrapers. Congrats on the release. BS3 is awesome. I asked this on the BS3 pull request but didn't get a reply, but it's the one thing that is bothering me when using BS3: Shouldn't `.col-sm-*` be named `.col-md-*` instead? `.col-12` — mobile first, so you can say it affects **small** screens `.col-sm-12...
With Bootstrap 3 RC1, the `sm` keyword is used in an inconsistent manner. When referring to column sizes, it means "tablet sized." When referring to hide/show responsive classes it means "phone sized." My recommendation would be to rename all of the `col-sm-X` classes to be `col-md-X` classes. This would solve the i...
1
Im populating several Text Fields from localstorage using initialValue. As default im only able to see first row, but it will expand as soon as im start typing. Is there any way i can enable full height as default? ![image](https://cloud.githubusercontent.com/assets/7771916/22858248/9f5883b2-f0b7-11e6-8d1d-c2e9808...
### Problem description When wanting to use multiline text field (2 or more) inside a nested list item, they start by displaying only one text-input line. As soon as one character has been typed in, it will expand the rows to the set row value, and stay that way until the dom is flushed or reloaded. I am using Cloj...
1
Hi, When a modal is shown on a smaller device resolution (iPhone) and it contains more content in the body than can fit on screen, the footer of the modal is cut off from view and unreachable. iPhone dimensions: http://puu.sh/1sHaG http://puu.sh/1sHd2 Desktop dimensions: http://puu.sh/1sHdz I would assume ...
As it says. Thanks for all your love, guys!
1
I'm seeing webpack in watcher mode writing truncated files. The number of bytes seems to always be either 1682 or 0 - not sure if that's significant somehow. When its 1682 bytes, it cuts off often in the middle of a variable. It seems like it just aborts writing right in the middle of things. When this happens, I see...
Hey fellas, I've been using webpack for a few months now, and I had an idea for an optimization plugin. Before I invested a lot of time and energy figuring out how to write it, I wanted to run the idea by you guys to make sure it was sound and hadn't been attempted (and discarded) before. Basically, I'm wondering i...
0
Black screen after first click on close button. Application closes after second click on close button. Reload works fine. ![image](https://cloud.githubusercontent.com/assets/4918944/12677775/5f061698-c6ac-11e5-802c-e57d0942b250.png) ![image](https://cloud.githubusercontent.com/assets/4918944/12677834/b30ad2d8-c6a...
[7136:0129/081452:FATAL:scoped_handle.cc(44)] Check failed: false. Backtrace: (No symbol) [0x00C8D517] (No symbol) [0x00C87A57] (No symbol) [0x00CBAEBF] (No symbol) [0x00CBAF01] (No symbol) [0x00CB100B] (No symbol) [0x00CB0A0B] ...
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 ...
in creating a options list that allows the user to change different settings i found a problem with the type checkbox . take this component (function(app){ app.testing=ng.core.Component({ selector:"testing", template:"<input type='checkbox' [(ngModel)]='testing'/>"+ "<template ngFor #it...
1
### Version 2.6.14 ### Reproduction link github.com ### Steps to reproduce Just follow the steps as mentioned in the repo. ### What is expected? Browser based template compiler should report error about wrong template syntax. ### What is actually happening? 100% CPU usage with OS crash * * * This happens o...
### Version 2.5.17 ### Reproduction link https://codesandbox.io/s/6j7kz64znr ### Steps to reproduce When using two tags like and in a template of a single file component, with some white space in between. Examples (as in the link) <div> <br /> <a href="https://vuejs.org/">Vue.j...
0
### Describe the bug Looks like latest sphinx shows many warnings on generate documentation. ### To Reproduce `sphinx-build -n -T -b html doc/build build/sphinx/html` ### Error Willaadd in next comment. ### Versions * OS: Linux x86/64 * Python: 3.8.13 * SQLAlchemy: 1.4.35 * Database: N/A ...
### Describe the bug When reflecting indexes from one table to another in MariaDB, the index containing Text field can't be created as the retrieved index information in metadata does not contain the information about 'mysql_length'. mike-supplied MCVE from sqlalchemy import Column from sqlalchem...
0
I would like to be able to open a new administrator terminal using the "+" button, within the same terminal instance.
# Environment Windows build number: 10.0.18363.418 Windows Terminal version (if applicable): 0.6.2951.0 Any other software? No # Steps to reproduce Use this json file: // THIS IS AN AUTO-GENERATED FILE! Changes to this file will be ignored. { "$schema": "https://aka.ms/termina...
0
Challenge http://freecodecamp.com/challenges/waypoint-use-appendto-to-move- elements-with-jquery has an issue. Please describe how to reproduce it, and include links to screenshots if possible.
Challenge http://www.freecodecamp.com/challenges/waypoint-create-a-javascript- slot-machine has an issue. The four Javascript slot machine exercises all display the JS section of the code incorrectly. Presumably `fccss` is supposed to be `<script>`, and likewise `fcces` is supposed to be `</script>`. ![screen shot ...
1
I am installing tensorflow on window machine with the help of Python (version python-3.5.4-amd64). Command use to install tensorflow :- pip3 install --upgrade tensorflow Bellow error getting in Import tensorflow command. Traceback (most recent call last): File "C:\Program Files\Python35\lib\site- packages\tensor...
Hi - Thanks for all your hard work on this! - I've been having a problem getting Tensorflow-GPU to work on my Windows 10 notebook with a GTX 1080. I've tried to make sure all the paths are correct, etc. and have followed all the tips I can find. I ran the tensorflow_self_check.py script and got the following result:...
1
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke-serial/2221/\n\nFailed: [k8s.io] Rescheduler [Serial] should ensure that critical pod is\nscheduled in case there is no resources available {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/rescheduler.go:67\n Expected error:\n <*errors.errorString | 0xc820ac50c0>: {\n s: \"Error while waiting for replication controller kube-dns-v19 pods to be running: Timeout while waiting for pods with labels \\\"k8s-app=kube-dns,version=v19\\\" to be running\",\n }\n Error while waiting for replication controller kube-dns-v19 pods to be running: Timeout while waiting for pods with labels \"k8s-app=kube-dns,version=v19\" to be running\n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/rescheduler.go:66\n \n\nPrevious issues for this test: #31277 #31347 #31710\n\n"
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-\nsoak-continuous-e2e-gce/6486/\n\nFailed: [k8s.io] Rescheduler [Serial] should ensure that critical pod is\nscheduled in case there is no resources available {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/rescheduler.go:67\n Expected error:\n <*errors.errorString | 0xc820b819e0>: {\n s: \"Error while waiting for replication controller kube-dns-v19 pods to be running: Timeout while waiting for pods with labels \\\"k8s-app=kube-dns,version=v19\\\" to be running\",\n }\n Error while waiting for replication controller kube-dns-v19 pods to be running: Timeout while waiting for pods with labels \"k8s-app=kube-dns,version=v19\" to be running\n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/rescheduler.go:66\n \n\nPrevious issues for this test: #31277 #31347\n\n"
1
In Windows 10, when Numpy has overflow it shows a wrong number without error. In Linux it doesn't have this problem. import numpy as np a= [4, 7, 6, 5, 4, 5, 6, 8, 2, 8, 4, 8, 9] print (np.prod(a)) >> -579076096 The correct one is import numpy as np a= [4, 7, 6, 5, 4, 5...
This has come up before, but I'm not sure we have a canonical issue. Historically in python 2: * `builtins.int` is mapped to `np.int_` (C `long`), since `builtins.int` is stored as a C `long` * `builtins.long` is mapped to `np.longlong` (C `long long`), since `builtins.long` is infinite precision and that's the...
1
**Apache Airflow version** : 1.8.0 Ticket was created 23/Nov/16 01:12 **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): **Environment** : * **Cloud provider or hardware configuration** : * **OS** (e.g. from /etc/os-release): * **Kernel** (e.g. `uname -a`): * **Install tools** ...
### Apache Airflow version 2.3.1 ### What happened The execution of of the command "airflow db upgrade" to upgrade the version from 2.2.5 to 2.3.0 or 2.3.1 fails with the following error: (airflow) [airflow@rabbit01 airflow]$ export LD_LIBRARY_PATH=/opt/python- bit/lib:$LD_LIBRARY_PATH (airflow) [airflow@rabbit...
0
**Glide Version** : 4.12.0 **Integration libraries** : okhttp3-4.9.0 **Device/Android Version** : OPPO A5/Android8.1.0 **Issue details / Repro steps / Use case background** : **Glide load line /`GlideModule` (if any) / list Adapter code (if any)**: Glide.with... **Layout XML** : <Fr...
I would like to find a way to cache the webview images myself, as some of them may be used in the future in an imageview. Currently, I can find out when an image will be loaded and get its url through the webview's `shouldInterceptRequest`. I've tried using Glide's `submit` call, but the loading is significantly slo...
0
# Environment Windows build number: Microsoft Windows NT 10.0.18362.0 Windows Terminal version: 0.6.2951.0 # Steps to reproduce 1. Set the `historySize` of a terminal profile to a sufficiently large number. (I modified the default profiles in my testing) * 32747 or larger for powershell...
# Description of the new feature/enhancement This one is a "nice to have", but I'd love to be able to stack tabs and tile them side-by-side (ex. a powershell tab on one half, and a WSL tab on the other half). This'd help my efficiency when I need to be testing my work on Windows and Linux at the same time. # Propos...
0
@griesemer suggested this was worth looking into, as does a TODO by @rsc in syntax.go. @josharian described some initial attempts at this last year on golang-dev. @rsc also pointed out that a nil `[]*Node` takes up 3x as much space as a nil `*NodeList`, so it might be desirable to use `*[]*Node` for variables that a...
1. What is a short input program that triggers the error? package main import "fmt" func main() { lg := 1 << 1 i := 1 << uint64(lg) fmt.Printf("i = %v\n", i) } Note that the program compiles just fine if you were to inline the value of 'lg' in the follo...
0
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior To not hide overflow of body & make things shift when scrollbar disappears. ## Current Behavior Hides overflow of body. ## Steps to Reproduce (for bugs) 1. Have content within `<body>` tag that cau...
### Description The password field in android contains an eye icon that when clicked shows the password (until released) Thought it should have been implemented in the material ui too. ### Images & references https://medium.com/@moyinoluwa/password-visibility-toggle-android-support- library-revision-24-2-0-9...
0
In the following, the `hue` has no effect (seaborn 0.11.1 as well as current master) tips = sns.load_dataset("tips") sns.boxplot(data=tips, y='tip', hue='smoker') It takes effect if something like `x='sex'` is added. Thanks for creating a great package.
# Problem When only `y` is specified to `violinplot` it does not consider the argument to `hue`. tips = sns.load_dataset("tips") sns.violinplot(data=tips, y='total_bill', hue='smoker') ![bilde](https://user- images.githubusercontent.com/14995334/97690861-daebb480-1a9d-11eb-9681-f943e401bc0b.png) ...
1
This was asked a long time ago, and I just ran into a similar need. It would be nice to be able to easily make a filled step plot. The solutions I've come up with are suboptimal. http://www.mail-archive.com/matplotlib- users@lists.sourceforge.net/msg13072.html
Hi, I think the fill_between function should take a drawstyle option. It would be both handy and consistent. Here is a post from someone else requesting the feature, with a figure illustrating why this is needed: http://old.nabble.com/fill_between-with-drawstyle-steps--td30172277.html thank you
1
Challenge Use a CSS Class to Style an Element has an issue. User Agent is: `Mozilla/5.0 (Linux; Android 5.1.1; SM-T670 Build/LMY47X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: ...
Challenge http://www.freecodecamp.com/challenges/waypoint-target-a-specific- child-of-an-element-using-jquery has an issue. Please describe how to reproduce it, and include links to screenshots if possible. CODE: $(".well:nth-child(2)").addClass("animated bounce"); No nth-child works (have tried 0, 1, 2, 3). 2 vi...
0
Have a launch android emulator (or open the avd) UI available in IntelliJ like iOS does
If no Android virtual device is running, you have to start it from the Android AVD Manager. Would be good to have en entry in tools to open that, similar to what Android Studio has (we should probably call it `Android AVD Manager`): ![screen shot 2016-12-13 at 12 14 37](https://cloud.githubusercontent.com/assets/136...
1
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME template and potentially more ##### ANSIBLE VERSION $ ansible --version ansible 2.2.1.0 config file = /opt/****/ansible.cfg configured module search path = [ '/home/****/ansible'] ##### CONFIGURATION $ cat ans...
Hello, I wanted to test ansible-2.0.0. When I execute the command "ansible all -m ping", I have the following output. ansible 2.0.0 config file = ansible2/conf/ansible.cfg configured module search path = ansible-2.0.0/library No config file found; using defaults Loaded callback ...
0
Just to play safe it is better to place `"use strict"` inside function to avoid concat issues in future. Original import {a} from './a.js'; Expected define(["exports", "./a.js"], function(exports, _a) { "use strict"; var a = _a.a; }); Actual "use strict"...
> Issue originally reported by @hzoo in babel/babel-preset-env#91 { "presets": [ "env", { "targetPreset": "experimental-stage-3" // default to latest like it is currently, "targets": { "browsers": ["last 2 versions"] }, "exclude": ["trans...
0
Challenge use-hex-code-to-mix-colors has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.101 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. <style> .dodger-blue-tex...
Challenge use-hex-code-to-mix-colors has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. <style> .red-text { ...
1
Make sure these boxes are checked before submitting your issue - thank you! * I have checked the superset logs for python stacktraces and included it here as text if any * I have reproduced the issue with at least the latest released version of superset * I have checked the issue tracker for the same issue and...
Hi Superset people! I need your wisdom once again. Is it even a Superset issue? Or an nvd3 one? Is there any chance for a fix or a workaround? Thanks in advance! * I have checked the superset logs for python stacktraces and included it here as text if any * I have reproduced the issue with at least the latest ...
1
### 💻 * Would you like to work on a fix? ### How are you using Babel? @babel/cli ### Input code // не строгий режим function mixArgs(first, second = "b") { var __es_vNaN = Array.prototype.sort.call("{}".split("writable", 10000)); console.log(arguments.length); Nu...
> Issue originally made by Joe Lencioni (lencioni) ### Bug information * **Babel version:** 6.6.5 (babel-core 6.7.0) * **Node version:** 5.8.0 * **npm version:** 3.7.3 ### Options { "plugins": [ "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015...
0
Hey guys, I'm from the Angular team and we are currently trying to use the TypeScript compiler to compile the project to system.register format. In the process, I noticed a bug with the output. I've cloned your branch **release1.5** to make sure that it wasn't just a bug on our end. Here is a small example that I ha...
**TypeScript Version:** 1.8.x The tsconfig.json can list compileOnSave which is nicely supported in VS. To make that work on VS Code as well the necessary support should come from the tsserver. We could either send the tsserver and event when a file is saved or the tsserver could make use of its file eventing to de...
0
Consider enabling tabs inlined in the title bar by default, and also showing a single visible tab for the starting shell (e.g. always show tabs, even if there's only one process.) This might reduce the every other day issue or comment asking why terminal "doesn't work" because they don't know to press ctrl+T (unders...
Followup to #430. Here's what I'm thinking. * `alwaysShowTabs` -> `true` * `experimental_showTabsInTitlebar` -> `true` * always include Windows Powershell (`background`: `#012456`) * include PowerShell Core separately (`background`: unset) * drop `Courier New` for powershell
1
# 🌟 TAPAS (Weakly Supervised Table Parsing via Pre-Training) ## Model description **TAPAS** ArXiV Paper Google AI Blog, an approach to question answering over tables without generating logical forms. TAPAS trains from weak supervision, and predicts the denotation by selecting table cells and optionally applying a ...
## Environment info * `transformers` version: 4.3.2 * Platform: Linux-5.4.0-66-generic-x86_64-with-debian-buster-sid * Python version: 3.7.9 * PyTorch version (GPU?): 1.7.1 (True) * Tensorflow version (GPU?): not installed (NA) * Using GPU in script?: * Using distributed or parallel set-up in script?:...
0
# Feature request `next` creates a `webpack` config and it'd be nice to have access to that. ## Is your feature request related to a problem? Please describe. Certain other tools, such as `react-styleguidist`, need to know how `webpack` is configured to work. But `next` abstracts this away and doesn't put it toget...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior I expected the promise returned from Router.push('/myurl') would only resolve after the new page had been navigated to. This is useful for triggering UI events after the transition like: Router.push('/my...
0
Selecting certain columns from certain SQL queries frequently returns the following error: `Unknown exception: Cannot coerce[java.util.ArrayList] to VARCHAR` Which columns/queries that are affected seems to be non-deterministic, though I can always make a given query work by excluding particular columns. Eg. for...
Druid SQL doesn't support multi-value columns right now. They kind of work sometimes but not always. * They are reported as VARCHAR which does not give the user a hint that they are multi-value. * ~~If you select one without aggregation then you get an error (#4637) as the runtime tries to cast them to string bu...
1
When I am using DropDownMenu and as `menuStyle` I am setting transparency but it is being set for a div whose role is `menu` but a "div" above that is actually controlling the transparency. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Make the Men...
Hi, I was wondering if it is possible to use keyboard (tab / arrow key) navigation inside a modal dialog and not have it "bubble up" beyond the dialog. Currently when I open a dialog with modal set it true, and attempt to use the tab key to navigate between elements, it still gives focus to elements outside of ...
0
**Describe the bug** Unable to bundle TS code that uses the DOM. **To Reproduce** 1. Create a `test.ts` file with contents: document.getElementById("comments-container"); 2. Create `tsconfig.json` with contents: { "compilerOptions": { "target": "ES2016", "m...
getting this error AssertionError: "data" is unexpectedly null for "asset:///lib.dom.d.ts". at assert (deno:cli/tsc/99_main_compiler.js:53:13) at Object.getSourceFile (deno:cli/tsc/99_main_compiler.js:377:9) at findSourceFile (deno:cli/tsc/00_typescript.js:104355:29) at ...
1
# Environment Windows build number: 1903 for cmd Windows Terminal version (if applicable): latest from the Microsoft store Any other software? N/A # Steps to reproduce Copy any text using keyboard shortcut `ctrl + C` and try to paste it using `ctrl + V` shortcut. # Expected behavio...
# Environment Windows build number: [Version 10.0.19008.1000] Windows Terminal version (if applicable): 0.6.2951.0 Any other software? Ubuntu 18.04.3 LTS through WSL v2 / Windows Build 19008 # Steps to reproduce 1. Use ssh to connect to a linux server through the Terminal App ...
0
Code to reproduce - from sklearn.tree import DecisionTreeClassifier from sklearn.tree import export_graphviz import numpy as np dtc = DecisionTreeClassifier().fit(np.random.random_sample((20, 2)), np.zeros((20, 1))) export_graphviz(dtc, filled=True) This is because the `max_i...
Example: `from sklearn import tree` `clf = tree.DecisionTreeClassifier()` `clf.fit([[0]],[1])` `tree.export_graphviz(clf, filled=True)` We'll get error in line 160 of sklearn/tree/export.py: `alpha = int(np.round(255 * ((value - colors['bounds'][0]) / (colors['bounds'][1] - colors['bounds'][0])), 0))` > V...
1
### Describe the issue: np.abs(np.int64(-9223372036854775808)) -> -9223372036854775808 ### Reproduce the code example: np.abs(np.int64(-9223372036854775808)) # -> -9223372036854775808 ### Error message: _No response_ ### NumPy/Python version information: 1.23.0 3.10.5 | packaged by conda-forge |...
Python: In [117]: abs(-2147483646) Out[117]: 2147483646 In [118]: abs(-2147483647) Out[118]: 2147483647 In [119]: abs(-2147483648) Out[119]: 2147483648L In [120]: abs(-2147483649) Out[120]: 2147483649L In [121]: abs(-2147483650) Out[121]: 21474836...
1
### Bug report Normally, systemwide configuration files at not completely ignored just because a local/user configuration file exists. But MPL will ignore default configuration values in /etc/matplotlibrc if a user matplotlibrc is found. The documentation states that user configuration files are searched first, whi...
Only one matplotlibrc file is loaded instead of loading them in order of decreasing scope. So when I added a matplotlibrc file in my home directory it unexpectedly changed the backend that was being set in `INSTALL/matplotlib/mpl-data/matplotlibrc` because that file was no longer being loaded. I expected matplotlib t...
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.1 * Operating System version: windows 7 * Java version: 1.8 ### Steps to reproduce this issu...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.4.1 * Java version: 1.8 ### Actual Result dubbo/dubbo-common/src/main/java/org/apache/dubbo/c...
0
http://typescript.codeplex.com/workitem/488 "use strict"; class SomeClass { public get someProperty(): string { return "some value"; } } var someInstance = new SomeClass(); someInstance.someProperty = "another value"; //Run-time error. ECMAScript 5.1 - 11.13....
Some properties in JavaScript are actually read-only, i.e. writes to them either fail silently or cause an exception. These should be modelable in TypeScript. Previous attempts to design this have run into problems. A brief exploration: interface Point { x: number; y: number; } ...
1
When you hover over the buttons, they shift and the right button loses the rounded corners. http://jsfiddle.net/BA4zM/147/ I have confirmed using v2.0.4 of bootstrap.js this issue does not happen.
http://jsfiddle.net/JEBdk/5/ tooltip or popover on btn-group. the btn-group is not display correctly! the last btn have not round corners and between the btn's is a space. my suggestion, by generating the tip or popover on the end of document .
1
$ env | grep GO GOARCH=amd64 GOROOT=/home/nigeltao/go GOOS=linux $ cat main.go package main import "net" func main() { net.Dial("unix", "", "/tmp/.X11-unix/X0") } $ 6g main.go && 6l main.6 $ 6prof ./6.out ptrace waitpid: unexpected new tid 8827 status 0...
What steps will reproduce the problem? 1. Cross-compile for linux/arm5. 2. Make a network request. My test harness for this bug was http://play.golang.org/p/drwd1JwnTd What is the expected output? Success or failure What do you see instead? H...
0
For example when doing a transpose roundtrip-- right now type information is lost
Could be called to recover types after `df.T.T`
1
# Description of the new feature/enhancement Terminal should support ZModem upload/download. ZModem is a friction-free way to transfer files up to 4GB in size in a terminal session without using other tools. # Proposed technical implementation details (optional) Add support for ZModem
# Summary of the new feature/enhancement For terminals which support zmodem protocol (like Xshell), one can use lrzsz to upload and download files from remote server directly through ther terminal, or even drag and drop files to upload. It will be great if Windows Terminal can support this protocol. # Proposed tech...
1
**Describe the bug** import error in version 128 _**Code**_ export default class LoadLib { constructor() { const _base = 'https://cdn.jsdelivr.net/npm/three@0.128.0/' this.url = _base + 'build/three.module.js' this._base = _base + 'examples/jsm/' ...
With version 128, the following code: <script type="module"> import * as THREE from 'https://unpkg.com/three@0.128.0/build/three.module.js'; import { OrbitControls } from 'https://unpkg.com/three@0.128.0/examples/jsm/controls/OrbitControls.js'; </script> causes the following error: ...
1
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 1.0.0 **System** : Microsoft Windows 8.1 Enterprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module....
I right-clicked on a folder in the tree view **Atom Version** : 0.194.0 **System** : Windows 7 Entreprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Fu...
1
When I use component , given the following code it adds the below css rules .MuiGrid-spacing-xs-16 { width: calc(100% + 16px); margin: -8px; } My code <Grid container direction={'row'} justify={'space-between'} align={'flex-start'}> <Grid> ...
The `<Grid container>` extends beyond its parent, with half of spacing size. I have marked the extra width in red, also setting spacing to zero fixes the problem. ![mobile-padding](https://user- images.githubusercontent.com/3260363/28355346-338983fc-6c81-11e7-9f67-fb33c7758283.png) Here is a working example: http...
1
requests does not work with charset-normalizer 3.0.0 or 3.0.1, blocking users of requests from updating to the latest charset-normalizer. ## Expected Result ## Actual Result ## Reproduction Steps import requests ## System Information $ python -m requests.help { ...
Simple test under Python 3.3.2, using the current 2.0 branch of requests (same behaviour with requests-1.2.3 btw); inspecting request headers with requestb.in. The Content-Type header contains two entries. I expected my stipulated header to override (replace) application/x-www-form-urlencoded. import requests da...
0
**Migrated issue, originally created by Andrey Popp (@andreypopp)** Sometimes I want to write select statement as raw SQL and then be able to do subselects from it or join it to other sqlalchemy constructs. I wrote basic sqlalchemy.sql construct to do that and wonder if it will be useful to have it in sqlalchemy (o...
**Describe the bug** When I insert instances using bulk insert, first the instances are added without the relations, then added again. Which causes duplicates and incomplete rows **Expected behavior** The instances should only appear once inside the database. **To Reproduce** This is a very minimal version o...
0
If I wrap the playwright test object with our own custom test class, no tests run. Importing the playwright test object into the spec file directly works as expected. I am attempting to move a large codebase from a Selenium based framework (theintern.io) to playwright. We already have a strong test API that the fram...
### System info * Playwright Version: [v1.31.1] * Operating System: macOS 13.0 * Browser: Chromium * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. const fileToUpload = path.join( __dirname, `../e2e/__shared__/fixtures...
0
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : $ uname -a Linux precision 4.15.0-34-generic #37~16.04.1-Ubuntu SMP Tue Aug 28 10:44:06 UTC 2018 x...
The classify_image.py example isn't working because inception v3 is larger than 64MB [libprotobuf ERROR google/protobuf/src/google/protobuf/io/coded_stream.cc:207] A protocol message was rejected because it was too big (more than 67108864 bytes). To increase the limit (or to disable these warnings), see CodedInputSt...
0
Hello, I would like to be able to use mouse wheel scrolling as part of a shortcut. For Example: * `win + scrollDown`, switch to next virtual desktop (scrollUp for previous) * `alt + scrollDown` same as alt tab I believe this is currently not possible
# Summary of the new feature/enhancement # Proposed technical implementation details (optional)
0
Possibility to hide the menu bar on windows. I takes up unnecessary space and it's barely being used because of the command palette and hotkeys for remaining functionality. ![Hide menu example](https://camo.githubusercontent.com/3da86f02d3dde11562cb0734a862383df329e42195b9084651be29d8b1c33f5b/687474703a2f2f662e636c2...
A lot of software on Windows (e.g. Sublime Text, Firefox) allow you to collapse the menu bar so there's only the tab bar. The menu bar can then be collapsed/expanded by pressing the Alt key. It would be great to have this feature in Atom as it maintains the look and feel across different platforms and gives slightly...
1
_From@joaomoreno on December 14, 2015 13:52_ ![image](https://cloud.githubusercontent.com/assets/22350/11782623/458b351c-a272-11e5-8bf2-ca1dc66c6560.png) _Copied from original issue:microsoft/vscode#1269_
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.5.8 * Operating System version: win10 * Java version: 1.8 ### Step to reproduce this issue ...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.4.1 * Operating System version: ANY * Java version: ANY(8 or above) ### Steps to reproduce t...
0
## 🐛 Bug `torch.nn.functional.adaptive_avg_pool2d` causes a segmentation fault when the parameter `output_size` is an empty tuple, `()` or an empty array `[]`. ## To Reproduce import pytorch torch.nn.functional.adaptive_avg_pool2d(torch.tensor([1,2,3,4,5]), ()) ## Expected behavior Proper...
## 🐛 Bug In `torch.nn.functional.adaptive_avg_pool2d` and `torch.nn.functional.adaptive_avg_pool3d`, a segmentation fault occurs when passing an empty tuple (or an empty array) for `output_size` parameter. It occurs even though passing a valid 4D tensor for `input` parameter. ## To Reproduce import ...
1
I was being really lazy when I wrote this one-liner: bytes2hex(arr::Vector{UInt8}) = join([hex(i,2) for i in arr]) It's a good intro issue to rewrite this to pre-allocate a byte buffer, go through and fill it with hex characters appropriately and then return that buffer wrapped in a string object.
I do not manage to call Julia from a C-main program under Windows 7. I am aware of issues #11419, #15194. I have the following C-Program testc.c to perform a minimal test (as adviced in the Julia documentation about embedding Julia). The program is stored under $JULIA_DIR\bin: #include "julia.h" ...
0
**Jon Harper** opened **SPR-6796** and commented There needs to be a way to issue a redirect using the String type and to specify that there should be no exposing of the model to the view. One use case: HandlerInterceptors are commonly used to add data to the model. If the controller supports POST request and do...
**Mark Kettner** opened **SPR-2646** and commented We have the following source: <td style="width: 185px;" valign="top"> 1: <spring:bind path="searchCriteria.fase"> <select name="<c:out value="${status.expression}"/>"> <option value="" /><c:forEach items="${fasen}" ...
0
Is there any way to combine two different kernels in scikit-learn for different dimensions? For example, if there is two input dimensions in GP, is there any way to define: K((x,y),(x',y') = k(x,x') * k(y,y') More precisely, how can we define active dimension for each of them? Thanks for consideration.
When doing kernel engineering, you often want different parts of the kernel to operate on different features (like some on time and some on space and some on whatever). From what I can see, this is not currently possible with sklearn. GPy implements that with a `active_dims` option for each kernel. That seems r...
1
The `dgemm` function does _not_ write the result into `c` even when using `overwrite_c`. I think this is a long-standing bug. I found an earlier mention of it here: https://mail.scipy.org/pipermail/scipy-user/2008-August/017954.html
Turns out the overwrite option, when provided, does not work in all cases. So, it would be nice to clarify that this requires a Fortran array of the right type.
1
**Describe the bug** The official fat line example doesn't work if we change the line scale to include negative. **To Reproduce** Steps to reproduce the behavior: 1. Go to Three.js official examples in the repo 2. Find the source file of webgl_lines_fat.html 3. At line 109, change to any negative scale. ...
As the title say: a Line2 disappears completely when the scale is set to negative on a single axis `line2.scale.set(-1, 1, 1)`. The line is obviously still there but it's not rendered. Weirdly, if the scale is set to negative on more than one axis `line2.scale.set(-1, -1, 1)`, the line appears again. Here's a jsfid...
1
Installing packages. This might take a couple of minutes. Installing react, react-dom, and react-scripts with cra-template... npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report this error at: npm ERR! https://npm.community npm ERR! A complete log of this run can be found in: ...
# What / Why This seems to be a duplicate of npm/npm#3032 even though the last comment claims the problem is resolved In short, when the package contains both `.npmrc` and `publishConfig` setup it seems that `npm publish` is respecting setup from `publishConfig` while `npm unpublish` is using `.npmrc` ## When The...
0
**Describe the bug** I want to wait until a subprocess(like a web server) is ready. So I'm tried to write the code that reads the stdout of the process in async iteration and when I get a specific string, break it. But it seems to be not releasing a TextDecoder if it hasn't completed the async iteration loop. ...
I've come across what seems to be a bug in `TextDecoderStream` which allows it to leak the native decoder used by its `TextDecoder`. I've made a test module to demonstrate the issue (repro code is at the bottom of that page, under the output): https://gist.github.com/h4l/0199ab7cc24dd13536e01c5ea98b3ae7 The 3 test...
1
I'm getting an issue where throwing an unhandled error turns into an infinite loop because the guarded callback wrapper fails to extract the error from the event: ![screen shot 2017-03-02 at 3 19 09 am](https://cloud.githubusercontent.com/assets/810438/23491589/152def8a-fef7-11e6-9719-266cc95639bd.png) This causes ...
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** When a component returns something other than a valid React element, or `null`, it throws and does so infinitely. This is render-blocking and freezes the window. **If the current behavior is a bug, please provide th...
1
This is an issue being there since 2.1. The FormValidator runs the validation of the underlying object graph in 2 cases: * on the root form * in case all parents have `cascade_validation` set to `true` This means that when you have a subform with `mapped` set to `false`, the only way to have its object graph v...
SF 2.5.2 - after upgrade from 2.4 Validation in fallback mode After submit form with errors (fields: text, datetime, collection + some assertions via annotations) I'm going to webprofiler -> form Error: Key "id" for array with keys "submitted_data, errors, synchronized, children" does not exist i...
0
For code that builds a UI has to be readable. I understand that Dart is kind of like a simple version of Java, but it is not really a programming language for building a UI. For example, it doesn't have a closing tag. As a result, It is very hard to build a picture in mind with this unreadable code. Moreover, Flutte...
Please see this movie, from my Nexus 5X: https://youtu.be/VC6spk7P6Xg Notice how the FAB, while transitioning up, has a square shadow around it. It doesn't have the square the entire transition, but starting at second 3 of the transition.
0
cc @pandas-dev/pandas-core Targeting Friday June 8th.
I am trying to merge multiple dataframe with consecutive merge operations, I want to add a suffix to the name of the newly merged column names. A simplified version of my code looks like this: from pandas import * f0 = DataFrame(columns=['data'], data=[1,2,3], index=['a','b','c']) f1 = DataFram...
0
In matplotlib 3.5.1 on Linux (arch and opensuse) pcolormesh is causing some extreme slowdowns. When I try to zoom or pan inside the window, reactions from the mouse are very slow, such that the drawn zoom indicator is >1s delayed and the window/notebook freezes. The extend varies somewhat by backend. Using the `%mat...
### Bug summary After updating to mpl 3.5.0 my program hangs after plotting with pcolormesh(), no error messages. It works fine witl mpl 3.3.3. When I reduce the nx,ny values in my program it works fine. ### Code for reproduction import numpy as np import matplotlib.pyplot as plt impo...
1
_From@chriskarel on November 3, 2016 19:21_ ##### ISSUE TYPE * Bug Report ##### COMPONENT NAME User module ##### ANSIBLE VERSION # ansible --version ansible 2.1.2.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ##### CONF...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME route53 module ##### ANSIBLE VERSION ansible 2.2.3.0 ##### CONFIGURATION N/A ##### OS / ENVIRONMENT N/A ##### SUMMARY When you have "duplicate" hosted zones in route53 and use `command=get` and the `hosted_zone_id` parameter, it gets i...
0
master branch build error: ruct std::atomic<long int>’ has no member named ‘GetNext’ lifecycle_id_ = lifecycle_id_generator_.GetNext(); ^~~~~~~ /media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/goo...
##### System information (version) * OpenCV => 4.0.0 * Operating System / Platform => ubuntu - docker image (jupyter/datascience-notebook:14fdfbf9cfc1) * Compiler => gcc version 7.3.0 (Ubuntu 7.3.0-27ubuntu1~18.04) ##### Detailed description Building CXX object 3rdparty/protobuf/CMakeFiles/libprotobuf.dir/sr...
1
Having animated route transitions would be nice, as this is one of the many benefits through client-side routing. Doing so should be left up to the user in my opinion (some people prefer CSS transitions over more fine-grained control with `react-motion` etc). As I understand it, one would need to modify the top-level...
I noticed that one React root is used, while this is certainly the simplest solution, I'm curious if there's a plan to support or use multiple React roots? In the current architecture with a single root, a client-side navigation blows away everything visible on the page and re-renders everything for the new route, i...
1
Some of the plot titles / legends seem to overrun the margins of the plots and get cut off. See the narrative documentation here http://scikit- learn.org/dev/modules/gaussian_process.html for a start
The plot in http://scikit- learn.org/dev/auto_examples/gaussian_process/plot_compare_gpr_krr.html doesn't look good on the website (and is referred to in the user guide). The legend is not really readable. Needs some tweaking with the legend position.
1
From @water4u99 on 2016-11-18T22:28:43Z ##### ISSUE TYPE * Bug Report ##### COMPONENT NAME template ##### ANSIBLE VERSION 2.0 and higher ##### CONFIGURATION [ssh_connection] control_path = %(directory)s/%%C ##### OS / ENVIRONMENT Mac OS X 10.11.6 Centos 6.x, 7.x ##### SUMMARY In the input .j2 file, ...
##### ISSUE TYPE Bug Report ##### COMPONENT NAME template ##### ANSIBLE VERSION 2.0 and higher CONFIGURATION [ssh_connection] control_path = %(directory)s/%%C ##### OS / ENVIRONMENT Mac OS X 10.11.6 Centos 6.x, 7.x SUMMARY In the input .j2 file, we substitute a...
1
### Apache Airflow version 2.3.0 (latest released) ### What happened Soft link and folder under same root folder will be handled as the same relative path. Say i have dags folder which looks like this: -dags: -- .airflowignore -- folder -- soft-links-to-folder -> folder and ....
### Apache Airflow version main (development) ### What happened The common sql `fetch_all_handler` modified by #19313 uses `cursor.returns_rows` which is not dbapi2 compliant but sqlalchemy specific. The `DBApiHook.run` method does not use `sqlalchemy` since it uses `get_conn` and most (if not all) drivers cursor...
0
Running the simple iOS example provided by this repository will crash if I target any iPhone 4s/iPhone 5 **simulator**. The app will crash immediately at launch, before entering `didFinishLaunchingWithOptions`. The last call I can identify in the debugger is usually `tensorflow::internal::LogMessageFatal::~LogMessage...
Have I written custom code: N/A OS Platform and Distribution: cpe:/o:centos:centos:7 TensorFlow installed from: pip install TensorFlow version: 1.10 Bazel version: N/A CUDA/cuDNN version: Cuda 9.0 GPU model and memory: 1080 Ti, 11G Exact command to reproduce: N/A Mobile device: N/A I checked the road...
0
## Steps to Reproduce 1. flutter channel Flutter channels: beta dev * master 2. flutter upgrade 3. flutter create test_app 4. flutter run -d ## Logs [ +27 ms] executing: [/Users/Shareclarity/Developer/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +29 ms] Exit code 0 ...
## Steps to Reproduce This was only tested on the Simulator, not on the device itself. 1. Run the Flutter Gallery on iOS. 2. Scroll to Material Components -> Buttons (and tap on it) 3. In the new screen, in the top far right, tap on the "page/paper" icon. 4. Example code should be in a monospace font (and i...
0
The issue is a duplicate of scipy/scipy#4720 The document suggests that the parameter _degree of freedom_ should be `df >= 1` to use `numpy.random.noncentral_chisquare`. However, taking `df = 1` raises error. import numpy as np df = 1 nc = 2 np.random.noncentral_chisquare(df, nc) ...
Numpy's bool_ type seems to fail an isinstance check with the Python numbers.Integral ABC: import numpy import numbers x = numpy.array([True]) print( isinstance(x[0],numbers.Integral) ) # -> False I find this odd since Python's built-in bool passes: print( isinstance(bool(x[...
0
When I open Atom, after updating to v0.192.0, it launches 7 processes, one of which runs this: /usr/share/atom/atom --eval require('/usr/share/atom/resources/app/node_modules/coffee-cash/lib/coffee-cash.js').setCacheDirectory('/home/yajo/.atom/compile-cache/coffee'); require('/usr/share/atom/resour...
When editing a file, after the editor was open for a little while, it started to consume all the CPU and steadily consume more RAM (until all the available RAM is consumed). The command line of the runaway process was: /usr/share/atom/atom --eval require('/usr/share/atom/resources/app/node_modules/cof...
1
Using Atom 0.183.0 on Windows 7 x64. After atom updates, I become unable to double click files and have them open. The command line still works fine. To fix: 1. Open `regedit.exe` 2. Navigate to `HKEY_CLASSES_ROOT\Applications\atom.exe` 3. Right-click `(Default)`, click `Modify...` 4. Modify the text from ...
Currently it is not so easy to assign atom as default editor on windows eg for all .css files the path to atom.exe is changed with every update. no exe in C:\Users\hebbet\AppData\Local\atom ![image](https://cloud.githubusercontent.com/assets/1423115/5648585/df87f05a-968f-11e4-87bc- ae2b5b6f9280.png) Chrome has e...
1
**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** Making a GET request with no body ...
Has it been considered exposing the typings for the `angular2/test_lib` module? Maybe even have it as top level module? Because I use some of the exposed methods in unit tests for the components I write, and I think that might be the case for many others, unless there is a plan for some other lib for unit tests.
0
**Context:** * Playwright Version: 1.30.0 * OS: macOS 13.0.1 * Memory: 216.70 MB / 16.00 GB * Node: 18.13.0 - ~/.nix-profile/bin/node * Yarn: 1.22.19 - ~/.nix-profile/bin/yarn * npm: 8.19.3 - ~/.nix-profile/bin/npm * Bash: 3.2.57 - /bin/bash **Code Snippet** Help us help you! Put down a short code s...
**Context:** * Playwright Version: 1.25.1 * Operating System: MacOs * Node.js version: v16.17.0 **Code Snippet** import { test } from "@playwright/test"; test("dynamic import of ESM", async ({}) => { const { default: getPort } = await import("get-port"); console.log(await ...
1
**Wojciech Durczyński** opened **SPR-5156** and commented In OSGI `@Configurable` mechanism works well only when used in one bundle. If there is <context:spring-configured /> in application contexts of more then one bundle, the AnnotationBeanConfigurerAspect (single instance) is injected with two different BeanCo...
**Robert Binna** opened **SPR-9296** and commented In version 3.1.1 of the springframework, the creation of the application context and the lookup of beans by type, in particular the lookup of prototype beans is extremely slow (factor 10). The same creation and lookup process in spring 3.0.6 was significantly fas...
0
**Apache Airflow version** : 1.10.15 with postgres db in docker container **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): NA **Environment** : DEV * **Cloud provider or hardware configuration** : * **OS** (e.g. from /etc/os-release): MacOS 10.15.7 * **Kernel** (e.g. `uname -a`)...
**Description** Currently, the PostgresOperator defines the database hook in a fixed way: `self.hook = PostgresHook(postgres_conn_id=self.postgres_conn_id, schema=self.database)` This makes the operator inflexible for certain tech stacks. For example, long queries in Redshift will sometimes fail (in my experien...
0
master but also present on 1.5.3 imshow(rand(5, 5)); gca().set_xticklabels(["foo", "bar"]) results in ![figure_1](https://user- images.githubusercontent.com/1322974/27292549-a77001c2-54c8-11e7-9f26-ad6d9fa02798.png) Almost certain this is due to the xticks internally including a tick at the p...
Tested on matplotib 1.5.1 on OSX, pip installation. Not sure about regression but I never noticed this behavior before. **Expected behavior** : plt.figure(figsize=(6, 4)) ax = plt.subplot(1, 1, 1) ax.set_xlim(0, 2) plt.show() ![output-1](https://cloud.githubusercontent.com/assets/327...
1
When updating from `v3.0.3` to `v3.0.4` the version gets updated to `v3.0.4-DEV`. ![version](https://cloud.githubusercontent.com/assets/15246351/14187516/c3f66294-f783-11e5-90ab-3fd188161365.PNG) This issue also has been reported by Loïc Vernet on the release page for `v3.0.4`: symfony.com: Symfony 3.0.4 released. ...
After upgrading Symfony to version 3.0.4 I see "3.0.4-DEV" instead of "3.0.4" as version in console and debug toolbar. Would you be so kind to fix this issue? Thank you.
1
Can not import css after upgrading to v5 //next.config.js const withCSS = require('@zeit/next-css') module.exports = withCSS() //pages/test.js import React from 'react'; import './test.css'; export default () => <div className="test">Hello World!</div>; ...
# Bug report Discussed with @timneutkens on Slack. ## Describe the bug After a change I am not seeing server SSR reflect the change. The server bundle is being rebuilt properly, but its serving stale pages.
0