text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
Celery version 4.2.0
I want to get results of tasks in group.
In development i'm using a CELERY_ALWAYS_EAGER=True.
If i run code below:
@shared_task
def task_in_group():
return "something"
@shared_task
def task_finishing_chain(results):
return results
@sha... |
`Task.retry()` always raises a `RuntimeError` if `task_always_eager` and
`task_eager_propagates` are set to `True`. This is counterintuitive. I would
expect this example to work:
from celery import Celery
app = Celery(__name__,
config_source=dict(task_always_eager=True,
... | 1 |
* VSCode Version: 1.2.0 - Insider
* OS Version: Windows 7
Steps to Reproduce:
1. Resize the terminal to be very narrow so that some text gets cut off
2. Resize it back to normal size
3. See that the text is either still cut off or drawn in a weird way
notice how "All rights reserved" is not redrawn

| 0 |
ERROR: type should be string, got "\n\nhttps://discuss.pytorch.org/t/dataloader-when-num-worker-0-there-is-bug/25643\n\nWe Hope developers can help us. \nMany pepole has the problems, but there is no solution available.\n\n" |
class DeephomographyDataset(Dataset):
'''
DeepHomography Dataset
'''
def __init__(self,hdf5file,imgs_key='images',labels_key='labels',
transform=None):
'''
:argument
:param hdf5file: the hdf5 file including the image... | 1 |
On Julia 1.1 1.2 1.3
function mean_foo(m) where {T}
f = NTuple[]
n = [1,1]
for i in 1:2
x = ntuple(_->zeros(10),n[i])
for j in 1:n[i]
x[j] .= sum(rand(length(m)).*m)
end
push!(f,x)
end
return f
e... |
version information:
Julia Version 1.0.3
Commit 099e826241 (2018-12-18 01:34 UTC)
Platform Info:
OS: Windows (x86_64-w64-mingw32)
CPU: Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-6.0.0 (ORCJIT, broadwell)
Environment:... | 1 |
Hello All,
In a project that I am working on, we are using Symfony as a middleware
between the Java WebService and the browser.
Strangely Symfony converts a 201 response received from the WebService to a
302 Redirect.
I am not sure if this is the reason why this is happening.
https://github.com/symfony/symfony/b... |
## Context
I have a listener on `KernelEvents::REQUEST` doing some checks related to the
current request (to be precise I am validating its format against a swagger
spec file).
## Issue
When an exception occurred, the HttpKernel's `ExceptionListener` duplicates
the request (without the query and request arguments)... | 0 |
Celery 4.0.0
Python 3.5.2
(rest of report output below)
I recently pushed celery beat to production (I had been using celery without
beat with no issues for several months). It had 1 task to run several times
daily, but it duplicated the task many times per second, gradually
overwhelming the capacity of my small... |
## I happened to install celery 4.1.0 with django_celey_beat 1.0.1, the
DatabaseScheduler seems not working well.
[2017-08-07 21:12:10,790: DEBUG/MainProcess] DatabaseScheduler: Fetching
database schedule
[2017-08-07 21:12:10,797: DEBUG/MainProcess] Current schedule:
<ModelEntry: celery.backend_cleanup celery.ba... | 1 |
Describe what you were doing when the bug occurred:
1. Loaded page.
2. Fast Refreshed.
3. Started profiler.
4. Stopped profiler. Crash.
* * *
## Please do not remove the text below this line
DevTools version: 4.6.0-6cceaeb67
Call stack: at j (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/mai... |
Describe what you were doing when the bug occurred:
1. I was using the devtools to investigate some performance issues w/ an app I help maintain
2. I had just turned on the "Record why each component rendered while profiling" checkbox
3. I ran a profile while navigating on the underlying page
The react profil... | 1 |
The file routing.png is referenced in router.html.twig but is missing. I
haven't found it anywhere in the bundle.
|
As @Partugal already mentioned in `8fa061c`, the icon for that section/panel
is missing.
| 1 |
VsCode 0.10.4
When I click on "Format Code" in the context menu, i get the following error:
Main Thread sent to worker the following message:e._onError @ workbench.main.js:16e._onmessage @ workbench.main.js:16e._onSerializedMessage @ workbench.main.js:16(anonymous function) @ workbench.main.js:16worke... |
* open HTML file
* run format (entire document)

| 1 |
I am unable to locate the cursor between `}}` and `<`, when I click the space
between, nothing happens.
|
* VSCode Version:1.8.2
* OS Version:ubuntu 15.10
Steps to Reproduce:
1. ctrl +shift + p open the pane
2. type ext install
3. search for extensions and click one of their readme button
4. the pane will close after clicking
| 0 |
## Checklist
* I have included the output of `celery -A proj report` in the issue.
(if you are not able to do this, then at least specify the Celery
version affected).
software -> celery:4.2.1 (windowlicker) kombu:4.2.1 py:3.6.5
billiard:3.5.0.4 py-amqp:2.3.2
platform -> syst... |
# 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 |
React version: 16.13.1
## Steps To Reproduce
1. I used the following code in Jest
it("should not rerender when setting state to the same value via click", async () => {
const callback = jest.fn();
function MyComponent() {
const [foo, setFoo] = useState("bir");
... |
React version:
## Steps To Reproduce
import { useState, useEffect, useRef } from "react";
function App() {
const [count, setCount] = useState(0);
const countLast = useRef(0);
function handleClick() {
const num = 1;
setCount(num);
console.log(num == co... | 1 |
### Summary
When transforming response data via AxiosRequestConfig.transformResponse,
there is no way to drive transformation logic differently depending on the
HTTP status of the response.
This is a problem for me because I want to implement a transform that
transforms only successful responses. Successful respons... |
#### Summary
Recently #1323 has been fixed, however `follow-redirects` is still not
correctly implemented: current version does not handle errors correctly.
Indeed, if `maxBodyLength` is 10MB and the resource fetched after the redirect
is bigger, `follow-redirects` will emit an error but that error will occur
outs... | 0 |
### Apache Airflow version
2.2.0 (latest released)
### Operating System
Debian GNU/Linux 11 (bullseye)
### Versions of Apache Airflow Providers
apache-airflow-providers-ftp==2.0.1
apache-airflow-providers-http==2.0.1
apache-airflow-providers-imap==2.0.1
apache-airflow-providers-postgres==2.3.0
apache-air... |
### Body
I have a kind request for all the contributors to the latest provider packages
release.
Could you help us to test the RC versions of the providers and let us know in
the comment,
if the issue is addressed there.
## Providers that need testing
Those are providers that require testing as there were some... | 0 |
Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | yes/no
RFC? | yes/no
Symfony version | 4.*
Debug code leftover in production is smelly, but there are cases where this
occurs (for example you are debugging somethin in production and you run the
same codebase in development and p... | Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | no
Symfony version | 3.2
I'm very addicted to dump() to debug my code and i find it a invaluable tool,
so thank you very much!
Unfortunately some time i forget to rid off of a dump or two in the code and
if the code bu... | 1 |
I have a monorepo, containing a `create-react-app` application, a `next.js`
application and a separate library. This library is linked (with `yarn link`)
to the two applications and has `styled-components` as a peer dependency,
which is installed in both the applications.
The linking works fine in the `create-react-... |
The `next/dynamic` import is failing in handle-import.js due to a preprocessed
module name evaluating to `undefined`. Boiled down version of code:
// index.js
const preval_modulename = preval`
module.exports = './hello-' + 'world';
`;
console.log(preval_modulename); // prin... | 0 |
**Apache Airflow version** :
Master branch
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
N/A
**Environment** :
* **OS** (e.g. from /etc/os-release): MacOS
* **Browser** : Safari
* **Others** : breeze environment
**What happened** :
Nothing happens when clicking "Log"... |
### Apache Airflow version
2.3.1 (latest released)
### What happened
Hello team!
I have faced the problem with Grid visibility in the latest 2.3.1 release.
**My issue (example)**
1. Here is the end of dag code:
...
<code>
...
telegram_alert = TelegramOperator(
task_id='teleg... | 0 |
Maxim Naumov @mnaumovfb sends in the following feedback:
* * *
I thought I would share some feedback from my recent work with
register_backward_hook function. I will describe some some inconsistencies in
it that may be worth addressing in the future.
## Background
PyTorch supports different hook functions, includ... |
Hi,
there is something strange in the `backward` step (or maybe something I don't
understand). If I define a Module that takes 3 inputs, the `grad_input` has to
be of size 3, right ? But this is not the case here (from the backward_hook
point of view):
from torch.autograd import Variable
import to... | 1 |
## 🐛 Bug
`import torch` fails to command prompt without an error for recent nightly
builds on Windows.
## To Reproduce
C:\> pip install future protobuf scipy
C:\> pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
Looking in links: htt... |
## 🐛 Bug
'import torch' starts to fail in the nightly jobs beginning from Dec. 15.
https://dev.azure.com/pytorch/PyTorch/_build/results?buildId=18361&view=results
https://dev.azure.com/pytorch/PyTorch/_build/results?buildId=18363&view=results
## To Reproduce
Steps to reproduce the behavior:
1. import torch
... | 1 |
`tensorflow` currently handles duplicates in `SparseTensor` by keeping the
value for the last index of a repeated coordinate. However, some operations
for this would come in quite handy, namely non-max or non-min suppression
(keeping the maximum or minimum values for repeated coordinates), sum (summing
the values for... |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Yes
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Ubuntu 14.04
* **TensorFlow installed from (source or binary)** : Binary (pip install)
* **TensorFlow version (use ... | 0 |
Hi All. Building python bindings gives me error:
`
root@host# bazel build -c opt --verbose_failures --config=cuda
//tensorflow/tools/pip_package:build_pip_package
...
WARNING:
/root/.cache/bazel/_bazel_root/4b98d0d2e8f34611cfd0d274c46b2eaf/external/gemmlowp/BUILD:102:12:
in hdrs attribute of cc_library rule @ge... |
Hi, can anyone help me with this errors? I've tried varios Python
installations an have installed Cuda 10.
I tried to run TensorFlow-GPU...
"C:\Users\Christoph Richter\PycharmProjects\NNV3\Scripts\python.exe" "C:/Users/Christoph Richter/PycharmProjects/NNV3/MNISTTest.py"
Using TensorFlow backend.... | 0 |
**Joern Barthel** opened **SPR-6440** and commented
Now that RowMapper offers parameterized types can we please abandon
SimpleJdbcTemplate? It still lacks some functionality (e.g. fetch size) over
JdbcTemplate so sometimes both are used.
* * *
**Affects:** 3.0 RC2
**Issue Links:**
* #11587 Deprecate SimpleJdbc... |
**kang woonduk** opened **SPR-7764** and commented
memory leak occurs in SpringMVC(DefaultListableBeanFactory.dependentBeanMap,
DefaultListableBeanFactory.dependenciesForBeanMap)
error condition
1. use SpringMVC
2. use default-autowire="byType"
3. Scope of Controller is prototype
4. ServletHttpRequest(or H... | 0 |
* Create some text with a folding region that includes `foobar`
* Fold this region
* Start a find for `foobar`
-> the find box shows the correct number of matches, but when you want to step through them the match in the folded region isn't shown.
The expected behaviour is that the folding region expands to sh... |
* Create some text with a folding region that includes `foobar`
* Fold this region
* Start a find for `foobar`
-> the find box shows the correct number of matches, but when you want to step through them the match in the folded region isn't shown.
The expected behaviour is that the folding region expands to sh... | 1 |
#### Code Sample,
In [4]: df = pd.DataFrame({'series': pd.Series(range(3))})
In [5]: df["name"] = "abc"
In [6]: df_copy = df.copy()
In [7]: df.series.loc[2] = None
In [8]: df
Out[8]:
series name
0 0.0 abc
1 1.0 abc
2 NaN abc
... |
#### Problem description
`pandas.DataFrame.where` seems to be not replacing NaTs properly.
As in the example below, NaT values stay in data frame after applying
`.where((pd.notnull(df)), None)`
#### Code sample
In [26]: pd.__version__
Out[26]: '0.19.2'
In [27]: df
Out[27]:
... | 1 |
* I tried using the `@types/xxxx` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there).
* Mention the authors (see `Definitions by:` in `ind... |
* I tried using the `@types/xxxx` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* Mention the authors (see `Definitions by:` in `index.d.ts`) so they can respond.
* Authors: @Igorbek @Igmat @lavoaster @Kovensky
One of the default examp... | 0 |
Challenge use-css-selectors-to-style-elements has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101
Firefox/52.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
it keeps telling me that "your h2 element should be blue" , but as you... |
http://www.freecodecamp.com/challenges/waypoint-link-to-external-pages-with-
anchor-elements instructs you to create a link to http://catphotoapp.com \-
which is one of those obnoxious 'sit on a domain and fill it with vaguely
relevant ads' pages.
It would be better to use a link to a site FreeCodeCamp controls - wh... | 0 |
My issue is about ...
Sos output is incorrect for analog filter design. I found a comment in
fitler_design.py stating as much, but I would expect an error or clearer
documentation if this is a known limitation. Instead the code below will
generate incorrect SOS coefficients. The combined SOS result in a higher order... |
As described in #3717 (comment), zpk2sos does not work for analog filters
since the coefficients of each stage are different.
`b, a = butter(1, 1, analog=True)` produces b = [1], a = [1, 1] → H(s) =
1/(s+1)
`sos = tf2sos(b, a)` produces `[1, 0, 0, 1, 1, 0]`
this stage is b = [1, 0, 0], a = [1, 1, 0] → H(s) = s^2/(... | 1 |
## ❓ Questions & Help
The question about roberta.
I konw that Bert use the embedding of token 'cls' to do predict, but when it
comes to roberta, I dont know it clearly. Can you tell me which token's
embedding is used to do predict in this project? Is it ' ~~' ?~~
|
## Information
I am trying to build the documentation in `docs/` using `sphinx-build` so that
I can add it to Dash as one of the docsets. However, I get an assertion error
with sphinx-build when I run `make html` in the `docs/` folder _only when
tensorflow is installed_. The build works without tensorflow installed,... | 0 |
### Apache Airflow version
2.2.4 (latest released)
### What happened
After setting up alert emails using AWS SES as instructed here, I received the
following error message:
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/airflow/models/taskinstance.py", line 210... |
### Description
Currently the 'minimal' version of Airflow Docker image ships with 20+ extra
dependencies, which according to my understanding, are the most common used
libraries. The idea of this PR to prepare another, pure Airflow image, which
wouldn't have those dependencies and would only ship with core Airflow
... | 0 |
Launch an iOS application with a light-colored launch screen storyboard and a
light-colored home view. Note that a frame or two of total black is shown
between the launch screen and the initial Flutter view.
This is my workaround for now, in the app delegate:
- (BOOL)application:(UIApplication *)appli... |
## Steps to Reproduce
Use this to run on iOS:
flutter create myapp
cd myapp
flutter run
The app will show the (white screen) contents of LaunchScreen.storyboard,
followed by a black screen, followed by the app.
 I think it
should be the same.
# Before clearing the cache
# Default configuration fo... |
I found something that I don't think is a bug by itself, but doesn't really
strike me as completely correct behaviour neither.
When I dump the security configuration on the console, I will not see any
authentication mechanism configurations, like form_login, x509, http_basic
etc, but after I clear the cache without ... | 1 |
Running from numpy source directory.
Traceback (most recent call last):
File "", line 1, in
ImportError: No module named Cython.Compiler.Main
Processing numpy/random/mtrand/mtrand.pyx
Traceback (most recent call last):
File "/var/tmp/lee218/spack-stage/spack-stage-
KH2wWX/numpy-1.11.2/tools/cythonize.py",... |
Couldn't find it anywhere mentioned in the docs, but it seems that Cython is a
build requirement of the development version.
| 1 |
##### Description of the problem
Rendering an InstancedBufferGeometry with no (used) attributes does not
render.
This happens when a shader uses only (implicit) gl_InstanceID and/or
gl_VertexID,
and user program establishes count with 'geom.maxInstancedCount = ...'
(It only applies to WebGL2 as earlier shaders ... |
The ColladaLoader fails to load this model.
https://raw.githubusercontent.com/0ad/0ad/master/binaries/data/mods/public/art/meshes/skeletal/elephant_african_bush.dae
Results in this error (in Firefox):
too much recursion ColladaLoader.js:3377:8
Here is the fiddle.
https://jsfiddle.net/L923p7ke/
I can provide ... | 0 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke/11042/\n\nFailed: [k8s.io] Kubectl client [k8s.io] Update Demo should do a rolling\nupdate of a replication controller [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:233\n Expected error:\n <*errors.errorString | 0xc8207b8f70>: {\n s: \"Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.212.33 --kubeconfig=/workspace/.kube/config get pods update-demo-nautilus-elz7w -o template --template={{if (exists . \\\"status\\\" \\\"containerStatuses\\\")}}{{range .status.containerStatuses}}{{if (and (eq .name \\\"update-demo\\\") (exists . \\\"state\\\" \\\"running\\\"))}}true{{end}}{{end}}{{end}} --namespace=e2e-tests-kubectl-qyfyf] [] <nil> failed to find client for version v1: error: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.\\n [] <nil> 0xc8207577e0 exit status 1 <nil> true [0xc8200b8fd0 0xc8200b8ff0 0xc8200b9010] [0xc8200b8fd0 0xc8200b8ff0 0xc8200b9010] [0xc8200b8fe8 0xc8200b9008] [0xa970a0 0xa970a0] 0xc820b56a80}:\\nCommand stdout:\\n\\nstderr:\\nfailed to find client for version v1: error: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.\\n\\nerror:\\nexit status 1\\n\",\n }\n Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.212.33 --kubeconfig=/workspace/.kube/config get pods update-demo-nautilus-elz7w -o template --template={{if (exists . \"status\" \"containerStatuses\")}}{{range .status.containerStatuses}}{{if (and (eq .name \"update-demo\") (exists . \"state\" \"running\"))}}true{{end}}{{end}}{{end}} --namespace=e2e-tests-kubectl-qyfyf] [] <nil> failed to find client for version v1: error: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.\n [] <nil> 0xc8207577e0 exit status 1 <nil> true [0xc8200b8fd0 0xc8200b8ff0 0xc8200b9010] [0xc8200b8fd0 0xc8200b8ff0 0xc8200b9010] [0xc8200b8fe8 0xc8200b9008] [0xa970a0 0xa970a0] 0xc820b56a80}:\n Command stdout:\n \n stderr:\n failed to find client for version v1: error: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.\n \n error:\n exit status 1\n \n not to have occurred\n \n\nPrevious issues for this test: #26425 #26715\n\n" | ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke/10735/\n\nMultiple broken tests:\n\nFailed: [k8s.io] Kubectl client [k8s.io] Update Demo should do a rolling\nupdate of a replication controller [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:233\n Expected error:\n <*errors.errorString | 0xc8207c7f70>: {\n s: \"Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.209.82 --kubeconfig=/workspace/.kube/config rolling-update update-demo-nautilus --update-period=1s -f - --namespace=e2e-tests-kubectl-f1wr3] [] 0xc820ae8ae0 Created update-demo-kitten\\n Error from server: the server does not allow access to the requested resource (put replicationControllers update-demo-nautilus)\\n [] <nil> 0xc820ae9100 exit status 1 <nil> true [0xc8200ba088 0xc8200ba540 0xc8200ba7a8] [0xc8200ba088 0xc8200ba540 0xc8200ba7a8] [0xc8200ba0a8 0xc8200ba130 0xc8200ba548] [0xa9ec00 0xa9ed60 0xa9ed60] 0xc820d6a6c0}:\\nCommand stdout:\\nCreated update-demo-kitten\\n\\nstderr:\\nError from server: the server does not allow access to the requested resource (put replicationControllers update-demo-nautilus)\\n\\nerror:\\nexit status 1\\n\",\n }\n Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.209.82 --kubeconfig=/workspace/.kube/config rolling-update update-demo-nautilus --update-period=1s -f - --namespace=e2e-tests-kubectl-f1wr3] [] 0xc820ae8ae0 Created update-demo-kitten\n Error from server: the server does not allow access to the requested resource (put replicationControllers update-demo-nautilus)\n [] <nil> 0xc820ae9100 exit status 1 <nil> true [0xc8200ba088 0xc8200ba540 0xc8200ba7a8] [0xc8200ba088 0xc8200ba540 0xc8200ba7a8] [0xc8200ba0a8 0xc8200ba130 0xc8200ba548] [0xa9ec00 0xa9ed60 0xa9ed60] 0xc820d6a6c0}:\n Command stdout:\n Created update-demo-kitten\n \n stderr:\n Error from server: the server does not allow access to the requested resource (put replicationControllers update-demo-nautilus)\n \n error:\n exit status 1\n \n not to have occurred\n \n\nIssues about this test specifically: #26425 #26715\n\nFailed: [k8s.io] Kubectl client [k8s.io] Simple pod should support exec\nthrough an HTTP proxy {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:279\n Expected error:\n <*errors.errorString | 0xc8202aa550>: {\n s: \"Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.209.82 --kubeconfig=/workspace/.kube/config get rc,svc -l name=nginx --no-headers --namespace=e2e-tests-kubectl-4q19c] [] <nil> the server does not allow access to the requested resource (get services)\\n [] <nil> 0xc82072a7c0 exit status 1 <nil> true [0xc8201081b8 0xc8201081f0 0xc820108308] [0xc8201081b8 0xc8201081f0 0xc820108308] [0xc8201081d0 0xc820108300] [0xa9ed60 0xa9ed60] 0xc820d062a0}:\\nCommand stdout:\\n\\nstderr:\\nthe server does not allow access to the requested resource (get services)\\n\\nerror:\\nexit status 1\\n\",\n }\n Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.209.82 --kubeconfig=/workspace/.kube/config get rc,svc -l name=nginx --no-headers --namespace=e2e-tests-kubectl-4q19c] [] <nil> the server does not allow access to the requested resource (get services)\n [] <nil> 0xc82072a7c0 exit status 1 <nil> true [0xc8201081b8 0xc8201081f0 0xc820108308] [0xc8201081b8 0xc8201081f0 0xc820108308] [0xc8201081d0 0xc820108300] [0xa9ed60 0xa9ed60] 0xc820d062a0}:\n Command stdout:\n \n stderr:\n the server does not allow access to the requested resource (get services)\n \n error:\n exit status 1\n \n not to have occurred\n \n\nIssues about this test specifically: #27156\n\nFailed: [k8s.io] Services should serve a basic endpoint from pods\n[Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133\n Jul 7 17:24:27.653: Couldn't delete ns \"e2e-tests-services-w86n1\": the server does not allow access to the requested resource (delete namespaces e2e-tests-services-w86n1)\n \n\nIssues about this test specifically: #26678\n\nFailed: [k8s.io] ResourceQuota should verify ResourceQuota with best effort\nscope. {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/resource_quota.go:481\n Expected error:\n <*errors.StatusError | 0xc820d64100>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get resourceQuotas quota-not-besteffort)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"quota-not-besteffort\",\n Group: \"\",\n Kind: \"resourceQuotas\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/namespaces/e2e-tests-resourcequota-pjhoj/resourcequotas/quota-not-besteffort\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get resourceQuotas quota-not-besteffort)\n not to have occurred\n \n\nFailed: [k8s.io] Pods should not start app containers and fail the pod if init\ncontainers fail on a RestartNever pod {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pods.go:988\n Jul 7 17:24:23.180: Error watching a pod: the server does not allow access to the requested resource (get pods)\n \n\nIssues about this test specifically: #27465\n\nPrevious issues for this suite: #26742 #27839\n\n" | 1 |
If you look at the `iter` branch in the `nikomatsakis/rust` repo, you will
find that it fails in stage0. I debugged this a bit by building a vanilla
compiler in another repoistory and managed to trace it as far as a failure in
`make_mono_id()` because the call to `map2()` that is processing bounds and
substs receives... |
Compiling following source, rustc dumps core with error messages.
import iter::*;
fn main() {
let range = bind uint::range(0u, 1000u, _);
let filt = bind iter::filter(range, {|&&n: uint| n % 3u != 0u && n % 5u != 0u }, _);
let sum = iter::foldl(filt, 0u) {|accum, &&n... | 1 |
Can playwright test generator be configured to look for specific HTML
attribute as precedence and record it?
Example : If my web page has an input field with attribute myId like:
Can I configure test generator to look for myId attribute and generate a step
as:
await page.FillAsync("//*[@myid='MyProject.Data.Usern... |
Please make the list of `["data-test-id", "data-testid", ...]` selector
building attributes configurable. Or even please add an configuration option
to add custom JS/TS method that prepends your selector building code.
### Reasons:
* Some projects use different names like e2e-target, data-cy, data-e2e, data-qa, d... | 1 |
UPDATE: I've solved the problem but I am now filing a bug report instead of a
request for help. See below.
**Original request for help:**
* Electron version: v0.37.5
* Operating system: Mac OS X 10.11.4
I'm building my first Electron app.
My WebView, which was working just fine, has suddenly stopped loading U... |
I have a very little demo like this:
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<webview src="https://www.google.com/" autosize="on" minwidth="576" minheight="432"></webview>
</body>
</html>
When I run the ap... | 1 |
iOS builds require putting dart SDK on system path. If you don't you'll get a
build error.
pub: command not found
Putting the Dart SDK on the system path isn't something that we are telling
developers to do, rather they're putting it in their .bash_profile. Perhaps we
should give iOS developers a... |
I've just tried Flutter, but I noticed that the app on Android uses almost
14MB of user data.
**How to reproduce**
flutter create demo1
cd demo1
flutter build apk --release
And install the app-release apk.
When you will open the app, 14MB of User Data will be used.
**Tested on**
Nexu... | 0 |
### Description
While working on implementing custom task notes I wanted to test my changes
with Dynamic Task mapping, but we don't have any example DAGs for this.
We should add an example DAG containing this.
### Use case/motivation
For showing our users how this functionality can be used and also to improve
te... |
### Apache Airflow version
2.3.0 (latest released)
### What happened
The automatic `cloud_sql_proxy` download via the `CloudSqlProxyRunner` is not
working because the environment is using the `uname -a` info and it is pull
`x86_64`. The url for the `cloud_sql_proxy` binaries are no longer using
`x86_64`. Instead, ... | 0 |
While TypeScript allows me to write
enum Foo {
}
module Foo {
}
it does not allow the same for _const_ enums
const enum Foo {
}
module Foo {
}
It will report an error about a duplicated identifier. Unsure if this is by
des... |
**Problem Statement:** In TypeScript 1.1, there are two basic ways to
initialize complex properties with strong typing via a parameterized class
constructor. Both have disadvantages. I will illustrate this with a simple
example that uses Knockout, but this issue applies to any other JavaScript
library that implement... | 0 |
### Version
2.5.17
### Reproduction link
https://codesandbox.io/s/zzq75rm38x
### Steps to reproduce
Create a component, A, which makes use of `$listeners` in the template
somehow.
Create a component, B, that includes component A, so that an instance of B is
parent of an instance of A.
Attach an event listene... |
I'm new with Vuejs and probably my issue is a dummy one, but I've not still
realized how to fix it.
**Situation** : I have a collection of objects which I've sorted with lodash:
{
computed: {
sortedAlerts: function() {
return _.orderBy(this.filteredAlerts, 'createdAtUtc', 'desc... | 0 |
In looking at the warnings while generating documentation, there are dozens of
"/home/circleci/repo/venv/lib/python3.6/site-
packages/numpy/core/_internal.py:docstring of
numpy.core._internal._ctypes.shape:1: **WARNING: duplicate object description
of** numpy.core._internal._ctypes.shape, other instance in
/home/circ... |
_Original tickethttp://projects.scipy.org/numpy/ticket/235 on 2006-08-07 by
@baxissimo, assigned to unknown._
Here's essentially what these different methods do:
vstack(tup):
concatenate( map(atleast_2d,tup), axis=0 )
hstack(tup):
concatenate( map(atleast_1d,tup),axis=1 )
column_stack(tup):
arrays = map( t... | 0 |
When validation class is active (i.e. `has-error`), the form with `input-
group-btn` looks like doesn´t render the red border correctly:
http://plnkr.co/edit/PbbJhCjNwG3w0gD8mv8s?p=preview
|
Buttons in an input-group do not get their border colour changed when there is
a parent element with has-error .
Example:
<div class="has-error" style="margin: 2em; width: 300px;">
<div class="input-group">
<input type="text" class="form-control" value="zzz">
<span class="input-gro... | 1 |
## Bug Report
I'm trying to deploy a React SPA within a docker container, served through a
python Flask app.
I'm starting here by asking people on Babel, because I think it might be
something to do with the way I've set up babel, but I guess it could just as
easily be an issue with Parcel or something else.
**Curr... |
> Issue originally made by Dave Thompson (dave.w.thompson)
### Bug information
* **Babel version:** 6.13.0
* **Node version:** 6.2.1
* **npm version:** 3.9.3
### Options
npm install --save babel-core babel-loader babel-preset-es2015 babel-preset-es2016 babel-preset-react
### Input code
... | 0 |
I'm ignoring some tests in `extra::time` because they fail randomly
(At time bug was filed, the library was called `std::time`, but `std` has been
renamed to `extra`.)
|
When running `make check` on my Mac, three tests in `time::tests` (`test_at`,
`test_ctime`, and `test_strftime`) sometimes fail. Usually if I just run `make
check` again, the tests pass.
| 1 |
# Environment
Windows build number: 10.0.18362.145
Windows Terminal version (if applicable): Not sure where to find, it's compiled from the master branch with the commit 2da5b0b
# Steps to reproduce
Copy texts with different line endings into wsl opened in windows terminal
# Expected behavi... |
# Environment
Windows build number: 10.0.18362.116
Windows Terminal version (if applicable): 71e19cd + changing toolset to v142 and SDK version
# Steps to reproduce
1. Clone, build, package, install and launch _Windows Terminal (DevBuild)_.
2. Execute `docker run --rm -it mcr.microsoft.c... | 1 |
Broken on both release-0.3 and 0.4-dev:
julia> [1 1; 1 1] .* [1, 1]
2x2 Array{Int64,2}:
1 1
1 1
julia> sparse([1 1; 1 1]) .* [1, 1]
ERROR: DimensionMismatch("")
in .* at sparse/sparsematrix.jl:568
in .* at sparse/sparsematrix.jl:669
julia> [1, 1] .* [1 1;... |
I'm fiddling with sparse matrices and have found a few quirks :-)
What I pretend to do is use LU factorization in sparse matrices (for now in
real matrices, but I hope to get it done also in sparse complex matrices)
First, in the manual, in the Linear Algebra section
(http://docs.julialang.org/en/release-0.3/stdlib... | 1 |
For linting files.
Probably should be implemented similar to how we've done `--fmt` ... that is
get eslint into deno_std, and then load from URL in core.
|
Right now for npm specifiers, we sort the npm package requirements by name
only and then resolve them. This is ok for specifiers with different names,
but not when they match. Instead we should probably resolve npm specifiers
with the same name by module depth. This would allow npm specifiers with the
same name close... | 0 |
Jonathan recently created the code and layout for the new certificates.
* going through the "claim your ____ certificate" challenges grants camper the appropriate certificate
* certificates have proper verbiage and all 9 have a different color that corresponds to one of the colors in our design style guide
* 3... |
Challenge http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-
with-unshift has an issue. Please describe how to reproduce it, and include
links to screenshots if possible.
The shift value on the "ourArray" sample is removing the last value of the
array (["cat"]) instead of the first value ("Stimpson")... | 0 |
Hi,
ClientIP affinity seems to have some issue on Container Engine. Once you scale
down a replicas set linked to a service with session affinity and GCE external
load balancer, sticky session doesn't work anymore.
I tried to create a new cluster to be sure it wasn't any configuration related
issue.
Steps to repro... |
It seems like the sessionAffinity stops working if the rc is deleted and
created again after the service was created. (Cluster with two machines on
GCE)
Steps to reproduce:
* 1. Used following files:
ServerName.yaml
apiVersion: v1
kind: ReplicationController
metadata:
name: serve... | 1 |
use slot but Has been an error
<!--touchRipple-->
<div @mousedown="handleMouseDown" @mouseup="end()" @mouseleave="end()" @touchstart="handleTouchStart" @touchend="end()" @touchcancel="end()">
<div :style="style">
<circle-ripple :key="ripple.key" v-for="ripple in ripples"></circ... |
### Version
2.6.11
### Reproduction link
https://stackblitz.com/edit/vuejs-template-issue
### Steps to reproduce
Using the minimal reproduction link:
1. Visit the minimal reproduction link
2. Inspect the document under both "Template Content" headers.
* Notice that under the first header the template t... | 0 |
I tried to upgrade my cluster through hack/dev-build-and-push.sh, and failed
due to endless error messages:
hack/../cluster/../cluster/../cluster/gce/../../cluster/common.sh: line 283:
KUBE_TAR_URL: unbound variable
Failure trying to curl release .sha1
hack/../cluster/../cluster/../cluster/gce/../../cluster/comm... |
I suspect we're going through an if/else clause where KUBE_TAR_URL isn't
defined, and not defaulting it, though the function header seems to indicate
it should be set in the callee.
/usr/local/google/home/beeps/goproj/src/k8s.io/kubernetes/hack/e2e-internal/../../cluster/../cluster/../cluster/gce/../..... | 1 |
I also run into this error:
sfu-db/dataprep#231
/miniconda3/lib/python3.6/site-packages/pandas/core/common.py", line 164, in cast_scalar_indexer
if lib.is_float(val) and val.is_integer():
AttributeError: 'numpy.float32' object has no attribute 'is_integer'
with dtype=numpy.double, th... |
When assigning arrays inside structured arrays without a left sided `[:]`,
only the first element gets actually assigned. This is shown in the following
code snippet, where a structured array is initialized with zeros, and then
filled by assignment of an array, and the assignment of a structured array.
The assignment... | 0 |
Here's an example folder structure (as silly as it may be)
pages/
- subpage/
- index.js
- subpage.js
If I have a `<Link/>` point to `/subpage/` the client will render the
component from `subpage.js`, but when I refresh the page, I get the
`subpage/index.js` file rendered.
At... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I'm facing a really werid error in express that I have no idea what the reason
is. I'm using `compression` package with a custom server
const express = require('express')
const next = ... | 0 |
### Describe the bug
sklearn.inspection.PartialDependenceDisplay fails with nulls in the dimension
of the partial dependence
### Steps/Code to Reproduce
#This is a slimmed down version of the example in the sklear documentation
#https://scikit-learn.org/stable/auto_examples/inspection/plot_pa... |
### Describe the bug
Since version 1.2, the partial dependence plot can deal with categorical
features - fantastic! We encountered a small but annoying issue when there are
missing values in the categoricals:
* Missing values in numeric features are handled, but not shown (okay)
* Missing values in categoricals... | 1 |
Hello,
Following your documentation
I made a fresh install and the test are failing even before doing any
modification to the repository
React version:
The one on master branch
commit: `a731a51`
Ubuntu LTS
Node v14.16.1
## Steps To Reproduce
1. git clone https://github.com/facebook/react.git
2. yarn i... |
### Which website or app were you using when the bug happened?
Please provide a link to the URL of the website (if it is public), a
CodeSandbox (https://codesandbox.io/s/new) example that reproduces the bug, or
a project on GitHub that we can checkout and run locally.
### What were you doing on the website or app w... | 0 |
**Feature summary**
I often feel the need to execute the code right after I see the example or
tutorials. Having the examples hosted on google colab would certainly help in
quickly running the code as well as it will allow beginners to run the code
right on the browser if they have no prior experience with python n... |
# Problem
Matplotlib supports give or take around 60 unique chart types, but there's no
distinct listing of these charts. The closest is a listing of all methods on
Axes (https://matplotlib.org/api/axes_api.html?highlight=axes#basic) which
intermixes other functionality. It's even harder to find the distinct chart
t... | 0 |
#### Manipulating Complex Objects
https://www.freecodecamp.com/challenges/manipulating-complex-objects#
#### Issue Description
The link to json.org is broken.
https://json.org/ does not work.
Should be http://www.json.org/.
|
#### Challenge Name
https://www.freecodecamp.com/challenges/manipulating-complex-objects
#### Issue Description
When you click on the link labeled "JavaScript Object Notation", you get a
ERR_SSL_PROTOCOL_ERROR.
In the source code, we have: "href='//json.org/'"
By default, the browser replaces "//" by "https://... | 1 |
**Describe the bug**
Our team has used Three.JS to create a Virtual Tour content type that allows
content authors to create interactions which enables the user to navigate
around a scene, click on interactions and change to different scenes.
We've recently updated our this content type to work with labels which ar... |
##### Description of the problem
When combining a webgl renderer with a cssrenderer (by punching holes through
the webgl renderer to show the css renderer below, there is sometimes a
missmatch between the renderers. It looks as if the cssRenderer has a slight
offset compared to the webglrenderer. Interestingly enoug... | 1 |
I am facing similar issue but for GRU. I am using tensorflow 1.1.0 and I tried
dumping the model in different ways:
a) saver = tf.train.Saver(tf.global_variables())
model_exporter = exporter.Exporter(saver)
# Restore variables from training checkpoint
# TODO: This restores the most rece... |
Please go to Stack Overflow for help and support:
https://stackoverflow.com/questions/tagged/tensorflow
If you open a GitHub issue, here is our policy:
1. It must be a bug, a feature request, or a significant problem with documentation (for small docs fixes please send a PR instead).
2. The form below must be ... | 0 |
i have a nvidia 1070 gpu/8G memory, i have a pytorch model for inference, and
i directly run it the gpu memory cost as follow

then i first load the model and then use follow code to do jit trace, and use
... |
## Issue description
I got an error when trying to build pytorch from source. It looks like the
error is related to nccl. The system info and complete log is provided below.
## System Info
Collecting environment information...
PyTorch version: N/A
Is debug build: N/A
CUDA used to build PyTorch: N/A
OS: Red ... | 0 |
my demo is like it:
`<div class="cart" *ngFor="let mealInfo of mealInfoList;let mealInfoIndex =
index" *ngIf="mealInfo?.selectedCount > 0">`
the *ngIf desn't work.
`<div *ngFor="let a of [11,12,13]" *ngIf="a == 11"></div>`
the *ngFor desn't work.
* **Angular version:** 2.0.0-rc1
|
Based on #4792, putting multiple template directives on a single element
doesn't work on Angular 2. It should throw.
However, this plunk demonstrates that it _doesn't_ throw. Plus, we see 4
instead of 3 buttons, which is rather confusing.
http://plnkr.co/edit/oK47qCG1BnQsC2Qio1ID?p=preview
| 1 |
## Bug Report
**For English only** , other languages will not accept.
Before report a bug, make sure you have:
* Searched open and closed GitHub issues.
* Read documentation: ShardingSphere Doc.
Please pay attention on issues you submitted, because we maybe need more
details.
If no response **more than 7 da... |
the profile as below:
spring:
shardingsphere:
props:
sql.show: true
query.with.cipher.comlum: true
datasource:
name: ds0
ds0:
type: org.apache.commons.dbcp.BasicDataSource
driver-class-name: com.mysql.cj.jdbc.Driver
url:
jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=utf-8&serve... | 1 |
The instructions on this challenge need to be updated. The * _arity *_
property is deprecated and not supported on any browser according to:
https://developer.mozilla.org/en-
US/docs/Web/JavaScript/Reference/Global_Objects/Function/arity
Challenge Make a Person has an issue.
User Agent is: `Mozilla/5.0 (Windows ... |
It's strange that the description for this exercise says "All functions that
take an argument have an *_arity *_of 1, and the argument will be a string.",
when it's simpler just to say something like "All functions that take
arguments, take one argument that is a string". Also I feel that the word
"arity" is an outda... | 1 |
I see this in 0.10.4. If I press `Cancel` the app exits (the don't save case).
If I press `Don't Save` the dialog closes but VSCode stays running (the cancel
case).
|
When attempting to close or change workspace containing unsaved file(s) vscode
prompts you to save them (expected) however clicking 'Don't save' results in
the same action as clicking 'Cancel'. I.e. the editor remains in the current
workspace.
Detected on 0.10.4
| 1 |
##### System information (version)
* OpenCV => 4.3.0
* Operating System / Platform => Ubuntu 20.04 LTS (64 bit)
* Interpreter => Python 3.8.2
##### Detailed description
# Python
import cv2
img = cv2.imread('./lena.jpg', 1)
cv2.imshow('image',img)
cv2.waitKey(0)
cv2... |
### Expected behaviour
imshow displays image
### Actual behaviour
when calling cv2.imshow(), I mostly get a small window with the correct name
but containing only a black screen. It does work sometimes however but it is
unpredictable. This issue was not encountered in previous versions of opencv-
contrib-python. ... | 1 |
When sending form data, values which are booleans are encoded as "True" and
"False" as opposed to "true" and "false". This is because of the
urllib.parse.urlencode function.
Perhaps it is non standard to pass a boolean as form data, but I think this is
non obvious to regular users. Maybe it should raise an exceptio... |
For a Squid configuration of:
http_port 3128
https_port 3129 cert=/usr/local/opt/squid/etc/ssl/squid.crt key=/usr/local/opt/squid/etc/ssl/squid.key
And test names where:
The 'http_port' annotation indicates whether Squid HTTP port was used.
The 'https_port' annotation indicates whether Squi... | 0 |
Repro: https://jsbin.com/gebasa/3/edit?js,output
Given:
<input
disabled={true}
type="checkbox"
checked={trueOrFalse}
onChange={alert}
/>
On at least IE11 a double click on checkbox causes onChange to be called. If
it's just adding an if statement, normalizing this wou... |
Hi. I have a simple component like this:
var MyImage = React.createClass({
render: function() {
return <img src="aaa.jpg" />;
}
});
When I debug it using React dev tools to inspect the React DOM, that's what I
see:
, this name is now applied to the
persistence unit from scanned pacakges.
In 3.1.0, the na... |
**薛伟** opened **SPR-1003** and commented
A FactoryBean which can use the powerful OGNL expression language
with OGNL support,developers can invoke method,static method,static field and
some advanced operation straightforward and easy.
the sourcecode
/*
* Created on 2005-6-2
*/
package org.snowway.spring... | 0 |
While its a neat feature, to load scripts as if they were in a web browser, in
the examples I've come across, I didn't see anything similar to the javascript
'integrity' attribute to ensure the remote source code matches the loaded
remote code.
Does Deno have such a feature? If so, disregard the rest - if not, my qu... |
I don't know if this already came up, but if security is a major concern and
referencing modules via http(s) should be possible, then maybe there should be
a way to use subresource integrity to ensure that the downloaded module isn't
tampered with.
It could be part of the hash, like
import { test } fr... | 1 |
github\tensorflow\tensorflow\contrib\lite\java\demo\app\src\main\java\com\example\android\tflitecamerademo\ImageClassifier.java
Error:(152, 16) The method setNumThreads(int) is undefined for the type
Interpreter
|
TF has no analogue to `np.random.choice` function that chooses random element
from tensor (optionally according to provided probabilities). It's especially
useful in RL problems when you use epsilon-greedy exploration strategy.
### What related GitHub issues or StackOverflow threads have you found by
searching the w... | 0 |
### Describe the bug
Looks like new version is faling in
`test/ext/mypy/test_mypy_plugin_py3k.py::MypyPluginTest::test_files[plain-
keyfunc_dict.py]` unit on testing using pytest.
### To Reproduce
I'm packaging your module as an rpm package so I'm using the typical PEP517 based build, install and tes... |
**Migrated issue, originally created by Anonymous**
If a trigger in SQLite raises ROLLBACK, the exception that is propogated to
the application is always "OperationalError: SQL logic error or missing
database". Here is an example that illustrates the problem (I have attached
this file):
from sqlalchem... | 0 |
I found an example where webpack struggles to avoid dependency duplication.
See below, where `c.js` is the entry point.
// c.js
function getMeAModule(moduleName) {
if (moduleName === 'a') {
require.ensure(['a'], function (require) {
var a = require('a');
a();
... |
I'm having troubles with nested split points and common chunk plugin. This is
the module layout in a minimal example.
## MODULES:
`a`,`b`,`c`,`d`,`e`: Leaf modules. You can see them as unrelated pieces of
library code.
`common`: Common module. It just contains the explicit requires of what i want
to be in a common... | 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: xxx
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this issue
I hav... |
* 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.6.2
* Operating System version: win10
* Java version: 1.8
### Steps to reproduce this issue
... | 0 |
works only if i click it twice. e.g.
* Open Folder "Desktop"... nothing happens
* Open Folder "Desktop" a second time... voila it appears
is this normal? and that is no exception!! it happens everytime!!
|
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 |
Please answer these questions before submitting your issue. Thanks!
I believe goimports does not automatically include package unsafe even if
referenced in the source, which is fine, but when package unsafe is imported
it can confuse goimports and produces syntactically correct, but unexpected
output, such as:
... |
with imports like:
import "bytes"
import "encoding/binary"
and code that adds a dependency on another package, like bufio:
bufio.NewReader(os.Stdin)
goimports will rewrite the imports to look like:
import (
"bufio"
"bytes"
)
import "... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
https://github.com/mui-org/material-
ui/blob/bfbf4ed7f765ebf6760b22a598ad6e4eb9f6f244/src/Input/Input.js#L50
Easing function that used in this line does not exists in theme definition.
`easeInOut` will used instead as defau... |
When a ListItem has its disabled prop set to true, the onClick function still
fires.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Expect the ListItem to be.. well.. disabled? ie. not fire an onClick.
## Current Behavior
Regardless of the disable... | 0 |
ERROR: type should be string, got " \n \nhttps://github.com/facebook/react/blob/master/src/browser/ui/ReactMount.js#L81\n\nIt seems this is mainly the cause of invalid nesting of tags, `<a><div\n/></a>`, `<table><tr></tr></table>`, etc. I know there are some issues/PRs\nregarding this already but AFAIK they're trying to solve/detect it, it seems\nreasonable to just improve this (very non-informative) error message in the\nmeantime.\n\nPS. I've probably seen 2-3 people get bitten by it myself now that I think\nabout it.\n\n" |
React version: 18.0.0
## Steps To Reproduce
`componentWillUnmount` is called twice upon toggling the rendered component.
Even when **StrictMode** is disabled
Link to code example: https://codesandbox.io/s/componentwillunmount-called-
twice-hrpzy5?file=/src/App.js
## The current behavior
After upgrading to react ... | 0 |
by **qeed.quan** :
For some reason I am getting a build error using cgo with GLEW, I am running linux 64
bit version and
go version devel +811f060da18a Thu Mar 28 15:04:25 2013 -0700 linux/amd64
with GCC 4.8
I get build errors such as these when trying to install GLEW
... |
by **vincent.risi** :
This is not a bug but if the := already allows for some of the variable to
be old, why not allow for them all to be old?
for instance I would like to have
a, b := Called(x)
...
a, b := Called(a*b)
as it does not really affect the usab... | 0 |
_Original tickethttp://projects.scipy.org/scipy/ticket/827 on 2008-12-28 by
@nilswagner01, assigned to unknown._
scipy.test() and python2.6
>>> scipy.__version__
'0.7.0.dev5294'
>>> numpy.__version__
'1.3.0.dev6221'
============================================... |
_Original tickethttp://projects.scipy.org/scipy/ticket/828 on 2008-12-28 by
@nilswagner01, assigned to unknown._
>>> scipy.__version__
'0.7.0.dev5294'
>>> numpy.__version__
'1.3.0.dev6221'
======================================================================
... | 1 |
### System information
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** :
Ubuntu 16.04 (ppc64le)
* **TensorFlow installed from (source or binary)** :
Installed from source (v1.0.1)
* **TensorFlow version (use command below)** :
('v1.0.1-0-ge895d5c-dirty', '1.0.1')
* **Bazel version (if ... |
### System Information
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** :
Ubuntu 16.04 (ppc64le)
* **TensorFlow installed from (source or binary):**
Installed from source (v1.0.1)
* **TensorFlow version (use command below):**
('v1.0.1-0-ge895d5c-dirty', '1.0.1')
* **Bazel version (if co... | 1 |
I'm looking to integrate Playwright into CI, and was wondering if it was a
known use-case and how to solve it within Playwright. I've seen some issues
relying on chokidar, but would you recommend this?
|
## Description
As a user, I want to run my component tests only on changed files, as it would
be a use case in a git hook (`pre-push`)
## Alternatives
* https://jestjs.io/docs/cli#--onlychanged
* https://vitest.dev/guide/cli.html#changed
## Preferred Solution
Enhancement of the cli commands, e.g.
... | 1 |
I found that numpy.sqrt has a strange type mapping:
>>> numpy.sqrt.types
['f->f', 'd->d', 'e->e', 'f->f', 'd->d', 'g->g', 'F->F', 'D->D', 'G->G', 'O->O']
It causes sqrt to upcast float16 to float32. It is also strange that 'f' and
'd' appear twice. Is this definition/behavior intended?
Note... |
Sorry, if this is a duplicate but I could not find a matching issue..
I am reporting an issue that was introduced _after_ version 1.8.2 and is
present in all of 1.9.1, 1.9.2rc1 and master (`a4cdc5b`). I am on Python
2.7.9.
Here's a snippet to illustrate the issue:
import numpy as np
a = np.a... | 0 |
Noticed this flake:
http://build.golang.org/log/de2ea0b431bc216003fd8762e62bbd46b3511fca
...
ok math/rand 5.305s
ok mime 1.365s
ok mime/multipart 2.470s
ok mime/quotedprintable 3.075s
--- FAIL: TestDialTimeout (0.00s)
timeout_test.go:82: #3: di... |
I've been running run.bash in a loop on my linux/amd64 workstation for the
past few days and out of ~500 runs, I've had three failures of TestDialTimeout
with:
--- FAIL: TestDialTimeout (0.00s)
timeout_test.go:82: #3: dial tcp 127.0.0.1:0: getsockopt: connection refused
FAIL
FAIL ... | 1 |
Challenge Target the same element with multiple jQuery Selectors has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... |
Challenge tests for jQuery fail to run if syntax errors are present in a
campers code.
Examples:
#9289
#9082
#9470
#9672
#9698
What is stopping the tests running? Can we fix it?
Is there a way to lint jQuery in codemirror so campers get visual clues to
syntax errors, like in the JS challenges?
-Or-
Whe... | 1 |
# Environment
Windows build number: [Version 10.0.18362.657]
PowerToys version: 0.18.0
PowerToy module for which you are reporting the bug (if applicable): FancyZones
# Steps to reproduce
Three monitor setup, from Left to Right:
* Monitor 1: Browser with active Project + Team Explorer... |
This applies to 0.14.1 and also to the current master.
Repro steps:
* have "Move newly created windows to their last known zone" ON.
* open Outlook and snap it to a zone.
* open an email message or create a new email message.
Result:
* the email message window is snapped to the zone where Outlook is snapp... | 1 |
* OpenCV => :net.forward() error:
* Operating System / Platform => :android imx8:
Hi,I use DNN with opencl to detect object ,tiny-yolov2, but when run
net.forward() ,it's ANR ,Here is the log:
2019-05-23 23:38:51.987 15259-15259/? A/DEBUG: pid: 14020, tid: 15200, name:
Thread-359 >>> com.pateonavi.naviapp <<< ... |
编译opencv3.4.3版本带OPENCL的,测试能够检测到opencl,但是当运行DNN模块net.forword(output)函数就会导致系统奔溃,用官网的Android
SDK版本的CPU版本是正常的
芯片是imx8Q ,opencl 1.2.
请问是编译问题还是版本问题?
| 1 |
It would be nice if the examples pages had a jsfiddle link so that it would be
easier to generate use cases for bug reporting by users.
|
After compiling, `#grid > .fluid(@fluidGridColumnWidth,
@fluidGridGutterWidth);` produces duplicate CSS rules. The duplicates are
directly after the first rule set. Example:
.row-fluid [class*="span"] {
/* code*/
}
.row-fluid [class*="span"]:first-child {
mar... | 0 |
* VSCode Version: 1.0.0
* OS Version: Mac OS 10.11.4
## Steps to Reproduce
1. Create the following `package.json` file and open it in Code: `{ "private": true }`
2. View the linter warnings (hover over the green squiggles)
## Expected
No warnings, because `npm install` no longer warns about missing names ... |
When a `package.json` has `private: true`, my understanding is that it
shouldn't require a `name` or a `version`.
| 1 |
I have two indexes, the first one called **areas** is an index containing of
multiple polygons, and second one is an index containing of multiple
**points** indicating the document's lat/lon on earth, the index is called
**stores**.
The problem is that I want to attach areas(polygons) that contain the
**store's poin... |
Hi !
I have the same issue that the one exposed here : #12819 (before closing due
to the lack of feedback asked by @clintongormley to the author @apanimesh061)
I discussed it here on stackoverflow because I thought I made a mistake in my
parameters
When using a shingle token filter after removal of stopwords why... | 0 |
* [ x] I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
The radio button and checkbox should not blink by default. Once selected then they should have there selected animation. Right now as soon as I render the Checkbox & Radio button this ... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I'm trying to override the element of Expansion Panel that contains these
classes:
MuiCollapse-container-44 MuiCollapse-entered-45
I.e. seem to be using the Collapse component?
... | 0 |
When adding int `1` to a numpy {u}int array, usually a type conversion to
int64 happens. This is normal. If, however, the type is `uint64`, the array
gets converted to `float64`. I had not expected that. Perhaps it's correct
though. Opinions?
MWE:
import numpy
a = numpy.array(0, dtype=int)
... |
Hi,
This is my first issue so I apologize if I have gotten something obviously
wrong. Essentially, it appears that when using the polyfit function from
numpy.polynomial.polynomial, the coefficients are returned with lowest order
first; this is the opposite of what happens when the function numpy.polyfit is
called. I... | 0 |
Hi
I am having problem using proxy with Scrapy, I have private proxy with HTTPS
supported.
I tried with simplest spider without proxy with the following extensions:
EXTENSIONS = {
'scrapy.extensions.telnet.TelnetConsole': None,
}
SPIDER_MIDDLEWARES = {
'scrapy_splash.SplashDeduplicateArgsMiddleware': 100,... |
I'm unable to scrape https sites through https supported proxies. I've tried
with proxymesh as well as other proxy services. I can scrape most of this
sites without proxies or using Tor.
Curl seems to work fine too:
`curl -x https://xx.xx.xx.xx:xx --proxy-user user:pass -L
https://www.base.net:443`
Retrieves the... | 1 |
Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | yes
Symfony version | 3.3.15
Hello, this is a feature request, not a bug report (I guess). To dynamically
load form contents, like a select list for an entity or choice type, we have
the posibility to use form events and... | Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | yes
Symfony version | 3.3
I'm sure that the Security component is great ... but most Symfony newcomers
think that it's an abhorrent monstrosity. Could we please discuss about
solutions to reduce its perceived complexity?... | 0 |
I'm attempting to create windows nightlies, inspired by @ihnorton's recent
windows builds, and I'm running into the following error during the second
bootstrap phase with both 32 and 64-bit builds:
...
meta.jl
i18n.jl
help.jl
sparse.jl
sparse/abstractsparse.jl
matrixmarket.jl
... |
This used to work on Julia 0.6.2, but on master `Missing` is lost:
julia> f(::Type{T}) where {T<:Union{Integer, Missing}} = T
f (generic function with 1 method)
julia> f(Union{Missing, Int})
Int64
| 0 |
# Environment
Windows build number: Windows 10 Insider Preview Build 20152.1000
PowerToys version: v0.18.2
# Steps to reproduce
Opened the PowerToys app and two Window appeared with different designs.
# Screenshot

PowerToys version: 0.18.2
PowerToy module for which you are reporting the bug (if applicable): RUN
# Steps to reproduce
1. Have Windows 10 v 2004.
2. Look in Settings...Run.
# Expected behavior
... | 1 |
**Nick Williams** opened **SPR-7619** and commented
MappingJacksonJsonView is a very simple implementation of a JSON-rendering
view. There are many cases where one might need to extend
MappingJacksonJsonView to accomplish more complicated tasks. It would be nice
if the "objectMapper," "encoding," "prefixJson" and "... |
**Andrei Stefan** opened **SPR-3556** and commented
I made two tests:
* one with AspectJ support;
* one with Spring's AspectJ support.
The tests involve two interfaces: Base<T> and DerivedInterface<T> extends
Base<T>.
A Before pointcut matching all methods from Base and DerivedInterface is
defined: `@Before... | 0 |
#### Describe the bug
`AxiosHeaders`, `AxiosError`, `CanceledError` and `Axios` are "exported" in
the type definitions `index.d.ts`, but not exported in the module.
#### To Reproduce
const { AxiosHeaders } = require('axios'); // Allowed by Typescript
const headers = new AxiosHeaders({ 'name... |
Hello,
When I tried to update the axios to version 1.0.0, I get this error. It works
fine with 0.27.2

In the bootstrap.js, I used it with:
window.axios = require('axios');
window.... | 1 |
error:
Traceback (most recent call last):
File "D:\Python Program\Pworkspace\test.py", line 34, in
pd.read_csv(path)
File "C:\Users\wuqing\AppData\Local\Programs\Python\Python36\lib\site-
packages\pandas\io\parsers.py", line 655, in parser_f
return _read(filepath_or_buffer, kwds)
File "C:\Users\wuqing\App... |
This is to discuss pushing the `Categorical.categories` and
`Categorical.ordered` information into the extension type `CategoricalDtype`.
pd.CategoricalDtype(categories, ordered=False)
Note that there is no `values` argument. This is a type constructor, that
isn't attached to any specific `Categor... | 0 |
## Describe the bug
`yarn dev` works fine, but `yarn build && yarn start` errors out
## To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
1. clone repo, `cd examples/with-styletron`, `yarn install`
2. `yarn build`
3. `yarn start`
4. Load http://localhost:3000
5.... |
# Bug report
## Describe the bug
In Next.js 8.1.0 React Context.Consumer receives value of undefined
Only on server side
UPDATE: Only in production, not in `npm run dev`
## To Reproduce
Reproduce repository - link
const MyContext = React.createContext();
function Home() {
re... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.