text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
#![feature(std_misc)]
use std::cell::RefCell;
fn main() {
let b = RefCell::new(Some(5));
if let Some(x) = b.borrow().clone() {
}
}
And the error is:
error: `b` does not live long enough
|
Spawned off of #21022, #21972
There are a number of situations where a trailing expression like a for-loop
ends up being treated by the region lifetime inferencer as requiring a much
longer lifetime assignment than what you would intuitively expect.
A lot of the relevant cases have been addressed. In fact, its gott... | 1 |
* [ Y] I have searched the issues of this repository and believe that this is not a duplicate.
* [ Y] I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.5.9
* Operating System version: WIN10
* Java version: IBM 1.6
### Steps to reproduce... |
* 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: Linux
* Java version: 1.8
### Steps to reproduce this issue
... | 0 |
**Migrated issue, originally created by Anonymous**
On certain (at least many to many) relationships, the oracle dialect fails to
convert unicode to string on oracle 8 if the Column type is not specified, but
rather inferred from ForeignKey.
This causes **ORA-12704: character set mismatch**
Script:
... |
**Migrated issue, originally created by Anonymous**
(original reporter: ged) Is this intended? It used to work in 0.5.xxx...
* * *
Attachments: test_fk.py | 1765.patch
| 1 |
I'm on 5.8.23 (babel-core 5.8.25), and getting the following error for for..of
on IE9 and IE11. Haven't tested on IE10.
ReferenceError: 'Symbol' is undefined
|
Hey there,
I've used a simple `for...of` statement in my JSX file, but the output breaks
Safari (8.0.7). Works fine in Chrome and Firefox. The error message is
"ReferenceError: Can't find variable: Symbol" and I indeed can't find any
reference to `Symbol` in the file. Might be a missing polyfill?
This is the origin... | 1 |
### System Information
OpenCV version: 4.5.0
Operating System / Platform: Windows 10
Compiler & compiler version: GCC 9.3.0
### Detailed description
When trying to save a matrix that has the depth CV_16F using cv::FileStorage
the assertion `depth >=0 && depth <= CV_64F in function 'cv::fs::typeSymbol'`
fails.
... |
I'm seeking an approach for `CV_NODISCARD` that will work across all the
compilers opencv 4.x and above supports.
The current approach is legacy for gcc and clang. Using
`__attribute__((__warn_unused_result__))` on functions. No classes. And always
at the end of the function declaration. This is supported on gcc 4.8... | 0 |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.... |
# Checklist
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.
* I have checked the pull requests list
for existing proposed fixes.
* I have checked the commit log
to find out if the bug was alrea... | 0 |
Challenge use-a-google-font has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3)
AppleWebKit/602.4.8 (KHTML, like Gecko) Version/10.0.3 Safari/602.4.8`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
<link href="https://fonts.goog... |
#### Issue Description
This is for the feature/curriculum-expansion branch only when run locally, and
NOT the staging branch.
For several challenges (challengeType: 0, using the code editor with the
mobile-phone output layout), the jQuery method .css() doesn't seem to be
accessing the styles applied in a `style` ta... | 1 |
Repro gist: https://gist.github.com/mkscrg/9adea6ea14464876460c
Calling `electron.ipcRenderer.sendSync()` within a `drop` event handler causes
odd behavior with `dragEnd` event handlers.
Given this code in a `BrowserWindow`:
<!DOCTYPE html>
<html lang="en">
<body>
<script>
windo... |
I have an example repo here reproducing the issue in the smallest case I could
come up with.
https://github.com/aackerman/electron-setImmediate-test
The gist is, when attempting to make a sync call in a 'renderer' process to a
remote module in the 'browser' process, based on a reference from
`remote.require`; the c... | 1 |
* Electron version: v0.36.8
* Operating system: Linux olimp 3.2.0-4-amd64 #1 SMP Debian 3.2.68-1+deb7u3 x86_64 GNU/Linux
http://electron.atom.io/docs/v0.36.8/api/browser-window/#wincapturepagerect-
callback
My app takes periodically screenshot every one second. After one hour electron
memory usage is 6GB and th... |
I capture the mainWindows screen every 40ms to stream it to another computer.
But the memory consumption rises and rises and at about 15 GB it slows down
the webpage.
var handleScreenCapture = function(image) {
image = null;
setTimeout(screenTick, 40);
}
... | 1 |
Axis labels are no longer displaying properly with the latest push to
production. Please visit https://superset.d.musta.ch/superset/dashboard/meta/
to reproduce the issue.

|

| 1 |
Hello, how do I traverse the root path?
I found this issue, but it has been idle for a long time.
Is there any good way? thank!
|
When including `6to5` in other build systems, 6to5 pulling extra deps (like
chokidar) is unfortunate.
Especially when some of these have inherently brittle native extensions.
| 0 |
### System info
* Playwright Version: 1.32.3
* Operating System: [macOS 13.2.1 (22D68)]
* Browser: [Chromium]
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
playwright-locator-loop
or
**Config fi... |
### System info
* Playwright Version: [1.32.2]
* Operating System: [Windows 11]
* Browser: [Chrome]
* Other info: I haven't tested on other browsers and I can see this issue with versions above 1.30.0
**Title:** Browser closes unexpectedly when a test fails during Playwright
Test execution
**Description:**... | 0 |
See discussion in https://discourse.julialang.org/t/no-automatic-type-
promotion-for-parametric-structs/62664/1
When using different (but convertible) types in a constructor, for "standard"
structs the types get converted automatically, e.g.
struct Struct1
x:: Float64
y
end
... |
Consider a definition of a parameter-less struct:
struct Bar
x::Int
y::Float64
end
This creates two constructors: A fully specified `Bar(x::Int64, y::Float64)`
and a fully _un_ specified `Bar(x, y)`. The latter is very convenient because
you can just do `Bar(1, 1)` and it will... | 1 |
Why not to think of adding "right to left" support, I think this will be a
great feature to bootstrap.
|
I believe that bootstrap dropdowns should not close when the dropdowns
themselves are clicked on. This will make it possible to put login forms
inside the dropdowns.
You can reporoduce this by heading to
http://twitter.github.com/bootstrap/javascript.html#dropdowns , opening a
dropdown, and clicking in the line sepr... | 0 |
* VSCode Version: 1.1.1
* OS Version: 10
Steps to Reproduce:
1. Install VS Code.
2. Install one or more extensions.
3. Notice that there is a `.vscode` folder in your user directory.
In Windows, the root of the user directory is _NOT_ the right place to store
application settings. This is a very common c... |
* VSCode Version: 0.10.11
* OS Version: Windows 7 Enterprise 64-bit
Steps to Reproduce:
1. Press "Ctrl + =" to zoom in the view.
2. Search for some text
3. Click "F3" to jump to the "Next match"
The fonts are rendered with blur.

nor .dragAndDrop() were working like some other users have posted about.
### System info
* Playwright Version: 1.8
* Operating System: macOS 13.2
* Brows... |
**Context:**
* Playwright Version: 1.30.0
* Operating System: WSL2
* Node.js version: v16.18.1
* Browser: All
**Code Snippet**
This is just one short example. It is affecting all tests.
import { test, expect } from '@playwright/test'
test.beforeEach(async ({ page }) => {
await... | 0 |
It should be possible to make an `expanded` (but not `multiple`) choice widget
render an additional radio button for the `empty_value` option (if passed).
Otherwise it's not possible to remove the selection if the field is not
required. It should be selected by default if no other option is selected.
|
As far as i can see there no way to overwrite or set the default messages
domain for a certain template or controller. Especially when using the keyword
syntax like "email.lostpassword.greeting" i find it very inconvenient to
duplicate the keyword "email" (not to mention to add the empty the second
argument) as the d... | 0 |
**Expected Behavior**
Use the session.setProxy function of a window to set a user:pass authenticated
proxy. Load URL in that window. Expect that app.login event is triggered and
request is made.
**Actual behavior**
Set session proxy to a user:pass authenticated proxy, loadURL requests fail
with status "failed"... |
Hello,
I'm hoping for some general guidance... it seems when using electron
notifications (either with the html5 api in from within renderer process or
the notification module inside the main process) each notification fires off
three times, resulting in three identical notifications and an annoyed user.
My best gue... | 0 |
**Chris Beams** opened **SPR-8182** and commented
Based on decisions made in other subtasks of #12830.
* * *
This issue is a sub-task of #12830
**Issue Links:**
* #12711 Decide what to do with 'local' attribute in beans: namespace ( _ **"is duplicated by"**_ )
**Referenced from:** commits `50dfa03`
1 votes,... |
**Kamil** opened **SPR-9092** and commented
I implement contributions for my application and I found inconsistent
behaviour for Provider/ObjectFactory. There are defined classes for different
contributions:
@Contribute("rest")
@Named("bean-contrib2a")
public class Contrib2A implements Contrib... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
core
##### ANSIBLE VERSION
2.4.2.0 - v2.4.3.0-0.5.rc2
##### CONFIGURATION
##### OS / ENVIRONMENT
N/A
##### SUMMARY
wrong error generated if import_tasks found in include_tasks file
##### STEPS TO REPRODUCE
- include_task... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
include_tasks
##### ANSIBLE VERSION
ansible 2.4.2.0
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/dist-packages... | 1 |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussions forum first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports... |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.... | 0 |
When using `multiple` attribute only the first file is uploaded. The rest is
simply ignored. Is this on purpose by design?
|
The locale refactoring lead to a regression in the Security/Router
integration. It's now again possible to detect the routes for secured parts of
the website.
| 0 |
I want to test the performance of AlexNet, ZF Net, GoogLeNet, VGGNet on my own
dataset. But I cannot find the code for these models in Keras, then are there
any codes for AlexNet, ZF Net, GoogLeNet, VGGNet in Keras? How can I find
them? Thank you so much!
|
Please go to TF Forum for help and support:
https://discuss.tensorflow.org/tag/keras
If you open a GitHub issue, here is our policy:
It must be a bug, a feature request, or a significant problem with the
documentation (for small docs fixes please send a PR instead).
The form below must be filled out.
**Here's w... | 0 |
style element created but not able to finish task
|
This will be the central issue for tracking this problem. So far it appears to
be effecting tests that look for the `style` element or that test for specific
style elements on `body`. Please let us know if you see cases that break from
this pattern.
| 1 |
### System Info
### System Info
I'm running into an issue where I'm not able to load a 4-bit or 8-bit
quantized version of Falcon or LLaMa models. This was working a couple of
weeks ago. This is running on Colab. I'm wondering if anyone knows of a fix,
or why this is no longer working when it was 2-3 weeks ago arou... |
ALBERT: https://arxiv.org/abs/1909.11942v1 was just released. Are there plans
to implement this in Transformers?
| 0 |
**Moshe Moshe** opened **SPR-7980** and commented
Hi,
It seems that the `AdvisedSupport.MethodCacheKey.equals()` compares methods by
reference and not using `Method.equals()`.
This means if 2 Methods instances are `equals()` the `AdvisedSupport` will add
both of them to the `methodCache` Map.
This can be easily... |
**Gary Ip** opened **SPR-2598** and commented
Features request for dealing with Dealing with Single PersistenceUnit in
Multiple persistence.xml files as stated in Spring forum.
http://forum.springframework.org/showthread.php?t=29230
suggestion:
1. allow the method preparePersistenceUnitInfos () in org.springf... | 0 |
It seems that the string from DOM is encoded in UTF-16, then use with node's
`fs` module, it can not handle properly.
For example:
<div id="demo">abc</div>
fs.writeFile(path,document.querySelector('#demo').innerText,function(){
//xxx
})
Then the file written by node is not c... |
Hey.
When retrieving a hexadecimal string from the user's clipboard and converting
it to a Buffer via `new Buffer string, 'hex'`, it seems that the second half
of the string isn't parsed correctly and defaults to a random byte string.
document.addEventListener 'paste', (evt) ->
str1 = evt.clipbo... | 1 |
### Bug report
**Bug summary**
Setting `maker` in a scatter plot is causing `ValueError`
**Code for reproduction**
import matplotlib.pyplot as plt
f = plt.figure()
s = plt.scatter([1, 2, 3], [4, 5, 6], marker="")
removing the marker option plots the scatter graph. I refered to the docs for
... |
### Bug report
**Bug summary**
`plt.scatter()` raises upon drawing when called with `marker=''` (no errors
with 3.3.0).
This change of behavior broke seaborn.
**Code for reproduction**
import matplotlib.pyplot as plt
plt.scatter([], [], marker='') # fails also with plt.scatter([1,2,3], [1,2,3... | 1 |
In one of our screens with Material Scaffold no AppBar is set and the body is
a ListView containing normal Flutter widgets and a WebView. The ListView is
wrapped in a SafeArea.
When scrolling up, as expected, the normal Flutter widgets are not visible
behind the statusbar. Unfortunately on iOS the WebView IS visible... |
Can't clip NativeView(UIKitView) on iOS,Android is ok.
BorderRadius not work with ClipRRect、Card and so on.
| 1 |
When using keras for regression problems, loss uses mean squared error. The
loss displayed by the network fit in the last epoch during training is
inconsistent with the loss calculated from the input data after the model is
saved.
|
#
Click to expand!
### Issue Type
Bug
#### Source
binary
#### Tensorflow Version
2.8.2
#### Custom Code
Yes
#### OS Platform and Distribution
Linux Ubuntu 18.04.5
#### Python version
Python 3.7.13
#### Current Behavior
I am following the steps here for customizing what happens in `train_step`
when you ... | 1 |
* Electron Version:2.0.3
* Operating System (Platform and Version): macOS 10.13.5
* Last known working Electron version:
**Additional Information**
Add any other context about the problem here.
code:
ipcMain.on('remove-tray', () => {
setTimeout(() => {
appIcon.destroy()
},... |
* Electron Version: latest (non beta)
* Operating System (Platform and Version): mac high sierrra
* Last known working Electron version: n/a
**Expected Behavior**
I have 2 independent tray icons. When I destroy one icon sometimes application
crashes with this error:
`Electron[6667:281388] -[__NSCFString is... | 1 |
# I want the ability to add a single full screen zone across multiple displays
in a multi-monitor configuration
I use Visual Studio across 2 x 4K 32" monitors. I want to maximize the
application across both displays, and treat both displays as a single
screen/zone. Currently, I need to open the app, and manually ali... |
Popup tells me to give y'all this.
2020-07-31.txt
Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.19041.0
IntPtr Length: 8
x64: True
Date: 07/31/2020 17:29:59
Exception:
System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'Timer'.
at System.Timers.Timer.set_Enabled(Boo... | 0 |
Documents of different types tend to have different fields, which can lead to
problems of sparsity when documents are stored in the order that they were
indexed. If we sort documents by type, then missing values (eg in doc values
or norms) can be represented very efficiently.
On merge, documents should be sorted by ... |
Lucene has index-time sorting and early query termination capabilities. It
would be nice to integrate it into Elasticsearch in order to speed up queries
whose sort order matches the index order. This presentation contains some
information about these features and their implementation in Lucene.
| 1 |
React version: `0.0.0-experimental-94c0244ba`
## Steps To Reproduce
import React from "react";
import Rating from "@material-ui/lab/Rating";
import "./styles.css";
export default function App() {
const [rating, setRating] = React.useState(null);
return (
<div>... |
React version: I think any experimental version.
Tested using:
* `0.0.0-experimental-5faf377df` and
* `0.0.0-experimental-e5d06e34b` at least.
## Steps To Reproduce
1. Open CodeSandbox: https://codesandbox.io/s/createroot-broken-focus-onchange-ysrut?file=/src/App.js
2. Attempt to click on the label text ... | 1 |
environment:
OpenCV(4.3.0)
language:python 3.6
1.load the data from txt files,and then convert type from float to int32.
a.txt
4.020161 0.372046
4.086024 0.548271
4.112598 0.539363
4.162546 0.522878
4.252789 0.684608
4.265030 0.681673
4.572025 0.757398
4.752093 0.743017
4.958206 0.821787
5.... |
Transferred from http://code.opencv.org/issues/4490
|| Do Bi on 2015-07-21 13:15
|| Priority: Normal
|| Affected: branch 'master' (3.0-dev)
|| Category: None
|| Tracker: Bug
|| Difficulty:
|| PR:
|| Platform: x86 / Windows
## createShapeContextDistanceExtractor()->co... | 1 |
I have soft wrap enabled and there's a block which is wrapped to the next
line. When I fold it soft wrap stops working.

|
Taken from #5567 (comment).

Notice that the paragraphs are soft-wrapped, but after the fold -- the first
paragraph is un-soft-wrapped.
| 1 |
Please see an example below. Should it generate same fingerprint? Thanks.
from scrapy.http import Request
from scrapy.utils.request import request_fingerprint
r1 = Request("http://www.example.com/123")
r2 = Request("http://example.com/123")
print request_fingerprint(r1)
pr... |
Currently when image download encounters redirect download fails. This is
probably because of this line that sets handle_httpstatus_all. As a result
image download handler gets to process response with status 3** and usually
empty body, it is not able to download image, it fails. Is this expected
behavior? Why not fo... | 0 |
**I'm submitting a feature request** (check one with "x")
[ x ] feature request
**Current behavior**
Currently when testing a component we need to manually create a new component
for testing inputs set on the template which is pretty verbose and difficult
to test templates with optional bindin... |
**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 |
##### System information (version)
* OpenCV =>Newest
* Operating System / Platform => WIN10X64
* Compiler =>VS2017X64
##### Detailed description
opencv_imgproc_AVX512_SKX:
D:\Eigen\src\Eigen\src/Core/GenericPacketMath.h(524): error C2665: 'log': none
of the 3 overloads could convert all the argument types ... |
##### System information (version)
* OpenCV => ❔
* Operating System / Platform => ❔
* Compiler => ❔
##### Detailed description
##### Steps to reproduce
| 0 |
Hi, just reporting a problem,
I tried to run julia on Ubuntu 13.04 on a free EC2 instance (t1.micro) and got
an Illegal instruction just after typing julia.
I tried both 32 and 64 bit Ubuntu.
Haven't tried this on a non-free instance.
Steps to reproduce:
* create a t1.micro instance running the OS : Ubuntu se... |
julia.bat crashes and test-julia.bat give the message :
Your OS does not support AVX instructions. OpenBLAS is using Nehalem
kernels as a fallback, which may give you poorer performance.
Please submit a bug report with steps to reproduce this fault, and any error
mes
sages that follow . Thanks.
When I hit en... | 1 |
I think line 567 in tools/rplot.py "ax.contour(Z, extent=[x_min, x_max, y_min,
y_max])" should be changed to "ax.contour(Z.T, extent=[x_min, x_max, y_min,
y_max])"
When I plot a density map, the graph is rotated by 90 degrees.
|
The axes drawn by rplot.GeomDensity2D are flipped.
line 565 reads:
`ax.contour(Z, extent=[x_min, x_max, y_min, y_max])`
but should read:
`ax.contour(Z.T, extent=[x_min, x_max, y_min, y_max])`
The following test code gives the results shown below:
import numpy as np
import pandas as pd
... | 1 |
[x] bug report => search github for a similar issue or PR before submitting
[x] feature request
**Current behavior**
I want basic inheritance concept:
export abstract class AbstractForm{
abstract data;
constructor(protected dialog: DialogService){}
}
//then us... |
`dashCaseToCamelCase` and `camelCaseToDashCase` are duplicated:
angular/modules/angular2/src/core/compiler/property_setter_factory.js
Line 9 in 58dd75a
| export function dashCaseToCamelCase(input:string): string {
---|---
&
https://github.com/angular/angular/blob/58dd75a1c8abfa8396ead9b2b1c95dc6c6558668/mo... | 0 |
Hello!
I thought I'd open an issue, as I am currently working on this and hope to
have a commit ready by the end of the day.
"kube-up" with AWS ought to build out a highly available and multi-AZ
kubernetes cluster following AWS EC2 best practices. There are two large steps
to this:
1. Multi-AZ minions
2. Highl... |
With the introduction of the experimental api prefix, we introduce large
amounts of duplicate code for our autogenerated conversions and deep-copy
functions. This increases the size of our binaries, and is not elegant. For
simplicity, I will only talk about deep-copies, but everything that follows
should also apply t... | 0 |
# Examples bug report
## Example name
`analyze-bundles`
## Describe the bug
After following the "Download manually" instructions, there is an error in the
terminal and the page at http://localhost:3000/ displays "Internal Server
Error"
## To Reproduce
1. `curl https://codeload.github.com/zeit/next.js/tar.gz/c... |
We need a sidebar which is a category tree of an e-commerce site, fetched from
DB(pls check this example - ffshop : left menu \- building the next version of
it).
This should only load once - at very first time (server rendered) like react
router example
How can I fetch this initially - using HOC? I use layout comp... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
vmware_guest
##### ANSIBLE VERSION
ansible --version
ansible 2.3.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC... |
From @X-Cli on 2015-08-15T16:56:46Z
##### ISSUE TYPE
Bug Report
##### COMPONENT NAME
lxc_container module
##### ANSIBLE VERSION
`container_config` is parsed as a python dict by the ansible **lxc_container
module** , at least in current stable version 1.9.
##### SUMMARY
`container_config` is parsed as a Python... | 0 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 1.0.0
**System** : Microsoft Windows 10 Pro Insider Preview
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename ... |
I right-clicked on a folder in the tree view
**Atom Version** : 0.194.0
**System** : Windows 7 Entreprise
**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)
at Fu... | 1 |
Running numpy.dot normally produces the expected answer:
$ python -c "import numpy ; f=numpy.ones(2,dtype=numpy.float32);print f.dot(f)"
2.0
If I import a PyQt5 module first, I get a different answer:
$ python -c "import PyQt5.QtWidgets ; import numpy ; f=numpy.ones(2,dtype=n... |
I've found a very strange bug. Under certain circumstances, a small number of
the entries in the dot product of two 2D arrays will be wrong:
import numpy as np
nrow, ncol = 2, 69900
rows = np.random.normal(size=(nrow, 1)).astype(np.float32)
columns = np.random.normal(size=(1, ncol)).astype(... | 1 |
I've got an account on your site and I've successfully added GitHub, Twitter
and G+ to my profile, but when I try to add LinkedIn, nothing happens once
I've logged in and authorized Free Code Camp. The problem seems to be on your
side as the dialog closes after attempting to authorize and when the button is
clicked i... |

Challenge http://www.freecodecamp.com/challenges/waypoint-target-a-specific-
child-of-an-element-using-jquery has an issue. Please describe how to
reproduce it, and include lin... | 0 |
Howdy!
Due to some unfortunate circumstances I'm currently stuck working on a project
that's a subdirectory in part of a larger git repo. To open the entire repo
directory would be a bit of a pain as well. I can work on the project just
fine otherwise but none of the git features are currently available which is a
d... |
Ubuntu 12.04, vscode 0.10.1
The main reason I want this is to get around slow go to file indexing #55 by
opening a sub-directory in Chromium so that indexing it doesn't take very
long. Traversing the file path upwards to the root directory should be a
fairly quick to perform action.
**Repro:**
1. `mkdir -p foo/b... | 1 |
react-scripts version: 3.4.1
## Steps To Reproduce
1. Created project with CRA typescript
2. Added `.eslintrc.js`:
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
... |
When a state update causes the form's submit button to be displayed, the
form's submit event fires even though the submit button has not been pressed.
React version: 18.2
## Steps To Reproduce
1. Press the "Change Mode" button on the first linked sample.
2. Checking the console, you can see the `submit` event ... | 0 |
## Feature request
**What is the expected behavior?**
Every loader that uses `[hash]` needs to use `[hash:10]` to be consistent if
webpack's options were set as `output: { hashDigestLength: 10 } }`. It would
be better if loaders were able to use the same value by default if they choose
to.
**What is motivation or... |
## Feature request
We all know that webapck can set the resolve.mainFields to read the
node_modules package dependency file, but if I set` {" es2015":
"./fesm2015/core.js "} `like `@angluer/core `package.json;
I will configure `resolve.mainFields` as`[' es2015 ', 'module', 'main']`;
If my build target is es5,
... | 0 |
When using a touch device (such as a Surface Pro 4) in tablet mode, I expect
the touch keyboard to be presented when you tap on the input area of the
terminal, however it does not. it is the same behavior with PS, cmd, wsl. the
cursor appears and waits for input but no keyboard.
|
# Environment
`bd5cae1`
# Steps to reproduce
Run program of this kind:
int main()
{
cout << "\x1B[41m";
cout << "X Red ";
cout << "\x1B[42m";
cout << "Green\n";
cout << "\x1B[43m";
cout << "Yellow ";
cout << "\x1B[44m";
cout << "Blue";
cout << "\x1B[0... | 0 |
Code compiles and runs just fine but with enough stuff in a array Atom thinks
that everything is String or comments.
tl;dr If an array has more than 23 string inside it Atom will freak out.
http://gyazo.com/3e4dc7df7bbf131c1a5b76566e72d4bf
|
I opened a Python file with the following line (#963):
PrintAndLog(u"SSID: " + RememberedNetwork["SSIDString"].decode("utf-8") + u" - BSSID: " + RememberedNetwork["CachedScanRecord"]["BSSID"] + u" - RSSI: " + str(RememberedNetwork["CachedScanRecord"]["RSSI"]) + u" - Last connected: ... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
## Current Behavior
{ Error: No page context
at Function._callee$ (/Users/liumin/Desktop/next/with-redux-
saga/node_modules/next-redux-wrapper/lib/index.js:169:25)
at tryCatch (/Users/liumin/Desktop... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
The recent change in Next.js 5.0.0 removed the `poweredByHeader` options from
`next.config.js` and instructs the user to remove it in their custom server.
## Current Behavior
X-Powered-By header cannot... | 0 |
If a bound value can be of more than one type, then HTML Number input fields
are being bound as Strings. My expectation is that they should be bound to the
same type as the input field. In my case, we change the type of the input
field based on value of other fields on the form. This becomes a problem
downstream ... |
When setting the field of:
num bZip;
From:
<div class="form-group">
<label for="billing_zip">Zip</label>
<input type="number" id="billing_zip" [(ng-model)]="dto.bZip" class="form-control" [required]="true"/>
</div>
> EXCEPTI... | 1 |
Atom v0.121.0
OS X Yosemite 10.10

|

stick on the bar at the top - no window around.
fresh install from www.atom.io \- version 0.122.0
| 1 |
### Bug report
**Bug summary**
Using version 3.1.0, ax.invert_yaxis() does not work as expected when called
on a 3D scatter plot. There seems to be no effect when it is called after
populating the plot, while calling it before the plot inverts the data points
correctly but moves all ticks to one point.
**Code for ... |
### Bug summary
The ax.invertxaxis() and ax.invert_yaxis() function both produce the same
output, a scatterplot with a flipped X axis.
### Code for reproduction
from mpl_toolkits import mplot3d
import matplotlib.pyplot as plt
ax = plt.axes(projection='3d')
plt.title("Invert Z")
a... | 1 |
# Environment
Windows build number: 10.0.19013.0
Windows Terminal version (if applicable):0.6.2951.0
Any other software? PSReadLine 2.0.0
# Steps to reproduce
Copy a PowerShell function at least twice the height of the terminal window to
the clipboard. Right-mouse click paste the co... |
# Environment
Windows build number: 10.0.18362.0
Windows Terminal version (if applicable): Version: 0.4.2382.0
Any other software?
Office C2R
SSMS 18.2
VSCode
# Steps to reproduce
- Right-Click app from start menu
- Fill in appropriate credentials
... | 0 |
Hi,
I have a requirement that model should search for relevant documents before
answering the query. I found RAG from Facebook AI which perfectly aligns with
my requirement . Also saw this blog from HF and came to know that HF
implemented RAG which is awesome!
My doubt is whether I could extend HF's implementation... |
# 🚀 Feature request
**Good Second Issue** \- A more advanced issue for contributors who want to
dive more into Longformer's attention mechanism.
Longformer currently only outputs global attentions, which is suboptimal
because users might be interested in the local attentions as well. I propose
to change the "outpu... | 0 |
I want to confirm that the current and future versions of opencv4 will no
longer support vs2013?
Will the opencv3 version always support vs2013?
Thanks answer.
|
Start using `noexcept` in commit `43f821a` makes it impossible to use VS2013.
| 1 |
# Summary of the new feature/enhancement
Having multiple languages installed on my machine, I start typing in the wrong
language in the Run search box. I click the correct keys for what I am looking
for, but of course the outcome is something completely different.
For example, searching for "terminal" would turn o... |
# Summary of the new feature/enhancement
# Proposed technical implementation details (optional)
| 0 |
Describe what you were doing when the bug occurred:
1. Monitoring page load with ReactDevTool Profiler
2. Stopped the recording
3. Selected a render phase in the FlameGraph
* * *
## Please do not remove the text below this line
DevTools version: 4.10.0-11a2ae3a0d
Call stack: at updateTree (chrome-
extensio... |
**Do you want to request a _feature_ or report a _bug_?**
bug
**What is the current behavior?**
error message:
`/node_modules/@types/react-
router/node_modules/@types/react/index.d.ts(2314,14): TS2300: Duplicate
identifier 'LibraryManagedAttributes'.`
**What is the expected behavior?**
正常编译
**Which versi... | 0 |
stats.mode seems surprisingly slow, especially since it's very much the same
as `find_repeats`. Despite only needing to return the first value and being
pretty much the same function, stats.mode is much slower than find_repeats
(which appears to be a very thin wrapper around a fortran function), here's
some benchmark... |
_Original tickethttp://projects.scipy.org/scipy/ticket/905 on 2009-03-31 by
trac user parejkoj, assigned to unknown._
I'm trying to run scipy.stats.mode (in scipy.stats.stats) on a 2-d ndarray,
but it takes an extremely long time. The data is an image (astronomical data),
with:
data.shape = (227,3104)
data.dtype... | 1 |
### Current Behavior:
I've got a pre-workspaces monorepo setup like this:
.
├── app1
│ └── package.json
├── app2
│ └── package.json
└── packages
├── pkg1
│ └── package.json
└── pkg2
└── package.json
In app1 and app2 we consume th... |
### Current Behavior:
npm v7 does not install linked local packages dependencies.
### Expected Behavior:
In npm v6 the dependencies of a local linked package are installed. This means
that if `app` has `my-local-pkg` as a dependency, running `npm install`
generates `app/node_modules` folder and also `my-local-pkg/... | 1 |
when I render **form.jade** from **columns.json** , I try to pass
propsData(multi props) to component , but It seems unsupported. Is there a
better way to do this?
> json
>
>
> [
> {"title": "A", "name":"a", "component": "ui-dropdown" , "propsData":
> {"options": [], "on":"hover" }},
> {"title":... |
It would be great if we could use v-bind with an object of attributes to pass
props to a component.
<component is="component" v-bind="data"></component>
Currently we need to explicitly state the props we are passing to the
component.
<component is="component" :prop-a="propA" :prop-... | 1 |
### Describe the bug
Mounting StaticFiles with an APIRouter doesn't work.
### To Reproduce
from typing import Any
from fastapi import FastAPI, Request, APIRouter
from fastapi.staticfiles import StaticFiles
from fastapi.testclient import TestClient
router = APIRouter()
@r... |
**Description**
This is half a question on conceptual ideas, and half a feature request maybe?
I was wondering if anyone here has any thoughts on the following scenario.
Say I'm making a profile API. When posting a new profile, you use this model
class Profile(BaseModel):
first_name: str
... | 0 |
With the proposal for #22858, I've been thinking it could be useful to have a
type which commonly represents "AllIndices". So `A[AllIndices()]` would return
`A`, making it the identity indexing element in some sense.
The reason is so that this could handle non-standard indexing. In some
algorithms you might want the... |
Numpy has this ellipsis notation for filling
index tuples up to dimension, where in
`A[..., i, k]`
`...` is interpreted as shorthand for the number of colons `:, :, : etc`
needed to fill
the indexing tuple up to dimension `n`.
http://docs.scipy.org/doc/numpy/reference/arrays.indexing.html
This gives nice ac... | 1 |
I just upgraded from 2.0.16 to 2.1.0 Beta 4 and in this code I get error:
$builder->add('name', 'text');
$builder->add('category', 'entity', array(
'class' => 'PostBundle:Category',
'query_builder' => function(EntityRepository $er) {
return $er->createQueryBuilder('u');
... |
The master documentation says the following about the entity form type:
> The class of your entity (e.g. AcmeStoreBundle:Category). This can be a
> fully-qualified class name (e.g. Acme\StoreBundle\Entity\Category) or the
> short alias name (as shown prior).
However, the `Bundle:Entity` syntax throws the following ... | 1 |
Will node programs be able to run via deno? Will there be an adapter? I think
that's pretty important if deno adaption is to increase.
|
Would it be possible to get access to exactly the same API in Node.js?
I found the API surface overall to be exquisitely neatly designed, and I like
it a lot. I'd like to be able to seamlessly switch between Deno and Node.js
without memorizing strikingly different OS/file APIs.
| 1 |
Feature Request: Open recent documents and reopen last closed window
|
A feature I love about ST2 and iA Writer, which I'm missing in Atom, is when
you quit the app with open windows (including unsaved documents), they all
appear again when you reopen.
This has saved me countless times in my workflow to handle having to do a
system restart for software update, etc and not have to take ... | 1 |
I upgraded MUI from v0.16.7 to v0.19.3 and have now the following problem with
my popovers.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Popover should rendered at the position the placement logic calculates.
## Current Behavior
Popover renders ... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
A button should be rendered.
## Current Behavior
An error is displayed: Using version beta28 in a newly created create-react-
app app that renders only a material-ui `Button`, I get the following e... | 0 |
**Migrated issue, originally created by Wichert Akkerman (@wichert)**
After upgrading from 0.9.4 to 0.9.5 or 0.9.6 I am suddenly seeing an error
appear in my tests:
src/lets_lynk/factory.py:51: in factory
> return query.first()
../../Library/buildout/eggs/SQLAlchemy-0.9.5-py2.7-macos... |
**Migrated issue, originally created by NotTheEvilOne (@NotTheEvilOne)**
Hi,
the "autoflush" feature triggers an error in SQLAlchemy 0.9.6.
File "/opt/pas/src/dNG/pas/data/upnp/resources/mp_entry.py", line 588, in init_cds_id
.first()
File "/usr/lib/python3.4/site-packages/sqlalchemy/... | 1 |
E.g.
[ 94%] Built target opencv_videoio
[100%] Built target opencv_highgui
Linking CXX executable ../../bin/opengl-example-opengl_interop
../../lib/libopencv_imgproc.so.3.0.0: undefined reference to `tbb::task_group_context::cancel_group_execution()'
../../lib/libopencv_imgproc.so.3.0.0... |
##### System information (version)
* OpenCV => 3.3
* Operating System / Platform => Windows 10 64 Bit
* Compiler => Visual Studio 2015
##### Detailed description
##### Steps to reproduce
Duplicate of #10377
| 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
template module
##### ANSIBLE VERSION
ansible 2.2.1.0
config file =
configured module search path = Default w/o overrides
##### CONFIGURATION
N/A
##### OS / ENVIRONMENT
N/A
##### SUMMARY
Cannot apply a `to_nice_yaml` filter... |
### Issue Type:
Bug Report
### Ansible Version:
ansible 1.8.2
### Environment:
* OS X 10.10.2
* VMWare Fusion Professional 7.1.1
* Vagrant 1.7.2
* vagrant-vmware-fusion (3.2.3)
### Summary:
When running a template-task on a vagrant shared folder, the playbook-run is
stopped with the error
... | 0 |
Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | yes
Symfony version | 4.1+
The Validator component comes with some constraints that require optional
third-party libraries (for example, the `EmailValidator` constraint can
optionally be used with the `egulias/email-vali... | Q | A
---|---
Bug report? | Maybe
Feature request? | no
BC Break report? | no
RFC? | no
Symfony version | 3.4.x
Hello,
I have run a composer update to my project runnning PHP 5.6
These are the packages that have been updated:
Package | Old Version | New Version
---|---|---
league/csv | 8.2.2 | 8... | 0 |
Based on the discussion https://discourse.julialang.org/t/getting-union-tuple-
covariance-for-maps-between-parallel-type-hierarchies/70060/6
abstract type Continuous end
abstract type Count end
Scitype(::Type{<:Integer}) = Count
Scitype(::Type{<:AbstractFloat}) = Continuous
Sc... |
in a fresh Mac v1.6.2 session:
julia> function f1(x::Union{AbstractArray{T}, AbstractArray{Union{T, Missing}}},
y::Union{AbstractArray{T}, AbstractArray{Union{T, Missing}}};
α::T = T(3.0) ) where {T<:Real}
println(typeof(x), " ", typeof(y))... | 1 |
Add new "local" snapshot repository type that would be similar to shared
filesystem repository but will allow storing all snapshot file on a local file
system of a single node.
|
**Elasticsearch version** : v5.0.0-alpha5
**Plugins installed** : x-pack
**JVM version** : jdk1.8.0_92
**OS version** : Mac 10.11.5
**Description of the problem including expected versus actual behavior** :
When using an ingest pipeline with a rename processor that tries to rename the
element to a nested one w... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
The unsafe lifecycle function aliases in 16.3.2 are not merged when defined
more than once because of mixins, triggering an error:
> Uncaught Error: ReactClassInterface: You are attempting to define
> `UNSAFE_component... |
I'm trying to run this snippet:
class Container extends React.Component {
constructor() {
super();
this.state = {
text: '...',
};
}
componentDidMount() {
fetch(urlThatReturnsSomeText)
.then(res => res.text())
.t... | 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.7-SNAPSHOT
* Operating System version: mac
* Java version: 1.8.0_65
### Steps to reproduce 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.2
* Operating System version: win7
* Java version: 1.8
### Steps to reproduce this issue
... | 0 |
It looks like webpack try to bundle all of server side dependencies, so it
can't find module `fs`.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
`dotenv` in `_document` works with Next.js v6.
## Current Behavior
After upgrading from v5 to v6, it ... |
I'm trying to rely on multiple <style jsx global> to be ordered correctly.
E.g.:
<GlobalStyle />
<BlogStyle />
Where I'd like BlogStyle to tweak stuff like body background image and text
color. But it looks like tags get ordered certain way irrespective of their
order in the component (probabl... | 0 |
I followed the build instructions given for the FreeBSD (10.0 x86_64) here-
https://github.com/atom/atom/blob/master/docs/build-instructions/freebsd.md
I compiled node and npm from sources (FreeBSD ports) but still no luck. Here
is the full error log:
http://pastebin.com/WQx8UXWs
|
I tried to build it following this instructions:
https://github.com/atom/atom/blob/8db47bd7b2226b858a255867aaa16419c652f64d/docs/build-
instructions/freebsd.md
Here is the full build log:
http://pastebin.com/VEtB9WuY
TIA,
| 1 |
Repeatable case: http://is.gd/kcejxG
% 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 (`a45e117` 2015-01-28 11:01:36 +0000)
binary: rustc
commit-hash: `a45e117`
commit-date: 201... |
It actually happens even if you take out the `type T` but I figured that would
be too confusing of a testcase.
#![feature(associated_types)]
pub trait Foo {
type T;
type S: Bar<Self::T>;
}
pub trait Bar<T> {}
error: internal compiler error: unexpected... | 1 |
Was scheduled for 110.
|
Replaces `xrange` by `range` and replaces `range(...)` by `list(range(...))`
where needed.
| 0 |
I've recently updated scipy in Fedora to newest 0.13.0 release and I can see
one test failure on every architecture, both in python 2 and 3:
##### Python 3.3.2
ERROR: test_fitpack.TestSplder.test_kink
----------------------------------------------------------------------
Traceback (most recent... |
`eigs`, `eigsh`, `svds` all default to using `2 * k + 1` for the number of
lanczos vectors `ncv`. This is fine for `k > ~5` or so but drastically slows
the algorithm down for small `k` (e.g. k=2 or 1 slower than k=6!) and often
means the convergence fails. The problem is worse for dense matrices (these
sparse methods... | 0 |
#### Challenge Name
#### Issue Description
The code editor won't let me select or even navigate down to the last two
lines of code. The 3rd line from the bottom it will let me select 2/3s of the
line and the 4th line up will let me select about 3/4.
#### Browser Information
* Browser Name, Version: Google Chrom... |
In all the exercises, we the users are forced to press the enter key before
writing any code.
* * *
#### Update:
We have locked the conversation temporarily on this thread to collaborators
only, this has been resolved in staging, and will be live soon.
The fix can be confirmed on the beta website.
The workaround... | 1 |
#### Describe the bug
Form uploads appear to have broken between v0.26 and v0.27. Requests that used
to work without issue no longer work.
Here is sample code that accepts a file and attempts to upload it to
Cloudinary using form data.
export const upload = (file) => {
const formData = new Form... |
#### Summary
After upgrade from **0.16.2** to **0.17.0** I got error `window is undefined`
when running in web worker at line:
axios/lib/adapters/xhr.js
Line 27 in 2c0e318
| if (!window.XMLHttpRequest &&
---|---
Changing order of conditions `typeof window !== 'undefined'` and
`!window.XMLHttpRequest` fixe... | 0 |
## ❓ Questions & Help
I am trying to fine-tune XLM on the SQuAD dataset.
The command is as following:
[CUDA_VISIBLE_DEVICES=0 python run_squad.py --model_type xlm
--model_name_or_path xlm-mlm-tlm-xnli15-1024 --do_train --do_eval --train_file
$SQUAD_DIR/train-v1.1.json --predict_file $SQUAD_DIR/dev-v1.1.json
--pe... |
### Feature request
Similarly to the `max_new_tokens`, a `min_new_tokens` option would count only
the newly generated tokens, ignoring the tokens of the input sequence (prompt)
in decoder only models.
### Motivation
The option `min_length` of the `generate()` method might be ambiguous for
decoder only models. It i... | 0 |
I'm working on an application with many different code paths that load
textures and I've patched the WebGLRenderer to cache textures also on the GL
level, so that `uploadTexture` and `onTextureDispose` use a dictionary to see
if a texture has aleady been uploaded or are no longer used, which can reduce
VRAM usage and... |
##### Description of the problem
When entering VR mode, `VREffect` sets the pixel ratio to 1. It saves a backup
of the original value as `rendererPixelRatio` so it can set it back to what it
was when exiting VR presentation. However, with the webvr-polyfill, both the
full screen event handler and `vrdisplaypresentch... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Page should render
## Current Behavior
Page is not rendering. Instead giving error that ` The default export is not a
React Component in page: "/"`
## Steps to Reproduce (for bugs)
1. Update to Nex... |
There are many tags in the HTML which NextJS generates which contain absolute
URLs. For example:
href="/_next/blah"
I've added selenium + chrome headless testing to my Next project, and it works
fine when I test http://localhost:3000, but when I do a `next export`, and
then try to to test `fi... | 0 |
**Migrated issue, originally created by Anonymous**
SQLAlchemy 0.3.0
Oracle 10g
cx_Oracle 4.2
Red Hat Enterprise Linux WS release 3 (Taroon Update 7)
If you have autoloaded tables Spam and Egg related by Spam has-many Egg like
so:
engine = create_engine(...)
meta = BoundMetaData(engine)
... |
Hi,
I am getting a StaleDataError with `SQLAlchemy==1.3.6` whenever sqlalchemy is
trying to use `session.bulk_update_mappings()` and its always 1 less than the
number of rows to be updated. I am running the code as part of an aws lambda
function.
This happens intermittently without any definite pattern. Following i... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
This is a bug.
**What is the current behavior?**
When rendering a range input element, the value of the input isn't set on the
initial render. You have to call render again for the value to get picked up.
**If the current behavior is a bug, please provide... |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
React at the beginning rounds `input[type=range]` value to 0 or 1, and then
looks at step parameter which is 0.1 for example. The result is incorrect
value of input after component mounts. When I put `value` attribu... | 1 |
More informations on http://docopt.org/.
Dump to docopt: #6339, #6329
|
The whole thing already feels like docopt a bit - but by changing a few
things, adding default values etc I think we could do better.
Another thing that might be good in addition to having ->setHelp() in the
commands is a ->setUsage() that would take an array of usage examples that can
be dumped on top of the help t... | 1 |
my Question:
Sample ListView Page in Diffrent Environment CPU and Memory very Hight, i Want
To Know Why ,And How to solution!
====================================================
1. Doctor:
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel unknown, v0.5.1, on Mac... |
It sometimes times out:
8:59 +428 ~1 -1: test/integration/expression_evaluation_test.dart: expression evaluation can evaluate complex expressions in build method [E]
Did not receive expected app.started event.
Received:
[+ 2321... | 0 |
Hi,
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
include_role
##### ANSIBLE VERSION
ansible 2.2.1.0
config file = /home/stephane/.ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
Nothing special
##### OS / ENVIRONMENT
Ansible runnin... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
##### ANSIBLE VERSION
ansible 2.1.2.0
config file =
configured module search path = Default w/o overrides
##### OS / ENVIRONMENT
Ubunty 16.04, created irtual environment with pip install ansible
##### SUMMARY
Error handling/d... | 0 |
when use deno compile , Uncaught NotSupported: LocalStorage is not supported
in this context.
| ERROR: type should be string, got "\n\nhttps://www.npmjs.com/package/ttypescript\n\n \n \n {\n \"compilerOptions\": {\n \"plugins\": [\n { \"transform\": \"transformer-module\" },\n ]\n }\n }\n\nhttps://www.npmjs.com/package/tst-reflect-transformer\n\n" | 0 |
I keep getting this error: "Oops! Something went wrong. Please try again
later" when clicking on my map in Basic JavaScript. Also the site seems
generally slow and has been for over a week.
Thanks
Dave
|
Please see the attached screenshot

Once this error appears even when I try to navigate to the home page, it
redirects to the same page with the error.
| 1 |
What steps will reproduce the problem?
$ cat k.c
#include <stdio.h>
int main(int argc, char* argv[]) {
printf("hello\n");
return 0;
}
$ cat k.go
package main
func main() {
println("hello")
}
$ rm -f *.o *.gc* k
... |
Problem description on golang-nuts:
https://groups.google.com/d/msg/golang-nuts/mWXsJJMdL0M/wioVT04ye7UJ
In short, pprof misses 7.5% of samples in newstack/oldstack (perf reports them
properly). This happens because the profiler ignores samples on g0 (where
newstack/oldstack are exec... | 0 |
Playwright already offers the important assertion method `toHaveClass` but
unfortunately it is not possible to use it, when explicitly checking for one
class attribute.
The function offers several options for the `expected` argument, but is seems
not possible to ensure that the class attribute contains one specific... |
Hi there)
I have a strange behavior with toHaveClass assertion.
I have an html
<label class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary Mui-error css-1958la6-MuiFormLabel-root-MuiInputLabel-root" data-shrink="... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.