text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
##### System information (version)
* OpenCV = 4.5.0
* Operating System / Platform => Raspbian 32 Bit
* Compiler => Visual Studio 2017
##### Detailed description
This is my program:
import cv2
img = cv2.imread('test.png',1)
cv2.imshow('Camera Capture', img)

* OpenCV => 3.4
* Operating System / Platform => aarch64 (debian based OS)
* Compiler => g++ 8.3.0
##### Detailed description
I have opencv as an external dependency that I compile from source like this:
ExternalProject_Add(opencv
GIT_REPOSITORY https:/... | 1 |
Code:
macro_rules! macro_ {
($t:ty) => {
#[test]
fn test() { }
}
}
struct Foo;
struct Bar;
macro_!(Foo);
macro_!(Bar);
Error:
a.rs:4:9: 4:22 error: duplicate definition of value `test` [E0428]
a.rs:4 fn te... |
TaskBuilder::spawn() is causing a "conditional jump or move depends on
uninitialized values(s)" error in valgrind.
`fn main() { spawn(proc() {}) }`
Is the absolute minimum required to reproduce, and the error message is still
present if a TaskBuilder is created and TaskBuilder::spawn() is called
directly. Tested o... | 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: 0.2.0
* Operating System version: linux
* Java version: 1.8
### 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.
### Environment
* Dubbo version: 2.7.x
* Operating System version: win 10/linux
* Java version: 1.8
### Steps to reproduce this i... | 0 |
I am testing the latest VS Code insiders build (Version 0.10.10-insider
(0.10.10-insider)). With the introduction of the new Salsa JS language
service, "Goto symbol" no longer works for JS files with old module pattern
(anonymous closure) or with AMD modules. I understand that, as documented,
Salsa can't resolve AMD ... |
_From@warpdesign on February 17, 2016 11:21_
I have activated salsa and when activated, some symbols cannot be found
anymore in ES5 files.
For example, if I have a a file with only:
function toto() {
}
Typing `@toto`will work and highlight the toto function.
But if I wrap the code into a c... | 1 |
# Environment
Windows build number: [Versión 10.0.18363.900]
PowerToys version: V0.19.2 (and V0.19.1)
PowerToy module for which you are reporting the bug (if applicable):Keyboard Manager
# Steps to reproduce
Map keys:
* [Play/Pause Media(Fn+F6)] -> [F6]
* [F6] -> [Play/Pause Media(F... |
# Summary of the new feature/enhancement
* I want to map 'Print Screen' single button to run a shortcut 'Win Key + Print Screen'. To take screenshot with single key.
* Remap keys only allow one key as source and target.
* Remap shortcuts doesn't allow source to be one key which is in my example 'Print Screen'
... | 0 |
Hi,
First of all, thank you for a great library that I'm using almost daily. I
have recently updated seaborn to the latest version, and I'm now facing a bug
that I did not have before. When a dataset is missing x/hue pairs, using
pointplot will throw a ValueError. See minimal example below:
cols = ["J... |
Hi guys,
I recently updated python packages, and it broke my script running under
python 3.8. Sadly, I don't have a list of the previous versions. I try to
reinstall fresh on python 3.9, but the problem persists. Both on Mac OS 10.15
and Windows 10. Here are the versions presently used:
> Python 3.9.0
> matplotl... | 1 |
_Original tickethttp://projects.scipy.org/numpy/ticket/2004 on 2011-12-23 by
@charris, assigned to unknown._
To wit:
In [13]: x = ones(5, maskna=1)
In [14]: x[2] = NA
In [15]: x.astype(double)
---------------------------------------------------------------------------
ValueEr... |
_Original tickethttp://projects.scipy.org/numpy/ticket/1973 on 2011-11-04 by
@bsouthey, assigned to @pierregm._
I get an error when displaying a masked array that contains the new missing
value, np.NA under 64-bit Linux. But the operations seem to work as expected.
>>> import numpy as np
>>> np._... | 1 |
##### System information (version)
* OpenCV => 2.4.13.7-4-gfd63c6041
* Operating System / Platform => Windows 10.0.17134 AMD64
* Compiler => Visual studio 15 2017
* CMake =>3.12.3
##### Detailed description
If I set OpenCV to not build zlib and use a prebuilt zlib version, the
configuration step of cmake w... |
##### System information (version)
* OpenCV => 4.4.0
* Operating System / Platform => Ubuntu/docker
##### Detailed description
I was trying to inference on Yolo trained model using OpenCV 4.4.0 with a
python code.
The issue I had is that some image I was inferring on was giving me wrong
bounding box that ext... | 0 |
**Glide Version** : 4.5.0
**Integration libraries** : okhttp3-integration
**Device/Android Version** : doesn't seem device related. The warning shows on
emulators and every test devices I have.
**Issue details / Repro steps / Use case background** :
I followed the setup instructions. Glide is working as expected... |
I'm trying to use glide 4.0.0-RC0 by Gradle:
dependencies {
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.caverock:androidsvg:1.2.2-beta-1'
compile 'com.github.bumptech.glide:glide:4.0.0-RC0'
compile 'com.android.support:support-v4:25.3.1'
}
I follo... | 1 |
Hi,
I followed the new instructions for the CMake build on Windows.
The C++ example program `tf_tutorials_example_trainer.exe` build and run
successfully.
But the build of the PIP package exited with the following error:
ld_pip_package.vcxproj" (Standardziel) (1) ->
"C:\Users\jonas\projects\te... |
(Copied from @laudney's comment on #17)
> I've tried to follow your instructions. All seem to work flawlessly (for
> about 45min) until it failed with:
>
>
> The target "BeforeGenerateProjectPriFile" listed in a BeforeTargets
> attribute at "C:\Program Files
> (x86)\MSBuild\Microsoft\NuGet\Microsoft.NuGet.ta... | 1 |
When Python Requests is used to contact a server which returns multiple `Set-
Cookie` response headers, Python Requests combines them into one header field
with the values separated by commas.
## Expected Result
Using Nginx as my origin server with the following config:
location / {
r... |
Many web-apps send cookie in multiple Set-Cookie headers, one header for one
cookie. Requests joins this headers in one big header separate by comma.
From same webapp to requests.get
Set-Cookie: ASP.NET_SessionId=token1; path=/; HttpOnly
Set-Cookie: Cookie1=token2; path=/ecp
Set-Cookie: X-BERe... | 1 |
Hi,
afraid I'm a flutter newbie. I was asked to report this bug.
I'll report back if I crack it.
Many thanks,
Andy.
Performing hot reload...
Syncing files to device Android SDK built for x86 64...
I/flutter (25832): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞══════════════════════════════... |
The "Text Fields" option is hidden underneath the Android system buttons. I am
on a Nexus 6P.
I can scroll up to see "Text Fields" but then the list animates back down. The
last item I can see is "Tooltips".
| 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
There shouldn't be a warning when importing an svg icon. Or if there should
be, please update docs to reflect the correct way of rendering the SVG icon in
our code. Currently the docs don't show if any f... |
Is there any possibility that as part of the release process, the ES2015
Components can be included as part of the published NPM artifacts?
I'm working in a large React app, which is already doing transpiling and I
don't want the babel transform-runtime as part of every component (babel-
polyfill is already in t... | 0 |
I dragged in an XML file (with the extension `.config`) into Atom and it tried
to render it in the browser. Running v. 0.209.0 on Windows Server 2008 R2.

|
Atom's drag&drop feature seem quite buggy. Sometimes it just won't open a
dragged file, but even worse bug is when decides to open the file as if it was
a real browser, efectively replacing the entire editor with the content of the
file.
Video: http://youtu.be/EPRRFs9SQbs
| 1 |
Hi.
I like this project very much. Please note that I have troubles to change the
program's settings (see below), so that, it is possible that some of my
comments/ideas may already be available.
1. I use Visual Studio and every time I select settings option, a window with Visual Studio code opens. What about hav... |
I installed the terminal from the windows app store, created a powershell tab,
ran a command.
I then wanted to copy that command text, so I highlighted it, then pressed
ctrl + c but it doesn't appear to have copied the command text. I also tried
ctrl + shift + c. Getting desperate I right clicked on the tab item its... | 1 |
Hi,
We are currently implement b3dm (a format that encapsulates glTF) support in
our project and have encountered a few problems with the current GLTFLoader
implementation.
We need to support addition attribute (`batchid`, used to identify the
different objects packed in the geometry), extensions (CESIUM_RTC) and
p... |
After introducing support for texture repeat and offset in #21852, the ambient
occlusion map is repeated many times, despite the fact that we are setting the
scale separately for each texture:
`float2 inputs:scale = ${ buildVector2( texture.repeat ) }`
**To Reproduce**
Steps to reproduce the behavior:
1. Have ... | 0 |
I've upgraded from Symfony 2.3 to Symfony 2.5 and encountered a problem.
Before I had the following code (entity with:
`Assert\Callback(methods={"isEmailCollectionValid", "isCompanySelected"})`)
// this worked fine in Symfony 2.3 but stopped working properly in 2.5
public function isEmailC... |
Hello,
When using Validator 2.5 to validate an array of scalars, the `propertyPath`
of the returned violations has really strange values.
Consider the following script:
<?php
require 'vendor/autoload.php';
use Symfony\Component\Validator\Constraints;
use Symfony\Component\Valida... | 1 |
* VSCode Version:0.10.13 insiders
* OS Version:Windows 10
Steps to Reproduce:
1. Open a file with characters without indenting
2. Set cursor to the right and try to column select moving mouse to the left
You can't select the first characters on lines.
You can select the first characters if you start on ... |
* VSCode Version: 0.10.13-insider
* OS Version: Windows 10
I am properly enjoying the new _insider_ release - it offers so much! - and it
is with great regret that I must file this first bug...
Steps to Reproduce:
1. Create a block of text such as this one:
var gulp = require('gulp');
var p... | 1 |
Sorry if this is a duplicate. I searched and searched and I didn't find
something quite the same, but it _is_ similar and probably related to #14255
and a few other tickets all reporting broken events (all the tickets I found
are different classes of events, none specific to key events) since OOPIF.
I'm also not cer... |
* Electron version: 1.7.10
* Operating system: Mac OS High Sierra and Mac OS Sierra
### Expected behavior
shell.openExternal() should open the url in the chrome new tab.
### Actual behavior
If you open a url using shell.openExternal() when my chrome had received a
update in Mac and I didn't relaunch the chrom... | 0 |
[X] feature request
This is a feature I am proposing for a future Angular.
**Current behavior**
Both FormGroup and FormControl provide `.valueChanges`, and observable stream
of changes to the control or group of controls' value. This is very helpful,
but it seems to omit the first value (before the first "change")... |
**I'm submitting a ...** (check one with "x")
[ ] bug report => search github for a similar issue or PR before submitting
[X] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... | 0 |
Extended from Stackoverflow question
### Environment info
Operating System: Ubuntu 14.04 / OS X Yosemite
Installed version of CUDA and cuDNN:
CUDA Version : 7.5
cuDnn: 4
Tensorflow version: 0.8.0
When resizing image with variable dimension (output from `decode_jpeg`), image
tend to get messed up. However, if... |
It looks like the op `tf.image.resize_images()` has no effect on the image
shape when the parameters `new_height` and `new_width` are dynamically
computed (this is possible since the fix of issue #1001).
For example, this piece of code
shape = tf.shape(image)
height = shape[0]
width = shape[1]... | 1 |
Hi team ,
I am facing trouble while navigation from one challenge to next challenge. It
is showing error while I move to next challenge after completion of the
current challenge successfully.
I am attaching screenshot also.
Please help.
" url link is incorrect.
| 0 |
I seem to be getting setFunctionBreakpoints requests after the launch request
whereas setBreakpoints requests come in before the launch request. Should I be
using the configurationDone request or something here? BTW the extension is
configured to send the initialized event in the processing of the initialize
request ... |
* VSCode Version: 0.10.12-alpha
* OS Version: Windows10
Steps to Reproduce:
1. Launch app and open a folder for "Blank Node.js TypeScript" project.
2. Click on debug icon from the view bar and set node debugger.
3. It will generate a launch.json file with some default settings.
4. Try to debug and verif... | 0 |
Setting up https://github.com/SphinxKnight/Twitter-Assistant, at the `npm run
build`, a TS1005 error was thrown. This is due to the signature of the
`isArray` method in `lib.es6.d.ts` which is incorrect.
This typo also occurs in signatures for `isView` with `ArrayBuffer`.
Note: This wasn't detected by running the t... |
This interface contains:
isArray(arg: any): arg is Array;
but I think it should be:
isArray(arg: any): boolean;
It doesn't compile as it is.
| 1 |
React version: 18.0.x, 18.1.x, 18.2.x
## Steps To Reproduce
1. Visit provided sandbox
2. Open console and observe logs displayed twice.
3. Click the button and observe the rendering log happens twice, the effect log happens once.
Link to code example: https://codesandbox.io/s/react-18-use-effect-bug-iqn1fx
... |
When trying to use react-addons-perf@15.1.0 in Google Chrome, it is found that
after Perf.start(), error messages displayed
Warning: There is an internal error in the React performance measurement code.
Did not expect ctor timer to start while componentDidMount timer is still in
progress for another instance.
War... | 0 |
When working in a CSS file (or presumably any type of file), if the file is
updated from an outside source, the position of the page will reset causing
you to have to scroll back down to where you were.
Case: When working in CSS, I often work both directly in the CSS and via
Chrome Dev Tools (changes are autosaved t... |
steps to reproduce
1. open a log file in atom
2. scroll part way down the file
3. add new line to end of log file with an external tool/editor and save
4. go back and view the log file in atom
expected
* log file is reloaded
* log file scroll position is still part way down (same as in step 2 above)
a... | 1 |
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, v0.5.1, on Mac OS X 10.13.5 17F77, locale en-CR)
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.1)
[✓] iOS toolchain - develop for iOS devices (Xcode 9.4.1)
[✓] Android Studio (ve... |
flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, v0.5.1, on Mac OS X 10.13.6 17G65, locale pt-BR)
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[✓] iOS toolchain - develop for iOS devices (Xcode 9.4.1)
[✓]... | 1 |
## Guidelines
Please note that GitHub issues are only meant for bug reports/feature
requests.
If you have questions on how to use Neo4j, please ask on StackOverflow instead
of creating an issue here.
To help us understand your issue, please specify important details, primarily:
* Neo4j version: X.Y.Z
* Opera... |
The Neo4j server was starting just fine... Then I uninstalled and re-installed
Java (to deal with another issue), and now the Neo4j server cannot even start!
* Neo4j version: Community Edition 3.4.9
* Operating system: Windows 10
* **Steps to reproduce**
1. Start the Windows10 Power Shell
2. Issue the c... | 1 |
I am working on an app with messaging capability. When the app has been force
closed or is running in the background the user receives a push notification.
Clicking on the notification opens the app and ideally brings them to the
thread of the message they just received. However, currently I am pushing
three separate... |
We should document how to add deep links to an app. This is the first
use case mentioned in the larger discussion mentioned in bug 10975, quoted
here for easy access:
* **External URLs:** _A movie database app wants to register to take over handling URLs for its website. Now when the user clicks on the URL the d... | 1 |
### Bug summary
The contour label (clabel) manual mode fails place any labels. When I click
the plot I get an error:
'QuadContourSet' object has no attribute 'ax'
and no labels are added.
I put the Contour Label Demo as an example with clabel option manual=True, but
this has happened with different scripts.
#... |
### Bug summary
I used to be able to use a legend picker as described in this matplotlib
tutorial.
It doesn't work anymore. I bet it was an up
### Code for reproduction
import numpy as np
import matplotlib.pyplot as plt
t = np.linspace(0, 1)
y1 = 2 * np.sin(2*np.pi*t)
y2 =... | 1 |
Hello,
I follow the installation steps to use stocks examples which is in
examples/stocks folder.
There, I executed pub get command and it was ok. Then, I tried to launch the
sky_tool like said in the steps by steps instructions.
On examples/stocks folder :
`C:\Users\sylsau\MyDocuments\Android\dart\sky_sdk\exampl... |
Rough TODO list:
* Make //flutter/snapshotter work on Windows.
* Make the `flutter` command line tool work on Windows.
* Teach the `flutter.ps1` where to get the Dart SDK and how to bootstrap into Dart.
* Teach the tool about Windows as a host platform (e.g., where to find the snapshotter)
* Teach t... | 1 |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18363.657]
PowerToys version: v0.17.0
PowerToy module: Markdown-Preview
# Steps to reproduce
Open a markdown-file in the preview and try to copy with CTRL+C
# Expected behavior
Copied text is in clipboard
# Actual beh... |
As often Markdown files contain technical instructions, it would be nice if
the text in Markdown files could be selected and copied.
> Note: I am the author of MarkdownPreview, a Windows Explorer preview pane
> extension looking forward to drop support, already announcing people to
> switch to Powertoys
| 1 |
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE
* * *
## Please do not remove the text below this line
DevTools version: 4.0.5-5441b09
Call stack: at n.value (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:16721)
at m (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:... |
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE
* * *
## Please do not remove the text below this line
DevTools version: 4.0.4-3c6a219
Call stack: at n.value (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:16721)
at m (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:... | 1 |
In Turkish QWERTY keyboards AltGr + q (right Alt) key combination means @
character. This combination does nothing at all in 1.121. I've also checked
the keybindings. There is no keybinding on AltGr + q
|
> Atom doesn't handle keyboards with Right Alt (i.e. AltGr). This is a very
> basic mistake. I have a Hungarian keyboard layout, I can only write specific
> keys like "|" (pipe) by pressing Right Alt (AltGr) and then W, which Atom
> doesn't recognize and treat like Alt-W or something?
> The point is there are some... | 1 |
Even if the beta_distribution of the parameters shouldn't < 0, function
rk_beta in distribution.c should check the arguments
|
I'm currently trying to hunt down a `SystemError`, and could use some help.
Basically, it occurs when attempting certain failing conversions from unicode
to string arrays:
import numpy as np
CHAR = "\x80" # Anything >= 0x80, so we raise a UnicodeEncodeError.
CHAIN = 1 # How many errors w... | 0 |
#### Issue Description
The new Wiki search does not allow scrolling through the article titles. Only
the first title in the list is clickable.
#### Browser Information
* Browser Name, Version: Chrome, Firefox, Edge
* Operating System: Windows 10
* Mobile, Desktop, or Tablet: Desktop
|
When I mouse over the faded out links, my pointer doesn't turn into the click
finger icon. It will for the links that aren't faded, though.
| 1 |
### Problem revoking a subfolder
Currently you cannot revoke a subfolder permission.
**example :**
///1. Request permissions needed
const permStatus_1 = await Deno.permissions.request({ name: "read", path: "./folderA"}); //Grant
//Skipped because folderA was granted
const permStatus... |
I'm experiencing a strange bug with `Deno`.
When a exception is thrown the main process panics. This is the trace:
thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', cli\fmt_errors.rs:86:8
stack backtrace:
0: 0x7ff7af88a45b - <unknown>
1: 0x7ff7af53cecc ... | 0 |
### Bug report
**Bug summary**
`Path.intersects_path` returns `True` for the following paths, when they don't
intersect at all (as shown by Shapely). This is a simplified `outline_path`
from Cartopy. The trigger seems to be the duplicate point at the end of
`outline_path`; if removed, it works as expected.
A bisec... |
This no longer works:
import matplotlib.pyplot as plt
from cycler import cycler
plt.rc('axes', prop_cycle=(
cycler('dashes', [(None, None), (None, None), (6, 6), (3, 3), (1.5, 1.5)])))
but it used to work in 1.5.
Now it yields
> TypeError: float() argument must be a string or a numbe... | 0 |
by **r@rcrowley.org** :
What steps will reproduce the problem?
1. `8g fence.go && 8l fence.8 && ./8.out`
2. In another terminal, send SIGUSR2 to the 8.out process.
What is the expected output?
18:49:05.074168 fence.go:16: (open a file descriptor and do work)
18:49:27.... |
by **aka.spin** :
It would be nice to set additional library path to gotest. Like "-L" in *l.
| 0 |
#### Description
Enter into the doc directory and try to make and generate pdf manual file,
failed.
#### Steps/Code to Reproduce
1. Update the codebase to the latest version.
2. Enter into the "doc" directory, and type the cmd: make latexpdf
3. Wait after a while, errors will appear.
#### Expected Results
... |
We currently use Travis to run unit tests with various versions of
dependencies, including python 2. But we only run the examples when building
the docs in python 3 with Circle CI. #9936 shows that this allows incompatible
example code to be introduced, and I expect this to increase as more
developers use python 3 th... | 1 |
# Description of the new feature/enhancement
In Windows 10, whenever Windows Terminal is launched it automatically launches
as the Powershell profile even when opening a new terminal tab. The user
should have free control on which profile they wish to use as default.
# Proposed technical implementation details (opt... |
`right click `position the cursor somewhere on the text displaying on the
console, and while holding `shift button` move the cursor somewhere else and
then `right click` to select the text between the 2 positions of the cursor.
| 0 |
**I'm submitting a...**
[x] bug report
**Current behavior**
When using the following...
styles: [`
:host-context(body) {
background: red;
}
`]
Angular converts this to...
[_nghost-ytw-1]body, body [_nghost-ytw-1] {
background: ... |
UPD: Given discussion below, apparently the behavior is what it supposed to
be. I am not closing, as there might be some more discussion.
**I'm submitting a ...** [x ] bug report
**Current behavior**
I created a couple of routes with data which I want to use when a router link
is clicked:
const rou... | 0 |
Flow now has better support for React. We should upgrade the `with-flow`
example to use the new version of flow.
Also, I don't know much about adding flow type support to libraries, but it
doesn't seem like Next JS has flow types built in... would this be something
worth adding?
* [ x] I have searched the issues ... |
# Bug report
## Describe the bug
Page open from Link not use assetPrefix to load chunked js when using
granularChunks
## To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
Let's say we have a site with www.example.com
1. add granularChunks in next.config.js
2. set an... | 0 |
Currently there is no User feedback when a user attempts to verify that a
challenge is complete. The change from a tick to an X is very subtle and I
would suggest implementing a screen flash. This would be especially helpful
with people with slow/unreliable internet connections where it may take a
while for the answe... |
The `Run tests (ctrl + enter)` button in waypoints doesn’t give any visual
feedback when the wrong code is submitted.
It would be nice to have this, especially useful to a novice `Camper`.
| 1 |
I started trying to use VSCode with ES6 and I'm running into this. Changing
the declaration to `import * as path from 'path'` for example works for
intellisense, but then babel's transpiled output is invalid. Is there a plan
to switch to the current syntax? If not, could anyone point me to some
instructions on how to... |
I try to do this:
`import React, {Component} from 'react';`
But I don't know how to define the `react.d.ts` to support this valid ES6
behavior.
The compiler produces this error:
`error TS1192: Module '"react"' has no default export.`
| 1 |
alpine 3.5 python 2.7
Installing tensorflow using pip succesfully, but after `import` tensorflow` I
got this
> ImportError: Error relocating /usr/lib/python2.7/site-
> packages/tensorflow/python/_pywrap_tensorflow_internal
> .so: __sprintf_chk: symbol not found
|
# OS
Host: Windows 10 Professional 64bit
Docker container : Alpine
`/ # cat /etc/issue`
Welcome to Alpine Linux 3.6
Kernel \r on an \m (\l)
`/ # uname -a`
Linux 3b851449cb60 4.9.27-moby #1 SMP Thu May 11 04:01:18 UTC 2017 x86_64
Linux
# Installation
* Part of my dockerfile
`FROM frolvlad/alpine-glibc... | 1 |
#### Challenge Name
All challenges in which there is a lot of code
For example Warn your Users of a Dangerous Action
#### Issue Description
Sometime when I go to next challenge something strange occurs. I'm pointing to
one place, but it seems that in fact cursor is on other line that I want. The
everything becom... |
Style Text Inputs as Form Controls
https://www.freecodecamp.com/challenges/style-text-inputs-as-form-controls
#### Issue Description
My cursor will not move through the code editor properly. I will try to select
a spot in the code and I just can't. This has been an issue through multiple
challenges. A hard refres... | 1 |
### Website or app
It's empty project creating with 'react-native init'
### Repro steps
1. Start rn app in debug mode
### How often does this bug happen?
Every time
### DevTools package (automated)
react-devtools-core
### DevTools version (automated)
4.14.0-d0ec283819
### Error message (automated)
Cannot... |
The following code generates two `<button>`'s and an `<input>` field whose
type changes respective to the type of button clicked (or dependent on the
component `state`).
So, if my rendered field is type `number` and it has the value `42` and I tap
the `<button>` to change the field type to `text` with new value `hel... | 0 |
Describe what you were doing when the bug occurred:
1. Profiling my react web page
2. 3.
* * *
## Please do not remove the text below this line
DevTools version: 4.1.2-5184346da
Call stack: at Map.has ()
at I (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:150140)
at I (chrome-
... |
With 10,000 item nesting in `DeeplyNestedComponents` case:

Not super realistic but we could fix this by avoiding recursion in the
traversal.
* * *
Originally reported by @gaea... | 1 |
[x] bug report
[ ] feature request
[ ] support request
**Current behavior**
A change of value of a date input control (that is created using ngFor and
that is bound to an item in an array) modifies the value of the succeeding
control.
**Expected behavior**
A modification of date input ... |
**I'm submitting a ...** (check one with "x")
[ ] bug report => search github for a similar issue or PR before submitting
[ x ] feature request
[ x ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question... | 0 |
When trying out the standard lineplot example on my machine, the code stops
with an error in algorithm.py line 85:
`TypeError: Cannot cast array data from dtype('int64') to dtype('int32')
according to the rule 'safe'`
line 85 is: `sample = [a.take(resampler, axis=0) for a in args]`
where `resampler` comes from the... |
Using the latest commit `74ca190`, it appears as if you can no longer pass the
`xticklabels` and `yticklabels` through `clustermap` to `heatmap` since those
kwargs are present in `heatmap`, thus resulting in a duplicate argument error.
This was not the case previously in 0.5.1, I believe. See
`e5684e3`#diff-336353405... | 0 |
Currently hydration warnings only appear in the console and can be easy to
miss. Since hydration errors can have very bad effects we should trigger the
dev-error-overlay to make sure the user is aware of them
|
# Feature request
When a hydration error occurs, Next.js should open the error overlay since
this is considered a fatal event.
The code should be hot-linked so users can click-to-open in their editor.
We did not implement this previously because React did not give you a way to
track it down.
React 16.13 finally a... | 1 |
Test case: http://play.golang.org/p/9oz7e7AKzd
In the example above A embeds b which embeds c. There are public functions on
b, which is shown correctly in godoc as belonging to A. However, it seems like
godoc only searches 1 level deep, and functions on c are not shown even though
they are valid for calls by the co... |
Fix the cmd/godoc side of issue
https://code.google.com/p/go/source/detail?r=f5b37c93e4c5bb2962c added some methods to
go1.txt that were always there, but neither cmd/godoc nor cmd/api (both with their own
bad embedding rules) detected.
Robert's rewrite of cmd/api to use go/typ... | 1 |
API Routes should emulate lambdas with run-to-completion semantics. This
behavior should ensure API routes don't misbehave when deployed to production.
Closes #8000
|
* I have searched the issues of this repository and believe that this is not a duplicate.
## Context
I'm tying to get multiple query data. I came up with this before redirect:
`Router.push('/acceptance/procurement/RejectedInfo?procurementUUID=0ae56414-0699-4866-898d-be41ab146523?acceptanceUUID=24ecb437-8e52-48f1... | 0 |
> Issue originally made by @FranzPoize
### Bug information
* **Babel version:** 6.4.0
* **Node version:** 4.2.3
* **npm version:** 2.14.7
### Options
{
"presets": [
"es2015",
"react"
],
"ignore": "/node_modules/",
"plugins": [
... |
## Bug Report
**Current Behavior**
> babel . --out-dir dist
SyntaxError: Expected atom at position 2
\p{Script_Ex
^
at bail (/home/shm/dpp-query-ws/node_modules/regjsparser/parser.js:1093:13)
at parseTerm (/home/shm/dpp-query-ws/node_modules/regjsparser/parse... | 0 |
I am having a confusing problem. It does look like a bug and hence I am
reporting here, not sure if duplicate.
I am using ansible version 2.0.0 locally on OSX El Capitan, to run a series of
steps which sets up my machine for development for my project. The last step
here is to add a few lines to `/etc/hosts` (~15 li... |
Ansible crashes when creating links with_items and using
`ansible_connection=local`. Here an example playbook for reproducing the
behavior:
- name: the last task will throw an error
hosts: localhost
gather_facts: no
tasks:
- name: create files - that will work
c... | 1 |
I was designing my app using the `Layout` features provided by material-
ui@next, I had some trouble du to the fact that `gutter` properties makes grow
my container by gutter/2 with the extra margin applied. now after reading the
code, I came to conclusion that it was intentional.
But i found it counterintuitive, I ... |
The `<Grid container>` extends beyond its parent, with half of spacing size.
I have marked the extra width in red, also setting spacing to zero fixes the
problem.

Here is a working example: http... | 1 |
I just updated npm
in the message I see
run `npm fund` for details
I ran npm fund and got
npm WARN config global `--global`, `--local` are deprecated. Use
`--location=global` instead.
|
### Is there an existing issue for this?
* I have searched the existing issues
### Current Behavior
CI failure can be seen here (scroll down) when running npm install:
https://ci.appveyor.com/project/IsraelHikingHost/site/builds/40938498
### Expected Behavior
It shouldn't fail as this sha512 was generated ju... | 0 |
FAILED! => {"changed": false, "error_record": {"CategoryInfo": {"Activity":
"", "Category": 14, "Reason": "RuntimeException", "TargetName": "Timed out
waiting for scheduled task to start", "TargetType": "String"}, "ErrorDetails":
null, "Exception": {"Data": {}, "ErrorRecord": {"CategoryInfo": "NotSpecified:
(:) [], P... |
_From @autogun on September 19, 2016 13:44_
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
win_updates
##### ANSIBLE VERSION
ansible 2.1.1.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
##### OS / ENVIRONMENT
Linux 3.10.0-327.28.3.... | 1 |
Do not be imported to the mainstream?
` input::-ms-clear {display: none;} `
> ・Text in right aligned input gets cuts off when using -ms-clear
> http://connect.microsoft.com/IE/feedback/details/776537
> http://jsfiddle.net/qukFh/1/
>
> ・Issue with right alignment in text inputs in IE10
> http://connect.micr... |
When you add `text-align: right;` to a textbox (`<input type="text" />`) the
last part of the text inside the textbox isn't displayed completely in
Internet Explorer 10 as soon as the textbox loses focus.
As long as the textbox has focus, or when a textbox has an initial value, the
text is displayed correctly. As so... | 1 |
I'm currently attempting to compile a library called nalgebra
(https://github.com/sebcrozet/nalgebra), but I am met with the following ICE
each time I try to compile the project:
Compiling nalgebra v0.2.2 (https://github.com/sebcrozet/nalgebra#39fd7c1a)
/home/abass/.cargo/git/checkouts/nalgebra-38f... |
% uname -a
Darwin pair 14.1.0 Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64 x86_64
% rustc --version --verbose
rustc 1.0.0-dev (a45e11773 2015-01-28 11:01:36 +0000)
binary: rustc
commit-hash: a45e117733b866302fa99390553d1c548508... | 1 |
I just noticed after I update to version alpha `27` that if I have the
following `@RouteConfig`:
@RouteConfig([{
component: Test,
path: '/',
as: 'test'
}])
I will see two of the same component, but if I change the path to anything
else I do not get the same behaviour.
|
class MyClass {
constructor(@Attributes() atts: Map<string, string>)
}
| 0 |
Playpen link: http://is.gd/LITiE8
Example:
use std::collections::HashSet;
fn main() {
let mut v = Vec::new();
foo(&mut v);
}
fn foo(h: &mut HashSet<u32>) {
}
Output from playpen:
<anon>:5:9: 5:15 error: mismatched types:
expected `&m... | ERROR: type should be string, got "\n\nhttps://github.com/Ms2ger/servo/tree/ICE-reftests\n\n \n \n ../../tests/reftest.rs:116:53: 116:64 error: mismatched types:\n expected `&mut collections::string::String`,\n found `&mut collections::vec::Vec<_>`\n (expected struct `collections::string::String`,\n found struct `collections::vec::Vec`) [E0308]\n ../../tests/reftest.rs:116 command.stderr.as_mut().unwrap().read_to_string(&mut stderr).unwrap();\n ^~~~~~~~~~~\n error: internal compiler error: unexpected panic\n note: the compiler unexpectedly panicked. this is a bug.\n note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports\n note: run with `RUST_BACKTRACE=1` for a backtrace\n thread 'rustc' panicked at 'index out of bounds: the len is 41 but the index is 41', /home/larsberg/rust/src/libcollections/vec.rs:1324\n \n stack backtrace:\n 1: 0x7fb42bc07eb2 - sys::backtrace::write::h754dbf5d2d3172ebPBA\n 2: 0x7fb42bc2df32 - panicking::on_panic::hdb9e837ac064f8afiHJ\n 3: 0x7fb42bb74649 - rt::unwind::begin_unwind_inner::h488386ed3236ccf5lnJ\n 4: 0x7fb42bb749f1 - rt::unwind::begin_unwind_fmt::hac94a0d8ab692f55WlJ\n 5: 0x7fb42bc2dab7 - rust_begin_unwind\n 6: 0x7fb42bc76724 - panicking::panic_fmt::hf7c6f0a83af17872HZs\n 7: 0x7fb42bc7fbdc - panicking::panic_bounds_check::h2968f098aca43b6fNYs\n 8: 0x7fb429ca94fb - middle::infer::freshen::TypeFreshener<'a, 'tcx>.TypeFolder<'tcx>::fold_ty::h1a5e0cb5684c2ad9Yrx\n 9: 0x7fb429caaadc - middle::ty_fold::TypeFolder::fold_substs::h5300398158458947227\n 10: 0x7fb429d2a501 - middle::traits::select::SelectionContext<'cx, 'tcx>::push_stack::had62c407aaefff1fFoT\n 11: 0x7fb429d11b63 - middle::traits::select::SelectionContext<'cx, 'tcx>::select::h1778a209ec242fabPwQ\n 12: 0x7fb429d0fded - middle::traits::fulfill::FulfillmentContext<'tcx>::select::hff3b9d362aa095f0SjO\n 13: 0x7fb429d0f2d7 - middle::traits::fulfill::FulfillmentContext<'tcx>::select_where_possible::h6e2dcbb7c4c56c766iO\n 14: 0x7fb42a97afec - check::vtable::select_fcx_obligations_where_possible::h210813ce3575885aUYb\n 15: 0x7fb42a9a800a - check::FnCtxt<'a, 'tcx>::resolve_type_vars_if_possible::h83e338cecf621f9eflo\n 16: 0x7fb42a96b537 - check::structurally_resolved_type::hd58cd7726b9b557ecit\n 17: 0x7fb42aa2e0b5 - check::check_expr_with_unifier::check_method_call::h60e5d1f84dfc769ex6p\n 18: 0x7fb42aa528e8 - check::check_expr_with_unifier::h14659721660305131284\n 19: 0x7fb42aa2e075 - check::check_expr_with_unifier::check_method_call::h60e5d1f84dfc769ex6p\n 20: 0x7fb42aa323a1 - check::check_expr_with_unifier::h3179221947634355639\n 21: 0x7fb42aa2db88 - check::check_expr_with_unifier::check_then_else::he1899ac58e1eb65cs9p\n 22: 0x7fb42aa32635 - check::check_expr_with_unifier::h3179221947634355639\n 23: 0x7fb42aa12d13 - check::check_block_with_expected::h0c9c1f0763267624T2r\n 24: 0x7fb42a9faea2 - check::check_fn::h6775964a9a773f5ejmn\n 25: 0x7fb42aa104f3 - check::check_bare_fn::h0968defbfcb2f081Zbn\n 26: 0x7fb42aa08b4f - check::check_item::hff51cb213b03de05Dun\n 27: 0x7fb42aac9273 - check_crate::closure.35767\n 28: 0x7fb42aac4d27 - check_crate::hf060d56f18b25f0cjiC\n 29: 0x7fb42c22052e - driver::phase_3_run_analysis_passes::h8f28299939675af3mGa\n 30: 0x7fb42c205375 - driver::compile_input::h45a329886a3876b7Nba\n 31: 0x7fb42c2c9abd - run_compiler::h72656e661c6301b4N6b\n 32: 0x7fb42c2c782c - thunk::F.Invoke<A, R>::invoke::h5918203416757842695\n 33: 0x7fb42c2c6480 - rt::unwind::try::try_fn::h14589295297083973913\n 34: 0x7fb42bc98fd8 - rust_try_inner\n 35: 0x7fb42bc98fc5 - rust_try\n 36: 0x7fb42c2c6c0b - thunk::F.Invoke<A, R>::invoke::h2343472488528142949\n 37: 0x7fb42bc1b735 - sys::thread::thread_start::h04d056c6180f4496s8E\n 38: 0x7fb4264a3e99 - start_thread\n 39: 0x7fb42b7eb2ec - <unknown>\n \n\n" | 1 |
#### Python Code
* **Before pd.melt**
import pandas as pd
df = pd.DataFrame({'A': {0: 'a', 1: 'b', 2: 'c'},
'B': {0: 1, 1: 3, 2: 5},
'C': {0: 2, 1: 4, 2: 6}})
df['A'] = df.A.astype('category')
df
})
print(data)
print(data.info())
melted = pd.melt(data, ... | 1 |
In Symfony `2.3.24` I'm receiving an PHP Fatal error while trying to throw 404
Exception with `createNotFoundException`:
PHP Fatal error: Cannot redeclare class Symfony\\Component\\Debug\\Exception\\FlattenException in vendor/symfony/symfony/src/Symfony/Component/Debug/Exception/FlattenException.php o... |
In Symfony 2.7, we made it possible to use most features of Symfony without
enabling the templating component (assuming you don't use a bundle relying on
them of course).
However, we have 3 shortcut methods in the base controller which are not
compatible with such setup and force the usage of the templating compone... | 0 |
I keep failing to make defaults paramaters for my annotation routes.
Look my routing.yml:
some_route:
resource: "@CoreBundle/Controller/"
type: annotation
prefix: /{slug}
defaults: {'slug': 'pouet'}
My controller look like this:
<?php
name... |
Say I import the following route:
app/config/routing.yml
AcmeBusinessBundle_client:
resource: "@AcmeBusinessBundle/Resources/config/routing/client.yml"
prefix: /clients
...Resources/config/routing/client.yml
acme_business_client_list:
pattern: /
defau... | 1 |
Currently with the mysql_db module state=import tries to import the database
again, thus making it non-idempotent. This is the error i'm getting; msg:
ERROR 1062 (23000) at line 30: Duplicate entry '1' for key 'PRIMARY'
With this playbook:
* name: create website database
mysql_db: name=dbname
login_user={{ my... |
This happened in my last run, I can't get it to happen again. But it asked to
be reported so here it is.
[WARNING]: Calculating checksum failed unusually, please report this to the list so it can be fixed command: rc=flag; [ -r /usr/share/nginx/html/global_error_pages/416.html ] ||
rc=2; [ -f /usr... | 0 |
I am trying to run a python script from power BI, I have installed all the
modules and dependencies but still get this error. I have uninstall and
reinstall numpy but still not working. I installed python 3.8 and I am using
windows 10. I do not think I have multiple python versions of python installed
### Reproducin... |
* how you installed Python - installed from this link https://www.python.org/ftp/python/3.8.3/python-3.8.3-amd64.exe
* how you installed numpy - opened a notebook and wrote:
import numpy
numpy.__version__
received the version back that I have installed ('1.18.1')
* your operating syste... | 1 |
I add class 'ng-animate' to a component, but when route changed, ng-enter and
ng-leave was not added to the component.
|
**I'm submitting a ...** (check one with "x")
* feature request
**Current behavior**
Router replaces the component that is being shown.
**Expected/desired behavior**
Allow for keeping the current component for a configurable ammount of time and
instantiating the next component just under so we can animate t... | 1 |
In my application users have localized usernames.
So user switch functionality doesn't work for russian usernames (maybe because
browser change urls to something like
http://domain.com/?_switch_user=%CF%F3%F5
|
As a reminder, the Routing component is not fully unicode aware. There are
cases that work and some don't work.
Using a unicode string as content for a routing variable works currently, e.g.
`/{var}` with `var='€1'` works as expected (except normalization, see below).
Unicode text inside the static route pattern c... | 1 |
> The editor is not responding. Would you like to force close it or just keep
> waiting?
This is the message I keep getting sometimes when I try and close tabs or
windows. Specifically, when I try to close a window that has the settings tab
opened.
|
This happens every time I quit atom now. I just pulled and built 10 seconds
before this issue was created.

| 1 |
clicking one or multiple task instances from /taskinstance/list/ view and
choosing any new state, results in error screen

|
As part of the work on AIP-39 we want to make it so that _every_ TaskInstance
in the DB has DagRun.
Now at "run time" this is already the case (baring the case where someone
might delete a DagRun. Rare, now only possible by direct DB? I can't remember
if Browse -> DagRuns allows deleting anymore or not) but in our t... | 0 |
While working on a webhook auth server, I've found that the `kube-apiserver`
logs don't include useful info when the API server fails to parse the response
from the auth server. For example, the following response looks okay (the
problem was the missing Content-Type header), but then returns a 403 to the
client with ... |
Today I set up an apiserver with `--authorization-mode=Webhook,ABAC` and
(accidentally) pointed the webhook at an endpoint that did not return a proper
`SubjectAccessReview` object. The apiserver seemed to send the request payload
to the server, ignore the incorrect response then move on to the ABAC
authorizer. I wou... | 1 |
### Vue.js version
1.0.23
### Reproduction Link
<div id="currencies">
<br />{{currencies[0] | currency}}
<br />{{currencies[1] | currency}}
<br />{{currencies[2] | currency}}
<br />{{currencies[0] | currency '₹' 0}}
<br />{{currencies[1] | currency 'ͅ... |
### Version
2.6.14
### Reproduction link
http://microseeds.com/vue-bug.html
### Steps to reproduce
* use Chrome to load http://microseeds.com/vue-bug.html
* select Two
* click Submit
* click Chrome's Back button
### What is expected?
The value displayed should agree with the selected radio button
### ... | 0 |
The markdown editor very nicely supports nested language syntax highlighting
which is awesome. One small addition to make things easier is adding a
autocomplete list of standard language names used in markdown. Cursor after
three ticks ``` would list the languages.
Optionally showing a symbol next to languages with ... |
* VSCode Version: 1.2.0
* OS Version: OS X 10.11.5
Steps to Reproduce:
1. Open VSCode
2. Open any folders
3. Browse some code (eg. c++, ts, php). Loading speed should be normal at this point.
4. Leave VSCode alone and do step 3 every 10min. At 30min the opening time of file should be noticeable slower. ... | 0 |
#### Describe the workflow you want to enable
As a continuation to 18105, I would like to propose a feature addition to
Decision Tree to enable them to handle categorical variables.
#### Describe your proposed solution
The solution will be to update `fit` and `predict` method of
`BaseDecisionTree` class in _classe... |
I propose a `__sk_clone__` method that `clone` calls (if the method exist).
This way arbitrary objects can define how they want to be cloned. This is
similar to mechanism behind `__sk_is_fitted__` \+ `check_is_fitted`.
### Purpose
There are PR that run into issues with `clone`, and it would be nice to allow
the `es... | 0 |
Hi,
For a project, I have created a Wizard plugin (the breacrumber is inspired
from http://jsfiddle.net/weswinham/ySfN6/).
If you want, you can integrate it.
Cheers
* * *
CSS:
@CHARSET "UTF-8";
.wizard {
background-color: white;
}
.wizard-header a {
padding: 1... |
It would be great if you could add a progress tracker navigation device to
your supported styles / examples.
These are now pretty common place navigation items and I would think that
other people would want this too.
I've subverted a 'pager' for this purpose with some custom styles. But it
still doesn't feel right.... | 1 |
It would be great to have a way to access the values in:
`#[link(name = "blob", vers = "1.0", author = "foo")];`
To print usage info in executables without duplicating this info.
|
I'm going to naively suggest this because it seems like a better idea than
making a copy of the whole `str` library for things that return `@str`. Now
people can tell me why that's a bad idea :-)
| 0 |
It seems like `google/roberta2roberta_L-24_wikisplit` should be pre-processed
differently than originally thought:
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("google/roberta2roberta_L-24_wikisplit")
model = AutoModelForSeq2SeqLM.... |
### System Info
* `transformers` version: 4.28.0.dev0
* Platform: Linux-4.15.0-175-generic-x86_64-with-glibc2.27
* Python version: 3.10.10
* Huggingface_hub version: 0.13.4
* Safetensors version: not installed
* PyTorch version (GPU?): 1.12.0 (True)
* Tensorflow version (GPU?): not installed (NA)
* F... | 0 |
**Hans Westerbeek** opened **SPR-4335** and commented
This issue is identical to: http://jira.springframework.org/browse/SPR-4235
except the fix has not been propagated to portlet-mvc.
The problem finally affects the user by making it impossible to let
SimpleMappingingExceptionResolver map the configurated error v... |
**Johannes Tuchscherer** opened **SPR-8319** and commented
When there are a lot of requests hitting a request method with parameter
annotations we occasionally get a deadlock in the jvm (see below for stack
trace). I think this could be easily fixed in the
org.springframework.core.HandlerMethodInvoker, if - instead ... | 0 |
For the keyboard manager on remaping shortscuts, it would be really help full
if I didn't have to have a modifer key along with another key. For example i'm
attempting to remap Alt + Left to F2 however I can't do that as it require a
modifer key so I would have to do Alt + F2.
I did a search the issues and didn't se... |
# Summary of the new feature/enhancement
Ability to remap a single key (² for example, sleeping in the top left corner
of my KB), and assign it for example to alt+space, in order to open powertoys
run, or to "open a new terminal", or whatever
| 1 |
**Describe the bug**
A specific test file (for color space testing) is causing threejs to become
unresponsive and take the entire browser with it.
**To Reproduce**
Steps to reproduce the behavior:
1. download the attached file
unlit=color.zip
2. open the file in https://threejs.org/editor/
3. zoom out u... |
**Describe the bug**
This appears to be the core issue behind google/model-viewer#2915
It seems that something about a recent materials change has caused shader
compilation on my PC to take ~10x(!) longer than it used to. If I were to
guess at why I'd say that it's probably the DirectX shader compiler hitting a
pat... | 1 |
## Steps to Reproduce
I'm trying to use tabs to navigate between multiple forms, at my first program
I used the example at the cookbook, using the default controller. The problem
occurs if I tap at the TextField on the first tab, then I go to the last tab
and when I return to the first tab my program crashes, showin... |
## Steps to Reproduce
I have a PageView that contains the top level widgets for my app, with
switching between them controlled by a BottomNavBar. As per @Hixie's advice in
the chat, I am adding `AutomaticKeepAliveClientMixin` to these top level
widgets so the PageView won't recycle them and will preserve state. Afte... | 1 |
`fetch('https://httpbin.org/cookies/set?foo=bar', cookies={'foo1':'bar1'},
meta={'dont_merge_cookies': True}, headers={'Cookie':'foor2=bar2'})`
request.cookies
request.headers['cookie']
is:
{'foo1': 'bar1'}
b'foor2=bar2'
but `response.text`:
{\n "cookies": {\n "foor2": "bar2"\n }\n}\n
... |
This example is straight from the documentation, and does not work because if
dont_merge_cookies is set on the request, then the cookie middleware skips all
cookie processing and no cookies are ever set.
Request(url="http://www.example.com",
cookies={'currency': 'USD', 'country': 'UY'},
... | 1 |
# Examples bug report
## Describe the bug
When using a complete copy of with-ant-design-less sample, styles are loaded
after an initial page render when nextjs is built to production
## To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
1. Go to https://github.com/zeit/... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
A mailto link should open the email client of the user, regardless if the
recipient is present or not.
## Current Behavior
When the recipient is missing, isLocal in returns true. Leading to 'Cannot
rea... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I just want to add the CircularProgress component to my app.
## Current Behavior
I have an error : "Element ref was specified as a string (wrapper) but no
owner was set. You may have multiple copie... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
At mobile breakpoints, a `<Snackbar />` positioned bottom-center should span
the whole width of the window.
## Current Behavior
At mobile breakpoints, a `<Snackbar />` positioned bottom-center take... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
dependency
##### ANSIBLE VERSION
ansible 2.1.3.0
config file =
configured module search path = Default w/o overrides
##### CONFIGURATION
default configuration without any changes
##### OS / ENVIRONMENT
N/A (tested on Mac ... |
##### ISSUE TYPE
* Bug Report
##### ANSIBLE VERSION
Commit 3b69ef7e8b34d736770aed8f2b31cfec522ed2d8
##### CONFIGURATION
Ansible from Source (since commit `33de770` ) and dependencies with pip
##### OS / ENVIRONMENT
Docker Image library/jenkins:1.651.1 with Ansible from Source
Also Ubuntu ... | 1 |
Hi guys.
I'm working in project that's support Angular 2 and I want to upload images
directly to API.
How could I use Angular to do similar job ?
I tried using [(ng-model)] with input type file. and I get path look like
`C:/fakepath/imagename.png`.
|
**I'm submitting a ...**
* bug report
* feature request
**Current behavior**
In the old router, the new router and the very new router querystring
parameters always are accessible as `{[k:string]:string}`. To pass an array of
values via the querystring we have to rely on encoding within the application
to ser... | 0 |
#### Code Sample, a copy-pastable example if possible
Executing
import pandas as pd
df = pd.DataFrame({'a':[pd.Timestamp('2010-02-01'),
pd.Timestamp('2010-02-04'),
pd.Timestamp('2010-02-05'),
pd.Timestamp('201... |
Hello guys, I'm using the apply method with axis=1 argument and returning a
list for each row. The weird thing is when the length of this list is equal to
the number of features in the original dataframe, this apply returns another
dataframe, and a series if anything else. I don't know if this is intended,
but it was... | 1 |
Hi,
I am new to rust and was trying to write a simple program when I ran into this
failure. The failure message with backtrace enabled is as follows :
RUST_LOG=rustc=1,::rt::backtrace rustc list.rs
rust: task 7f8a7b415f20 ran out of stack
error: internal compiler error: unexpected failure
note: the compiler h... |
enum FingerTree<A> {
Empty,
Single(A),
Deep(Node<A>)
}
struct Node<A> {
count: int,
front: Digit<A>,
inner: ~FingerTree<(A,A)>,
back: Digit<A>
}
struct Digit<A> {
count: int,
content: [Option<A>, ..4]
}
... | 1 |
### Bug summary
Import of matplotlib leads to `KeyError: 'webagg.port'` on
Slackware64-current.
Seems related to #21684, #21662
During building matplotlib from pypi.org source-tar.gz, patches corresponding
to above commits had been applied, giving this
matplotlibrc:
> ..
> ##
> *****************************... |
When setting both the `markeredgecolor` and the `markerfacecolor` as a rgba
tuple, the transparency of both seems to be set to the one of
`markerfacecolor`. Could this be a bug in matplotlib or am I making a mistake?
Minimal-ish example:
import matplotlib.pyplot as plt
# plot markers with var... | 0 |
It would be great if we can have either a `jitter` command or a `jitter` flag
in `scatter`.
I'm refering to something like ggplot2's geom_jitter.
A basic solution:
def rand_jitter(arr):
stdev = arr.max()/100.
return arr + np.random.randn(len(arr)) * stdev
def jitter(x, y, s=... |
# Bug report
### Bug summary
Changing the figure's dpi via `fig.set_dpi()` does not have the desired
effect. There are strange things happening when saving or showing the figure
as detailed below.
### Bug 1 - saving
In the following a figure with dpi=200 should be saved in all 3 cases.
import matpl... | 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.8
* Operating System version: WINDOWS 10 20H1
* Java version: Java 1.8
### Steps to reproduc... |
* 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-SNAPSHOT
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this i... | 0 |
**Steps to reproduce and a minimal demo of the problem**
Examine the response object returned by any `http.get`
**Current behavior**
`res.ok` is undefined.
**Expected/desired behavior**
`res.ok`, per API doc, " True if the response's status is within 200-299"
Let's implement it:
get ok() { ret... |
I'm doing this
return this.http.request(request)
.map(res => {
if (!res.ok) {
console.error(res.ok);
console.error(res.status);
}
return res.json();
}... | 1 |
Even in the official website, checking this on an iphone4 doesn't display
properly also.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
## Current Behavior
## Steps to Reproduce (for bugs)
1. 2. 3. 4.
## Context
## Your Environment
Tec... |
The bottom of both controls gets cut off by the navigation bar. Repros on the
examples on material-ui.com

: No
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): vSp... |
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): logging,
logging level
* * *
I am using `--logtostderr=true` and I would like to be able to see only
WARN/ERROR level messages in my log of Kubernetes components.
I am ... | 0 |
> scipy.linalg.eigh
**click**
Not Found
The requested URL /doc/scipy-1.8.0/html-scipyorg/reference/reference/generated/scipy.linalg.eigh.html was not found on this server.
|
Here, for example, is a link to scipy.linalg.inv which is erroneously
>
> https://docs.scipy.org/doc/scipy/reference/reference/generated/scipy.linalg.inv.html#scipy.linalg.inv
instead of
>
> https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.inv.html#scipy.linalg.inv
| 1 |
Very often we have code that uses `transferPropsTo`, but it's very heavy
handed. Often times we just want to add a class or some style based on an
option.
Currently if we want to do that it looks something like this:
var joinClasses = require('joinClasses');
// ...
var MyComponent = React.crea... |
**Do you want to request a _feature_ or report a _bug_?**
This is a feature request.
**What is the current behavior?**
There doesn't appear to be a way to pass context when calling
`renderer.create`
I'm attempting to use snapshot testing in Jest with a component that uses
`react-intl`. If I could provide conte... | 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...
[X] Bug Report
[X] Feature request
I am not sure if the behavior is intended but it clearly causes problems.
## Current behavior
We are unable to detach a ViewRef from **ViewContainerRef A** and attach it to
a different **ViewContainerRef B**
Insert / Detaching doesn't trigger change de... | 1 |
* [*] I have searched the issues of this repository and believe that this is not a duplicate.
* [*] I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.7
* Operating System version: macOS Mojave 10.14.6
* Java version: 1.8.x
### Steps t... |
* 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.0
* Operating System version: macos
* Java version: 1.8
### Steps to reproduce this issue
... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.