text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
### 💻 * Would you like to work on this feature? ### What problem are you trying to solve? TypeScript 4.7 Beta ships with `in` and` out` modifiers for type parameters on type declarations. type Getter<out T> = () => T; type Setter<in T> = (value: T) => void; interface State<in ou...
### 💻 * Would you like to work on a fix? ### How are you using Babel? Other (Next.js, Gatsby, vue-cli, ...) ### Input code function foo(...[x]) { var x = 1 } /repl.js: Duplicate declaration "x" ### Configuration file name _No response_ ### Configuration https://babeljs.io/repl#?br...
0
In [1]: import pandas, numpy In [2]: df = pandas.DataFrame(numpy.random.random((100000, 4))) In [3]: %timeit df.loc[55555] 10000 loops, best of 3: 118 µs per loop In [4]: %timeit df.loc[[55555]] 1000 loops, best of 3: 324 µs per loop ... makes sense to me. ...
### Code example: File `test.csv`: ,a,a,b 0,1,2,3 1,4,5,6 Python code: import pandas as pd df = pd.read_csv("test.csv") df.columns.values Gives `['a', 'a.1', 'b' ] ` and not, as documented `['a.0', 'a.1', 'b']` #### Problem description The documentation states t...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.3 * Operating System version: xxx * Java version: xxx ### Steps to reproduce this issue 1...
consume端发送URL时,怎么给URL添加自定义参数? 查阅官方文档,发现有个“信息交换扩展(exchanger)”貌似可以实现在发送的URL里添加自定义参数。 但,网上没有相关自定义扩展的案例,不知道如何实现? 我期望的是: consume端,在发送URL时,携带sessionId一起发送,http请求。(求解) provider端,配有Spring Session的请求拦截器,通过URL获取到sessionId,以达到session共享的目的。(这部分已经扩展,可以从Cookie和URL里拦截请求获取sessionId) 信息交换扩展 扩展说明 基于传输层之上,实现 Request-Respon...
0
# Environment Windows build number: 18950 Windows Terminal version (if applicable): 0.3 Any other software? Python, Firefox, Visual Studio, etc. They shouldn't impact this problem. # Steps to reproduce 1. Open the Windows Settings app. 2. Change from dark mode to light mode, or ...
# Environment Windows build number: Platform ServicePack Version VersionString -------- ----------- ------- ------------- Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.5.2762.0 Any other software? ...
0
Hey. So I briefly talked with @tacaswell about this. I mostly use scatter to show a discrete third variable via color (say I plot weight vs height and want to color by gender). The current scatter is not entirely equipped for this, because it doesn't really allow me to create the legend that I want, and I doesn't a...
currently specifying an array for color or size, only works for continuous data. using markers and colors mapped to subsets based on categorical data is hard and manual (basically you subset the data in a loop and call plot multiple times). i thought it would be hard as list-of-string already means something for som...
1
# Checklist * I have verified that the issue exists against the `main` branch of Celery. * 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 propos...
There's an issue in the implementation of `celery.schedules.crontab` method that can cause `crontab.is_due` to claim a schedule is due at a time that is completely unrelated to the given crontab parameters. This appears to happen in cases where the `last_run_at` value is older than the most recent feasible time the s...
0
#### Description I'm running GridSearch for Gradient Boosting algorithm and for some parameters it just hangs after 10-15 minutes on my laptop. First iterations produce the python processes according to CPU number (8 in my case) with the visible workload and then the processes are gone, no progress reported. I've fo...
The below is the source code: import sqlite3 import re import time import csv import numpy as np from sklearn.naive_bayes import MultinomialNB from sklearn.naive_bayes import BernoulliNB from sklearn.naive_bayes import GaussianNB from sklearn.utils import shuffle from sklearn.model_selection import...
1
Steps to reproduce: 1. Login with an user in level 282. 2. Go to http://freecodecamp.com Actual: Redirect to challenge 0. Expected: Redirect to most recent challenge. One challenge after my last challenge finished. Never redirect to a challenge that the user has already finished.
every time i log in i am taken back to the start of the new user challenges I'm using FF 43.0.4 on windows 10
1
I'm following the 5 minutes Quick Start https://angular.io/docs/js/latest/quickstart.html But, I got the error below from Browser: Failed to load resource: the server responded with a status of 404 (Not Found) es6-module-loader@0.16.6.js:1 Potentially unhandled rejection [3] Error loading "appone" at https://r...
Currently, the 'patchEventTargetMethods' method in utils.js seems to cause an error under Microsoft Edge. The bind operation fails because the function object that is passed is not of type 'function' as expected but is an object instance of type 'FunctionWrapper'. Here's the output I get in the console: ...
1
Currently in a debugger session, console.log etc will not show by default. Some debuggers can pipe output, though this will be less featureful and not as readily available as channeling through the debugger protocol. V8 has a builtin console that is "debugger protocol" enabled, resulting in messages like: ...
1
##### ISSUE TYPE * Feature Idea * Bug Report ##### COMPONENT NAME `with_dict` ##### ANSIBLE VERSION ansible --version ansible 2.1.1.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION N/A ##### OS / ENVIRONME...
##### SUMMARY None becomes `""` when assigned to variable. A comparison between a variable and what was assigned to it will return `false`. Ran into this while using `lookup('file', '/nonexistent', errors='ignore')` \- had to change a `when:` condition depending on whether comparing the lookup, or a variable with ...
1
# 🚀 Feature request Hello! I am using the translation pipeline, and I noticed that even though I have to specify the language when I create the pipeline, the passed model overwrites that. So pipeline created as `nlp = pipeline('translation_en_to_de', 'Helsinki-NLP/opus-mt-en-jap')` would translate english to ...
## 🚀 Feature I would like a function like `glue_convert_examples_to_features` for sequence labelling tasks. ## Motivation The motivation is that I need much better flexibility for sequence labelling tasks. Its not enough to have a final, and decided for me model, for this task. I want just the features (a sequenc...
0
##### Description of the problem ##### Three.js version * Dev * r95 * ... ##### Browser * All of them * Chrome * Firefox * Internet Explorer ##### OS * All of them * Windows * macOS * Linux * Android * iOS _I previously posted this problem on Stackoverflow but got no responses. Howeve...
There are a few things which geometry.clone() doesn't copy a reference to, which it should. .bones .skinWeights .skinIndices .animations .animation are all left without references to the original, which leads to skinning being broken unless the references to those are manually copied. I think references sho...
1
# Checklist * [ x] I have read the relevant section in the contribution guide on reporting bugs. * [ x] I have checked the issues list for similar or identical bug reports. * [ x] I have checked the pull requests list for existing proposed fixes. * [ x] I have checked the commit log to find out ...
# Checklist * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was alrea...
0
@tvyomkesh opened some issues (#9384, #9389) on errors in the examples (and some PRs to fix this). This raised the following question to me: Apart from fixing the examples, I think we should think for a moment what we want to do with these examples. Why do we want them? What is their function? And depending on tha...
`DataFrame.from_dict` does not seem to behave according to the documentation. import pandas as pd print("pandas.from_dict(<dict>, orient='index')") print(pd.DataFrame.from_dict(dict([ ['key1', 1],['key2',2] ]), orient='index')) print("pandas.from_dict(<list [<list>]>, orient='colu...
0
Secret key names like **id_rsa** and **id_rsa.pub** are illegal (see #13357). This makes it impossible to use secrets for loading ssh keys and other files with underscores into your containers. Can the restrictions be loosened so it maps to linux filename restrictions instead of DNS_SUBDOMAIN?
Currently the key of a piece of secret data has to be a DNS subdomain. We went with DNS subdomains instead of defining a new format during the implementation because we assumed that a dns subdomain was a strict subset of the eventual format to use. It has been suggested in #7974 that we create a format to model file ...
1
From #6106: we currently do not have support to contribute actions to the context menu of the explorer or to the editor title area, but we have actions there to open a preview from a markdown file in both places and we also have an action to jump back to the source from a markdown preview
I'd like to add a context menu item that performs a Google search using the current selection. However, there doesn't seem to be a way to bind to the right click or to an open context menu event. I see several requests for features to add to the context menu... wouldn't it be easier if VS Code just made it possible...
1
Q | A ---|--- Bug report? | yes Feature request? | no BC Break report? | no RFC? | no Symfony version | 2.7 Hi there! This morning I faced an issue in EasyAdminBundle related to form themes and `form.parent` check in Twig. Briefly, the problem happen if we have a simple form with a field named `paren...
How can know if a form has a parent or not, in a view? The fast answer is: {{ form.parent }} but if the form has a child called `parent` the above statement always return a result, even when they do not have a real parent. then the only way to know if has a real parent is something like: ...
1
👋 team, I am working on DocSearch , an algolia tool. We are proud to feature the search from your documentation website. Congrats for the v7 👏 It needed an update from our side in order to avoid having duplicates from v7 and the latest 6.26.3. No worries, everything is proactively updated (we monitor big changes...
Babel very strange move comments: example, DojoDoc comments in function and info about copyright. ### Input Code // Available via the modified BSD license. See LICENSE for details. import a from "a"; const ESC = 27; var obj = { isValid: function(/*Boolean*/ /*===== isF...
0
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-kops-aws-updown/3289/\n\nMultiple broken tests:\n\nFailed: [k8s.io] Networking [k8s.io] Granular Checks: Pods should function for\nintra-pod communication: udp [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/networking.go:45\n Oct 23 18:38:04.743: Failed to find expected endpoints:\n Tries 0\n Command curl -q -s 'http://100.96.2.6:8080/dial?request=hostName&protocol=udp&host=10.123.45.3&port=8081&tries=1'\n retrieved map[]\n expected map[netserver-1:{}]\n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/networking_utils.go:206\n \n\nFailed: [k8s.io] Networking [k8s.io] Granular Checks: Pods should function for\nnode-pod communication: http [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/networking.go:52\n Oct 23 18:39:59.326: Failed to find expected endpoints:\n Tries 0\n Command curl -q -s --connect-timeout 1 http://10.123.45.6:8080/hostName\n retrieved map[]\n expected map[netserver-0:{}]\n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/networking_utils.go:255\n \n\nIssues about this test specifically: #33631 #33995\n\nFailed: [k8s.io] Networking [k8s.io] Granular Checks: Pods should function for\nnode-pod communication: udp [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/networking.go:59\n Oct 23 18:35:27.966: Failed to find expected endpoints:\n Tries 0\n Command echo 'hostName' | timeout -t 3 nc -w 1 -u 10.123.45.4 8081\n retrieved map[]\n expected map[netserver-0:{}]\n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/networking_utils.go:255\n \n\nFailed: [k8s.io] Networking [k8s.io] Granular Checks: Pods should function for\nintra-pod communication: http [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/networking.go:38\n Oct 23 18:38:03.456: Failed to find expected endpoints:\n Tries 0\n Command curl -q -s 'http://100.96.2.7:8080/dial?request=hostName&protocol=http&host=10.123.45.5&port=8080&tries=1'\n retrieved map[]\n expected map[netserver-1:{}]\n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/networking_utils.go:206\n \n\nPrevious issues for this suite: #34196 #34777 #35305\n\n"
Failed: https://k8s-gubernator.appspot.com/build/kubernetes- jenkins/logs/kubernetes-e2e-kops-aws-updown/2102/ Run so broken it didn't make JUnit output!
1
After installing the latest release with `pip` (support for 10.8.5 seems to be declared in the filename: numpy-1.16.1-cp37-cp37m-macosx_ **10_6** _intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl), `numpy` fails with the following error: 3.7.0 (default, Jul 15 2018,...
On MacOS 10.6 importing latest numpy results in this error: >>> import numpy Traceback (most recent call last): File "/Users/artcs/Library/Python/3.7/lib/python/site-packages/numpy/core/__init__.py", line 16, in <module> from . import multiarray File "/Users/artcs/Library/Python...
1
### Overview Some Executors, currently a subset of the local Executors, run in a single threaded fashion and have certain limitations and requirements, many of which are hardcoded. To add a new single threaded Executor would require changes to core Airflow code. Note: This coupling often shows up with SQLite compa...
### Description The databricks provider can be updated to a deferrable task introduced in airflow 2.2.0. This will significnatly reduce cpu usage, memory usage on LocalExecutor and improve reliability since state is stored in the airflow metastore. ### Use case/motivation Currently the databricks operators wor...
0
* Error running Gradle: Exit code 1 from: /home/travis/build/flutter/flutter sdk/examples/flutter_gallery/android/gradlew app:properties: Starting a Gradle Daemon (subsequent builds will be faster) Download https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.1.2/gradle-3....
We should consider detecting network errors in gradle and retrying... Initializing gradle... 6.3s Resolving dependencies... * Error running Gradle: Exit code 1 from: /home/travis/build/flutter/flutter sdk/examples/...
1
**I'm submitting a ...** (check one with "x") [ ] bug report [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question **Current behavior** There is no way to trigger a navig...
This issue is related to the new-new router: **I'm submitting a ...** (check one with "x") [ ] bug report [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question **Current be...
1
I don`t know if it is bug or feature, but since you put into input with type number two minuses it will stop calling `onChange` callback, but value inside input will change **React 15.4.2** **Browser Version 60.0.3112.90 (Official Build) (64-bit)**
A controlled number input, without a corresponding `setState` function, still allows `e`, `-` and `.` to be entered (and numbers can be inputted afterwards). I could be incorrect but I don't believe this is the desired behavior. Here's a JSFiddle demonstrating the issue.
1
I'm pretty sure this was not the behavior last week, but at least today in the new atom version it is. ![select- inside](https://cloud.githubusercontent.com/assets/4172079/8305507/a9c56920-19a7-11e5-9d1e-61ce449c9a63.gif) System: Win8.1, Atom 0.211.0
Originally reported over at atom/atom#6008 (thanks @philsinatra!). Example: <div class="wrapper"> <div class="main"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Corrupti ipsam ullam magni minus, aperiam animi, quasi corporis. Impedit expedita, excepturi, iure corporis qu...
1
Hi, please help me understand why this component is not working as intended? Of the two use cases is working only case 2... ## Source **component** import {Component, Input} from 'angular2/core'; @Component({ selector: 'c12-viewport-footer', templateUrl: 'viewport-footer.ht...
version: `ng2-beta12` For some reason the order in which templates are defined is causing issues with transclusion. Doesn't Work for buttons but works for link <template [ngIf]="href ===''"> <button [ngClass]="cssClassList"> <ng-content></ng-content> </button> </templ...
1
NumPy can create boolean arrays out of strings, but cannot convert string arrays to bool_. I think we should follow Python here and assign truth values to strings. ### Reproducing code example: >>> import numpy as np >>> np.array('N', dtype='?') array(True) >>> np.array('N').astype('?') ...
The following table shows the extents of the problem x : str sc = np.str_(x) arr = np.array(x, np.str_) `x` | `bool(x)` | `bool(sc)` | `bool(arr[()])` | `bool(arr)` | `sc.astype(bool)` ---|---|---|---|---|--- `''` | `False` | `False` | `False` | `False` | `ValueError` `'\0'` | `True` | `...
1
In our project we have a number of files where tabs are strictly required (a format we do not control). However, we want to normalize tabs to spaces throughout the rest of the project. For now, I just ask that people don't edit those files in VSCode. I even considered adding them to the ignore list for VSCode itself...
The new fuzzy file picker makes it really hard to me to find files in huge projects (~5,000 source files). Regardless of what I'm typing in the file picker I receive a lot of results I definitely don't want. Example below: ![fuzzyfilepicker](https://cloud.githubusercontent.com/assets/3448684/12812691/b717e3da- cb33-...
0
Using pandas 0.10.1 Pandas allows creating a dataframe with two columns with the same name. (I disagree that it should be allowed, but it is allowed, so OK). However, it doesn't handle that correctly in several cases. Pandas ought to either completely disallow duplicate named columns _or_ handle them everywhere. B...
#### Code Sample, a copy-pastable example if possible import pandas as pd df = pd.DataFrame({'a': ['Hello', 'World']}) df['a'] = df['a'].astype('S') df['b'] = df['a'].astype('S') print(df.dtypes) Output is: a object b |S5 dtype: object ...
0
**Glide Version** : 4.0.0-RC1 **Integration libraries** : okhttp3, recyclerview **Device/Android Version** : Fails on One plus 3t, and Nexus 6p **Issue details / Repro steps / Use case background** : Have a long list of items, scroll fast, when you rotate the screen (setRetainInstance(true)) the fragment stays in ...
**Glide Version** : 3.7.0 **Integration libraries** : no **Device/Android Version** : HUAWEI P7 **Issue details / Repro steps / Use case background** : Set a touch effect for ImageView **Glide load line /`GlideModule` (if any) / list Adapter code (if any)**: class TestAdapter extends RecyclerV...
0
#6000 introduces a new top level menu for extension commands. We should discuss if such a menu is desired or not. ![1](https://cloud.githubusercontent.com/assets/7069719/14929697/5e4848f2-0e91-11e6-8641-f683860decda.png) @microsoft/vscode for input
Hello, It would be nice to have a possibility to create custom menu items for extensions' commands, e.g. `Edit -> Format Document`. I think it should work similar to `keybindings` contribution point. Sincerely, Ilya
1
I checked everything but responsive navbar and icons and the files generated (CSS) had not the right stuff.
I'm trying to get Bootsrap through Customize, but every time I get a blank boostrap.css and file error.txt with the error: > A less error occured trying to build your bundle. > You've likely entered an invalid input into the less variable field. Check > your syntax and try again! > thanks! > > {"type": "Parse"...
1
After upgrading and running my migration script, I get the following exception, which I do not get when upgrading to 2.0.1: 2014-04-15 07:28:25.555+0000 ERROR [org.neo4j]: Exception when stopping org.neo4j.index.impl.lucene.LuceneDataSource@5779e710 org.neo4j.kernel.impl.transaction.xaframework.Illegal...
neo4j-import does not correctly recognize Excel-type CSV wrt. double quotes and backslash * Neo4j version: 3.1 * Operating system: Arch Linux * API/Driver: None * **Steps to reproduce** The following CSV parsed correctly under MongoDB and MySQL, but it is failing in Neo4j: http://neuromancer.inf.um.es:8080...
0
#4753 causes this regression which impacts test/orm/inheritance/test_poly_perstence.py, which now creates a bad query that still passes but will stop working as of #4887 also that test suite needs to be rewritten basic test from sqlalchemy import Column from sqlalchemy import create_engine fr...
**Migrated issue, originally created by Michael Bayer (@zzzeek)** https://mariadb.com/kb/en/library/mariadb-1029-changelog/ This fixes the CHECK constraint issue https://jira.mariadb.org/browse/MDEV-13596 that ruins booleans for us, and additionally the DROP issue https://jira.mariadb.org/browse/MDEV-11114 was fixe...
0
**Migrated issue, originally created by mrudula chougule** Hi, I am having python+gtk application. I'm currently porting my python application from Ubuntu 10.04 to 14.04. I have sqlalchemy version of 0.8.4-1Ubuntu2.1 on Ubuntu 14.04. When trying to run my application, when it is trying to insert column into databa...
**Migrated issue, originally created by mrudula chougule** Hi, I am having python+gtk application. I'm currently porting my python application from Ubuntu 10.04 to 14.04. I have sqlalchemy version of 0.8.4-1Ubuntu2.1 on Ubuntu 14.04. When trying to run my application, when it is trying to insert column into data...
1
Please, implement the headless option which is available from chrome version 57. Reason: Easier usage for testing and scraping (without the xfb hack)
* Electron version: 1.6.x * Operating system: macOS ### Expected behavior Several things: * The promise which is returned by executeJavascript should be rejected * The error and stack trace should be more meaningful (how? = what's possible?) * Furthermore if you listen of global errors with the debugger ...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.7 * Operating System version: Windows 64x * Java version: 1.8 ### Steps to reproduce this is...
* 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: 所有dubbo版本都存在 * Operating System version: mac * Java version: 1.8 ### Steps to reproduce this iss...
0
# Environment Windows build number: Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.6.2951.0 Any other software? # Steps to reproduce 1 Set the following global settings in profile.json "alwaysShowTabs": false, "showTabsInTitl...
# Environment Windows build number: Microsoft Windows [Version 10.0.18362.388] Windows Terminal version (if applicable): 0.5.2762.0 15" 2015 MacBook Pro -- integrated graphics Any other software? Ubuntu 1804.2019.521 # Steps to reproduce 1. Open Windows terminal 2. Drag ...
0
Here we have; PUT /_template/template_1 { "template": "te*", "settings": { "number_of_shards": 1 } As you can see we reference the term **template** 3 times in 3 lines, which is pretty loaded - even if the second (`template_1`) is an example name of a template. I wa...
**Description of the problem including expected versus actual behavior** : The short explaination: The field template In templates is vague because it is pattern matching the indices which will be working on, I think that the name should be somthing like Index pattern or so. The Long one: First to mention, I ...
1
**TypeScript Version:** 1.9.0-dev.20160502 **Code** const xs = [1,2,3]; const ys = [4,5]; xs.push(...ys); Compiled with `tsc --target es6 --strictNullChecks test.ts` **Expected behavior:** Compile without errors (without `--target es6` option, the code compiles successfully) **Actual beh...
The variable in a for-of loop contains `undefined` when the target is set to es6. For es5, everything works as expected. **TypeScript Version:** nightly (1.9.0-dev.20160428) **Code** for (const x of ["a", "b"]) { x.substring; } tsconfig.json: { "compilerOptions": ...
1
## Background: I have some buttons on my website that have a glyphicon plus text. I would like to be able to use hidden-xs on a span around the text inside the button. When the screen is xs (<768px) the button only shows the glyphicon. And when the screen is > 767px the text shows along side the glyphicon. But the...
related to issues #8500 , #7808 , #4929 ; using `.hidden-sm` to hide span within `.nav > li > a` . Because class is `display: block` above -sm then text wraps to new line. Would you consider `.hidden-*` classes to be `display: inline-block` instead ? Here's a jsfiddle of the two cases - but the repercussions could b...
1
I'm seeing this recovered panics in `kubelet.log`: /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go:158 /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubelet/volumemanager/populator/desired_state_...
When calling `/api/v1/proxy/namespaces/$n/pods/$p:1234/` on a pod which returns CORS headers, duplicate CORS headers are returned (from the pod and from the API). The proxy should strip CORS headers, just like the pod proxy does. Reported in openshift/origin#2619 (comment) @csrwng
0
* [X ] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Some users like to use tabbing and keyboard to traverse through a page. Some like to click. For checkboxes you should be able to use both to check or uncheck the checkbox. ## Current Behavior Curr...
how can i use layout with materical-ui? thanks a lot.
0
All input types get set to 210px wide and 18px high, which means image buttons get squashed ridiculously. Adding the radiused box-shadow border doesn't make much sense for image buttons either. It may be too much to set those values for the individual input types since there are a number of nonstandard ones that dif...
With Bootstrap 2.0.3, tooltips were appended to the document body and so they weren't constrained to their parent container Bootstrap 2.0.3: http://jsfiddle.net/TwMdK/1/ With Bootstrap 2.2.2, tooltips are now appended to their parent container and this can cause tooltips to appear "chopped off" Bootstrap 2.2.2: ht...
0
##### System information (version) * OpenCV => all version * Operating System / Platform => ❔ * Compiler => ❔ ##### Detailed description It seems that the hosting site is not working. ![image](https://user- images.githubusercontent.com/43403683/126118323-b9465bab-0581-4b28-887e-4fcc36e6ce24.png) ##### Ste...
##### System information (version) * OpenCV => ❔ * Operating System / Platform => ❔ * Compiler => ❔ ##### Detailed description ##### Steps to reproduce ##### Issue submission checklist * I report the issue, it's not a question * I checked the problem with documentation, FAQ, open issues, answers.ope...
0
## Feature request I thiink it is necessary to support alnp. For example, if a developer want to create a http2 server, alpn can make handshake quicker.
This was discussed over in denoland/deno_std#153 but was locked during the move. While we still have concerns around the HTTP server, we should also consider supporting HTTP/2, HTTP/3 and QUIC.
1
**Glide Version** : 4.11 **Integration libraries** : No **Device/Android Version** : Mi6, Android 9 **Issue details / Repro steps / Use case background** : I'm trying to load images from compressed files. From the `ModelLoader` docs: > By default, Glide provides image decoders for two types of data: > > 1...
**Glide Version** : 4.0.0-RC1 **Integration libraries** : No **Device/Android Version** : Android 7.0 **Issue details / Repro steps / Use case background** : GlideApp.with(context).load(contentStream).into(imageView) **Stack trace / LogCat** : 06-21 23:32:21.243 10351-10351/com.pinbox.android.dev...
1
### Problem Currently the props are merged with the instance's own `data`, which has a few problems: 1. Both data and props can declare the same property name. The order and priority of the merging is not clear. Should a prop overwrite the field with the same name in data? Or the other way around? Currently, the ...
new Vue({ el: '#el', template: '#tpl', data: { items: [ // works fine if defined here // {title: 'Title 1', id: 1}, // {title: 'Title 2', id: 1}, // {title: 'Title 3', id: 1}, ] }, ...
0
When am trying to run the tensorboard in anaconda prompt, I am getting below error. Can somebody help me to recover from it? ### Reproducing code example: tensorboard --logdir=logs/ ### Error message: Traceback (most recent call last): File "c:\users\aswk\appdata\local\continuum\anaconda3\lib\site...
Create fresh virtual env with Anaconda Navigator 1.9.6 under Windows 10, selecting Python 3.7, naming python37 In the console of VSCode: * activate python37 * pip install numpy (python37) D:\TfsProj\alphastone>pip install numpy Collecting numpy Using cached https://files.pythonhosted.or...
1
Hello, we moved recently from TS 1.4 to TS 1.5 with Visual Studio 2013. When we have the following class definition: export class ErrorClass { public foo({bar: number}) { } } With the Option "Generate declaration files" and "combine javascript output into file" to true, the resultin...
I have an interface that is supposed to have a function signature of: (param: {prop: boolean}): any but I forget the parameter name (I'm not sure if this signature is considered valid): ({prop: boolean}): any When compiling this invalid interface with the `--declaration` flag...
1
Elasticsearch generates an InvalidShapeException from polygons generated by PostGIS: MapperParsingException[failed to parse [catchment_mpoly]]; nested: InvalidShapeException[Provided shape has duplicate consecutive coordinates at: (145.105506775, -37.791859504, NaN)] This particular check seems o...
This is a duplicate of #15880 To replicate, copy the config directory to a new location and add a simple tribe config, eg: cp -a elasticsearch-2.2.0/config tribe echo "tribe.t1.cluster.name: foo" >> tribe/elasticsearch.yml Start the tribe node as follows: ./elasticsearch-2.2.0...
0
**I'm submitting a ...** (check one with "x") [ ] bug report => search github for a similar issue or PR before submitting [x ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
This is probably best classified as a Router feature request. I'll describe what it is, my thinking, and a use case. What it is: Currently, the V3 Router waits for an Observable to Complete before completing navigation. I would like for it to instead continue navigation after the first Observable item is returned. ...
0
_Originally posted by @CaiJingLong in #20171 (comment) ## flutter doctor -v flutter doctor -v [✓] Flutter (Channel dev, v0.10.0, on Mac OS X 10.13.6 17G65, locale zh-Hans-CN) • Flutter version 0.10.0 at /Users/caijinglong/Library/Flutter/flutter • Framework revision d954ae6850 (1...
When running a flutter app within IntelliJ just after switching Flutter SDK's, a rather verbose warning is printed twice. Also, it's often printed again the next time you stop and restart the Flutter app. (It eventually goes away, but I haven't seen a pattern to when that happens.) Here's the console output: ...
0
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): no ...
The following information are for installation issues ### What related GitHub issues or StackOverflow threads have you found by searching the web for your problem? https://stackoverflow.com/questions/41605355/updating-the-supported-tags-for- pip# ### Environment info Operating System: windows Installed version o...
0
I've been trying to implement Gaussian Processes Regression, which require the calculation of a matrix inverse. With regular numpy I would use `np.linalg.inv`, but I can't find this function back in jax. Everything else is working as expected, and I can use `np.linalg.inv` for basic calculations. Unfortunately, th...
With multiple GPUs there should be a way to direct specific computations to run on a specific GPU. Context: I want to run #gpu different models in parallel each on its own GPU. The current best solution that comes to mind is to RPC between different machines, each with 1 GPU -- I'd like to avoid doing this. @hawki...
0
**I'm submitting a ...** (check one with "x") [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
**I'm submitting a ...** (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 ...
1
Neither `RFECV.fit` nor `GridSearchCV.fit` take the parameter `sample_weight`. Please add this as an optional parameter to both methods. This parameter is useful for unbalanced classification.
Currently many of our metrics allow for sample weights, but when using the `cross_val_score` or `GridSearchCV` these are not taken into account. As I said on the mailing list, I'm not sure if this is a bug or a feature. It might depend on the domain whether we want to do this or not. #4497 will allow to do this in ...
1
When I configure my default_timezone as Asia/Shanghai and kick off backfill command, it throws exceptions: return func(*args, session=session, **kwargs) File "/usr/local/lib/python3.6/site-packages/airflow/models/dagrun.py", line 181, in refresh_from_db DR.run_id == self.run_id, File "/usr/lo...
**Apache Airflow version: 2.0.1** **What happened:** Running an airflow dags test or backfill CLI command shown in tutorial, produces the same error. **dags test cli command result:** (airflow_venv) (base) app@lunar_01:airflow$ airflow dags test tutorial 2015-06-01 [2021-02-16 04:29:22,355] {...
1
**Migrated issue, originally created by Anonymous** A user has run the unit tests and is confused that many of them fail when running with the default SQLite database. in theory it would be nice for every single unit test to check against the current database engine and to not run if it is known that the engine does...
**Migrated issue, originally created by Michael Bayer (@zzzeek)** because an inheritance relationship copies the properties from the base mapper to the child mapper at construction time, an add_property on the base mapper fails to propigate to the child mapper. this is most apparent when creating a backref against ...
1
This code crashes the compiler fn main() { let mut a = []; } rustc --version rustc 1.0.0-nightly (d754722a0 2015-03-31) (built 2015-04-01) On windows 7 (64 bit) a.rs:7:19: 7:21 error: internal compiler error: cat_expr Errd a.rs:7 let mut a ...
Test case: fn main() { []; } Output: $ RUST_BACKTRACE=1 rustc test.rs test.rs:1:13: 1:15 error: internal compiler error: cat_expr Errd test.rs:1 fn main() { []; } ^~ note: the compiler unexpectedly panicked. this is a bug. note: we would a...
1
# Summary of the new feature/enhancement I like to use multiple desktops, I have one for Work and another for Home time. I would love if I could specify certain apps to always open on a designated desktop. For example, all my work needs to be done in Chrome, but I use Firefox as my personal browser. I'd love if I co...
Please can you add feature in Keyboard Manager to map shortcuts keys to type symbols like, Alt(Left) + a would type "π". 👍
0
There seems to have been an API change between React 0.12 and 0.13 that's not covered in the documentation. When using `JSXTransformer.transform` with the `sourceMap` option, the source map is now returned as a plain JavaScript object. Previously it would return an instance of `SourceMapGenerator` and you'd need to c...
i'm trying to create my apps, app have function like maps app of google. my app have 2 scene: - first scene: is mapview and have a search input in the top of the scene, when user click on search input, app will navigate to second scene (search scene) - second scene: i implemented module react-native-google- places-au...
0
The validator (http://symfony.com/doc/master/reference/constraints/UserPassword.html) fails after updating to 2.1. add('current_password', 'password', array( 'label' => 'form.current_password', 'translation_domain' => 'FOSUserBundle', 'mapped' => false, 'constraints' => new UserPassword(), <<<<< fails )); $builder->...
The validator (http://symfony.com/doc/master/reference/constraints/UserPassword.html) fails after updating to 2.1. add('current_password', 'password', array( 'label' => 'form.current_password', 'translation_domain' => 'FOSUserBundle', 'mapped' => false, 'constraints' => new UserPassword(), <<<<< fails )); $builder->...
1
by **fgergo** : What steps will reproduce the problem? 1. compiling, linking and running ./5.out package main import "fmt" func main() { fmt.Println("Hello") } What is the expected output? "Hello" is printed. What do you see instead? ...
go/types accepts the following program: package a func f() { switch 0 { case 0: case 0: } } While both gc and gccgo reject it with `duplicate case 0 in switch`. Compilers should agree on validity of this program. on commit `997b354`
0
# Environment Windows build number: [run `[Environment]::OSVersion` for powershell, or `ver` for cmd] Windows Terminal version (if applicable): Any other software? # Steps to reproduce # Expected behavior # Actual behavior
Emojis are rendering unusually small: ![image](https://user- images.githubusercontent.com/172594/68474189-afccdd00-021c-11ea-8fd6-9cd870d903ac.png) # Environment Microsoft Windows NT 10.0.18908.0 Terminal 0.6.2951.0
0
# Bug report **What is the current behavior?** I am building a React App on serverless framework. I use webpack to compile both client-side and server-side code with Loadable-Components to do codesplitting. Everything works fine until I try to add `/* webpackPrefetch: true */` to any of the imports in my Loadables...
So, as you may already know, with npm@3 (on the registry now, currently in beta), peerDependencies are no longer installed for you. They act as assertions, warning you if you don't meet their requirements, but they do not break the install nor do they trigger installation of the thing mentioned. This means that `npm...
0
While downloading by "Customize", allow change default fonts path: src: url('../fonts/...');
Guys I don't see any option for changing fonts path variable as well?
1
### System info * Playwright Version: [v1.33.0] * Operating System: macOS 13.2 * Browser: [All, Chromium, Firefox, WebKit] * Other info: ### Source code **Link to the GitHub repository with the repro** **Test file (self-contained)** await test.step("demo1", async () => { await...
### System info * Playwright Version: v1.35.1 * Operating System: macOS 13.4 * Browser: Chromium * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. **Config file** // playwright.config.ts import { defineConfig, devices } from '@play...
0
With introduction of next-plugins we've got more functionality and dependencies exposed in `next.config.js`, using plugins like `next-sass` and others adds extra development dependencies to the runtime, even in production mode, since `next.config.js` is execute at server start time. Requiring us to carry along node...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When using a custom server, routing to a page should automatically bundle the styles of all included components. ## Current Behavior That is not the case. You will need to hard refresh the page to get ...
0
### Apache Airflow version 2.4.0 ### What happened Upgraded airflow from 2.1.4 to 2.4.0, did airflow db upgrade, all seems to work ok In the new grid view UI though, we don't seem to be able to see running DAGs in the default grid view (All run states) Filtering for "Running" does show the DAG is actually ...
### Apache Airflow version 2.4.0 ### What happened Airflow 2.4.0's grid view has an issue: **Grid view stop showing the latest DAG runs in 2.4.0 (regardless of schedule, it shows old dag runs)** * case 1 (all 25 are old dag runs) ![2022-09-19_16-12](https://user- images.githubusercontent.com/14293802/1911090...
1
I uncovered this general issue while testing loading JavaScript files from `node_modules`, but realized (and confirmed) this applies to TypeScript files also. Basically, when we search the `node_modules` folder, we look for all supported extensions and add them to the compilation. Currently this means that if we fin...
**TypeScript Version:** 1.8.10 **Code** interface TNode { Kids?: (TNode | string)[]; } function foo(node: TNode) { } foo({ Kids: [ { Kids: [ { c: 1 } ]} ] }); **Expected behavior:** The error message should contains something like "Object literal may only...
0
We should extend the `preprocessing.Scaler` / `preprocessing.scale` utilities to feature-wise scale sparse matrices to unit scale without trying to center the data first. This work should be done in a consistent way with the `RowNormalizer` refactoring (re-use low level cython functions).
Please help me with my installation. I followed the guideline to install sklearn and numpy, but when I ran the nosetest, it kept showing the following testing message, and finally a failed message also cited below: " nose.tools.assert_equal(filter_args(ff, ['y'], (1, ))," .................
0
(I don't know if it's really a bug or if we're not supposed to do this, but it works fine when using jsx) When using the arrow function as a module exports, the generated code is wrong. The following (useless but minimal) example module.exports = () => arguments; will lead to the generated code ...
## Bug Report * I would like to work on a fix! **Current behavior** TypeError: Cannot read property 'range' of null Occurred while linting /home/jayen/docs/work/ridethewaverley/ride-the-waverley/src/util/writeresource.js:1 at OffsetStorage.setDesiredOffset (/home/jayen/docs/work/ridethe...
0
* VSCode Version: 1.0.0 * OS Version: OSX 10.11.3 * Unity 5.3.4f1 Steps to Reproduce: 1. Configure Visual Studio Code with Unity as described at: https://code.visualstudio.com/Docs/runtimes/unity 2. Start debugger and set breakpoint See screenshot: Hovering on the method parameter works and I can see its...
**TypeScript Version:** 1.8.10 **VSCode Version:** 1.0.0 **OS** Linux 4.4.8-300.fc23.x86_64 Fedora 23 Gnome 3.18.2 **Project structure** ├── dist │ ├── app.js │ ├── app.js.map │ ├── other code ├── node_modules ├── npm-shrinkwrap.json ├── package.json ├── readme.md ├── src │ ├── app.ts ...
0
Here is the feedback link I filed: Feedback # Environment Windows version 10.0.18970.0. Latest Windows Terminal build (either the available bits or locally built.) # Steps to reproduce This is the same repro as issue 1360, which I was trying to reproduce and hit this render-related crash ...
# Environment Windows build number: 10.0.18362.356 Windows Terminal version: 0.4.2382.0 WSL Ubuntu 18.04 # Steps to reproduce Run the following app using node.js after doing `npm i blessed` var blessed = require('blessed'); var screen = blessed.screen({ ...
0
**Ramkumar Krishnan** opened **SPR-4691** and commented It would be great if we have something like SimpleJdbcUpdate similar to SimpleJdbcInsert. It should take map<column names ,values> and another map<updateColumnNames, values> as parameters and it should update table based on that. The column names in the secon...
**Keith Donald** opened **SPR-7745** and commented Would be nice extension of the resource handler work in Spring 3 in the cases where the resource handling is performed off-site with the help of a CDN such as Amazon Cloudfront. The best practice in this environment is to upload two versions of each static resource...
0
_Original tickethttp://projects.scipy.org/scipy/ticket/1009 on 2009-09-30 by trac user jap, assigned to unknown._ If there are large values in the observation matrix, the vq.kmeans method fails with the following error: (Pdb) centroids, distortion = vq.kmeans(erow, centroids, iter=1) *** UnboundLocalError: local...
_Original tickethttp://projects.scipy.org/scipy/ticket/1077 on 2009-12-28 by @kwgoodman, assigned to unknown._ Just for fun I tried kmeans on a problem that has a LOT of features. I got an error: UnboundLocalError: local variable 'best_book' referenced before assignment The exception is raised ...
1
* VSCode Version: 1.0.0-alpha * OS Version: Windows10 Steps to Reproduce: 1. Launch VS code and open any folder which contains .ts file. 2. Configure tasks.json and tsconfig.json files. 3. Set "showOutput": "always" setting into tasks.json. 4. Perform build operation and verify error or success message ...
Currently there is no way to tell if a script is running other than a spinning bar in the bottom which is hard to see. If the task doesn't spit any output than there is no way to know if it's still running or finished other than by looking at that bar. Would be nice to get something more visible and explicit.
1
**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-4d60d11fe...
* Your Windows build number: (Type `ver` at a Windows Command Prompt) Microsoft Windows [Version 10.0.18362.86] * What's wrong / what should be happening instead: When the tab is running a `wsl` (Debian or Ubuntu) task any character requiring Alt Gr on the German Keyboard layout (~, @, |, etc.) don't get print...
1
I added the glide-3.6.1.jar and YouTubeAndroidPlayerApi.jar to my project, Before adding to glide , the youtube player was working clearly, when I added glide, something went wrong and when I try to open my YouTubePlayerFrag, onCreate() method I couldn't inflate my xml. When I remove the glide, everything return n...
How to set background process as 0 http://www.tomsguide.com/faq/id-2316489/limit-background-process-android- device.html A fragment in activity and execute below. ImageView imageView=(ImageView)getView().findViewById(view, R.id.attachment); Glide.with(activity).load(url).asBitmap().into(imageVie...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior On the server : The classname generation should occur once On the client: The classname generation should occur once Both classnames generation should match #### =========== I should be able to a...
I've started analyzing `material-ui` part (quite big as it turned out) of my application bundle. My app is very simple for now, I use not many different widgets, so I was quite surprised seeing modules like `Popover` inside the bundle. I've traced dependency graph and I found quite a long path from `Select` (whic...
0
As mentioned here: There is a problem what tests belong to which file/module. `std` solves that currently with prefixing every test name. Though that works, I think there would be a better solution. `deno test` should log file paths to differentiate the tests like so for a better overview: std/da...
Currently, all tests from different test file are printed as if they are all from one file. This could be a problem on a large test suite where developer needs to find failed test case/file. In Jest, tests are grouped per file. By default, only file names and names of failed tests are shown. ## Alternative Proposal...
1
In ErrorPage Component this error is coming at last statement of "export default connect(...) ". import React, { Component } from 'react' import { connect } from 'react-redux'; class ErrorPage extends Component { state = {} render() { return ( <d...
**Do you want to request a _feature_ or report a _bug_?** no. **What is the current behavior?** look this: react-week-time-range-picker. This is a component written by react hooks. I run it normal when i develop it. However, when i `npm install react-week-time-range-picker` to test , the page report error **M...
0
Hello, first of all I want to say you making crazy useful things, guys, thank you! I have two elasticsearch twin (versions, configuration, everything) servers with the same data, replicated by logstash: ES1 and ES2. ES1 I restarted for a few hours ago and now I have a problems. My mapping for logstash type, same fo...
It appears that the Explain API ignores search_type. I'm unsure if this is by design, or because of an underlying limitation, but thought it deserved an issue report. Here is an example query showing scoring disparity due to low doc count (5 docs) spread across 5 shards. Perfectly normal for a `query_then_fetch` sea...
0
Challenge http://www.freecodecamp.com/challenges/bonfire-return-largest- numbers-in-arrays has an issue. When you start exercising the compiler tells you "cannot read property 'eql' of undefined", the problem is that I have never stated that property and more change that I made in the editor, compile always says the...
Challenge http://www.freecodecamp.com/challenges/waypoint-bring-your- javascript-slot-machine-to-life has an issue. Please describe how to reproduce it, and include links to screenshots if possible. Every time I try to type my answer into this challenge I only get as far as typing $($ before the program freezes and ...
0
### Website or app https://www.youtube.com/, https://developer.mozilla.org/en- US/docs/Learn/CSS/CSS_layout/Flexbox,https://docs.github.com/en ### Repro steps I was using the YouTube website. I have a habit of checking if the website i have visited was using react or not. As always I checked for YouTube website to...
### Website or app youtube.com, github.com, gmail.com, lucidchart.app ### Repro steps 1. Open any web app not made with React (e.g.: youtube.com, amazon.com, github.com, gmail.com, lucidchart.app) 2. The react icon is ON and the popover message says: 'This page is using the production build of React. ✅' ###...
1
I find when I'm reading the documentation that I have to do a shit ton of scrolling so I can get to the primary navigation after I've made my way so far down the page. A back to top link would seriously save me time and a some finger abrasion. The mighty mouse and touch pads aren't exactly free spinning scroll wheel ...
In the new docs in 3.1 the navbar is not fixed on top. It's quite hard to go to other pages when you are way down below in the docs. A back to top button on the sidebar would be nice.
1
2. copy below exception message Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19042.0 IntPtr Length: 8 x64: True Date: 08/02/2020 13:50:37 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boolean value) at ...
Popup tells me to give y'all this. 2020-07-31.txt Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 07/31/2020 17:29:59 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boo...
1
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
0
**I'm submitting a ...** (check one with "x") [X] feature request **Current behavior** Bi-directional binding (Bannana in a box) don't work out-of-the-box for parent/child component, with child event emitter. Parent component property is not updated. **Expected/desired behavior** Avoid duplica...
Hi all! Is it possible to extend DOM Elements with Angular 2? In a way I can use it like: <button value="Click!" is="extended-button" /> Thanks in advance, Tiago Braga
0
hello, when i downloaded "script auto setup" and ran it to create cluster on AWS, and got this error: ./cluster/../cluster/../cluster/aws/../../cluster/common.sh: line 518: KUBE_MANIFESTS_TAR_URL: unbound variable I don't see this on older version, and don't know variable "KUBE_MANIFESTS_TAR_URL", does anyone expl...
**Is this a request for help?** (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.): * No **What keywords did you search in Kubernetes issues before filing this one?** (If you have found any duplicates, you should instead reply there....
0
If you hover over an open tab, you get a little hint popup showing the full path of the file open therein, which is cool. Problem is, if you happen to close that tab with CMD-w whilst it's up, apparently it never goes away, and hangs around pointing to tabs that are clearly NOT that file any more.
I had a tab open, hovered my mouse over the label and then closed the tab. Now I have a permanent tooltip I can't remove. ![screen shot 2013-11-26 at 9 33 07 am](https://camo.githubusercontent.com/9bd809e58ccf977644c52ba2eb915afe47981b5589106ea11a96e0dc2e0093bd/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6...
1
When I expand a collapsible navbar and after that resize the browser window, the navbar-collapse element keeps the class "in". In my opinion the class "in" should be removed if the width is wide enough for the navbar not to be collapsed because when I call the page with a wide browser the navbar-collapse also does no...
Currently this is duped a few times over: #11243, #11301, and #11382—but the issue is described differently everywhere. This should clear things up and help us figure out what to do to fix it. #### Problem Starting with a narrow viewport, one with the collapsed navbar contents, open the menu, then resize to full-wi...
1
## Environment info * `transformers` version: 4.1.1 * Platform: Linux-3.10.0-693.5.2.el7.x86_64-x86_64-with-centos-7.4.1708-Core * Python version: 3.7.9 * PyTorch version (GPU?): 1.7.1 (False) * Tensorflow version (GPU?): not installed (NA) * Using GPU in script?: * Using distributed or parallel set-u...
# 🚀 Feature request `transformers.BertTokenizer.from_pretrained()` calls `get_fast_tokenizer_file()` which downloads a file from the HuggingFace server but never adds it to the cache. Would be useful to cache that file (in the same folder as the models) to make CI runs more robust. ## Motivation Try to avoid hav...
0
By default, alt-f is bound to `editor:move-to-end-of-word` and alt-h to `editor:delete-to-beginning-of-word`. These conflict with activating `File` and `Help` menus in Windows. Suggestions: * Reserve alt-f and alt-h for menu bar access and change editor shortcuts. * Focus and activate menu bar via a single alt ...
The normal Windows `Alt+{letter}` menu shortcuts don't work in Atom. Holding `Alt` highlights the relevant letter in each menu name, but then pressing the letter doesn't open the menu. For example, `Alt+F` should open the File menu, but instead the Key Binding Resolver shows it invoking the following: ...
1
neo4j-sh (?)$ create (t:Test {a:"abc&&def"}) return t; Unknown command 'def"})' neo4j-sh (?)$ This breaks imports from dumps where the data contains this pattern
This issue ties together all bugs related to the shell's dump command. ## Schema support * Constraints using indexes during import: there needs a way to wait for indexes to become available after creating them, otherwise the import takes forever. * The shell could be extended with a command to achieve the ab...
1
myfunc(myvar::AbstractMyType{T})::Array{T} where {T} = myvar.myproperty throws `UndefVarError: T not defined` but function myfunc(myvar::AbstractMyType{T})::Array{T} where {T} myvar.myproperty end works absolutely fine. Is there something I am missing?
In other words, `::ReturnType` is incompatible with `where` clauses in the short function form declarations. I thought an exemple was more clear than my words in the title.
1
Duplication of request clears list of fields in the original request instead of duplicated one.
According to the phpDoc annotation of `Symfony\Component\BrowserKit::getResponse()`, an instance of `Symfony\Component\BrowserKit\Response` should be returned by that method. But instead, I get an instance of `Symfony\Component\HttpFoundation\Response`. Unfortunately, the interfaces of both classes differ (eg. `getSt...
0
Following Code "suddenly" (TM) gives a compiler panick: use std::iter::Iterator; fn map<T, U, I: Iterator<T>>(fun: |T| -> U, mut iter: I) -> Vec<U> { let mut acc = vec![]; for elt in iter { acc.push(fun(elt)); } acc } fn main() { ...
The following code causes the compiler to fail. Conversation on IRC suggests this is a known issue, but I could not find this specific error by searching tickets for "Cannot encode region variables" nor any of the hits for "region variables". I apologize if this is a duplicate. $ cat ./vecpeek.rs ...
0