text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
# Environment
Windows build number: 18362.267
Windows Terminal version: 0.3.2142.0
# Steps to reproduce
1. Open a directory in explorer.exe
2. Type 'wt' in the search bar to launch the terminal
# Expected behavior
The terminal starting directory should be the same as the directory in
e... |
# Description of the new feature/enhancement
The Find dialog in conhost does not persist its content so once the modal
dialog is dismissed, bringing the dialog back up again results in an empty
textbox
The feature request is to remember the last used string
# Proposed technical implementation details (optional)
| 0 |
Python 3.7.6 (default, Jan 30 2020, 09:44:41)
[GCC 9.2.1 20190827 (Red Hat 9.2.1-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np
>>> np.__version__
'1.17.0'
>>> np.lexsort(np.empty((0, 2), dtype=int).T)
Traceback (mos... |
Numpy 1.17.0 raises MemoryError when using `lexsort` on an empty array with
non-standard `strides`. If `strides` is the natural one, or if there is >= 1
element in the input, then it works as expected.
### Reproducing code example:
import numpy as np
xs = np.array([], dtype='i8')
assert x... | 1 |
### Bug report
**Markers appear smeared and not clear**
* When I plot markers with pyplot they show compression artifacts even when I save them as PNG.
**Code for reproduction**
#!/usr/bin/env python
import numpy as np
import m... |
Using `errorbar` does not properly center the errorbar on the marker. See the
following example and output. The issue persists in the legend as well. The
errorbar is a few pixels off center and changing the `linewidth` does not
solve the issue. `snap` kwarg has no effect either. I have reproduced this
using matplotli... | 1 |
Noticed by accident. After running go get for an invalid directory, the first
`go get -u` fails, and the second succeeds. The `internal error` lines at the
end are #14444. This issue is about the fact that the two runs of `go get -u
.../` fail in different ways.
I haven't looked into it.
> mkdir /tmp/... |
From:
go/src/net/dnsclient.go
Line 43 in ced0646
| if dns.rcode == dnsRcodeNameError && dns.recursion_available {
---|---
it looks like any NXDOMAIN reply where the server doesn't allow recursive
queries is treated as "server misbehaving". I would expect this to be treated
like any other case where the n... | 0 |
**Costin Leau** opened **SPR-8334** and commented
SimpleCacheManager and MapCacheManager are identical and one of them should be
eliminated.
* * *
**Affects:** 3.1 M1
**Referenced from:** commits `700a02b`, `cc519e7`
|
**Dave Syer** opened **SPR-3156** and commented
Docos (or maybe assertion in code) to help with using
DefaultMessageListenerContainer with non-XA transaction manager. It is
actually quite plausible (and common) to use a DefaultMessageListenerContainer
with a DataSourceTransactionManager (not full XA). Then database... | 0 |
I was looking at the templating helper classes in FrameworkBundle and
SecurityBundle. There appears to be a fair about of code duplication between
these classes and their Twig extension counterparts.
I realize helpers extend a base class, as do Twig extensions, so separate
classes must continue to exist; however, we... |
(Copied from #6522)
With the current implementation, the attributes passed in the `attr` option
are rendered both in the `<form>` tag (new) and in the `<div>`/`<table>` tag
of the form (for BC).
$form = $this->createForm('my_form', $formData, array(
'attr' => array(
'id' => 'foo',
... | 0 |
I'm not sure if this is a duplicate of #6061, But here's the problem.
I'm on windows 10 using `deno 1.12.2 (release, x86_64-pc-windows-msvc)`, `v8
9.2.230.14`, `typescript 4.3.5`, and I have this file `DenoStd.ts` :
import * as Http from 'https://deno.land/std@0.103.0/http/mod.ts'
export { Http }... |
Referring to: #5979
I'm trying to use React exported from esm.sh bundler service like this:
// myproject/src/deps/react.ts
export { default as React } from "https://esm.sh/[react,react-dom]/react?dev&no-check";
export { default as ReactDOM } from "https://esm.sh/[react,react-dom]/react-do... | 0 |
While doing tests sometimes I felt some test are too easy and others quite
hard to solve. For some of them I could imagine, they are better split up into
more tests to need better explanation. The goal might be to develop a more
_even_ learning curve or possibly add better links to external resources.
How about addi... |
We are planning to delete all the inactive Gitter rooms. Before we do, we need
to make a full dump of all activity in those Gitter rooms, which we can then
release as an open dataset.
| 0 |
I need to check in more detail, but my first impression is that supporting a
`precomputed` metric doesn't involve too much modification to the existing
code.
Is there a reason we should not support it?
|
OPTICS relies on the nearest neighbor graph, and should be possible to perform
with precomputed distances (maybe it does already, but I don't think it's
tested), and with sparse feature spaces. It should perhaps also be possible to
perform with sparse precomputed neighborhoods (e.g. as returned from
`radius_neighbors... | 1 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
vault
##### ANSIBLE VERSION
devel
##### CONFIGURATION
##### OS / ENVIRONMENT
##### SUMMARY
A single vault encrypted value does not get decrypted in a jinja2 pipeline.
##### STEPS TO REPRODUCE
Don't worry the below vault data is just us... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
script module
##### ANSIBLE VERSION
$ ansible --version
ansible 2.3.0 (devel 7018aa3316) last updated 2017/03/03 14:22:37 (GMT -500)
config file =
configured module search path = Default w/o overrides
##### CONFIGURATION
an... | 0 |
Hi all,
just figured out that the following code
pd.DataFrame({'x':None}, index=[0])
works in 0.18.1 but not 0.19.0, is that the expected behavior? Thanks!
Best,
Jie
|
#### A small, complete example of the issue
# Your code here
import pandas as pd
pd.Dataframe(dict(a=None), index= [0])
In [3]: pd.DataFrame(dict(a=None),index=[0])
---------------------------------------------------------------------------
AttributeError ... | 1 |
jax/interpreters/batching.py in _dimsize(dim, aval, x)
294 return reduce(set.union, map(_dimsize, dim, aval, x))
295 elif type(dim) is int:
--> 296 return reduce(set.union, map(partial(_dimsize, dim), aval, x))
297 elif dim is None:
298 return... |
Let
def split(pytree, masks):
left = jax.tree_map(lambda p, m: p if m else None, pytree, masks)
right = jax.tree_map(lambda p, m: None if m else p , pytree, masks)
return left, right
acting on `pytree`, `masks` which are PyTrees of identical structure; the
latter assumed ... | 0 |
ERROR: type should be string, got "\n\nhttps://developer.android.com/guide/app-bundle/configure is this possible with\nflutter?\n\n" |
While I'm aware that Flutter makes use of tree shaking which decreases the
file size of the app drastically, I was wondering if the flutter build tools
were likely to support Google's new Android App Bundle method of building any
time soon?
Info on Android App Bundles
| 1 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
file related modules like `file`, `template` that have a `mode` parameter
##### ANSIBLE VERSION
ansible 2.3.1.0
config file = /home/kon/venvs/ansible-test/etc/ansible.cfg
configured module search path = Default w/o overrides
pyt... |
##### ISSUE TYPE
* Bug Report
* Feature Idea
* Documentation Report
##### COMPONENT NAME
ansible-playbook
##### ANSIBLE VERSION
ansible 2.3.1.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.5 (default, May ... | 1 |
* Electron version: 1.6.8 or 1.7.1
* Operating system: Windows
### Expected behavior
In windows multiple monitor setup with different DPIs, electron app starts out
of bounds
### Actual behavior
Should start at the same place where app was last opened
### How to reproduce
1. Have two monitors with 200% and... |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
12.0.0... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
Feature Reqeust
**If this is a feature request, what is motivation or use case for changing
the behavior?**
### The Problem
In vue-loader, we process Vue single file components that can contain multiple
language blocks:
<template>/* ... */... |
Is there a way to mangle/uglify Webpack globals? Option for it? Even hacky
way?
Few examples: `__webpack_exports__`, `moduleName__WEBPACK_IMPORTED_MODULE_0__`
My bundle is extremely size-sensitive and these are **10-15% of my bundle**.
https://stackoverflow.com/questions/61216115/uglify-webpack-globals
Really so... | 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.
I searched in FAQ and docs and I didn't find an answer.
Why and when use Dubbo?
Given that REST APIs are increasingly common, why use ... |
* [√] I have searched the issues of this repository and believe that this is not a duplicate.
* [√] I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.5-SNAPSHOT
* Operating System version: win10
* Java version: 1.8.0_152
### Steps to ... | 0 |
Challenge Declare JavaScript Variables has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36`.
Today I actually received an error:
Error 504 Ray ID: 28c56387b0b90ecd • 2016-03-31 17:06:54 UTC
Gateway time-out
This ... |
Challenge Adjusting the Padding of an Element has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... | 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
... |
**Steps to reproduce and a minimal demo of the problem**
demo http://plnkr.co/edit/7uoVecfa62i8No8GtQHI?p=preview
Angular2 beta 16 or higher - When I hide first section with nested components
using *ngIf, ngOnDestroy of every nested component is triggered - this is OK.
<div *ngIf="!ff2">
... | 0 |
Atom should support following the shortcuts/"shell links" Windows uses.
Currently when dragging a file to Atom, or when selecting a shortcut in the
tree view, the binary file is opened directly. (format
 opens the
`.lnk` file itself rather than the target of the shortcut; the latter behavior
would make more sense. I keep a bunch of shortcuts to project folders on my
Desktop and it would be nice to be able to drag the shortcuts directly into
Atom and have... | 1 |
I have tried to download the documentation in PDF from the official site
(http://flask.pocoo.org/) and the link there
(http://flask.pocoo.org/docs/0.12/.latex/Flask.pdf) is returning error 404.
|
Ran the builder manually to figure out why nothing was building. Builder is
sitting waiting for input, which it will never get. Had to enter Ctrl-D at
each of the ? prompts.
...
Package hyperref Message: Driver (autodetected): hpdftex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdf... | 1 |
# Description of the new feature/enhancement
Add user profiles inside the right click taskbar menu of terminal app.
It should launch the terminal with chosen profile instead of default. Or, if
terminal is already opened, open a new tab / new window...
|
The Task Bar context menu

should show the items from the configured profiles that populate the new shell
menu
.
If there is no atom window open and `atom .` is used then window is propertly
restored.
I am using Atom 124.0 on OS... |
Like I mentioned here in my comment opening a folder won't work for the first
time you open it, wether if you drag&drop it or just open it via the shortcut.
Same Problem on two different computers with Atom (0.124.0) running on Mac OS
X (Mavericks).
| 1 |
Challenge http://www.freecodecamp.com/challenges/waypoint-target-elements-by-
id-using-jquery has an issue. Please describe how to reproduce it, and include
links to screenshots if possible.
First target your **div** element with the id target3 by using the
$("#target3") selector.
**div** needs changing to **button... |
#### Challenge Name
Add Borders Around your Elements
#### Issue Description
I was trying to change the class on "img src" tag, but when I click on the old
class (for the changing) I can't write something else.
#### Browser Information
* Browser Name, Version:
* Operating System: Windows 10
* Mobile, Deskto... | 0 |
Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | yes
Symfony version | dunno
A lot of new features related to the auto-wiring have been added recently:
* Autowiring
* Setter auto-wiring
* Getter auto-wiring
IMO, especially with the last two, it starts to become... |
As specified in the AuthenticationManagerInterface, any implementation of
`AuthenticationManagerInterface::authenticate` should always return a
TokenInterface. Some provided implementation do not follow the rule, examples
are
* `AnonymousAuthenticationProvider`
* `PreAuthenticatedAuthenticationProvider`
* `Rem... | 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: ALL
* Operating System version: nop
* Java version: nop
### Step to reproduce this issue
1. e... |
* 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: xxx
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this issue
1. ... | 0 |
This is a performance that goes 0..1, 0..1, 0..1, continually, with a
particular period (duration) and curve.
Useful for things like continuous spinners.
See also #215.
|
I'm working on an update to the CircularProgressIndicator to bring it in line
with the Material Design spec (you can see the reasonably correct, although
still not perfect Polymer implementation here: https://elements.polymer-
project.org/elements/paper-spinner?view=demo:demo/index.html&active=paper-
spinner)
This a... | 1 |
It seems "Request" object has no attribute "is_xhr" ,Getting warnings here...
How do we fix this?

|
This has been raised several times #3490 #3486 etc.
These have been closed due to no stacktrace or the issue being in a third
party project.
Here are some reproducible examples just using Flask.
> python --version
Python 3.8.0
> pip install flask==0.12.4
Successfully installed Jinja2-2.1... | 1 |
When creating a daterange with a decimal number of minutes, pandas truncates
everything before the decimal point. This leads to odd results e.g. if you're
expecting to generate something every half minute and instead end up with
something every 5 minutes, and even odder results if you have a float that is
a whole num... |
I'm new to pandas, so maybe I'm missing something, but I'd expected freq='.5s'
to give me 500ms intervals, not 5s intervals:
> > > pd.date_range(0, periods=5, freq='.5s')[1]
> Timestamp('1970-01-01 00:00:05', offset='5S')
> pd.date_range(0, periods=5, freq='500ms')[1]
> Timestamp('1970-01-01 00:00:00.500000... | 1 |
I have been looking at the plethora of issues and attempts to fix sparse
arrays and broadcast. For anyone not caught up on the general strife, here is
a rough (although very incomplete) overview.
# Current Problems:
#19561: broadcasting non numeric arrays causes problems because
`zero(::Type{Any})` doesn't exist
... |
Is there any practical way to achieve this? Consider: I have a very large
matrix describing edge weights between all pairs of vertices. This is an NxN
matrix and is impractical for graphs with orders of 1e7 without using sparse
matrices.
If I want the default edge weight of 1.0, I have to code specially around this
... | 1 |
Transferred from http://code.opencv.org/issues/2318
|| Dmitry Ponv on 2012-08-27 23:52
|| Priority: Low
|| Affected: None
|| Category: imgproc, video
|| Tracker: Feature
|| Difficulty: None
|| PR: None
|| Platform: None / None
## Hough Circle detection to report the qu... |
Transferred from http://code.opencv.org/issues/1409
|| ivansorokin - on 2011-10-07 15:02
|| Priority: Normal
|| Affected: None
|| Category: imgproc, video
|| Tracker: Feature
|| Difficulty: None
|| PR: None
|| Platform: None / None
## ability to get Hough accumulator v... | 1 |
Although Deno is "headless" that does not mean image/canvas processing would
be useless. Why? Many of us use "image as data", for example zxy Tiles for map
data (elevation is quite popular)
And often the results of the computations are exported by creating a canvas
with the data and downloading it as an image.
I re... |
#1629 is about WebGL, it will likely take a lot of time to implement.
I think add **OffscreenCanvas & CanvasRenderingContext2D** interface at first
is a good idea for now.
A lot of server-side image process like shields.io can be done in
OffscreenCanvas with 2d renderer
(and it should be able to load image from... | 1 |
#### Describe the bug
NB crashes when there is data in test data what was not used in train data
https://scikit-
learn.org/stable/modules/generated/sklearn.naive_bayes.CategoricalNB.html#sklearn.naive_bayes.CategoricalNB
in real live test data values are different from train data
|
#### Describe the bug
NB crashes when there is data in test data what was not used in train data
https://scikit-
learn.org/stable/modules/generated/sklearn.naive_bayes.CategoricalNB.html#sklearn.naive_bayes.CategoricalNB
in real live test data values are different from train data
| 1 |
When a user enters invalid data in an input field which has some restriction
(for example, `type="number"`) it prevents form from submitting (no event is
fired) but there's no visual indication of what is wrong. Is it done on
purpose or is it just a bug?
|
Atom shell currently does not support HTML5 form validation notifications --
client side form validation is supported and you cannot submit invalid form
entries, however, there is no visual cue or notification for invalid entries
as there is in most browsers (see image below).
Is support for this planned?
 proxy server, best described
by @rdharrison2 in
https://github.com/kennethreitz/requests/issues/2364#issuecomment-186214402:
> In my case I'm making a large number of periodic https requests to a apache2
> server with connection keep-alive timeout 5s. There is a race... |
Request hooks are being merged with session hooks; since both hook dicts have
a list as the value, one simply overwrites the other.
| 0 |
Deno is marketed as “A secure JavaScript and TypeScript runtime” and the
philosophy behind the flags disabling syscalls seems to be “Deno default
behavior prevents you from shooting yourself in the foot security wise”.
However, by default, Deno accepts to download libraries using http only. In
other words, https is ... |
For security reasons? (I believe for script tags in browsers would show
warnings on loading an http resource while the page is loaded under https)
| 1 |

Since there's a length property in each part of the union this is a legal
property access but then we merge the doc descriptions without de-duping or
differentiating which description is which (ie if each ty... |
I have an issue during writing a piece of declaration for existing node.js
module - bluebird.js. The module has a method named `props` which gets an
object has promises in it then return an object have same property names. It
seems like object-version `map`. I wanted to add types for that.
For `all` I can easily get... | 0 |
### Description
At the moment it seems you can't trigger a dag with the CLI with the flag
"replace_microseconds":
airflow/airflow/cli/commands/dag_command.py
Line 145 in 9337aa9
| dag_id=args.dag_id, run_id=args.run_id, conf=args.conf,
execution_date=args.exec_date
---|---
However, this argument seems to ... |
### Description
`airflow dags trigger` CLI command always defaults with
`replace_microseconds=True` because of the default value in the API. It would
be very nice to be able to control this flag from the CLI.
### Use case/motivation
We use AWS MWAA. The exposed interface is Airflow CLI (yes, we could also ask
to g... | 1 |
ERROR: type should be string, got "\n\nhttps://developer.android.com/reference/android/view/textclassifier/TextClassifier.html \nappears to be the API.\n\n" |
Hi, i'm having troubles with Image_picker plugin. I can't show image from
gallery. However, show image from camera works perfectly.
I try add two permissions to read external storage but doesn't work:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
## Steps to Reproduce
... | 0 |
I have a very time-sensitive application that I'm building.
I noticed that the first time a worker sends a new task, it has a non-trivial
delay due to the declaring of the queues.
I would like to know if it's possible to remove this delay, or to move it at
some init function in my worker.
## Related Issues and Pos... |
I am not sure if this issue is a feature request or a request for guidance. I
do not see how this could be accomplished, so I guess it is a feature request
-- but perhaps it is already possible?
I am trying to swap from using class based tasks to decorator tasks. Simple
tasks are easy to swap over. However, some of ... | 0 |
The text editor is a little buggy. Every time I go to the next challenge I
have to reset the code in order to get the text-editor to be responsive.
Specific issues with the text editor include: inability to select a line of
code, clicking on a line and having it select the line below, navigating with
the arrow keys w... |
Challenge change-the-color-of-text has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101
Firefox/47.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
<h2 style="color:red">CatPhotoApp</h2>
<p>Kitty ipsum dolo... | 0 |
In the currently online pandas 0.19.2 documentation, I see the following
inconsistency:
* There is pandas.DataFrame.pivot_table, but also pandas.pivot_table.
* In the same way, there is pandas.DataFrame.pivot and also pandas.pivot. (BTW., the latter has the dataframe argument missing.)
* There is pandas.melt, ... |
I think this is pretty duplicative and unless its a _major_ bug fix should be
avoided (in whatsnew), though I am +1 for API/enhancements...etc
need a 1-time cleanout of v0.13.0 txt...then (let's leave prior version alone)
| 0 |
This may have been filed already, but I did a quick search and couldn't find
it. Please close if that's the the case.
A React component's reusability as a view is highly limited without strong
ties in with CSS. Currently, passing className to a component eg `<Component
className='css-class' />` does nothing unless e... |
> I was in the middle of using dev-tools `Profiler` to check what components
> will be re-rendered, and this error happened when I pressed the stop button
> of the recorder...
This is the reprex project links: https://github.com/web-reprex/prettier-list-
different
* * *
## Please do not remove the text below this ... | 0 |
##### System information (version)
* OpenCV => 4.5.3
* Operating System / Platform => iOS 14.7.1 iOS 15
* Compiler => Xcode 12
##### Detailed description
When I use version 4.5.3 to call the stitch method on IOS, the puzzle times an
error. I can't debug. I don't know what the reason is. Please take a look.
T... |
* OpenCV => 3.4 / master (probably all 3.x versions)
* Operating System / Platform => Windows 64 Bit
* Compiler => python3.5, opencv3.4.3 (from pip here)
##### Detailed description
we _should_ use `XXX_create()` functions, but folks will try to use `XXX()`
instead ,
leading to cryptic errors:
... | 1 |
From @alitvak69 on 2016-10-27T00:03:27Z
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
setup
##### ANSIBLE VERSION
ansible 2.2.0.0
config file = /home/vagrant/ansible/ansible.cfg
configured module search path = ['/home/vagrant/ansible/library']
##### CONFIGURATION
# Enable... |
Hi,
I've made a very basic gist to demonstrate the current issue that I'm having.
https://gist.github.com/thegiantbeast/90efb8cb1a08cdef8c0b
The problem is that `{ role: installVersion, pkgVersion: "{{ currentVersion
}}" }` is only executed once, although the `currentVersion` keeps changing
between executions (che... | 0 |
#### Responsive Design With Bootstrap
Link to challenge
#### Issue Description
The first checkbox's label, "Loving", drops down to a new line. To me, it
looks odd and appears as though the assignment is incorrect or that something
is wrong with the student's code.
A student may hack this by removing the leading s... |
Challenge http://freecodecamp.com/challenges/waypoint-modify-array-data-with-
indexes has an issue. It seems like a bug. Thanks.

| 0 |
Using 2.5.x-dev (`7e573f4`)
Duplicated property throws error in appDevDebugProjectContainer :
> PHP Fatal error: Cannot redeclare appDevDebugProjectContainer::$parameters
> in home/vagrant/var/www/app/cache/dev/appDevDebugProjectContainer.php on
> line 22
Maybe coming from this line
symfony/src/Symfony/Component/... |
`ReflectionExtractor` currently supports array mutators (`add`, `remove`) but
it's not very useful as the singular method name is not being checked.
If we can use `doctrine/inflector` to singularize the property name, we'll be
able to pick up a lot more useful information in many cases. I'll open a PR if
this is... | 0 |
Here you can see the problems, uncommented the bootstrap.css injection to see
the errors in:
http://jsfiddle.net/26mrX/
* Marker icon looks wrong when icon is draggable: (draggable: true)
* Map zoom controlers looks wrong and they disappear
* Much much more problems!!!!...
It is incredible that you have this... |
First of all thanks for your fantastic work. It does SAVE me a lot of time.
When I put Google Maps into Bootstrap layout, img tag in Google Maps breaks
because Bootstrap set **img max-width to 100%**. When I comment max-width,
it's working find but I'm not sure whether it'll break something else in
Bootstrap or not.... | 1 |
tsc version 1.4.1.0 (1.3.0 work correctly)
tsc -w --out ../file.js file.ts
file.ts
/// <reference path="./interfaces.ts"/>
alert('1');
interfaces.ts
interface HashTable<T> {
[key:string]: T;
}
/*interface Test {
}*/
( _multiline_ comment closed on _last ... |
Hi,
**TS Version** : 1.4
The following code:
var x: any;
/*
var bar;
*/
Emits the following JavaScript
var x;
/*
var bar;
var x: any;
/*
var bar;
Expected
var x;
/*
var bar;
*/
| 1 |
There are some cases where dpkg/apt can leave file like logging.yml.dpkg-dist
files in /etc/elasticsearch and LogConfigurator will pick them up by default.
This is bad because those files might contain garbage and break logging. Why
not _just_ pick up logging.yml? Is this something like the conf.d pattern?
|
elasticsearch 1.3 will try to import .svn/text-base/logging.yml.text-base as
json and fail to set up logging as a whole.
I think it's not reproducible with subversion 1.7+ since a new .svn-format
with hash-based filenames is used. But Debian wheezy/stable is still using
subversion 1.6 and is what we use.
I found
... | 1 |
## 📚 Documentation

|
* FeatureAlphaDropout
* nn.init.zeros_, nn.init.ones_
* bilinear missing doc content
* DistributedDataParallelCPU
* torch.as_strided
* F.softplus
* torch.default_generator
| 1 |
**_(See the comments below for a simpler repro case.)_**
A model with shared inputs, LSTM, and Lambda layers fails to deserialize. A
minimal repro case is here.
from keras.engine import Input, Model
from keras.layers import Lambda, concatenate, Dense, LSTM
from keras.models import save_model, ... |
`AttributeError: module 'tensorflow' has no attribute 'get_default_graph'`
I am working through an example of building a simple CNN with tensorflow/keras
to classify dogs/cat pictures. I keep getting the above traceback message when
executing following line of code (the first layer of my network):
`Conv2D(32, (3, ... | 0 |
##### Issue Type:
Bug report
##### Ansible Version:
ansible 2.0.0.2
ansible 2.1.0 (devel `7e39634`)
##### Ansible Configuration:
N/A
##### Environment:
Ubuntu 15.10
##### Summary:
Ansible 2.0 added a feature to use _include_ statements together with
_with_items_ loops. When nesting _include_ statements, (i... |
##### Issue Type:
Feature Idea
##### Ansible Version:
1.8
##### Environment:
N/A
##### Summary:
Please summarize your request in this space. You will earn bonus points for
being succinct, but please add enough detail so we can understand the request.
Thanks!
##### Steps To Reproduce:
If this is a bug ticket,... | 0 |
I made a video to show the error.
https://www.youtube.com/watch?v=Nn5w-z7-1V4
You don't have to set cookies for it to crash. Once you navigate to their
landing page and click or do absolutely anything else it will crash electron.
var Nightmare = require('nightmare'),
nightmare = Nightmare(
... |
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
8.0.0-nightly.20191026 (Buildin... | 0 |
### 💻
* Would you like to work on a fix?
### How are you using Babel?
@babel/cli
### Input code
https://babeljs.io/repl#?browsers=%3E%201%25&build=&builtIns=false&corejs=false&spec=false&loose=false&code_lz=DYUwLgBA3hAeCsAuaEDu8A0EB0uCe8EAvsRALwQBmArgHYDGYAlgPa0DCAhsMACoAWnMAEkAzgBFqAB2BN6QkABMAFAEoA3EA&debug... |
## Feature Request
* I would like to work on this feature!
**Is your feature request related to a problem? Please describe.**
Dependency scanners may report CVE-2019-20149 for projects that depend on
@babel/cli@7.8.4. This is due to dependency on an version of kind-of because
of this dependency chain: chokidar@... | 0 |
# Checklist
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.
* I have checked the pull requests list
for existing proposed fixes.
* I have checked the commit log
to find out if the bug was alrea... |
# Checklist
* I have 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 |
When setting up everything and to download custom files not downloaded Ingun
bootstrap file responsive.
|
http://twitter.github.io/bootstrap/customize.html clicked on the 'Customize
and Download button.
Its not responding.
please provide alternative link for customize download if possible.
| 1 |
Fast Insider Build 10.0.19008.1000.
|
# Environment
W10 Pro V1903 Build 18362.295
PowerToys: 0.11.0
Settings Screen
Windows build number: [run "ver" at a command prompt]
PowerToys version:
PowerToy module for which you are reporting the bug (if applicable):
# Steps to reproduce
Just installed and attempted to open sett... | 1 |
why the number of vertices is being rendered 8 or 9 times more than the actual
number can it be simplified or at least rendered the same? Is the WebGl taking
additional resources for vertices?
Also I tried lots of simplifiers but even after simplifying still not reaching
the target which is 30000 vertices.
the cur... |
If an instance of `SkinnedMesh` is cloned using the `SkinnedMesh::clone()`
method, the resulting clone will have its bones duplicated. See the following
explanation of the calling sequence:
The `SkinnedMesh::clone()` method will do two things:
* First it will call its contructor.
* Then calls the`Mesh::copy()` ... | 0 |
I'm not 100% sure if this is a numpy or python bug, but the behavior is quite
weird. I've narrowed it down to two simple test cases, one which works and one
which segfaults.
I can create a SharedMemory object, I can create a numpy array backed by it
and read and write to it. I can do the same with a second SharedMem... |
This crashes in python2 and python3 with a segfault:
import mmap
# create test file
a = arange(10., dtype='f4')
a.tofile('test')
# opens it as a memmap
with open('test', 'r+b') as f:
mm = mmap.mmap(f.fileno(),0)
#view the mmap, then close it
x = np.f... | 1 |
Hi,
I'm editing some files which include Myanmar text. This includes diacritic
characters (meaning char + char adding a diacritic (above / below / left /
right) the previous char). Atom appears to give each char equal space, meaning
that I need to click right of the text to select it, and the highlight appears
offse... |
Halp ticket:
* support/e61e5074bc3011e396a434cf997499c3
> Support for Unicode is incomplete. Unicode characters are shown, but the
> cursor get stuck, and the navigation with the keyboard arrows stop working.
The user was using this string as an example `ג׳ג׳ג׳dwdwdww`
Here's a GIF of me pressing just the right... | 1 |
Opening this link in Firefox only produces `let foo` in the left pane.
|
I have a reproducible case where whitspace isn't preserved correctly:
var Foo = React.createClass({
render() {
return (
<span>foo</span>
);
}
});
var Bar = React.createClass({
render() {
return (
<div>
<Foo/> bar
... | 0 |
## Steps to Reproduce
I am learning how to create mobile apps at the moment. I cannot give an in-
depth bug report. I am reporting a bug because similar code does not render.
In lib/views/main.dart, setting the TabBarView seems to fail in one
application but succeed in another. Of course, I can manually create a wi... |
Can't seem to get a project working with both plugins on iOS and Android. If I
remove one or the other I can build and run the project.
## Steps to Reproduce
add `firebase_database: "^0.1.0"` to `pubspec.yaml`
add `firebase_firestore: "^0.0.1+1"` to `pubspec.yaml`
try to build/run to a device. haven't tried sim... | 0 |
ERROR: type should be string, got "\n\nhttps://www.rstudio.com/wp-content/uploads/2015/02/data-wrangling-\ncheatsheet.pdf\n\nI think we could pretty much rip this off exactly as is and just substitute\npandas functions directly.\n\nFurther could update `comparison with R` a bit.\n\nanyone up for this?\n\n" |
I'm running into issues using bootstrap samples of the rows of a DataFrame.
Example:
import pandas
import numpy
numpy.random.seed(1)
df=pandas.DataFrame({'a':numpy.random.randn(20),'b':numpy.random.randn(20)})
nrows=df.shape[0]
# make a bootstrap sample of the rows (nrows ... | 0 |

Here you can s... |
On firefox 23/chrome/ie10 win7:
After the animation they diseappear on all browsers (if height <= 340px, of
course)
]` fails on objects that contain a field of an associated
type, even if that field is Default.
For example (also https://gist.github.com/4c85bcab2cf9f8c56dc2):
trait TR {
type Assoc : Clone + Copy + Default;
}
#[derive(Clone, Copy, Default)]
struct Foo<T: TR> {... |
In the following code:
#[derive(Copy, Clone)]
struct Y<T>(&'static fn(T));
both derives expand to impls that require the corresponding trait to be
implemented on the type parameter, e.g.:
#[automatically_derived]
impl <T: ::std::marker::Copy> ::std::marker::Copy for Y<T> wh... | 1 |
Hi,
When I run an identical query on 0.90.1 and 0.90.2 I get different results:
{
"filter": {
"terms": {
"field": {
"id": "bar",
"type": "doctype",
"path": "lookupField"
}
}
},
"query": {
"match_all": {}
... |
Given the following script: https://gist.github.com/dakrone/6034875
I was expecting the same output for both queries (no documents matched), but
instead I get:
∴ ./missing-filter-bug.zsh
Regular filter for null_value=true, existence=false
{
"took" : 2,
"timed_out" : false,
"_... | 1 |
Using chrome on windows, on a fresh session, launching the modal from demo
page
http://getbootstrap.com/javascript/
click "close" or "x" works fine the first time, the second time it fails to
close...
|
Hi,
The code used on last Thursday worked fine. But after updated to latest code
on Monday (GMT+8), the modal dialog when clicks to dismiss for seconds onward
cannot be close.
I am checking on source code line 932, if I commented out this line then it is
working again.
this.$element
.removeClass('in')
.attr('a... | 1 |
## Conversion from BigInt
gmp (78) | failed at 2021-01-19T21:39:56.822
Test Failed at /nobackup/users/vchuravy/dev/julia/test/gmp.jl:501
Expression: T(big"2" ^ (n + 1) - big"2" ^ (n - precision(T))) === T(Inf)
Evaluated: -Inf16 === Inf16
###... |
Presently calls like _jl_lapack_geqp3 are simple wrappers around calls to
Lapack subroutines. They do return the info value as the value of the function
call instead of a pointer argument that is modified in the subroutine.
However, they do not themselves do the "double call" where the first call to
the Lapack subrou... | 0 |
In some PRs for adding validation to functions: #24924 or #25026, there will
be double validation, by the function and another by the estimator.
@adrinjalali and I share the same concern about keeping constraints in sync
between the function and the estimator: #24924 (comment), #25026 (comment).
The test for validat... |
I think we agreed that "labels" is a bad name for what it does in cross-
validation. We could rename it to groups in the model-selection module, akin
to what we did in #7169.
This is kind of a "now or never". It definitely has cost. I think it might be
worth it (I just had a discussion where someone was looking for... | 0 |
Choose one: is this a bug report or feature request? Bug
Given a rest property inside an object destructuring, Babel generates member
expressions to access the inner object incorrectly.
### Input Code
**Gist:** https://gist.github.com/also/578b123c2be5aecc53f7fd79c9547313
**Repl:**
https://babeljs.io/repl/#?babil... |
Choose one: is this a bug report or feature request?
Bug
### Input Code
https://github.com/daerion/babel-rest-spread-bug
const defunct = {
outer: {
inner: {
three: 'three',
four: 'four'
}
}
}
const { outer: { inner: { three, ...other } } }... | 1 |

I want my keyboard to able to write number without any decimal points. How to
achieve it? I've tried giving either true or false in `decimal` in
`TextInputType.numberWithOptions` but didn't work.
Flut... |
### Bug
I am using `keyboardType: TextInputType.number`
And the docs say that it doesn't include decimal point. But I am seeing
decimal, tested on emulator, simulator and iPhone 6s Real device.
I even tried the other way
`keyboardType: TextInputType.numberWithOptions(decimal: false),`
That didn't help either.
S... | 1 |
2020-08-19.txt
Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.18363.0
IntPtr Length: 8
x64: True
Date: 08/19/2020 16:51:53
Exception:
System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'Timer'.
at System.Timers.Timer.set_Enabled(Boolean value)
at System.Timers.Timer... |
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 |
**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.): ... |
**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.): pa... | 0 |
Hi folks,
In Pandas 0.23.0 (on Linux Mint 18.3), i run
import pandas as pd
import numpy as np
s = pd.Series([np.nan, 1])
s.fillna(-1).astype(int).astype(str).replace('-1', '')
and get the error
----------------------------------------------------------------------... |
#### Code Sample, a copy-pastable example if possible
pd.Series(['a', 'b', 'c']).replace('a', 'x')
#### Problem description
This raises the following error:
> TypeError: Type aliases cannot be used with isinstance().
This behavior is exclusive to the new **version 0.23**. Previous versions work
as ... | 1 |
It appears that the Translation Component is present, but failing to operate
properly. For example if I intentionally throw an exception, I get hundreds of
rows saying `WARNING - Translation not found.`
this was not true before the upgrade to 2.6.x
this is in use in the Zikula project and in complete dev mode at th... |
The `PropertyPath` class currently makes a list of assumptions:
##### 1\. Objects are treated by reference
When the path `author.name` is modified, the following methods are called:
getAuthor()
setName() // on the author
Note that `setAuthor()` is not called.
##### 2\. Adders and removers ... | 0 |
struct Foo<T>;
impl Foo<int> {
fn foo() {}
}
impl Foo<f64> {
fn foo() {}
}
t.rs:6:2: 6:13 error: duplicate definition of value `foo`
t.rs:6 fn foo() {}
^~~~~~~~~~~
t.rs:3:2: 3:13 note: first definition of value `foo` here
t.rs:3 fn fo... |
reduction2.rs:
use core::ops::{Add};
fn sum<T, U: Add<U, U>>(seq: &[T], mut u: U, f: &fn(&T) -> U) -> U {
for seq.each |x| { u += f(x); };
u
}
fn F(v: &[float]) -> float {
do sum(v, 0.) |x| { *x }
}
This is compiled with rust as pulled from master... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* * *
Hi,
I tried this example : with-componentdidcatch
Basically, it's using `componentDidCatch` in the new `_app.js`. It intercepts
the errors and does a `console.log` when it intercepts one :
https://github.com/zeit/ne... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Normal start of nextjs
## Current Behavior
I can't start my server after a update (npm update), I only get this error-
message:
error in ./~/next/dist/pages/_document.js?entry
... | 0 |
I installed Atom for the first time today and receive the following error on
installing any package. Google cannot help. Please can anyone provide some
suggestions:
* * *
Installing “ide-haskell@0.3.0” failed.Hide output…
npm ERR! Failed to clone git+https://github.com/saschagehlich/autocomplete-
plus.git#83cfccee... |
I update my atom install going from the previous zip download, wiping all that
away and using the new installer, but now certain packages won't install.
Here is my error output from the install command
npm ERR! Failed to clone git+https://github.com/Benvie/harmony-collections.git#e81b4b808359e2def9eee... | 1 |
##### Issue Type: Bug Report
##### Ansible Version:
$ ansible --version
ansible 2.0.0.2
config file = /home/xaeth/.ansible.cfg
configured module search path = Default w/o overrides
##### Ansible Configuration:
What have you changed about your Ansible installation?
My /etc/ansible/ansible.cfg is default Fed... |
as described here, this doesn't work
$ ansible all -i hosts --limit ~host1 --list-hosts
hosts (10):
host1
host2
host3
host4
host5
host6
host7
host8
host9
host10
nor this
ansible all -i hosts --limit... | 1 |
**Steps to reproduce and a minimal demo of the problem**
http://plnkr.co/edit/QcbOZCLEMxDqB9Hal0ef?p=preview
**Current behavior**
Just press `a` in the search field to get a list of options and then press
down key. The selected result is constantly reset. Selecting one will keep the
single result open.
**Expecte... |
**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
... | 0 |
I see two different conventions being used for including optional arguments in
docstrings, one where the argument alone is wrapped in `[arg]`, and one where
the preceding comma is included `[, arg]`. I happen to find the second one a
bit visually confusing, but the first one looks like a vector is created so
it's not... |
In investigating what appeared to be a code coverage issue with CSV.jl, @omus
and I stumbled upon an unusual dispatch issue. It can be summarized like this:
julia> function foo(x=Type)
println("foo")
end;
julia> function foo{T}(x::T)
println("Method foo... | 0 |
It would be useful to have auto complete for the `command`and `when` fields in
the keybindings.json.
I don't think this would be too hard for when as as far as I understand
extensions cannot add new events. However commands may be slightly trickier as
you would have to incorporate commands from extensions, but thes... |
* VSCode Version: 1.1.1
* OS Version:RHEL 7 (kernel 3.10.0)
Steps to Reproduce:
1. Open a repository and keep a JS file open overnight
2. Next morning you'll get the "Not responding, Reopen" message
Clicking reopen doesn't help. I actually have to shut down and restart again.
This is the VSCode Linux versi... | 0 |
sns.__version__, matplotlib.__version__
('0.11.1', '3.4.2')
This works
import seaborn as sns
titanic = sns.load_dataset("titanic")
sns.displot(
data=titanic,
x="age",
y='fare',
col="survived",
common_bins=True,
)
This does not
... |
I'm noticing a new behavior in clustermap. The top and bottom of the figure
get clipped. The command used to produce complete squares a few months ago.
Here's an example:

For your records, I ran the foll... | 0 |
### System info
* Playwright Version: [v1.35]
* Operating System: [Windows 11]
* Browser: [Chromium]
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
import time
import re
import asyncio
from playwright.async_api import asy... |
**Context:**
* Playwright Version:1.29.1
* Operating System: Windows
* Node.js version:v16.13.0
* Browser: [e.g. All, Chromium, Firefox, WebKit] WebKit
* Extra: [any specific details about your environment]
Pre-requisites:
Create a copy of example.spec.ts and just rename the test name
Create another ... | 0 |
# Environment
Windows build number: [run "ver" at a command prompt]
PowerToys version:
PowerToy module for which you are reporting the bug (if applicable):
# Steps to reproduce
# Expected behavior
# Actual behavior
# Screenshots
|
## 📝 In the FancyZone editor I would like to see the dimensions of each zone
as they are resized.
While resizing each zone I would like to see the current dimensions in the
center of each. Stickie points at standard resolutions (VGA, FHD, etc) or
dimensions would also be a nice feature.
* * *
If you'd like to see... | 0 |
## Steps to Reproduce
I am new on flutter.I am loading material icons using Icon(Icons.receipt,size:
16) but error logs says Could not get cmap table size.
## Logs
## flutter run --verbose
#0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3)
#1 RunCommand.runCommand (pack... |
I think I got the same error as #21719 when I use default font. And I've
noticed that it depends on internet connection! Error is thrown only when I
turn off internet on device. (Android)
Launching lib/main.dart on Mi A1 in debug mode...
Built build/app/outputs/apk/debug/app-debug.apk.
E/flutte... | 1 |
# With Firebase Hosting Example
Hi guys, when i deploy with-firebase-hosting example to firebase hosting, it
has error **"Internal Server Error"**
Error Log:

Can anyone help me?
Thanks in advance!
|
# With Firebase Hosting Example
Hi guys, when i deploy with-firebase-hosting example to firebase hosting, it
has error **"Internal Server Error"**
Error Log:

Can anyone help me?
Thanks in advance!
| 1 |
#### Description
`sklearn/utils/multiclass.type_of_target(y)` returns different results for
practically identical 'y' values when `y` a `list` and when `y` is an `numpy
array`.
#### Steps/Code to Reproduce
from sklearn.utils import multiclass
import numpy as np
x = [[1, 1], [0, 1]]
y = np... |
Multilabel `Y` is currently represented as a 2d `np.ndarray` or `scipy.sparse`
matrix of binary indicators. We explicitly forbid a list of lists or list of
arrays, even if it represents the same binary indicators, in
`sklearn.utils.multiclass.type_of_target` etc. This prohibition is for legacy
reasons (lists of lists... | 1 |
On Windows 32 bit, current Python 2.7.8 from Python.org Python, numpy 1.9.1
superpack installer, scipy 0.14.0 superpack installer.
I run the following `test.py` Python script from the shell:
import scipy.sparse._sparsetools
import sys
sys.exit(2)
with `c:\Python27\python.exe test.py`. I ... |
_Original tickethttp://projects.scipy.org/scipy/ticket/1314 on 2010-10-18 by
trac user markMiscavage, assigned to @wnbell._
I have this bug in a larger program but I've narrowed it down to a script
consisting of just :
import sys
import scipy.sparse.sparsetools
sys.exit("EXIT")
This wil... | 1 |
A checkbox is checked if one clicks on the white space to the right from its
label. We have checkboxes that control billing stuff and people are being
charged by mistake because of this issue.
The issue appears in all browsers.
Is there a way to fix it in the library? If not - is there a simple workaround
for this... |
In HTML5, `<fieldset>` gains support for the `disabled` attribute, allowing
you to disable an entire fieldset at once. However, Bootstrap does not seem to
style all input elements under disabled fieldsets appropriately; some aren't
grayed-out like individually disabled input elements. They should be.
| 0 |
#### Describe the bug
When fitting a GPR with y-values having std=0 (and normalize=True), an error
occurs. The error relates to dividing by 0 in
sklearn/gaussian_processes/_gpr.py:
scikit-learn/sklearn/gaussian_process/_gpr.py
Line 201 in fd1ff73
| y = (y - self._y_train_mean) / self._y_train_std
---|---
... |
In #15782 (comment), @rkern writes regarding that fix:
> FWIW, this broke a few downstream users where y_train.std() == 0 (e.g. only
> one datapoint) when being used for Bayesian optimization. This probably
> needs a guard for such a case (which is common in the Bayesian optimization
> use case)
More detail in baye... | 1 |
Sometimes I'll get an element selector error and will be unsure why it's
wrong, and will need to re-run the test, using `page.pause` before the failing
step.
Would be nice to have the ability to just directly search the page on the
failed step instead of needing to re-run the test with a pause.
|
### Feature request
it would be very useful if the same selector explorer thing that that's
available in the inspector was also present for the dom snapshots in the trace
viewer

| 1 |
## Wider gamuts and more bits
As I mentioned before in #864 and related to parts of what is being discussed
in #5397, the new color picker power toy is limited to representations of sRGB
with eight bits per channel, although screens and workflows are moving to
color spaces with a wider gamut and to higher bit depths... |
## ℹ Computer information
* PowerToys version: maybe each version (Tested v0.23.0 and v0.24.0)
* PowerToy Utility: FZEditor
* Running PowerToys as Admin: yes
* Windows build number: 2004 (OS Build 19041.264)
### ✔️ Expected result
Open normally.
### ❌ Actual result
It cannot be opened
## 📷 Screenshots
... | 0 |
<div id="test">
{{ message }}
<my-component></my-component>
</div>
<script>
var MyComponent = Vue.extend({
template: '<div>A custom component!</div>',
data: function () {
console.log('data');
return { a: 1 }
... |
### Vue.js version
1.0.21
### Reproduction Link
http://jsbin.com/doxonuviwe/edit?html
### Steps to reproduce
* Register a Vue component with data function.
Vue.component('my-hello', {
data: function() {
console.log('hello')
return {};
}
});
ne... | 1 |
Calling pandas.io.sql.read_frame can results in data frame with duplicate
column names. For example when SQL query contains joins on tables with
duplicate columns.
Data frames with duplicate column names cause errors in many pandas functions.
I can't even rename columns as df.columns = new_columns generates errors.
... |
tz naive case:
index = pd.Index([23, 26, 30])
dti = pd.DatetimeIndex(['2015-09-23', '2015-09-26', '2015-09-30'])
ser = pd.Series(dti, index=index).reindex(range(23, 31))
df = pd.DataFrame(ser)
>>> ser # for reference
23 2015-09-23
24 NaT
25 NaT
... | 0 |
Brought to mind by the message from DevMode which tells you that you can use
ProdMode but doesn't tell you why or how. Nor do I think it should. I think it
should have a link.
A1 has links which is great! Also helped with size of the production version
I'm sure. Let's do that in A2 too!
|
**I'm submitting a ...** (check one with "x")
[x] bug report
[x] feature request
[ ] support request
**Current behavior**
Suppose we have such an input:
`<input #nativeControl #ngControl="ngModel" type="number" min="30">`
Now if we enter 25 in that box, the `ngControl.valid` property... | 0 |
I have hooked up Deno to lint source files on-demand. But there are numerous
linting rules which we, as a company, need to ignore. Adding them to _every
single source file_ would be highly cumbersome, and undesirable. I will
absolutely get push back from developers who will simply refuse to lint their
code entirely.
... |
User can enable / disable rules, but not customize the rules
denoland/deno#1880 (comment)
| 1 |
## Bug Report
**Current Behavior**
@babel/plugin-transform-block-scoping (and maybe some other plugin in preset-
env) incorrectly renames a FunctionDeclaration in a nested block even though
it should behave like a `var` declaration.
**Input Code**
REPL
if(true) {
function run() {
re... |
## Bug Report
**Current behavior**
Babel is not able to output the optional chaining operator without first
transpiling it.
With a browserslist of: `last 2 Chrome versions`
ERROR in ./index.js 3:14
Module parse failed: Unexpected token (3:14)
File was processed with these loaders:
* ./... | 0 |
Challenge http://www.freecodecamp.com/challenges/waypoint-build-web-apps-with-
expressjs has an issue. Please describe how to reproduce it, and include links
to screenshots if possible.
Steps 18 & 19 on this way point:
"session & cookie" and JSON Me are not in the current expressworks steps.
I'd recommend updating... |
Challenge http://freecodecamp.com/challenges/waypoint-build-web-apps-with-
expressjs has an issue.
Session and Cookie is no longer in expressworks. the two that seem to be the
replacement for this are called PARAM PAM PAM and WHAT'S IN QUERY. Also, after
Hello World, expressworks has a Static step that helps with t... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.