text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 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
Why this method `org.apache.dubbo.qos.... |
* 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.2
* Operating System version: Linux 3.10.0-957.5.1.el7.x86_64
* Java version: 1.8
### Steps ... | 0 |
# Bug report
**What is the current behavior?**
I've a react project in which I use the monaco-editor-webpack-plugin
I want to bundle all dependencies to `monaco-editor` to a separate chunk.
chunkFilename: isEnvProduction
? "static/js/[name].[contenthash:8].chunk.js"
: isEnvD... |
I'm trying to bundle all my monaco-editor dependencies to a separate chunk
inside my webpack config.
Right now I'm doing is by using the cacheGroups feature of webpack:
splitChunks: {
chunks: "all",
maxInitialRequests: Infinity,
minSize: 0,
cacheGroups: ... | 1 |
I was tracking down an issue in my Emacs-based Julia REPL, which uses Emacs's
`ansi-term`. The issue was that `Base.Terminals.cmove_col` emits `\E[$(n)G`,
which `ansi-term` did not know how to deal with. Apparently this concrete
issue will be fixed with the next Emacs release, but strictly speaking `ansi-
term` was b... |
I'm using `llvmcall` to hook-up certain intrinsics to Julia, but ran into the
issue that intrinsics need to be declared, and this is currently not supported
(for example, see this thread). I have two possible solutions for this
problem, but I'd like some feedback before cleaning it up and sending a PR.
My first idea... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.3
* Operating System version: macOS
* Java version: 11
### Steps to reproduce this issue
... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
Our common logger is a logging facade just like SLF4J.
We can enhance it to support parametrized logging
We have many places like this... | 0 |
##### Description of the problem
I'm trying to render only the edges of the geometry below but I am getting
unwanted edges specifically the ones in violet line. The green lines represent
the ones generated by an EdgesGeometry with threshold 1 and the faded grey
lines are generated by a WireframeGeometry for examinat... |
##### Description of the problem
The EdgesGeometry takes all the cords shared between faces and if the faces
are not coplanar (or their "dot" is less than the thresholdDot) then it shows
them as edges.
The problem is that in some cases a cord is the sum of two other cords in two
different faces. In this case the co... | 1 |
I like the design of the new `Deno.serveHttp` API. I think a similar design
would work well for WebSockets, too.
Example API:
async function acceptWebSocket(
conn: Deno.Conn,
httpConn: Deno.RequestEvent
): Promise<WebSocket> {}
Example usage:
for await (const conn of De... |
Probably looks like this:
let { respondWith, request } = await httpConn.nextRequest();
let { ws, response } = Deno.serveWebsocket(request);
respondWith(response);
// use web standard ws
Should use tungstenite
Probably this should proceed #10210
| 1 |
#### Problem description
I would like to subset the data frame with a indexer. When using MultiIndex,
the results are not following requested order.
#### Code Sample, a copy-pastable example if possible
This works as expected when index is a simple `Index`: the returned entries
are ordered as requested:
... |
In [40]: cols = pd.MultiIndex.from_product([['A', 'B', 'C'],[1,2]])
In [41]: df = pd.DataFrame(np.random.randn(5,6), columns=cols)
In [42]: df.loc[:, ['B', 'A']]
Out[42]:
A B
1 2 1 2
0 -0.990868 1.577803 1.0... | 1 |
julia> corrupt_stacktrace() = error("destroy stacktrace")
julia> f() = error("expected")
f (generic function with 1 method)
julia> try
f()
finally
try; corrupt_stacktrace(); end
end
ERROR:
Stacktrace:
[1] error at ./error.j... |
function foo()
try
error("error in foo")
catch e
end
end
function bar()
try
error("error in bar")
catch e
foo()
rethrow(e)
end
end
bar()
produces the misleading
ERROR:... | 1 |
##### Issue Type:
Feature Request
##### Ansible Version:
ansible 1.6.5
##### Environment:
My situation is that I have a Mac OS X 10.9 machine which I am running Ansible
from. I want to manage Ubuntu 12.04 hosts.
##### Summary:
Forgive me if this is a duplicate (I find it hard to imagine I'm the first to
encoun... |
##### Issue Type:
Bug Report
##### Ansible Version:
ansible 1.6.1
##### Environment:
Mac OSX
##### Summary:
If we have a hosts file:
[service1]
www.host1.com
[service2]
www.host1.com
and we have these group_vars:
group_vars/service1:
database_host: "... | 0 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.194.0
**System** : Microsoft Windows 8.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15... |
Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:351:15)
at Function.Module._load (module.js:293:25)
at Module.require (module.js:380:17)
at require (module.js:399:17)
at BrowserWindow. (C:\Us... | 1 |
Hi,
In the commit `7e87eb1`, which is fixing the request format when duplicating a
`Request` object, you forcefully set the request format if the parent is
already `null`.
The thing is, when forwarding in a controller to another controller (or maybe
something, I haven't tested for another case yet), you may need to... |
After my first typo since updating dependencies, I noticed fatal errors were
displayed in a symfony layout, unfortunately I'm getting displaying issues.

On a static client, Next.js invokes this method before the page component is
rendered in order to... |
## Summary
Allow Next.js to become fully hybrid by providing methods to do both static
generation and server-side rendering on a per-page basis.
* Two new per-page data fetching methods
* `getStaticProps` \- Opt-in to static generation (SSG) at `next build` time.
* `getServerSideProps` \- Opt-in to serve... | 1 |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for a feature request that matches the one I want to file, without success.
### Electron Version
11.4.4
### What opera... |
The function to detect whether the current window is maximized is invalid
mainWindow = new BrowserWindow({
height: 670,
useContentSize: true,
width: 1022,
minWidth: 1022,
frame: false,
resizable: false,
icon: path.resol... | 0 |
**Migrated issue, originally created by David Lord (@davidism)**
`as_declarative` has been removed from the top level module between 0.9.8 and
0.9.9. This no longer works:
from sqlalchemy.ext.declarative import as_declarative
Instead, this is required:
from sqlalchemy.ext.declara... |
**Migrated issue, originally created by Eben Freeman (@emfree)**
Hi,
Looks like `sqlalchemy.ext.declarative.__init__.py` no longer imports
`as_declarative` in 0.9.9. Not a major problem for us, but seems likely to be
a typo in the release, rather than an intentional change?
| 1 |
**Keith Donald** opened **SPR-7973** and commented
I found the following odd with `@ImportResource` usage:
1. The `@ImportResource` ResourceLoader does not appear to be the same ResourceLoader as the ApplicationContext. I am using a AnnotationConfigWebApplicationContext, and I got classpath-relative resources by... |
**Chris Beams** opened **SPR-6310** and commented
Much like Spring's TestContext framework and its `@ContextConfiguration`
annotation, processing `@Configuration` classes should support relative paths
and loading resources by convention when using `@ImportXml`:
1. Relative paths:
package com.biz.a... | 1 |
Normally the columns in a row should float left in a row. When the row becomes
to small for wrapping the columns, the columns should stack below and float
again. Why is my last column not stacking in the small screen size (sm).
Instead it floats also to the left on the first row of columns and dissapears
behind the o... |
The probleme occurs when viewing this frgment of page on a small screen : the
"heading 1.1" and "heading 1.2" blocks are not displayed.
I am using Bootstrap 3.0.0, chrome 29.0.1547.57 on Linux.
In this example, i am not using any CSS or Javascript files except
bootstrap.min.css, jquery-1.10.2.min.js and bootstrap.... | 1 |
If you go to preferences, open the Install page, enter something into the
search form, then a list of packages will show up. Their titles will be styled
as links, but clicking on the titles of uninstalled packages does nothing.
(I'd expect it to go to a page about that package, or at least open the
package's page on ... |
_From@gfarrell on January 9, 2015 12:14_
When trying to find out more about a package, in the _Install_ view of the
_Settings_ page in Atom `0.169.0`, clicking the title does nothing, but
clicking the author opens the author page in a browser.
_Copied from original issue:atom/atom#4947_
| 1 |
Greetings and congrats again for this amazingly well documented library, I'm
happy Twitter made me discover this !
So I decided to dive a little bit into it, and I was in particular interested
in the Starlette DatabaseMiddleware.
I then cloned the related test in Starlette and reworked it using FastAPI
here:
https:... |
### First check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... | 0 |
Error while compiling rust-windowing/glutin@`7154ea5` on OS X Yosemite:
$ RUST_BACKTRACE=1 cargo build --verbose
[...dependency updates...]
Compiling glutin v0.0.6 (file:///path/to/glutin)
[...various warnings...]
/Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/... |
ββmindcat@mindcat-linux-pc ~/workspace/nekoneko βΉmaster*βΊ
β°ββ€ RUST_BACKTRACE=1 RUST_LOG=nekoneko cargo build
Compiling env_logger v0.2.2 (https://github.com/rust-lang/log#e78b7368)
/home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libstd/sync/mutex.rs:177:37: 18... | 1 |
## Question
version : ShardingSphere-JDBC 5.1.0
According to the logic of ShardingSphere, the query condition has no sharding
field and the routing engine will use the Cartesian product for it.
Now we have the following SQL:
SQL1: select a.id ,a.time,b.id from photo a left join alarm_photo b on
a.alarm_id = b.i... |
## Bug Report
### Which version of ShardingSphere did you use?
sharding scaling 5.0.0 RC SNAPSHOT + sharding proxy 4.1.0
### Reason analyze (If you can)
seems that resource not enough
### Steps to reproduce the behavior, such as: SQL to execute, sharding rule
configuration, when exception occur etc.
CPU INFO : ... | 0 |
While trying to play a large sized gif (11mb) on Android 6 it plays very
slowly, even if the gif is inside the app and not fetched from the network.
Smaller gifs play well, so I assume this is related to memory limit, is there
anything that can be done to work around this?
I already tried the override down to 50x5... |
Here is a screen capture of two gifs playing w/ Glide 3.7:

Here is a screen capture of the same two gifs playing w/ Glide 4.2:

[ 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**
When executing "webpack -p" agai... |
**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**
**Minified** bundle breaks, but **... | 1 |
**Apache Airflow version** :
2.0.0
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
N/A
**Environment** :
virtualenv
* **Cloud provider or hardware configuration** : N/A - Localhost:8080
* **OS** (e.g. from /etc/os-release): MacOS Cataline 10.15.7
* **Kernel** (e.g. `uname ... |
### Apache Airflow version
2.3.3 (latest released)
### What happened
In 2.3.3
If I use https://airflow.apache.org/docs/apache-
airflow/stable/plugins.html#plugins-as-python-packages feature, then I see
these Error:
short:
`ValueError: The name 'airs' is already registered for this blueprint. Use
'name=' to pro... | 0 |
This doesn't seem right:
julia> [1][begin:end]
1-element Vector{Int64}:
1
julia> @less [1][begin:end]
ERROR: UndefVarError: begin not defined
Stacktrace:
[1] top-level scope
@ REPL[16]:1
Julia 1.6.1
|
This would be heavily breaking, so definitely not a 1.x thing, but it has come
up (I can't recall where but perhaps @JeffBezanson can link) that comparing
unrelated objects with `==` can hide bugs in situations where it doesn't make
sense to compare two objects. In static languages, this will typically be a
type erro... | 0 |
We've had quite a few issues crop up about how to define types of outputs
given inputs. My view is that this is revealing limitations in the promotion
system. A proposal to deal with this might be to define arithmetic on types.
For example, here would be some rules:
Int*Int == Int
Int+Int == Int
... |
3^(-5) gives a Float64 of value 0.004115226337448558
while
@code_llvm ^(3, -5) emits the following llvm code
; @ intfuncs.jl:221 within `^'
define i64 @"julia_^_11097"(i64, i64) {
top:
%2 = call i64 @julia_power_by_squaring_990(i64 %0, i64 %1)
ret i64 %2
}
which indicat... | 0 |
I created a custom JSON encoder class extended from flask.json.JSONEncoder but
it is not called when calling flask.jsonify. Additionally, I removed my custom
JSON encoder and confirmed that flask.json.JSONEncoder isn't called either via
a break statement in Pycharm.
from flask import Flask
from fla... |
ECMAscript 5 changed behavior of Array literals. That part of the
documentation is outdated by now. We should check what browsers are affected
by this and update the docs accordingly.
| 1 |
### Bug report
**Bug summary**
TypeError for internal matplotlib code when constructing a figure with a
specified figsize
**Code for reproduction**
# Paste your code here
ipython --pylab
>>> figure(figsize=(11,5))
**Actual outcome**
-------------------------------------------... |
### Bug report
**Bug summary**
matplotlib 2.1.0 from ipython with backend macosx ->
need _BackendMac, got FigureManagerMac
**Code for reproduction**
# Paste your code here
#
#
import sys
import matplotlib as mpl
import matplotlib.pyplot as pl
print "matplotlib.__versio... | 1 |
# Environment
Windows build number: Win32NT 10.0.18362.0
Windows Terminal version (if applicable): 0.5.2762.0
# Steps to reproduce
echo -e '\e[4m underlined \e[33m yellow \e[39m should still be underlined \e[m'
# Expected behavior
The entire line should be underlined.
#... |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18362.356]
Windows Terminal version (if applicable): 0.5.2681.0
# Steps to reproduce
Try to select, copy and paste with the normal windows shortcuts for these operations.
# Expected behavior
I c... | 0 |
A very useful feature of Powershell terminal is being able to get all commands
that start with a particular string just writing the initial letters and
clicking Ctrl-Space... that give us a bunch of similar commands to select
from. That feature seems missing in new Windows Terminal.
Example: typing ConvertTo
![im... |
# Environment
Windows build number: 10.0.18990.1
Windows Terminal version 0.5.2681.0
Windows Snip & Sketch
# Steps to reproduce
When I open a Terminal window, and start writing some commands, some lines
doesn't show properly and are truncated. I think the problem might be my
current Wind... | 0 |
$ godep restore
can't load package: package github.com/influxdb/influxdb/client: code in directory /home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/client expects import "github.com/influxdata/influxdb/client"
godep: restore: exit status 1
can't load package: package github.com/i... |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.): No.
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
d... | 0 |
**I'm submitting a Improvement for documents**
[ ] bug report
[x] feature request
[x] improvement request
[ ] support request
**Current behavior**
For example, in HostListener doc, there is no detailed descriptions for
`eventName`.
In common that should be dom event names, but ac... |
**I'm submitting a ...** (check one with "x")
[x] bug report
[ ] feature request
[ ] support request
**Current behavior**
Generating a correct URL from a route containing an auxiliary route seems to
be impossible in some cases. For example, in my use case, the correct route
would be /T... | 0 |
If I have a form 'A' which has an embedded form 'B' that map an object, and
that object has defaults values in the constructor, with the current
implementation I lose those defaults values when displaying the 'A' form. Of
course this is bad...
Is there a way to fix this?
|
It is currently not possible to set default values for a `Collection`
prototype. The default values specified in an entity are not passed to the
prototype. However, setting the `data` option causes the prototype to have the
value set.
| 1 |
The `editor.insertSpaces` setting can autodetect if it should insert spaces or
tabs. Some people like tabs more then spaces, but it's just personal
preference.
I think in Code < 0.10 it inserted tabs when the setting was set to `auto`. In
Code >= 0.10 it changed to spaces. I'm more a tab guy, except for `json`
files... |
When `insertSpaces = auto` is set and you create a new file, pressing the tab
key will insert spaces rather than a tab character. This is a problematic
default because it means there is no easy way to actually get the first tab
into the file so the `auto` can start learning what the file's indentation
mechanism is. I... | 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:**
*
... |
### 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:**
* 8.... | 1 |
### Apache Airflow Provider(s)
google
### Versions of Apache Airflow Providers
apache-airflow-providers-google==6.3.0
### Apache Airflow version
2.2.3 (latest released)
### Operating System
Macos m1
### Deployment
Virtualenv installation
### Deployment details
_No response_
### What happened
... |
**Apache Airflow version** : v2.0.0b3
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
1.16.15
**Environment** :
* **Cloud provider or hardware configuration** : AWS
* **OS** (e.g. from /etc/os-release):
* **Kernel** (e.g. `uname -a`):
* **Install tools** : Custom Helm Chart
... | 0 |
### 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.
### Problem Description
If I am not mistake... |
In Electron 5, sandbox mode will no longer be experimental, and running with
--enable-sandbox or --enable-mixed-sandbox will be the recommended way to use
Electron. In Electron 6, --enable-mixed-sandbox will be on by default and the
`sandbox` webPreferences option will be true by default.
This is still an early-stag... | 0 |
Please:
* Check for duplicate requests.
* Describe your goal, and if possible provide a code snippet with a motivating example.
I think the documentation for the `jax.random.gamma` random variable (sampler)
could possibly be clearer. In particular, letting the user know that the
standard form is implemented and... |
Please:
* Check for duplicate issues.
* Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:
# On Ubuntu 20.04.3, conda-forge channel only
conda create -n test python=3.9 openssl=1 jax jaxlib=0.3.0
conda activate test
python -c 'import jax'
... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ansible-playbook
##### ANSIBLE VERSION
ansible 2.4.2.0
config file = /ansible/ansible.cfg
configured module search path = ['/ansible/library', '/usr/share/ansible']
ansible python module location = /usr/local/lib/python3.5/dist-... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ansible-playbook
##### ANSIBLE VERSION
ansible 2.3.0
config file = /home/β¦/ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
forks = 100, pipelining = True
##### OS / ENVIRONMENT
... | 1 |
The docs for `Pkg.dir()` say _"In particular,`Pkg.dir(pkg)` returns the path
to the package `pkg`."_ However @tkelman points out in EcoJulia/Phylo.jl#2
that this doesn't happen when `LOAD_PATH` is set. As a result there's no way
of finding the path to a file in an installed package (from outside that
package), which ... |
it works fine if the package is in .julia/v0.x, but if it is somewhere else
then it claims there is no `test/runtests.jl` even if my `LOAD_PATH` is set
such that i can `using` it. i know that the recommended dev cycle is to keep
packages in .julia, but would it make sense to make Pkg.test() work otherwise?
| 1 |
The Playwright docs encourage the use of `launch_persistent_context` in
headful mode in order to include a browser extension. I have been attempting
to do this and struggling hard. While the code works flawlessly on my laptop,
GitHub Actions using xvfb are failing.
I've filed a ticket in the downstream Python librar... |
**Context:**
* Playwright Version: [what Playwright version do you use?] Version 1.10.0-next-1616530863000
* Operating System: [e.g. Windows, Linux or Mac] WIndows 10 10.0.19043 N/A Build 19043
* Node.js version: [e.g. 12.22, 14.6] Python 3.9
* Browser: [e.g. All, Chromium, Firefox, WebKit] All
* Extra: [... | 0 |
The new Atom icon looks very blurry and JPEG-y when viewed in cases where it
would be shrunk, like in the top-left of a Windows window.

|
Status: waiting for the next release of atom shell.
The icon of the editor windows seems to be pixelated, at least on windows.
(Atom v0.165.0; Windows 8.1)

| 1 |
## π Bug
When running ctc on the GPU, torch.nn.functional.ctc_loss expects different
types for the "targets" input, depending on whether the selected backed is
cudnn or the native implementation.
However, the user does not know in advance whether the cuDNN implementation
will be used by PyTorch or not. This is ver... |
## π Bug
## To Reproduce
Steps to reproduce the behavior:
1.I i updated pytorch version and ctcοΌuse pytorch_nightly, but in my train
,nn.CTCloss() is still zero,so,i would like to ask if the version
pytorch(nightly) has been solved this problem
1.
1.
## Expected behavior
## Environment
Please copy and past... | 1 |
### First check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... |
### First check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... | 1 |
It would be great if VS Code supported the paradigm of semantic highlighting.
In short, it makes syntax highlighting more useful, by varying the colors of
the same syntax-types of different names in a given scope. This makes it
easier to catch mistakes and to see the flow of variables (since every
variable in a giv... |
_From@Wosi on October 13, 2015 14:22_
I'm looking for a way to implement an advanced source highlighting
where a language service changes the color of words in a file. The result
would look similar to the output Visual Studio creates in C# files.
The screenshot shows C# code in Visual Studio. The word "Customer"... | 1 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.169.0
**System** : Mac OS X 10.10.2
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: ENOENT, open
'/Users/non/Repositories/ohmpieng/production/config/omniauth.rb'
At /Applications/Atom.app/Contents/Resources/app... |
1. switch the node_modules package from a version to a git repository
2. npm install
**Atom Version** : 0.165.0
**System** : Mac OS X 10.10.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: ENOENT, open
'/Users/joscha/Development/mailbutler/node_modules/grunt-crx/tasks/crx.js'
At... | 1 |
When I installed tensorflow with "pip install",I meet the "A protocol message
was rejected because it was too big (more than 67108864 bytes) ",and I
uninstall protobuf with pip,then download a new protobuf,install it with
changing 256 << 20 in coded_stream.h as "Readme" said,but the same problem
occurred,it seems tha... |
I'm using tf: '2.0.0-rc1'
In the process to load image, you said
for image, label in labeled_ds.take(1):
print("Image shape: ", image.numpy().shape)
print("Label: ", label.numpy())
InvalidArgumentError: {{function_node
__inference_Dataset_map_process_path_378}} slice index -1 of dimension 0 out
of bounds.
[[... | 0 |
In this simplified example I want to explain my problem using the grid-system.
When I understand the grid system right you can add as many cols as you like
in one row and when the 12-grids are full the next col break into the next
line.
Until rc1 the following example worked well but with the release of Bootstrap
3.... |
Example:
`
.col-xs-6 .col-md-4
.col-xs-6 .col-md-4
.col-xs-6 .col-md-4
`
see: http://stackoverflow.com/questions/18428450/bootstrap-3-layout-with-
panel-display-not-correct-on-small-device/18433782
| 1 |
The SciPy documentation site does not load securely (in Google Chrome) due to
mixed content (HTTPS vs HTTP). This seems to have been resolved in the Sphinx
repo in this commit and in the SciPy Sphinx Theme repo in this commit.
However, it doesn't appear that the doc site has been updated with these
changes.
![image]... |
### Is your feature request related to a problem? Please describe.
_No response_
### Describe the solution you'd like.
I would like to be able to access the objective function value at each
iteration of the differential_evolution algorithm provided in scipy.optimize.
This is currently not available in the callback... | 0 |
This appears to be valid:
import os
os.environ["XLA_FLAGS"] = '--xla_force_host_platform_device_count=8'
import functools
import jax
import jax.numpy as jnp
import numpy as np
@functools.partial(jax.custom_vjp, nondiff_argnums=(1,))
def custom_psum(x, axis_nam... |
The `lax.custom_root` method does not work on methods that require gradient,
e.g., the Newton-Raphson method. The core of the problem seems to be overly-
aggressive application of `stop_gradient` here.
While I've included a minimal example below, this notebook does a deeper dive
into the error and demonstrates that ... | 0 |
Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | no
RFC? | no
Symfony version | 3.x
**Description:**
I am using the PropertyInfo component to read phpdoc comments.
Somewhere we got :
/**
* Array of categories IDs
* @var array|null
... | Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | no
RFC? | no
Symfony version | 2.8
PHP allows null value when using an array type hint but the PhpDocExtractor
does not consider array and collections as nullable since the
ReflectionExtractor does.
function setProp... | 1 |
es6-shim.d.ts conflicts with lib.es6.d.ts when typescript target is ES6.

|
**I'm submitting a ...** (check one with "x")
[x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... | 0 |
I want to access the used/generated babel configuration. Especially which
presets includes which plugins exactly.
PS: I get option-manager work, the ONLY problem is that plugins which presets
uses, are anonymous functions. Normally the **key** prop reference to the full
path. Plugins included by presets have a dynam... |
I'm trying to use mocha with "@babel/register" but I'm getting this error:
(function (exports, require, module, __filename, __dirname) { import "core-js/modules/es6.array.iterator";
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxE... | 0 |
### π»
* Would you like to work on a fix?
### How are you using Babel?
@babel/cli
### Input code
const fn = async () /* test */ => {
};
### Configuration file name
_No response_
### Configuration
_No response_
### Current and expected behavior
using `@babel/generator` version 7.20.0 and... |
### π»
* Would you like to work on a fix?
### How are you using Babel?
babel-loader (webpack)
### Input code
import { apiLogout } from "../api";
import { reportError } from "../libs/report_error";
export function logout() {
return reportError(async (/*dispatch*/) => {
a... | 1 |
Whenever I try to open Dialog from Drawer, the Dialog shows up for very short
time and disappears.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Dialog shows up while the Drawer slides back in the background.
## Current Behavior
After clicking an... |
Hi, just completed the process of migrating our application to material-ui-
next. Most things are working great, but the color theme system only appears
to work for some components. We have a configuration object that we run
through the createMuiTheme utility and provide it as the theme to the
MuiThemeProvider. E... | 0 |
## π Bug
Test case failed but test job passed in windows CI.
## To Reproduce
Steps to reproduce the behavior:
1. Check recent PR's ci report, pytorch_windows_vs2019_py36_cuda10.1_test1 passed but in fact there's always one test cases failed.
It's the example link
## Expected behavior
The test job of py... |
Have a look at those two for example:
https://app.circleci.com/pipelines/github/pytorch/pytorch/222634/workflows/005e1922-33bf-43e0-8e7f-d14cfae47fed/jobs/7964572
https://app.circleci.com/pipelines/github/pytorch/pytorch/222634/workflows/005e1922-33bf-43e0-8e7f-d14cfae47fed/jobs/7964565
TestAtomicOps.TestAtomicM... | 1 |
### Describe the issue:
Release notes document MD5 checksums for universal2 wheels. However, I can't
seem to find one.
Any attempt to `python3 -m pip install numpy --target foo
--platform=universal2` results in building from source (asks to add `--no-
deps`), which subsequently fails.
What would be the best way to... |
## Feature
The binary wheels for macOS on PyPI are currently for x86_64. Please also
provide a universal2 wheel (x86_64 and arm64) for use with the (currently
experimental) universal2 Python 3.9.1 installer on Python.org.
| 1 |
I came across the following situation that had some really unexpected
behavior:
let [left, top] = (function that returns [number, number]);
var reactComponent = (
<Component left={left} top={top} />
);
inside reactComponent, this.props.top was undefined...
I checked out the generated... |
Sorry for the lack of specificity of this message, but we upgraded from
`babel-core@5.3.3` / `babel-loader@5.0.0` to the latest `babel-loader@5.0.0` /
`babel-core@5.4.5` this morning and we are encountering major breaking changes
our code. Pinning the versions back to `5.0.0`/`5.3.3` has resolved them.
Do you have a... | 1 |
I think this could be a very practical solutions for whole set of issues where
aggregation needs to be done on nested documents but be able to group on its
parent document properties. It i snot the same as using reverse nested because
reverse nested changes document scope to groupp and then it will needs to be
change... |
If multiple hosts are running on a single server hostname doesn't provide an
accurate picture of the recovery process. Addition of node name, or at least
the ports would differentiate between the different running processes.
| 0 |
As @giordano and I are working on microarchitecture-specific tarballs in
BinaryBuilder, we are currently importing a modified version of `CpuId.jl`,
however if `Base` is going to be selecting artifacts based on the current CPU
type, it makes sense that something with similar capabilities to this `CpuId`
package would... |
Julia should have linear/cubic/spline interpolation functions in 1+
dimensions, along the line of Matlab's interp1 and friends.
This is a basic tool for numerical calculations, and shouldn't be too hard to
implement.
| 0 |
#### Code Sample
import pandas as pd
import numpy as np
#working data
names = ['d1', 'd2', 'd3', 'd4', 'd5']
formats = ['u1', '<f8', 'u1', 'u1', 'u1']
dtype = dict(names=names, formats=formats)
data = {'d1':[1,11], 'd2':[2,12], 'd3':[3,13], 'd4':[4,14], 'd5':[5,15]}
... |
xref #14205
The `.loc` method of `DataFrame` with different dtypes yields coerced type
**even if the resulting slice does only contain elements from one type**. This
happens only when selecting a single row.
I can guess that this might be intended because the implementation of `loc`
seems to first lookup the row _... | 1 |
Typical widget non-existence testing pattern that works:
expect(find.text('Daily budget'), findsNothing);
Trying to use this with WidgetPredicate does not work:
expect(find.byWidgetPredicate((Widget widget) =>
widget is Input && widget.value.text == '588.0'), findsNothing);
th... |
## Steps to Reproduce
## Logs
Downloading https://services.gradle.org/distributions/gradle-4.10.2-all.zip
...................................................................
...................................................................
... | 0 |
Hi,
I'm having trouble to write character ">" using keys "Alt-Gr" + ".". I think
it might be a bug.
(Using Czech keyboard if it has any affect on this)
|
Original issue: atom/atom#1625
* * *
Use https://atom.io/packages/keyboard-localization until this issue gets fixed
(should be in the Blink upstream).
| 1 |
**Chris Bonham** opened **SPR-7833** and commented
Sometimes it is necessary to strictly update the cache without retrieving the
value first, for example when pre-loading a cache. I've created a patch that
adds a boolean updateOnly flag to the `@Cacheable` annotation that is false by
default. If set to true, the un... |
**David Medinets** opened **SPR-1956** and commented
Given a bean definition like this:
<bean id="com.foo.BarRepository" class="com.foo.BarRepositoryJDO">
<constructor-arg><ref bean="javax.jdo.PersistenceManagerFactory"
/></constructor-arg>
</bean>
If the beanFactory.getBean(Bar.class) signature were supporte... | 0 |
Hi,
I test version 3.0 RC1. I build my website with this version but I have a
problem :).
The link of the navbar are disable with firefox.
Best regards,
lefandordinateur.
|
You cannot access on any left-side menu link with Firefox.
Tested with Firefox 22.0 on Mac
| 1 |
After doing
script/grunt install --installdir=/usr/local
there are no icons for the atom launcher.
The .desktop file **/usr/local/share/applications/atom.desktop** references
the icon at **/usr/local/share/atom/resources/app/resources/atom.png** but the
folder **app/resources** does not exist.
|
When installing from source by following this guide the following `.desktop`
entry is created in `/usr/local/share/applications/atom.desktop`:
[Desktop Entry]
Name=Atom
Comment=A hackable text editor for the 21st Century.
GenericName=Text Editor
Exec=/usr/local/share/atom/atom %U
Ic... | 1 |
### First Check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... |
### First Check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... | 0 |
npmBug.zip
### Current Behavior:
When `npm i --production` is called, all project files referenced in
devDependencies are deleted
### Expected Behavior:
npm doesn't delete our project files
### Steps To Reproduce:
1. Run `npm i --production` in the `main` directory of the attached zip.
2. The `dependencies`... |
### Current Behavior:
We have a local development dependency defined like this:
"devDependencies": {
"our-local-dependency": "../../lib/our-local-dependency"
}
When running `npm prune --production`, npm does not only delete the softlink
but also the directory it is pointing to.
### E... | 1 |
loader.load( this.properties.geometrySrc , this.properties.materialSrc)
The only warning i got is
THREE.MeshPhongMaterial: 'diffuse' is not a property of this material.
:
File "examples/mnist.py", line 5, in <module>
from torchvision.transforms import (
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.... |
Hi, it looks like Pillow released version 7.0.0 so I can no longer import
torchvision without getting this error: `ImportError: cannot import name
'PILLOW_VERSION' from 'PIL'`
Pinning to Pillow 6.2.1 fixes the issue.
I see that you fixed this for a future torchvision release (#1501). Do you
know when this will be r... | 1 |
Just using the existing configuration framework, but with a file format like
matplotlib uses... See how they do it here:
http://matplotlib.org/users/customizing.html.
Plus, we can document all the config options in a single file.
related #2452, #3046
|
Tested on 0.13.0, 0.13.1 and 0.14.0rc1:
from StringIO import StringIO
import pandas as pd
# this is correct
print(pd.DataFrame([[0, 1, 2], [3, 4, 5]], columns=["a", "b", "a"]))
# and this is fine as well
# (although, changing the column names to a,b,a.1)
print(pd.read_csv(S... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
Report a bug
**What is the current behavior?**
When using a number input that has a defaultValue, you cannot enter a decimal
value. When attempting to type a decimal, the cursor is moved to the beginning
of the input. This behavior is _not_ observed when... |
This appears to have been introduced in a new Chrome version, but I can't find
any reference to where.
Affected/Tested Browsers (OS X):
* Chrome 51.0.2704.106 (64-bit)
* Opera 39.0.2256.15
Unaffected Browsers:
* Safari 9.1
* Firefox 49
Backspacing in an input element with `value` or `defaultValue` set ca... | 1 |
update etcd to 3.0.6, err still exists:
Checking for swagger spec that need updating... !!! Error in
/home/zte/share/k8s-clone2/src/k8s.io/kubernetes/hack/lib/etcd.sh:35
'version=$(etcd --version | head -n 1 | cut -d " " -f 3)' exited with status
141
Call stack:
1: /home/zte/share/k8s-clone2/src/k8s.io/kuberne... | 1 | |
Hi, I built jax from source but when importing jax, I get this error:
/usr/local/lib/python3.8/dist-packages/jaxlib/cusolver.py in <module>
24 from jaxlib import cublas_kernels
25 for _name, _value in cublas_kernels.registrations().items():
---> 26 xla_client.register_cust... |
Is there any way to create a `jax.numpy.array` on a specific device, instead
of creating it on the default device then moving it via `device_put`? Also, is
there any way to change the default device programmatically? Thanks in
advance.
| 0 |
Minor, but still:
type nn = number;
class A {
[s: nn]: number; // an error here, but it shouldn't be an error
}
|
type Guid = string;
var foo: { [deviceId: Guid]: DateTime } = {};
Generates the error:
> An index signature parameter type must be 'string' or 'number'.
It would be nice to be able to type indexes using string-aliases.
| 1 |
Hi !
When the `asset` helper is used in a twig template to generate urls, it does
not take into account the `router.request_context.base_url` parameter set in
`config.yml` (or `config_*.yml`).
I've created a **sample project** (based on symfony/symfony-standard) to
illustrate this.
The project defines a default ba... |
**Symfony version(s) affected** : 4.1.1
**Description**
When running in environment `prod` with display errors off, I'm seeing in my
`/var/log/nginx/error.log` lots of `out of memory exception`. I'm having to
resort to running in dev environment to see that the error (in this instance)
is because a directory isn'... | 0 |
java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/android.kindergartens.com-2/base.apk"],nativeLibraryDirectories=[/data/app/android.aa.com-2/lib/arm, /system/fake-libs, /data/app/android.aa.com-2/base.apk!/lib/armeabi-v7a, /system/lib, /vendor/lib]]] couldn't... |
When I want to debug the application in MacOs environment, it throw such
error:
Multiple commands produce '/build/ios/Debug-
iphonesimulator/Runner.app/Frameworks/Flutter.framework
1. Target 'Runner' has copy command from '/ios/Flutter/Flutter.framework' to '/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/... | 0 |
numpy/numpy/__init__.pyi
Lines 1505 to 1506 in 4adc87d
| @property
---|---
| def __array_finalize__(self) -> None: ...
Currently, mypy does not allow users to define `__array_finalize__`, since the
super class (ndarray) does not have an argument. So the following error is
produced:
src/vec... |
@melissawm pointed out that Broadcasting and Array Broadcasting in Numpy
contain a lot of duplicate content. Array Broadcasting in Numpy is also an
orphan doc(not in any TOC) and is referenced in only one other place
(`Tutorial: Linear algebra on n-dimensional arrays`).
I think we can merge the unique parts of the o... | 0 |
TL;DR: I propose we create a simple guard around doubly-including React, which
can cause issues if different blocks work with different instances of `React`.
I understand this invariant isn't going to matter to everyone, but I've at two
points in so many weeks fixed a bug on a co-worker's project because they were
a... |
People lose hours of work debugging a simple issue: two versions of React
being loaded at the same time.
gaearon/react-hot-loader#32 (comment)
KyleAMathews/coffee-react-quickstart#10 (comment)
gaearon/react-document-title#1 (comment)
clayallsopp/react.backbone#26
Because there is no warning right away when th... | 1 |
I have been using Ansible on 12 hosts with no issues at all. For some reason,
when I tried to add the 13th host (lucky, lucky), the tool threw an error I
hadn't seen before:
FAILED => failed to resolve remote temporary directory from
$HOME/.ansible/tmp/ansible-1380135548.99-254800519176889: `mkdir... |
From @jimsmith on 2016-07-09T16:51:59Z
##### ISSUE TYPE
* Bug Report
Originally logged #16622
##### COMPONENT NAME
rds
##### ANSIBLE VERSION
ansible 2.1.0.0
##### CONFIGURATION
$ set | grep ANSIBLE
ANSIBLE_CONFIG=/home/jim.smith/.ansible/ansible.cfg
ANSIBLE_FORCE_C... | 0 |
When using allow_redirect=True, user can set a callback on each 'response'
(via the hook parameter) but not on 'request'.
This is a problem when using the redirect capability because user loose the
ability to interact with the request before it is being sent.
This would allow a user to do things such as: Log all ... |
There was a scenario where I need to intercept the request and was searching
for if there is some way can that be done, then I found the event hook but
only `response` event hook is supported.
I hope adding `request` hook can be useful, if yes I would like to implement
that.
Any pointers or suggestion appreciated.... | 1 |
##### System information (version)
* OpenCV => 3.4.2, 3.4.5 and 4.1.0
* Operating System / Platform => Windows and Linux x64
* Compiler => gcc and python bindings
##### Detailed description
There is a large difference in calculations after the first batch
normalization layer when I use a convolutional model ... |
##### System information (version)
* OpenCV => 3.2.0
* Operating System / Platform => Ubuntu 18.04
* Compiler => c++
##### Detailed description
When I create a binary image with few pixels and call `findContours`, it seems
to me that some points are skipped. Code example:
#include <opencv2/ope... | 0 |
##### System information (version)
* OpenCV => latest pull from git ... 3.1.0-1483-g73a8fa8
* Operating System / Platform => Ubuntu Linux 16.04, Kernel 4.7.5
* Compiler => ?
##### In which part do you get the Issue
the cmake bit works (I think, no errors but ... I don't know enough about it)
make
##### Det... |
##### System information (version)
* OpenCV => recent 3.4 branch
* Operating System / Platform => Win10 64bit
* Compiler => Visual Studio 2015
* CUDA => 10.0
* GPU => GTX 1060
related #9529
relaetd #5915
##### Detailed description
I confirmed some sporadic test failures in "PyrLKOpticalFlow.Mat"
I l... | 0 |
**I'm submitting a ...** (check one with "x")
[X] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... |
**I'm submitting a ...** (check one with "x")
[ X ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... | 1 |
Taking example 2 from the original issue (#5039):
projectRoot
βββ folder1
β βββ file1.ts
β βββ file2.ts
βββ generated
β βββ folder1
β βββ folder2
β βββ file3.ts (Contains: import 'folder1/file2';)
βββ tsconfig.json (with "baseUrl": ".")
When doing...
... |
In TypeScript 1.9.0-dev.20160426 I tried:
import * as Promise from 'bluebird';
async function test() {
await Promise.delay(1000);
}
test();
The compiler reports:
`error TS2529: Duplicate identifier 'Promise'. Compiler reserves name
'Promise' in top level scope of a ... | 0 |
### Apache Airflow version
2.3.0
### What happened
Here i provide steps to reproduce this.
Goal of this: to describe how to reproduce the "Failed to Adopt pod" error
condition.
The DAG->step Described Below should be of type KubernetesPodOperator
NOTE: under normal operation,
(where the MAIN_AIRFLOW_POD is ne... |
**Description**
Add dependencies with "on-build" feature of Docker build.
**Use case / motivation**
Some dependencies can be added easily using on-build feature of Docker build.
| 0 |
The current exception is mess and lots of duplicated usage.
It is necessary to refine and clear them.
|
> ## Question
>
> οΌdefault-data-source-nameοΌtable join οΌbroadcast-tableοΌ error
>
> ## Content
>
>
> <sharding:standard-strategy id="databaseStrategy" sharding-
> column="buss_num" precise-algorithm-ref="dbShardingRule" />
>
> <sharding:data-source id="shadingDataSource">
> <sharding:props>
> ... | 0 |
### System information
* I am using the stock DNNClassifier in contrib/learn. The warning is present in every instance where DNNClassifier is called.
* Present in OSX (Mac OS 10.12.5) and Linux (Ubuntu 16.04)
* **TensorFlow installed from (source or binary)** : Present both on binary and when compiled from sou... |
In the Updates section of the new TensorFlow website, two news have the same
text:

| 0 |
Hi, I am observing that `deno bundle` does not bundle imports that have the
`@deno-types` annotation. This may be related to #5665.
// @deno-types="https://unpkg.com/rollup@2.16.0/dist/rollup.d.ts"
import { rollup } from 'https://unpkg.com/rollup@2.16.0/dist/es/rollup.browser.js'
console.log(ro... |
## Steps to reproduce
Run `deno bundle https://deno.land/x/once/index.js`
## Expected behavior
It prints a bundled JavaScript code
## Actual behavior
error TS5012: Cannot read file 'https://deno.land/x/once/index.js': Error: assert.
βΊ
error TS6053: File 'https://deno.land/x/once/index... | 1 |
0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli 'C:\Program Files\nodejs\node.exe',
1 verbose cli 'C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js',
1 verbose cli 'install',
1 verbose cli '--loglevel',
1 verbose cli 'error'
1 verbose cli ]
2 info using npm@6.14.11
3 info us... |
### Current Behavior:
Attempting to install a git dependency with an invalid commit-ish gives a very
confusing error that doesn't explain the cause of the problem.
npm@7 should give an error that indicates it can't find a commit with that
hash.
npm@6 does give a useful error for this same scenario.
### Steps To R... | 0 |
by **hyperbolic.tom** :
See here:
http://golang.org/ref/spec#Method_values
"As with method calls, a reference to a non-interface method with a pointer
receiver using an addressable value will automatically take the address of that value:
t.Mv is equivalent to (&t).Mv."
... |
by **michael.tautschnig** :
Hi,
While building your package using our research compiler infrastructure we noticed that
there are two definitions of "p9main" available while bootstrapping addr2line
(and likely also all other subsequently compiled tools).
This is caused by fmt/t... | 0 |
Consider this .gitignore:
/lib/*
!/lib/foo/
Here, we are instructing git to ignore everything under /lib, except for
things under /lib/foo. However, tree-view does not parse this correctly, and
instead matches everything under /lib, regardless of whether it's under
/lib/foo or not. Thus, if I... |
Let's say I add the following rules to my `.gitignore` to ignore everything in
the root except the `wp-content` directory:
/*
!.gitignore
!wp-content/
So far this works correctly (only `.gitignore` and `wp-content/` are shown in
the tree view). Now I add the following rules to ignore ever... | 1 |
There are three impls in int-template.rs and uint-template.rs that apply to
all numeric types. Until recently, if you tried to do this:
import int::num;
import i8::num;
you'd receive "error: duplicate definition of type num". `d14d415` fixed this
for the particular case of the `num` impl, but... |
I attempted to compile this code:
pub fn set_game_state<T: GameState>(&mut self, state: ~T) {
self.state = state;
}
It gave me the error:
src/game_window.rs:37:18: 37:23 error: mismatched types: expected `~game_state::GameState:Send` but found `~T` (expected trait game_state::... | 0 |
### Version
2.6.10
### Reproduction link
https://codesandbox.io/s/vue-template-bs7uj
### Steps to reproduce
Create a render function that uses dynamic imports (like `sliceZone.vue` in
the sandbox)
then use it anywhere in your app (tested in a Nuxt project and a Vue
Codesandbox).
You should notice an infinite... |
### Version
2.6.10
### Reproduction link
https://jsfiddle.net/gupvmj5x/
### Steps to reproduce
Create `<div id="app">{{ info }}</div>` in the HTML, Create a new Vue instance
by attaching the div. Add info as a data entry with a value, say 'Hello'. Run
the app. To see the problem in action, pause the debugger at ... | 0 |
### Apache Airflow version
Other Airflow 2 version
### What happened
We noticed that tasks using the dynamic task mapping api crashes the scheduler
with the error
psycopg2.errors.UniqueViolation: duplicate key value violates unique constraint "task_instance_pkey"
80
DETAIL: Key (dag_id, tas... |
### Apache Airflow version
2.2.4 (latest released)
### What happened
Documentation for `airflow.providers.cncf.kubernetes.operators.kubernetes_pod`
suggests that `template_fields` are a list of string values. This is
accordance with Airflow's custom operator guides, to create a class attribute
with a list of strin... | 0 |
I am trying to solve a linear system as effeciently as possible, and one of
the methods I have been trying is by reordering the matrix beforehand with
reverse_cuthill_mckee.
This works well for small matrices, but when I move to a large size this
breaks. (60000x60000)
The code to reproduce this is really simple:
... |
A typical way to perform outer indexing can be unnecessarily and surprisingly
super slow. It is illustrated in the in/out below.
I think the issue could be fixed by adding another fast path for input as in
my `In [8]` to `scipy._index.IndexMixin`, in a similar manner to how it's done
when using the method of `In [10... | 1 |
### Bug report
**Bug summary**
From matplorlib 2.0 to 2.1 this problem appeared: Floating point image RGB
values must be in the 0..1 range, instead of producing an image with noise on
it.
**Code for reproduction**
Can use any image to try to reproduce this problem:
import imageio
import numpy... |
I am using IPython Notebook to view matplotlib graphs. I have noticed many
times that the markers are drawn slightly off-center. Here is an example:

Closeup:
` raises an exception
when one or more arrays of grid coordinates used to construct the interpolator
are non-C-contiguous.
This appears to be new behavior in v1.10.0. In previous versions, there was no
such restriction that these arrays m... | 0 |
Sometimes I got this message:
> The following assertion was thrown during a scheduler callback:
> Child with id 73 is invisible and should not be added to the tree.
> 'package:flutter/src/semantics/semantics.dart': Failed assertion: line 671
> pos 16:
> '!child.isInvisible'
How can I debug this error? Is t... |
## Exception
βββ‘ EXCEPTION CAUGHT BY SCHEDULER LIBRARY ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
The following assertion was thrown during a scheduler callback:
Child with id 36 is invisible and should not be added to tree.
'package:flutter/src/semantics/semantics.dart': Fa... | 1 |
I'm using `unittest` to create tests for my spiders. Internally, I use
`CrawlerRunner` to invoke callbacks.
But every time I launch tests, I get several deprecation warnings.
/usr/local/lib/python3.6/site-packages/scrapy/utils/conf.py:97: DeprecationWarning: The SafeConfigParser class has been renamed... |
May you do a little modification to avoid these two warnings?
> [py.warnings] WARNING: /.../scrapy/core/downloader/webclient.py:4:
> DeprecationWarning: twisted.web.client.HTTPClientFactory was deprecated in
> Twisted 16.7.0: please use https://pypi.org/project/treq/ or
> twisted.web.client.Agent instead
> from t... | 1 |
the responsive utilities class .vislble-* always use display: block that mess
with something display: inline-block.
for example
i use glyphicon to display eye open only on large desktop monitor.
the visible-* change display: to block instead of inline-block.
please use visibility: instead that it doesn't mess ... |
Using a couple Facebook-like links in my navbar
![grab 2013-08-21 a 6 05 52
pm](https://camo.githubusercontent.com/6cabc9d4f1d85da3d4e6316ee1fc4edec9dfed5d6e86d680c75b4889652df390/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3332303439342f313030343939302f31356631383634382d306161652d313165332d3... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.