text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
I have generated a million binomial numbers using `scipy.stats.binom.rvs(n =
100, p = 0.5, size = 1000000)` , and certainly did not expected a histogram to
have 'gaps':

The funny thing is, that does not... |
An issue that arises when plotting histograms of discrete data with Matplotlib
seems to also come up in `distplot` as well. That is, there are often empty
bins in the histogram that are entirely artifacts of the plot. See here for an
example with Poisson data:
.encode("Hello World");
for await (const conn of Deno.listen({ port: 8000 })) {
(async () => {
for await (const res of Deno.serveHttp(conn... |
See example and link to source below.
`example.ts`:
const r = new Request('https://example.com');
console.log(r);
% deno run example.ts
error: Uncaught TypeError: this.url is not a function
console.log(r);
^
at Request.[Deno.customInspect] (deno:op_crates/... | 1 |
by **robert.swiecki** :
It prints:
prog.go:55: undefined: closed
prog.go:56: undefined: closed
|
by **hanbing.liu** :
What steps will reproduce the problem?
1. Check http://golang.org/doc/go_mem.html
On "is allowed to observe":
"""
A read r of a variable v is allowed to observe a write w to v if both of the following
hold:
w happens before r.
Th... | 0 |
Currently this code compiles, but it shouldn't:
trait MyMul<RHS, Res>
{
fn mul(&self, rhs: &RHS) -> Res;
}
fn foo<T: MyMul<f64, f64>>(a: &T, b: f64) -> f64
{
a * b
}
fn main()
{
}
|
use t::T;
mod t {
pub trait T {}
}
struct S;
impl T for S {}
impl T {} // oops
fn main() {}
a.rs:8:5: 8:6 error: T is not a trait
a.rs:8 impl T for S {}
^
This should show better error message. If `trait T` is not... | 0 |
This works:
let strOrArray: Array<string> | string;
let str: string;
if (typeof strOrArray === 'string') {
// No error
str = strOrArray;
}
But not this:
interface Data {
strOrArray: Array<string> | string;
}
let data: Data;
let str: string;
... |
I just found out that property access expressions doesn't work on type
predicate functions and `instanceof` type guards.
class A {
propA: number;
}
class B {
propB: number;
}
class C {
propC: A;
}
declare function isA(p1: any): p1 is D;
... | 1 |
##### System information (version)
* OpenCV => 4.2 (installed from apt)
* Operating System / Platform => Ubuntu 20.04
* Compiler => gcc 10.3.0
##### Detailed description
undefined reference to `cv::SparseMatConstIterator::operator--()'
btw, I searched the source code of version 4.5.5, sti... |
##### System information (version)
* OpenCV => 3.2 and 4.2
* Operating System / Platform => Ubuntu 18.04 and 20.04 for OpenCV 3.2 and 4.2, respectively
* Compiler => clang 12
##### Detailed description
undefined reference to `cv::ocl::Program::Program(const String&)'
undefined reference to ... | 1 |
**TypeScript Version:**
1.8.10
**Code**
const a=false;
if (a) {
console.log('should be unreachable');
}
TypeScript Play
**Expected behavior:**
The code should be unreachable in fact that a is immutable. A warning should
be placed
**Actual behavior:**
No unreachable warning.
... |
Allow duplicated members in multiple interface declarations, as long as they
are identical. Optional compiling warnings are acceptable, to assist
developers to remove redundant codes at convenient time.
This should not generate any errors, example:
shim.d.ts
interface Symbol {
toString(): str... | 0 |
Hi, I'm trying to debug my app by visual studio code and when I run the app
for debugging, the app starts and stays on a white screen but it's fine when I
use the `flutter run` command on terminal.
It works fine when I use android studio!
[~]$ flutter doctor -v ... |
## Steps to Reproduce
I am attempting to run a test I created, this is the `unit_test.dart`
import 'package:do_and_stuff/tools/auth.dart';
import 'package:test/test.dart';
void main() {
test('No Username or Password', () async {
final result = await Auth.signInEmailAndPasswo... | 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
... |
# 🚀 feature request
### Relevant Package
`@angular/compiler`
### Description
Optional chaining[1] reached stage 4. We've been supporting similar syntax in
templates for a while now, calling it the "safe navigation operator"[2]. For
simplicity and smaller payload, we can consider aligning with the spec in
future ... | 1 |
The response returned by these clients in their `getResponse` method is an
HttpFoundation response whereas the BrowserKit class (which is their parent
classs) tells it returns a BrowserKit response (which has a different API).
|
If you run cache:warmup the twig templates that are in the bundles directory
get into the cache folder but not if u use a custom namespace path for twig. I
don't know if Symfony renders the cache on first call/open of a custom path
template.
http://symfony.com/doc/current/cookbook/templating/namespaced_paths.html
| 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
[ ] 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**
Aux-Routes are not found when using ... | 1 |
I have few filters in dashboards and until i click on the **Filter button** in
sidebar the dashboard data does not load. I have option **Select the first
value** checked in one of the filter and unchecking the same loads the data
easily.
But i need this selecting the first vale.
Any fix for this
|
## [SIP] Proposal for moving frontend assets to the base of the repo
### Motivation
Currently frontend assets are embedded in the superset package under
`superset/assets/`, which is symlinked in`superset/assets/static`. This is
really confusing for newcomers to the project as it's unclear why code appears
to be dup... | 0 |
### Description
I am unable to install the latest version of JAX 0.4.12 through the command:
pip install --upgrade "jax[cuda12_pip]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
Version 0.4.11 is installed instead.
### What jax/jaxlib version are you using?
_No respons... |
### Description
For CUDA 12.1 and cuDNN 8.8 No wheel is available. The suggested whl to use
was CUDA 12 and cuDNN 8.9 but this does not work and I only have cuDNN 8.8.
Thanks,
### What jax/jaxlib version are you using?
jaxlib==0.4.12
### Which accelerator(s) are you using?
GPU
### Additional system info
Pytho... | 1 |
## Steps to Reproduce
Upon loading asset image (on some phones, in some side state), the flutter
engine hangs, while actual process continues to execute. Sometimes, Android
produces ANR error.
I am on `v0.3.0`. If I switch to `beta` I get compilation error:
Initializing gradle... ... |
## Steps to Reproduce
1. Using the url_launcher plugin:
run the example code calling `launch("tel://21213123123")`
(this issue is also documented on stackoverflow
## Logs
[ +133 ms] W/.whitelabel_ap(12464): Accessing hidden field Ljava/net/Socket;->impl:Ljava/net/SocketImpl; (light greylist, ref... | 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 trying to add an anchor link on my current angular2 app.
I've made the navigation first using the fragment attribute and because It
didn't work I've referenced the fragment by using the router navigation. I
couldn't make it work in both scenarios.
I've been playing with https://angular.io/resources/live-
examp... | 1 |
This code:
fn main() {
let _test = main as usize;
} ... |
I think the new unconditional_recursion lint has a bug. For example I get a
warning for this code:
#![allow(unstable)]
fn print_type_of<T>(_: &T) -> () {
let type_name =
unsafe {
(*std::intrinsics::get_tydesc::<T>()).name
};
println!("{}", typ... | 1 |
**What version of Go are you using (go version)?**
go version go1.4.2 darwin/amd64
**What operating system and processor architecture are you using?**
OS X 10.10.3 x86-64
**What did you do?**
Set `w.WriteHeader(http.StatusInternalServerError)` prior to calling
`http.ServeFile`
**What did you expect to see?*... |
windows-386 just failed with:
http://build.golang.org/log/3cd6be46a4c7dbe6774fdc891e6417568f4b2b88
# ..\test
# go run run.go -- fixedbugs/bug015.go
bug015.go:11: missing error "overflow"
FAIL fixedbugs\bug015.go 0.004s
exit status 1
Which is:
// erro... | 0 |
@crawshaw @hyangah @rakyll @nigeltao
As Go is high-performant system-level programming language, that also gained
fast garbage collector in latest 1.5 release, it can become a perfect choice
for game development. There are many OpenGL ES 2 emulation layers for Windows,
for example Google's open-source ANGLE, AMD li... |
The http://golang.org/x/mobile/app package lets you run all-Go apps on desktop
darwin and linux with nothing more than the stock Go build. Just `go get` and
you're programming. This is done via cgo: we ask for a window, get an OpenGL
context, and map mouse events to touch events.
We should do the same for Windows. T... | 1 |
I'm working on figuring out how to reproduce this consistently, but thought I
would go ahead and get the issue started. All of the scrambled filenames are
`.less` and `.css` files, which makes me think it has something to do with the
`atom-compile-less` package, which compiles `.less` files into `.css` files
automati... |
Most noticeable in the tree view, resizing it, scrolling, etc. makes it redraw
and go away.

/cc @zcbenz Any ideas on this one?
| 1 |
### Version
2.5.15
### Reproduction link
https://jsfiddle.net/cckLd9te/950/
### Steps to reproduce
when you type on the input, view not update with the input value
### What is expected?
view should display input value properly
### What is actually happening?
input value changes to an object
|
Hi,
I'm new to Vue and I'm having a problem when I update the parent data, the
child props is not updated.
Here's my code. If you click any of the Save button, element[0] of Parent will
be updated to new value which is "Test" but if you check Child prop it wasn't
updated.
`<div id="app">`
`<div v-for="item in i... | 0 |
Atom es un excelente editor de codigo fuente, pero su sistema de instalacion
es bastante obfuscado y no permite una version portable de su programa. Deseo
que en las proximas versiones de Atom pueda ser portable.
|
I don’t really stick to one computer to program, and some computers don’t have
editors. Currently I use Sublime Text portable, but it would be great if there
was a portable version of Atom.
| 1 |
### Is there an existing issue for this?
* I have searched the existing issues
### Current Behavior
When running `npm audit --json` in this branch here
https://github.com/mgdodge/rollup-plugin-vue-treeshake-bug-vue3/tree/vue2
I observe lodash, which is not a direct dependency but deduped to the top -
doesn't g... | 0 | |
#### Code Sample, a copy-pastable example if possible
# Your code here
import pandas as pd
df = pd.DataFrame({'A':[10, 20, 30], 'B': [ 'foo', '3', '4'], 'T': [pd.Timestamp("12:31:22")]*3})
def get_B(g):
return g.iloc[0][['B']]
print df.groupby('A').apply(get_B)
# Observ... |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
foo = pd.DataFrame.from_records(
[
(pd.datetime(2016,1,1), 'red', 'dark', 1, '8'),
(pd.datetime(2015,1,1), 'green', 'stormy', 2, '9'),
(pd.datetime(2014,1,1), 'blue', 'bright', 3, '... | 1 |
Horizontal pod autoscaling [Skipped][Autoscaling Suite] should scale from 5 pods to 3 pods and from 3 to 1 (scale resource: Memory)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:149
Sep 28 09:06:15.915: timeout waiting 10m0s for ... |
After #14156 was merged, updating of scale sub-resource for (experimental)
replication controller stopped working. In affect, the whole horizontal pod
autoscaler is not working now. The problem seems to be that experimental scale
sub-resource is trying to update experimental replication controller (while it
should up... | 1 |
I've been trying to get a simple Angular 2 (beta 1) app running with a
minified build (using webpack) - with no success. The cause seems to be the
mangle option in the UglifyJSPlugin (with mangle: false it works fine but is
260k heavier).
To reproduce the issue, I have created a minimal version (clone, npm install
a... |
When using minified bundles with SystemJS, and a simple snippet like this
<template ngFor #item [ngForOf]="items" #i="index">
<li>{{i}}</li>
<li *ngIf="i % 2 == 0">number is even</li>
</template>
Will throw
TypeError: this.directive_0... | 1 |
##### System information (version)
* OpenCV => 3.2.0
* Operating System / Platform => Ubuntu 18.04
* Compiler => Ubuntu terminal (g++)
-Compiled using g++ stitch.cpp -o app pkg-config --cflags --libs opencv "
##### Detailed description
The Image stitching tutorial gives the following error
**: error: ... |
##### System information (version)
* OpenCV => 3.4.3
* Operating System / Platform => Ubuntu 16.04 64bit
* Compiler => GCC 5.4.0
* Cuda => 9.2
* TBB/MKL => 2018 Update 3 (2018.3.222)
##### Detailed description
`make VERBOSE=1 install` produces the following error:
[ 25%] Linking CXX execu... | 0 |
**TypeScript Version:**
1.8.0
**Code**
// A self-contained demonstration of the problem follows...
class A {
constructor(a: number, b: boolean) {
}
foo() {
}
bar: boolean;
}
function doIt(a: A) {
if (a instanceof A) {
... |
**TypeScript Version:**
1.8.x and nightly
**Code**
class C1 { item: string }
class C2 { item: string[] }
class C3 { item: string }
function Foo(x: C1 | C2 | C3): string {
if (x instanceof C1)
return x.item;
else if (x instanceof C2)
return x.i... | 1 |
Hello,
I found out that Atom collects analytic data to improve the program. There is
nothing bad about this idea. But I think, it would be a better way to ask the
user to Opt-In this analytics.
Currently, the user has to disable the metrics plugin (= do an Opt-Out), but I
think there should be at least a clear info... |

That's one long line th... | 0 |
##### ISSUE TYPE
Feature Idea
##### COMPONENT NAME
yum module
##### ANSIBLE VERSION
2.3
##### SUMMARY
From @halberom on 2015-12-10T12:46:34Z
version
ansible v2, devel
issue
when changing multiple yum repos (e.g. in a common/base role), it can be
necessary to clean the cache so yum will refresh and any f... |
##### ISSUE TYPE
* Feature Idea
##### COMPONENT NAME
##### ANSIBLE VERSION
ansible 2.3.1.0
config file = /opt/uss/ansible/config/2.3.1.cfg
configured module search path = [u'/usr/share/ansible']
python version = 2.7.5 (default, Oct 11 2015, 17:47:16) [GCC 4.8.3 20140911 (Red Hat ... | 1 |
# Environment
C:\>ver
Microsoft Windows [Version 10.0.18362.175]
C:\>where wt.exe
C:\Users\Roy\AppData\Local\Microsoft\WindowsApps\wt.exe
C:\>echo %LocalAppData%
LOCALAPPDATA=C:\Users\Roy\AppData\Local
# Steps to reproduce
Setting "CodePage" within the registry does... |
# Environment
Platform ServicePack Version VersionString
* * *
Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0
Windows Terminal
0.4.2382.0
Powershell version
$PSVersionTable.PSVersion Major Minor Build Revision
* * *
5 1 18362 145
Any other software?
no
# Steps to reproduce
1. Type a poorly f... | 0 |
Step 0:

Step 1:

Step 2 (after Invalid keyboard event):

... |
Hi. I just install go-plus and try to edit file which is created by command in
terminal so when I click save I get the exception. Here is the step to
reproduce this bug.
1. Edit file.go
2. Command+s then I get this exception.
**Atom Version** : 0.165.0
**System** : Mac OS X 10.10.1
**Thrown From** : Atom Co... | 1 |

|

C... | 1 |
## Steps to Reproduce
I am trying to write an application which has the same navigation drawer in
all the activities including the one's present in the navigation drawer.
Whenever I try to open an activity from the navigation drawer of the same
activity, I get the error
#### main.dart code
final Glob... |
This seems like a regression from the scrolling refactor. Possibly the same as
#8271.

| 0 |
### Bug report
Pick events are fired twice instead of once following #16220. This example is
a bit wacky, but it's the minimal version of a much more complete GUI:
# -*- coding: utf-8 -*-
import numpy as np
from matplotlib.figure import Figure
from matplotlib.text import Text
impo... |
### Bug report
**duplicate pick events occurring in 3.4.rc1**
In MNE-Python, our CIs that test against 3.4.rc1 are failing, because pick
events are getting fired twice for every time an artist is picked (this is not
happening on 3.3.4). It's happening in a very complicated interactive figure,
and I haven't yet mana... | 1 |
I added the code in .vimrc:
let &t_SI.="\e[5 q"
let &t_SR.="\e[4 q"
let &t_EI.="\e[1 q"
cursor style can be changed but the word under the cursor is not visible

|
In the new Terminal properties page, you can set your "Cursor shape and
color"... Cool! But right now you can only set the cursor fg color, and you
can not set bg color. For example, I'm trying to set up the "terminal" to look
like an old "green screen" terminal. To do so I set console bg color to black
and fg color ... | 1 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-jenkins/pr-\nlogs/pull/34624/kubernetes-pull-build-test-gci-e2e-gce/2334/\n\nFailed: [k8s.io] Kubectl client [k8s.io] Simple pod should support exec\n{Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:321\n Oct 13 22:23:22.442: Unexpected kubectl exec output. Wanted \"running in container\", got \"\"\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:295\n \n\nHappened on a presubmit run in #34624.\n\nPrevious issues for this test: #28426 #32168\n\n" | ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gci-gce/478/\n\nFailed: [k8s.io] Kubectl client [k8s.io] Simple pod should support exec\n{Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:321\n Sep 29 07:00:46.480: Unexpected kubectl exec output. Wanted \"running in container\", got \"\"\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:295\n \n\nPrevious issues for this test: #28426 #32168\n\n" | 1 |
I've setup the default dags that come with the installation. Celery/RabbitMQ
is working now and when I run a task, I get this error:
sqlalchemy.exc.IntegrityError: (sqlite3.IntegrityError) UNIQUE constraint failed: task_instance.task_id, task_instance.dag_id, task_instance.execution_date [SQL: u'INSERT... |
I have a DAG I want to run at 10:30am and 3:30pm every day, but I'm not sure
what the best way to specify this is in Airflow. I can't just set the schedule
interval on a single DAG, because the interval between jobs is not uniform
(alternates between 5 and 19 hours).
Is there an easy way to make a DAG for the 10:30 ... | 0 |
Currently I think the only way to perform multiple commands in succession is
to create an extension. It would be good if this was supported by
keybindings.json.
See http://stackoverflow.com/q/37009184/1156119
|
When creating keyboard shortcuts, it would be nice if you could pass an array
of commands (to execute like a macro) that would run the commands in that
order.
So take this for example:
{
"key": "ctrl+s",
"command": [
"editor.action.format",
"editor.action.trimTr... | 1 |
im trying to run the voice recognition example
for some reason specifying a clip_duration_ms diffren from 1000 generate an
error while freezing the model.
so running
python tensorflow/examples/speech_commands/freeze.py
\--wanted_words=yes
\--clip_duration_ms=2800 --sample_rate=16000 --window_size_ms=20
\--s... |
* * *
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** :No. I am running the Audio recognition tutorial
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Ubuntu 14.04
* **TensorFlow installed from (source or binary)** :so... | 1 |
The problem I found can be reproduced with the following code, on typescript
version 1.7.5. The problem exists in typescript from the release when class
expressions (#497) were introduced.
function builder() {
return new class House {
public open():void {
console.inf... |
tested on `690b87c`
source code.
new class {
hi() {
return "Hi!";
}
}().hi();
expected.
new ((function () {
function class_1() {
}
class_1.prototype.hi = function () {
return "Hi!";
};
return class... | 1 |
This bug is about cmd/go returning a useful error message when an invalid
GOOS/GOARCH pair is used.
See confusion in #11908.
Related request in #12270 (if we fix this bug, we should probably fix both,
using the same source of truth)
|
by **myannikos** :
What steps will reproduce the problem?
If possible, include a link to a program on play.golang.org.
1. run the attached program (schedtest.go)
What is the expected output?
"suffixarray done" after a few minutes, normal termination after 1h
What do ... | 0 |
Operating System:
Ubuntu 16.04
Installed version of CUDA and cuDNN:
server@server:~$ ls -l /usr/local/cuda/lib64/libcud*
-rw-r--r-- 1 root root 560184 9月 7 09:56 /usr/local/cuda/lib64/libcudadevrt.a
lrwxrwxrwx 1 root root 16 9月 7 09:56 /usr/local/cuda/lib64/libcudart.so ->
libcudart.so.8.0
lrwxrwxrwx 1 roo... |
### Environment info
Operating System:
OS 10.10.5
Installed version of CUDA and cuDNN:
$ ls -l /usr/local/cuda/lib/libcud*
-rwxr-xr-x 1 root wheel 8280 Apr 13 01:02 /usr/local/cuda/lib/libcuda.dylib
lrwxr-xr-x 1 root wheel 45 Apr 13 01:03 /usr/local/cuda/li... | 1 |
I am working on adding batchnorm in the discriminator in WGAN-GP. However, I
encountered a bug where **gpu memory continues to increase** when using
**batchnorm double backprop**. This bug only occurs when using batchnorm. If i
remove batchnorm from the model, the bug doesn't occur.
Here's the code you can experimen... |
This is probably related to the previous #2264 @gchanan
Running many iterations of double backward involving BatchNorm2d may cause out
of memory error. There may be a memory leak somewhere? Code to reproduce the
error:
import torch
import torch.nn as nn
import torch.nn.functional as F
... | 1 |
`<webview>` elements are able to detect and/or override many of their guest
web pages' actions, such as when guest web pages attempt to close themselves
and open new windows. However, there is a need for detecting and overriding
another type of guest-page event: when an `<input type=file>` element in a
guest page is ... |
It could be useful to be able to intercept dialog events from webview (alert,
confirm, prompt) to be able to implement our own gui.
Also it is part of chrome webview events
https://developer.chrome.com/apps/tags/webview#event-dialog
| 1 |
I'll log this for now:
on ubuntu 16.04.2
numpy 1.13.1 installed fine on python 3.6.2.rc1
numpy 1.13.0 installed fine on python 3.7.0a0 (heads/master:6969eaf)
Numpy 1.13.1 failure in building:
building 'numpy.random.mtrand' extension
compiling C sources
C compiler: gcc -pthrea... |
When i use a float32 dtype array as the argument to numpy.fft.rfft, I get a
complex128 dtype array as the output instead of a complex64 dtype array.
Similarly, when I use a complex64 dtype array as the argument to
numpy.fft.irfft, I get a float64 dtype array instead of a float32 dtype array.
Here is a code snippe... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
* vars
* jinj2 templates
##### ANSIBLE VERSION
# ansible --version
ansible 1.9.6
configured module search path = ./library:$ANSIBLE_HOME/library
##### CONFIGURATION
# env | grep ANSIBLE_
ANSIBLE_INSTRUMENT_M... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
script
##### ANSIBLE VERSION
Latest unstable version:
ansible 2.5.0 (devel 1068aa3ce7) last updated 2017/11/01 11:34:22 (GMT +200)
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/home/actionmystique/Ansible... | 0 |
Trying to get
https://github.com/kennethreitz/requests/blob/master/README.rst?raw=true
fails. Getting https://github.com/kennethreitz/requests/raw/master/README.rst
(which the former redirects to) succeeds, so I think this has something to do
with the handling the redirect.
I'm not 100% sure this is an issue with re... |
Starting in 2.6.1 an exception is thrown if a connection with chunked
transfer-encoding is reused. I suspect that the bug is in the bundled urllib3
which was upgraded from 1.10.2 to 1.10.3.
#!/usr/bin/env python
import requests
s = requests.Session()
r = s.get('http://httpbin.org/stream/1')... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.0
* Operating System version: mac
* Java version: 1.8
### Steps to reproduce this issue
1... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.7
* Operating System version: windows 10
* Java version: 1.8
* registry: redis
### Steps t... | 0 |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): `gclou... |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
* * ... | 0 |
Not able to create Cloud9 account.
Its asking credit card details to create an account.
|
c9.io has been acquired by AWS and now requires the use of a credit card.
Heroku also requires the use of a credit card for hosting - and also requires
learning a bunch of Heroku-specific concepts - so it was never an optimal
solution either.
Many people outside of the US (and many people under the age of 18) do not... | 1 |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Node Version:**
v12.16.1
... |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
11.0.0... | 1 |
Hi,
I used to have (with Symfony 2.6) parameters in app/config/config.yml in this
form :
...
parameters:
my-parameter: 123
I was able to access these using `ContainerInterface->getParameter('my-
parameter');`, however this now throws an InvalidArgumentException with the
message "The ... |
The TimezoneType Field Type uses `\DateTimeZone::listIdentifiers()` to get the
texts that are shown in the generated `select` HTML tag. Of course these are
in perfect english. I've added all the texts needed to translate it in my
AppBundle YAML translation files and configured the form like this so it gets
translated... | 0 |
If I am unable to pass in my secondary FirebaseApp into FirebaseAuth is there
another way to achieve this?
I can only access the second database if I leave it in test mode and allow
third party read/writes.
|
Firebase auth still using google-service.json. if i use them, can only
authenticate for 1 firebase.
So how can i use multiple firebase for authentication?
Please help.
| 1 |
# Checklist
* I have checked the issues list
for similar or identical enhancement to an existing feature.
* I have checked the pull requests list
for existing proposed enhancements.
* I have checked the commit log
to find out if the if the same enhancement was already implemented in the
master branch... |
# Checklist
* 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 already fixed in the master branch.
* I have included all related issues and possible dup... | 0 |
Templates exist to resolve placeholders in pieces of text and can only be used
in indexed scripts and ingest. While scripts are used in many other places and
exist to flexible execute custom logic related to the context it is running
in.
Templates are integrated into the script infrastructure (mustache implements
`S... |
could you also change
src/main/java/org/elasticsearch/index/mapper/core/TypeParsers.java (line 66)
to support empty array for "fields"?
} else if (fieldName.equals("fields")) {
Map<String, Object> fieldsNode = (Map<String, Object>) fieldNode;
similar to #5887
| 0 |
Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | no
RFC? | no
Symfony version | 4.0.3
When form is submitted, both groups "Users' and 'Strict' are validated even if
there are violations in 'Users'.
When put something like "123" on username and password,expected "This value is
t... |
Hello,
Using the example below (smallest I could think of).
If you try the given controller, you will have the following results:
* test1 : all OK [as expected]
* test2 : "is not three" [as expected]
* test3 : **_CRASH** _ ""Error: Call to a member function myBar() on a non-object in /myProject/src/Me/MeBund... | 1 |
by **aChrisSmith** :
It appears that go does not emit DWARF debugging information when building programs
using cgo. (At least not on OS X / Darwin; haven't checked on another other OS.) Ideally
debugging information would be present regardless of using cgo. And, if I could have a
pony too, ... |
by **xofyarg** :
What steps will reproduce the problem?
If possible, include a link to a program on play.golang.org.
1. start a tls server[1] writing in go with tls pkg
2. connect the server using a client built with openssl
3. send something to server
What is the expected outp... | 0 |
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... |
Destructuing is not handled correctly (either object literal or array binding
pattern) in during declaration emit.
Eg.
` TypeScript`
var { a, b } = { a: "10", b: 10 };
Generates
``` TypeScript```
declare var { a, b }: any;
Expected:
` TypeScript`
declare var a: string, b: numb... | 1 |
> Issue originally made by @vadzim
### Bug information
* **Babel version:** 6.3.17 (babel-core 6.3.17)
* **Node version:** v5.1.1
* **npm version:** 3.3.12
### Options
--no-babelrc --presets es2015
### Input code
var x = { method() {
var f = () => console.log( this.... |
I'm building an SSR template, and when I use @babebl/register and then execute
webpack (config), the system reported an error.
I tried @babel/polyfill and @babel/plugin-transform-runtime, but none of them
worked.
### Input code
`index.js:`
require("ignore-styles");
require("@babel/register")({
... | 0 |
### Bug report
When I try to run the tests, all the `.svg` tests fail because of an Inkscape
crash. When a svg test runs, an Inkscape window opens:

Clicking through this lead... |
Hi,
I think the fill_between function should take a drawstyle option. It would be
both handy and consistent.
Here is a post from someone else requesting the feature, with a figure
illustrating why this is needed:
http://old.nabble.com/fill_between-with-drawstyle-steps--td30172277.html
thank you
| 0 |
Simply trying to save a file to D:\ raises the following error:
EPERM: operation not permitted, mkdir 'd:'
|
In version 0.10.1 it is no longer possible to write to the root of a drive
(which worked up to 0.9.1).
When trying to save to e.g. `r:\example.txt`, the following error message
appears:
EPERM: operation not permitted, mkdir 'r:\'
Tested on Windows 7 Ultimate and Windows 10 Professional, US lang... | 1 |
by **hanks_j@ligo-wa.caltech.edu** :
What steps will reproduce the problem?
If possible, include a link to a program on play.golang.org.
1. Setup a web-server serving https with a certificate from a local CA
2. Point the program listed at http://play.golang.org/p/iKScTFUQl3 at the... |
What steps will reproduce the problem?
1. go get github.com/josharian/gostripbug
2. cd $GOPATH/src/github.com/josharian/gostripbug
3. make
What is the expected output?
Hello
What do you see instead?
runtime: function symbol table header: 0x0x0 0x0x0
... | 0 |
The node module `util` uses `Object.create` in the `inherit`-function. But in
IE8 and lower `Object.create` is not defined. Thus `util` requires a shim to
work properly in these browsers.
Not all JavaScript 1.8.5 features available in `Object.create` can be emulated
but for the purpose of `inherit` I think this one ... |
**Do you want to request a _feature_ or report a _bug_?**
I'd say it's a feature.
**What is the current behavior?**
Currently, all messages (be it warnings, errors, etcetera) are hard-coded,
which reduces maintainability.
**If the current behavior is a bug, please provide the steps to reproduce.**
N/A
**Wha... | 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
... |
I'm recapping a discussion I just had with @alxhub and @tbosch. This is mostly
Tobias' design.
**I'm submitting a ...** (check one with "x")
[x] feature request
**Current behavior**
Typically when a page is pre-rendered, such as with Universal, the Angular
application bootstraps in the browser,... | 1 |
This is what I had to do to get Raven's Sentry client working with Celery:
Disable the logger to avoid duplicates in Sentry (one would be logged in
`celery.worker.job` with no frames locals, the other one with the root logger
with locals).
celery.worker.job:
level: INFO
handler... |
# Checklist
* 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 already fixed in the master branch.
* I have included all related issues and possible dup... | 0 |
My use case is to better integrate my Electron app into the desktop
environment. This includes being able to copy a file to clipboard and paste it
to the native OS explorer/finder as well as to drag and drop between the app
and the desktop.
As of today the closest I can get is by leveraging Chrome's own support for
... |
i want to get image file from clipboard.
when right-click an image on a web page and copy it, i can get the image file
from both browser's `onpaste` event and `clipboard` module that electron
provided.
when it came to **files(images) in finder** , `cmd+c` copy it, browser's
`onpaste` event can only give you a previ... | 1 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ansible core (ssh login)
##### ANSIBLE VERSION
ansible 2.3.0.0
config file = ... /ansible/etc/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.6.6 (r266:84292, Aug 18 2016, 08:36:59) [GCC 4.4.... |
##### Issue Type:
Feature Idea
##### Ansible Version:
1.8
##### Environment:
Any
##### Summary:
I think it would be really nice to have some `role_name` available as variable
in the tasks in same way as done for `role_path` `7051cde` recently
For now we have few options to let tasks know about current role na... | 0 |
The Assert\Valid is not taken into account and the form is just considered
valid, even if the constraints are not met. The issue can be reproduced by
taking the example over here :
http://symfony.com/doc/current/book/forms.html#embedding-a-single-object
* Add any constraint to Entity\Category with: `groups={"val... |
I have an entity where I'm using the following validators:
/**
* @Assert\Callback(methods={"isValid"}, groups={"group1", "group2"})
*/
class UserProduct
{
/**
* @var string $title
* @Assert\NotBlank(message="title.blank", groups={"group1", "group2"});
... | 1 |
OS:CentOS Linux release 7.5.1804 (Core)
proxy version:shardingsphere-5.1.2
zookeeper version:zookeeper-3.6.3 (three nodes,cluster mode)
Hi
when config mutli zookeeper server(cluster mode),Failed to start proxy service
port(3307).
server.yaml:
#
# Licensed to the Apache Software Foundation (... |
2.0版本还不支持insert into * ()values( _)(_ )(*)
这种value后面的还不支持么?
| 0 |
Please support font that loaded by the AddFontResource* function for the sake
of the non-admin workers.
Along with the portable mode(#329) we may have, it helps a lot.
*It can be used to add font by non-admin user. (FYI1) (FYI2)
|
I hope vscode can open files by mutiple windows such as sublime text
| 0 |
I'm working on an extension and have a `CompletionItemProvider`. It works good
when writing code. But it's annoying when it pops up suggestions inside of
strings and comments.
I don't want the suggestions to appear in that cases.
I had a look at other extensions on how they solve this problem. The
TypeScript plugi... |
I'm trying to fix microsoft/vscode-go#103, but as far as I can tell this isn't
possible currently without tokenizing the whole file again in my extension and
manually checking whether I'm in a comment to suprress providing results.
It would be nice if the `CompletionItemProvider` provided a setting to
suppress it's ... | 1 |
We seem to be having an issue with the validator service when using
collections and the validator to check for unique entities.
The validator will correctly find any issues before persisting the entity to
the doctrine manager.
The validator seems to check the data in the current database but doesn't
check the data ... | Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | yes
Symfony version | 3.x (maybe 2.x and 4.x also?)
I am debugging a custom CMS made with Symfony (3.x) using Blackfire, in order
to improve the performance as much as possible (and learn!). I already removed
all heavy c... | 0 |
The same question as #18345, which was sadly closed by its author. Before I go
to public forums with this, just a simple question:
> I have a SliverAppBar with a flexibleSpace that holds information that will
> change in height. I simply want my AppBar to determine it's height at
> runtime rather than the static exp... |
I have a SliverAppBar with a flexibleSpace that holds information that will
change in height. I simply want my AppBar to determine it's height at runtime
rather than the static expandedHeight option. Do I really need to calculate
the height of this widget before I pass it to the flexibleSpace? Or is there a
built in ... | 1 |
## 🐛 Bug
Pytorch-1.0-Cuda-10.0 with ONNX-1.2.1 and 1.3.0. Export onnx model core dumps
on Ubuntu on GPU instance
## To Reproduce
Steps to reproduce the behavior:
Spin up an Ubuntu with GPU instance like EC2 p2 or g3
1. install Cuda-10, cudnn-7.4.1, NCCL-2.3.7
2. anaconda
3. conda create -n pytorch_p27 pyt... |
## 🐛 Bug
Pytorch-1.0-Cuda-10.0 with ONNX-1.2.1 and 1.3.0. Export onnx model core dumps
on Ubuntu on GPU instance
## To Reproduce
Steps to reproduce the behavior:
Spin up an Ubuntu with GPU instance like EC2 p2 or g3
1. install Cuda-10, cudnn-7.4.1, NCCL-2.3.7
2. anaconda
3. conda create -n pytorch_p27 pyt... | 1 |
Challenge Target the Parent of an Element Using jQuery has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... |
Challenge Use jQuery to Modify the Entire Page has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
<scri... | 1 |
### Describe the workflow you want to enable
The Markov Chain is an algorithm that can generate data from data.
The idea of the Markov Chain was first published in 1906.
It fits SK-Learn's model of `fit`, `predict/transform` by fitting the data to
a model, and then predicting a new sequence of data.
What I am loo... |
First off, I didn't find any mentioning of RFECV in the userguide.
Update: rest of this issue was fixed.
| 0 |
> Issue originally made by @taion
### Bug information
* **Babel version:** 6.11.4
* **Node version:** 6.3.1
* **npm version:** 3.10.3
### Options
N/A
### Input code
N/A
### Description
From discussion on facebook/create-react-app#238:
This is the code of `babel-runtime/... |
### 💻
* Would you like to work on this feature?
### What problem are you trying to solve?
Cannot use `satisfies` typescript operator because I need @babel/plugin-
transform-typescript version 7.20 which is dependency of `@babel/preset-
typescript` which was left behind on version 7.18 and not released as part o... | 0 |
**Migrated issue, originally created by Dave Hirschfeld**
As detailed in GH#382 the `dialects.mssql.TIMESTAMP` class is a direct import
of the `sa.sql.sqltypes.TIMESTAMP` class into the `mssql` namespace.
The fact that the `mssql.TIMESTAMP` class is the same as the
`sqltypes.TIMESTAMP` class causes problems in a 3... |
**Migrated issue, originally created by Dan Stovall**
In MSSQL a ROWVERSION or TIMESTAMP column do not contain a date time. Instead
the contain an 8-byte integer. Currently, the column is set as
sqlachemy.sql.sqltypes.TIMESTAMP, which is an instance of the DateTime type.
Running a query against a table with such a ... | 1 |
* VSCode Version: Version 0.10.11 (0.10.11)
* OS Version: OS X 10.10.5
Steps to Reproduce:
1. Write code as screenshot below

2. Observe strange highlighting on variab... |
_From@f111fei on February 23, 2016 6:14_
version: 0.10.10

`letter`
_Copied from original issue:microsoft/vscode#3270_
| 1 |
Hi Team, There is problem in Axios v1.1. Axios not respond with axios.get and
axios.post. Please use previous version of axios for solve this problem.
|
**Describe the bug**
My project is working strangely,I compare the current version with the
previous one,The following code creates an BUG.
// version === 0.19.0
config = mergeConfig(this.defaults, config);
// version < 0.19.0
config = utils.merge(defaults, {
method: 'get'
... | 0 |
Challenge [Replacing If Else Chains with
Switch](https://www.freecodecamp.com/challenges/replacing-if-else-chains-with-
switch#?solution=%0Afunction%20chainToSwitch(val)%20%7B%0A%20%20var%20answer%20%3D%20%22%22%3B%0A%20%20%2F%2F%20Only%20change%20code%20below%20this%20line%0A%2F*%0A%20%20if%20(val%20%3D%3D%3D%20%22b... |
Challenge Comparisons with the Logical And Operator has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... | 1 |
As it said in this issue #3382
the PLYLoader does not support texture coordinates.
Is it still the same ?
code:
var loader = new PLYLoader()
loader.load(path,(geometry) => {
geometry.computeVertexNormals();
new THREE.TextureLoader().load( `${url}` ... |
##### Description of the problem
Hello all, I've run into an issue where I have a series of promises
concurrently calling `TextureLoader.load`, and occasionally the call simply
doesn't appear to be triggering its success/failure callback, which leaves
promises unresolved indefinitely.
I put together the most basic ... | 0 |
**TypeScript Version:**
1.8.7
**Code**
interface Test {
field: {[key: string]: string};
}
var test: Test;
var foo = {qwerty: 'qwerty'};
test = {
field: foo
};
**Expected behavior:**
I don't see any errors.
**Actual behavior:**
I get the following ... |
Various libraries I use want to see dictionary "loops" that take some number
of key/value pairs and operate on them. E.g.:
async.auto<any>({
'foo': (cb) => getFoo(cb),
'bar': ['foo', (cb, results) => getBar(results.foo)]
}, (err, results) => { ... });
The typings file for async ... | 1 |
Currently you can mix BM25 and the classic similarity in the same index:
{
"book" : {
"properties" : {
"title" : { "type" : "text", "similarity" : "BM25" },
"text" : { "type" : "text", "similarity" : "classic" }
}
}
... this can be buggy since the bas... |
This issue addresses a few topics:
* separating `string` fields out into `text` and `keyword` fields (#11901)
* deprecating in-memory fielddata for field-types that support doc-values (to remove in 3.x)
* `fielddata` and `doc_values` settings (#8693) and `norms`
* good out-of-the-box dynamic mappings for str... | 0 |
Hi
When I open a git-controlled folder, and possibly change some settings, then
Code creates a .vscode directory directly inside that folder, and stores files
such as settings.json or launch.json in it.
That folder either has to be checked in or .ignored, which is OK on repos I
control, but not OK on forked repos I... |
**Environment:**
* VS Code Version 0.10.9
* Mac OS 10.10.5
* Node.js v4.3.1
**Steps to Reproduce:**
Create a new directory named cluster-test
Create a new file cluster-test\app.js with sample code from
https://nodejs.org/dist/latest-v4.x/docs/api/cluster.html#cluster_cluster as
follows:
co... | 0 |
## Bug Report
**Current Behavior**
The code below causes a `Duplicate declaration "values"` error.
**Input Code**
* REPL or Repo link if applicable: https://babeljs.io/repl/build/master#?babili=false&browsers=&build=&builtIns=false&spec=false&loose=false&code_lz=MYGwhgzhAECC0G8BQ1oGIBGAKAlM1qIApgC7QBuYIArkRANw... |
In Babel 5, it was possible to do this:
() => {
console.log("test");
}();
However, this is no longer possible in Babel 6 - it gives an "unexpected
token" error. Instead, I have to wrap the function as an expression:
(() => {
console.log("test");
})();
... | 0 |
Any thoughts on what might be driving this error and causing the build to
fail? I installed the latest version of Visual Studio Community and tried
running it from the VS command prompt as well.
python script\build.py -c D
ninja: Entering directory `out\D'
[339/1062] CC obj\vendor\node\dep... |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for a feature request that matches the one I want to file, without success.
### Electron Version
12.x, 13.x, 14.x
### ... | 0 |
Hi, using different indexers on a dataframes with timezone-aware timestamps
may return naive timestamps. (A brief search attempt didn't turn up any
related issues.)
#### Code Sample, a copy-pastable example if possible
>>> import pandas as pd
>>> df = pd.Series([pd.tslib.Timestamp('2016-03-30 14:3... |
#### Code Sample, a copy-pastable example if possible
data = {'name':['John', 'Anderson'], 'date':[pd.Timestamp(2017,3,13,13,32,56), pd.Timestamp(2017,2,16,12,10,3)]}
test_df = pd.DataFrame(data=data)
test_df['date'] = test_df['date'].map(lambda x:x.tz_localize('Asia/Shanghai'))
In [18... | 1 |
by **axel.schreiner** :
godoc binds GOPATH/src to /src/pkg;
i.e., directories below GOPATH/src contain packages, not commands;
i.e., HTTP requests for /cmd/FOO only work if FOO is in GOROOT/src/cmd.
Looks to me like godoc cannot readily document user-written commands outside GOROOT. (I... |
Well, since pprof is actually a perl script. It just doesn't work on windows. "go
tool" assumes that every tool ends with the ".exe" suffix on microsoft
operating system and pprof isn't.
Perhaps it should be removed from tool directory on windows at all? It's under
"misc" anyways, if... | 0 |
This looks like a regression in Electron 4. In Electron 3 the electron file is
executable, in 4 it is not.

|
Compiled binaries on Linux do no compile properly and show up as shared files,
I have been told by the team at electron-packager that this is an electron bug
and not a electron-packager bug as seen here as well as an explanation of the
bug here:
electron/electron-packager#901 (comment)
| 1 |
Hi,
I can not get this to work at all. When I have a row with x-popovers and they
are set with offset, they do not follow the container when resizing the
window:
http://bootply.com/91910
If I remove the offset it works:
http://bootply.com/91912
|
Chrome for Mac. Taken from the docs.
Open the popovers. Resize. Boom.
`)
but unless I am not understanding isn't.
`x.mode() == x.value_counts(sort=True).index[0]` ?
if ties, then return a slice of the result
e.g.
In [17]: Series([1, 1, 1, 2, 2, 2, 3]).value_c... |
[1] df = pd.DataFrame([[1,2]])
[2] df.iloc[0, 1:] = df.iloc[0, 1:].apply('{:+.2f}'.format)
[3] df
0 1
0 1 [+2.00]
Notice that an array was inserted, where a scalar was expected. The issue is
present in both 0.22 and master.
The same issue is if we use `loc` instead of `iloc`.... | 0 |
The mobx example does not work with jest configured(I use the .babelrc config
as in jest example).
I believe there is problem with .babelrc configuration with env
So, if .babelrc config is same as jest then, tests run but mobx doesn't and
vice-versa.
* I have searched the issues of this repository and believe t... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Current Behavior
currently `material-ui` use `renderPage` to pass `pageContext` to page
Component
// _documents.js
const page = ctx.renderPage(Page => props => (
<Page pageContext={pageCon... | 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
... |
## Problem
Assume the following HTML snippet
<button title="OK" tooltip="When done." (click)="..." *if="...">text</button>
1. It looks like we are using browser `button`
2. It looks like `title` and `tooltip` are properties of `button`.
### Surprise
Now imagine that the actual implementation is... | 0 |
This proposal is based on a working implementation at:
https://github.com/yortus/TypeScript/tree/granular-targeting
To try it out, clone it or install it with `npm install yortus-typescript`
## Problem Scenario
The TypeScript compiler accepts a single `target` option of either `ES3`,
`ES5` or `ES6`. However, mo... |
I have the below overloaded function declaration for a function in my class
private _forEachBindingContext(bindingContext: IContext, fn: (bindingContext: IContext) => void);
private _forEachBindingContext(bindingContextArray: Array<IContext>, fn: (bindingContext:IContext) => void);
private _for... | 0 |
Can I request for the TypeDefinition file for the latest version to be
published at `npm`?
* I have searched the issues of this repository and believe that this is not a duplicate.
|
Got the following error when compiling:
`TouchRipple.d.ts(2,33): error TS7016: Could not find a declaration file for
module 'react-transition-group'`, fixed by adding a dev dependency to
`@types/react-transition-group`
* I have searched the issues of this repository and believe that this is not a duplicate.
## ... | 0 |
Currently I have an `Input` sitting inside the `label` of a `Chip`, and the
way "backspace" is handled causes several issues with this text input. I'm
able to stop the `onDelete` function being called, but cannot fix the fact
`Input` is never getting an event.
* I have searched the issues of this repository an... |
This mixin appears in many components, checking if `context.muiTheme` has
changed.
First of all, I do not see why this component is necessary besides supporting
dynamic theme. This can be done by creating a new theme context instance,
React will then tell it has been changed.
Moreover, Its appearance may signif... | 0 |
Example package.json file:
{
"paths": {
"lib_a": "./path/to/lib/a"
},
"scripts": {
"lib_a:build": "tsc -p $npm_package_paths_lib_a",
"lib_a:publish": "npm publish $npm_package_paths_lib_a"
},
"devDependencies": {
"@my-org/lib-a":... |
# What / Why
error:
`npm WARN deprecated core-js@2.6.11: core-js@<3 is no longer maintained and
not recommended for usage due to the number of issues. Please, upgrade your
dependencies to the actual version of core-js@3.
npm WARN deprecated circular-json@0.5.9: CircularJSON is in maintenance only,
flatted is its ... | 0 |
I'm trying to train a model in a multiprocessing `Process`, but when a model
already exist in the parent scope, the process will freeze at the
initialization of the `Embedding` layer. I'm using Keras 2.0.5, Tensorflow
1.1.0, and only running on the CPU. Here's a simple duplicatable example.
from multip... |
The graph visualization is confusing. There are too many nodes on the graph
compared to the actual model, seems the nodes are repeatedly logged many
times.
For example, see parts of the graph of a simple 0-hidden layer network:
![screen shot 2017-07-23 at 12 18 48](https://user-
images.githubusercontent.com/452753... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.