text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
## Steps to Reproduce
* Create a Flutter app on Webstorm
* Make some modifications to main.dart.
* Run the app.
Expected: new changes take effect
Actual: The app goes back to the sample template that was provided on creation
I've attached a video showcasing the bug
bug.mp4.zip
|
Add infrastructure to check for program elements changed in the last reload
and not executed. Use this facility in flutter tools to figure out situations
where the user makes changes that will not be reflected after a hot reload and
warn users about the need to do a hot restart for the changes to take effect.
| 1 |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
package-lock.json does not contain an os-independent string for local
dependencies, therefore package-lock.json is always changing wh... |
### Is there an existing issue for this?
* I have searched the existing issues
### Current Behavior
When installing a local dependency in Windows, the posix paths under "package-
lock.dependencies" are converted to Windows style paths, with double
backslashes. The paths in "package.json" and under "package-lock.... | 1 |
I am not sure if its just me but when I run `npm config get prefix` it hangs
around 1-2 seconds.
I am using this https://github.com/nvm-sh/nvm to manage my Node versions which
uses that npm command internally when new bash shell opens.
|
# What / Why
This is an attempt to resurrect this unresolved bug: npm/npm#14458
For some reason, the command `npm config get prefix` is multi-seconds slow.
This normally wouldn't bother me, but for users of `nvm` like me, this is
really impacting since it uses this command internally, and nvm is used in
shell start... | 1 |
**Michael Harhen** opened **SPR-321** and commented
I have written code to enable initialization of a bean using initialization
parameters from a database table. I would be happy to submit the code to the
Spring project.
In summary, a FactoryBean is specified in an ApplicationContext xml file
creates the bean. The ... |
**Joris Kuipers** opened **SPR-7820** and commented
During a consultancy gig this came up: customer wants to be able to throw a
custom exception from `@Controller` methods where the exception will contain
an object that needs to be marshalled back to the client as JSON, since these
methods respond to AJAX requests ... | 0 |
`Generator` inherits from `Iterator`, `Iterator` inherits from `Iterable`. And
`list([iterable])` takes an `Iterable` as argument.
So, why `data` in `DataFrame(data)` can't be an `Iterable`?
pandas/pandas/core/frame.py
Lines 381 to 383 in 620abc4
| elif isinstance(data, (list, types.GeneratorType)):
---|---
... |
Hi there,
I have a codebase that (so far) consumes data series in the form of dict-
yielding iterators, similar in form to how DataFrame's constructor accepts a
list of such. Unfortunately it seems from current implementation of that
constructor, there is no straightforward way to consume from an iterator
straig... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
If a user happens to request an old bundle resource with an old hash, the
response should 404, not 500.
## Current Behavior
I'm currently running a Next.js app at https://www.tenable.com/plugins and I'... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
It would be great if you could access "previousProps" when rendering page
client-side.
## Current Behavior
Currently getInitialProps passes "req" to function when the page is rendered
server-side. ... | 0 |
Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | no
RFC? | yes
Symfony version | 3.1
While testing disabling a user, I decided to try to impersonate the disabled
user and found that you are able to impersonate the user as normal (as if they
were never disabled). I expected the u... | Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | yes
Symfony version | 4.1
Currently, we have 2 separate annotation loaders for the routing: one in
SensioFrameworkExtraBundle (SFEB) and one in FrameworkBundle (FB) which was
added more recently. The component only has a... | 0 |
This was the underlying cause of a problem reported on stackoverflow:
http://stackoverflow.com/questions/43659827/numpy-error-when-specifying-axis-
in-nanmax-while-nansum-works-an-the-same-case
The error is raised when applying `nanmax()` or `nanmin()` to an array with
object data type and specifying an axis.
Here'... |
The documentation for numpy.dual states "Aliases for functions which may be
accelerated by Scipy." One of the functions supported is cholesky. One would
assume (I did) that the results will be the same regardless of whether scipy
is installed or not; only the execution time might vary.
However, the implementation in... | 0 |
I worked around #8091 by adding to the top of `lib.webworker.d.ts`
interface IDBIndexParameters {
multiEntry?: boolean;
unique?: boolean;
}
type IDBKeyPath = string;
interface IDBObjectStoreParameters {
autoIncrement?: boolean;
keyPath?: IDBKeyPath;
}
... |
I want a type similar to 'any' but can be initialized only with Object
compatible type.
Is it possible to do this ?
var a : {any};
a.x = 1; // OK
a["x"] = 1; // OK
a = {}; // OK
a = 1; // Error !
The workaround is to use indexer, but then syntax 'a.x' doesn't work.
... | 0 |
### Describe the issue:
When importing Numpy or Pandas in a Python 3.11.3 Conda environment, I see
(two, duplicates of the warning message listed below in "Error message"
inputbox:
I can't find MKL documentation explaining this warning.
The messages are not suppressible with warnings.filterwarnings('ignore')
Expe... |
`dask.array.Array` implements `__array_ufunc__` to make calls of ufuncs with
dask arguments lazy. However current implementation of `numpy.vectorize`
triggers computation of dask inputs during broadcasting stage.
Example:
a = da.ones((10,), chunks=2)
def pyfunc(x):
return x
u... | 0 |
Running Glide 3.3.1 on a pre-11 device will throw
E/dalvikvm﹕ Could not find class 'android.app.FragmentManager', referenced from method
com.bumptech.glide.manager.RequestManagerRetriever.handleMessage
As README.md states: Glide requires a minimum sdk version of 10, I think Glide
should handl... |
java.lang.NoSuchMethodError: android.app.Activity.getFragmentManager
at com.bumptech.glide.manager.RequestManagerRetriever.get(RequestManagerRetriever.java:132)
at com.bumptech.glide.Glide.with(Glide.java:550)
at net.twisterrob.glidecrash.MainActivity.glide... | 1 |
julia> f(x, _, y = nothing) = f(x,y)
WARNING: deprecated syntax "_ as an rvalue around REPL[1]:1".
f (generic function with 2 methods)
`_` is a lvalue here or?
|
The warnings appear only inside closures.
julia> for _ in 1:10
function f(x)
_ = 10
end
end
WARNING: deprecated syntax "_ as an rvalue".
WARNING: deprecated syntax "_ as an rvalue".
| 1 |

|
### First check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... | 1 |
Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | yes
Symfony version | 3.4 (?)
_I'm sorry if this was discussed before, but I couldn't find anything with
search._
Today I have accidentally deployed a controller with `dump()` in it to an
environment that finally had `d... | Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | no
Symfony version | 3.2
I'm very addicted to dump() to debug my code and i find it a invaluable tool,
so thank you very much!
Unfortunately some time i forget to rid off of a dump or two in the code and
if the code bu... | 1 |
Currently, if a program is already running when I ask Run for it, it'll do
nothing. I wish it'd bring it to the front and focus it so I can find it.
That way, I can use Run as a way to "goto" any program, whether it's open or
not.
|
# Summary of the new feature/enhancement
It would be more useful if already running programs are shown first in the
results list in the quick launcher (like the old WindowWalker). **_Or maybe an
option to change the priority._**
# Proposed technical implementation details (optional)
In the results list, the runnin... | 1 |
In a TS file type "for" and auto-complete. You will find a 100% match "for" on
the top, but the other 100% match from snippets is not there but rather at the
end. If we do not sort unified across the various providers, then maybe we
should take out snippets from the list and provide another way of completing
snippets... |
Going for the for loop snippet:
## JavaScript (snippet is close by):

## TypeScript (snippet is after many non relevant suggestions):
... | 1 |
## Problem summery
I cannot install deno in a docker container. Here is what I've tried:
### install script
$ curl -fsSL https://deno.land/x/install/install.sh | sh
Deno was installed successfully to /root/.deno/bin/deno
$ deno
zsh: exec format error: deno
### cargo install
... |
Builds for arm64 are now in CI, but are not ready for release. We still need
to make some changes to make the tests work with this build.
~~I managed to get deno to build for arm64 using the`aarch64-unknown-linux-
gnu` target. Currently It doesn't execute successfully on a raspberry pi 3b+
running a preview image o... | 1 |
* Electron version: 1.4.7
* Operating system: Windows 10 (x64)
### Expected behavior
I am typing `npm -g install electron`. Electron should install as a globally
accessible package.
### Actual behavior
C:\WINDOWS\system32>npm -g install electron
C:\Users\nakobe\AppData\Roaming\npm\electron -... |

* Electron version: 1.4.6
* Operating system: Windows 10 v1607, node 7.1.0
### Expected behavior
### Actual behavior
`npm install electron` (global `-g` install or local) fail. Other npm pack... | 1 |
Here's the model. Mixamo only provides binary FBX unfortunately.
stand_1.zip
It does load, however some of the textures fail and the whole data url gets
logged to the console, which crashes the console in Chrome. Here's a truncated
version of the error (it repeats for 3 seperate textures).
data:;base... |
Sometimes? Most of the times? In fact, it could be done even in case with face
normals - if the model has enough neighbour faces with the same normal, it
could even make sense :) File it under suggestions.
| 0 |
# Environment
Windows build number: Microsoft Windows [Version 10.0.17763.437]
PowerToys version: Version v0.18.1
PowerToy module for which you are reporting the bug (if applicable): PowerLaunch (initial startup of PowerToys after Windows signon
# Steps to reproduce
Launch PowerToys
# ... |
# Environment
Windows build number: [run "ver" at a command prompt] Microsoft Windows [Version 10.0.17763.1039]
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable):
# Steps to reproduce
Launching the app triggers the following error:
The excepti... | 1 |
I'm using babel to transpile ES6 code, my target browsers support generators,
so I blacklist regenerator to improve performance, but webpack doesn't parse
it at all it seems. Generators could just be parsed and treated as functions.
I'm switching from browserify, which happens to parse generators correctly.
|
Currently webpack seems to fail parsing JavaScript code that contains ES6
syntax like generators.
Module parse failed: ..../main.js Line 20: Unexpected token *
You may need an appropriate loader to handle this file type.
| }
|
| function * ex_test() {
| throw new Error("work!");
... | 1 |
## The Problem
Currently, a newly rendered `dialog` element can erroneously retain the "open
state" a previously rendered `dialog` element if React _thinks_ that the same
element is being re-rendered. Interestingly enough, this problem doesn't seem
to happen for the element's other attributes/properties.
React vers... |
I'm using static markup for unit testing newforms output and I'd also like to
support using it to render forms as static HTML.
Adding a `value` or `defaultValue` to a `<select>` doesn't generate static
HTML with the appropriate `selected` attributes. However, they do get
generated if you manually add them to `<optio... | 0 |
Warning: React attempted to reuse markup in a container but the checksum was
invalid. This generally means that you are using server rendering and the
markup generated on the server was not what the client was expecting. React
injected new markup to compensate which works but you have lost many of the
benefits of ser... |
I have a React app, that runs on the server and in the clients browser.
When I upgrade to `v0.8.0`, React gives me the "Expected html differs from the
given markup" warning, because there are differences in the inline style
definitions. For example:
Server renders:
style="...; user-select: none;.."
... | 1 |
when i set a object(which instanced Line2).scale.x < 0, Line2 disappeared? is
it normal?
_**Live example**_
* jsfiddle-latest-release
|
As the title say: a Line2 disappears completely when the scale is set to
negative on a single axis `line2.scale.set(-1, 1, 1)`. The line is obviously
still there but it's not rendered.
Weirdly, if the scale is set to negative on more than one axis
`line2.scale.set(-1, -1, 1)`, the line appears again.
Here's a jsfid... | 1 |
TV device does not support touch operation, users have to use Remote Control.
We need move focus by press left, top, right, bottom direction key, and when
the target widget get focus, we will press OK button to response kinds of
event. But I cannot find any flutter interface to solve this interaction, much
appreciate... |
As we know, tv apps use remote control's direction key to move focus from one
widget to another. User needs to know which widget has got the current focus,
so we may provider a focus animation effect, just draw a light widget floating
on the focus widget. This light focus indicator widget will move from the
previous ... | 1 |
Please answer these questions before submitting your issue. Thanks!
1. What version of Go are you using (`go version`)?
go version go1.6 linux/amd64
go 1.5 also fails but go 1.4 compiles the code successfully
2. What operating system and processor architecture are you using (`go env`)?
GOARCH... |
The go 1.6 compiler panics on this 2.25 Mbyte source file containing a slice
with 13240 elements:
https://drive.google.com/file/d/0B2AF520HhpuzdzZhSVpPZGZkTUU/view
go1.6 linux/amd64
GOARCH="amd64"
GOOS="linux"
$ go build buildme.go
# command-line-arguments
panic: runtime error: makeslice: ... | 1 |
Output of node_modules/.bin/electron --version: 3.0.3
Operating System (Platform and Version): macOS Mojave 10.14
**Description**
There were a few desktops. I put my electron app on one, and focused on
another one. When the app's notification came and I clicked the action button:
**Expected Behavior**
The app... |
* Electron Version: 2.0.5, 2.0.6
* Operating System (Platform and Version): macOS 10.13.6
* Last known working Electron version: 2.0.5
**Expected Behavior**
App passing submission requirements.
**Actual behavior**
App got rejected.
Your app uses or references the following non-public APIs:
... | 0 |
### System info
* Playwright Version: v1.33.0
* Operating System: Ubuntu 22.04
* Browser: Firefox
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
https://github.com/ppath/playwright-firefox-buggy-la... |
Your header model generally looks something like this:
playwright/types/types.d.ts
Lines 13228 to 13231 in 9da26f9
| /**
---|---
| * Returns the object with HTTP headers associated with the response. All
header names are lower-case.
| */
| headers(): { [key: string]: string; };
Strictly speaking, ... | 0 |
# It would be nice to see the pixel amount for x/y dimensions of the fancy
zone layout when resizing the zones in edit mode.
|
FancyZone does not work well on four monitor setup with three on one row and
one above the main center screen. Only the center and screen above work with
fancy Zone Left and right do not. The problem was seen in version 20 and 21.
but was not present in the older version (I do not know which version it
stopped workin... | 0 |
I'm using Bootstrap 2.0 and am trying to use a Modal for displaying a Markdown
cheat sheet. I've set up a link to display the modal but when I click it, the
modal appears briefly and then immediately disappears again.
Here's my basic code:
<a class="btn" data-toggle="modal" data-target="#markdown">Sho... |
Code:
<form class="form-horizontal" role="form">
<div class="form-group has-success has-feedback">
<label class="control-label col-sm-3" for="inputSuccess3">Input with success</label>
<div class="col-sm-9">
<div class="input-group">
<span class="input-group-a... | 0 |
**Chris Beams** opened **SPR-5113** and commented
The following paragraph is repeated twice in the javadoc for
AbstractMessageListenerContainer:
* <b>NOTE:</b> The default behavior of this message listener container is to
* <b>never</b> propagate an exception thrown by a message listener up to the
* JMS prov... |
**Jerome Lacoste** opened **SPR-798** and commented
In one of my beans, I return a Set of Longs. I use this set to populate a
multiple select box on a Web.
I registered an Editor to the field. When doing status.value I expected to get
a Set, but I am getting a String. BindStatus reuses the following code from
Bind... | 0 |
**Symfony version(s) affected** : 4.2.6
**Description**
Rendering form with null block prefix duplicates the form default attributes
in rendered html. This is major problem if we'd like to add id attribute to it
as id should be unique in whole HTML document.
**How to reproduce**
Create form as follows
... |
If invalid value submitted the select choice throws an exception
`TransformationFailedException` where radio\checkbox choices set the value to
`NULL`.
This behavior cause some problems at validation stage.
* First one is `Choice` constraint. It do nothing for `NULL` values.
* Next problem more serious. If you d... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
core
##### ANSIBLE VERSION
ansible 2.5.0
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/ici/home/yves/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location =... |
I am trying to use ansible, unfortunately It does not work with my list of
hosts defined in .ssh/config.
In paramiko mode - my hosts are throwing "Name of service not known" - my
/etc/ansible/hosts file refers to aliases defined in .ssh/config.
In -c ssh - it tries connect to default 22 port, instead of the ones de... | 0 |
The deadline support in lookupIPDeadline is apparently not a real deadline, in the sense
that a goroutine is leaking on every lookup that does not return timely.
I have a bug report for mgo where someone got to 50k+ goroutines hanging on it:
https://jira.mongodb.org/browse/MGO-41
... |
What steps will reproduce the problem?
GC=gccgo go build sg.go
What is the expected output?
makes it to the link step with 6g
What do you see instead?
compile errors with gccgo:
_cgo_defun.c:36:1: error: unknown type name ‘byte’
_cgo_defun.c:37:1:... | 0 |
# Checklist
* I have checked the issues list
for similar or identical enhancement to an existing feature.
* I have checked the pull requests list
for existing proposed enhancements.
* I have checked the commit log
to find out if the if the same enhancement was already implemented in the
master branch... |
# Checklist
* I have checked the issues list
for similar or identical bug reports.
* I have checked the pull requests list
for existing proposed fixes.
* I have checked the commit log
to find out if the bug was already fixed in the master branch.
* I have included all related issues and possible dup... | 0 |
## Environment info
* `transformers` version: Installed from git
## Issue
The `len(AutoTokenizer.from_pretrained("t5-base"))` is `32100` but the
`T5ForConditionalGeneration.from_pretrained("t5-base").config.vocab_size` is
`32128`. Seems to be a similar issue to that of : #2020
|
# ❓ Questions & Help
Pretrained `T5Tokenizer ` has vocab size of 32100 (32000 tokens plus 100
extra_ids) but the shared embedding layer of `T5ForConditionalGeneration` has
size of (32128, 768). I checked the google-research implementation of T5 and
also found that they have vocab size of 32100 also.
Where did the e... | 1 |
Is there any way to prohibit transpilation of "async" and "await" to the
"_awaiter"? The transpiled code breaks the functionality of graphql. Seems
like only babel transpiles this correctly.
I would like to maintain the async and await keywords.
Can it be done? Thanks.
|
I'm using babel for transpiling like:
`TSX -> ES6 -> Babel + webpack -> ES5`
and I set `noEmitHelpers` to `true` in `tsconfig.json`, because babel handle
it with single global helper instead of multiple helpers in each file but it
doesn't work with Acyncs and Decorators and after compile i'm getting
`__decorate... | 1 |
# Environment
Windows build number: 1909
PowerToys version: 19.0
PowerToy module for which you are reporting the bug (if applicable):
PowerToys Run's shortcuts can‘t wake up
# Steps to reproduce
When I use this feature, it doesn't respond at all. Even if you change the
shortc... |
# Environment
Windows build number: 10.0.18363.900
PowerToys version: 0.19.1
PowerToy module: PowerToys Run
# Steps to reproduce
* Run PowerToys as administrator.
* Focus on non-elevated application
* Press the shortcut keys for PowerToys Run
* Nothing will happen except opening ... | 0 |
### How are you using Babel?
@babel/eslint-parser
### Input code
import * as t from '@babel/types';
import { parse } from '@babel/parser';
import generator from '@babel/generator';
const code = `
import React from "react";
// 1111
class App extends React.Component {}
... |
> Issue originally made by @welefen
### Options
Babel 5:
var data = babel.transform(content, {
filename: 'file',
//retainLines: retainLines === undefined ? true : retainLines,
stage: 0,
modules: 'common',
loose: true,
optional: 'runtime'
});
Babel 6:
... | 0 |
## ℹ Computer information
* PowerToys version: 0.21.1
* PowerToy Utility: FancyZones
* Running PowerToys as Admin: No
* Windows build number: [run "winver"] 18363.1082; 19041.548
## 📝 Provide detailed reproduction steps (if any)
1. Enable TaskView, and make several Virtual Desktops (--);
Move Windows'... |
If I have vertical taskbar setup, fancy zones sometimes gets the edge of the
screen wrong so that my zones don't take up the full screen. Even if I edit
the zone after changing taskbar status.
Thanks folks. Chris
| 1 |
### Apache Airflow version
2.3.2 (latest released)
### What happened
The scheduler crashes with the following exception. Once the scheduler crashes
restarts will cause it to immediately crash again. To get scheduler back
working. All dags must be paused and all tasks that are running need to have
it's state change... |
There is a new design of system tests that was introduced by the AIP-47.
All current example dags need to be migrated and converted into system tests,
so they can be run in the CI process automatically before releases.
This is an aggregated issue for all example DAGs related to `Amazon` provider.
It is created to t... | 0 |
i use tensoflow model to predict with java api,why it is more slowly than
python or c++ api?
|
_Please make sure that this is a bug. As per ourGitHub Policy, we only
address code/doc bugs, performance issues, feature requests and
build/installation issues on GitHub. tag:bug_template_
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow):
... | 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.
Before creating a new issue, please check whether someone else has raised the
same issue. You may be able to add c... |
Creating unique constraint and getting the following result:
No element found in
org.neo4j.helpers.collection.Iterables$FilterIterable$FilterIterator@450b0e07
Occurred while creating a typical constraint:
CREATE CONSTRAINT ON (n:Movie) ASSERT n.id IS UNIQUE;
Database has been upgraded from 1.9-->2.0-->2.1.3-->2.... | 0 |
I try to compile this program in rustc but an internal compile error occurred
that:
task <unnamed> failed at 'assertion failed: is_utf8(v)', C:\bot\slave\dist2-win\build\src\libstd\str.rs:1032
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. ... |
In many of the core and std libraries, the iface usage is flaky and ends up
duplicating a lot of code.
Many ifaces only implement some small arbitrary subset of the full set of
functions, for example in str and vec. It makes code look awkward when you
have something like `str::replace(foo, "x", "y").split_char('z')... | 0 |
**Migrated issue, originally created by nyov (@nyov)**
Would it be possible to have a parameter to
`sqlalchemy.sql.expression.select()` to avoid the "Ambiguous column name"
exception for simple joins?
I don't care for the `use_labels` here as I then have to rewrite all the keys
again after.
If possible, I'd like... |
**Migrated issue, originally created by Marcin Lulek (@ergo)**
adding this code to create_connect_args() corrects this issue
opts['raise_on_warnings']('raise_on_warnings') = opts.get('raise_on_warnings', True)
util.coerce_kw_type(opts, 'raise_on_warnings', bool)
| 0 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.198.0
**System** : Unknown Windows Version
**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:... |
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 |
I realize that permutation_importance is a better and less biased measure than
Impurity-based feature importance but it still has it uses. As illustrated
here multi-collinearity can be an issue. Comparing permutation and impurity
based importances is a good way to understand multicollinear issues and your
true featu... |
#### Description
numpydoc appends a randomized number at the end of references link tags.
Related to issue #9417 and pull request #9420.
The issue is, a random number is generated even after making all duplicate
tags unique.
Check out this link for Rouseeuw tags.
| 0 |
This is a library-wide problem. When the following is used:
try {
something();
} catch (e) {
throw new SomethingError(e);
}
The stack trace loses all context of what in `something()` caused the original
exception. It makes debugging a lot more difficult.
++ @yjbanov, @mhevery
|
try {
...
} catch (e) {
console.log(e, e.stack);
throw e;
}
should transpile to
try {
...
} catch (e, e_stack) {
console.log(e, e_stack);
rethrow;
}
* detect `e.stack` replace with `e_stack` \+ add `e_stack` to `catch`
* detect ret... | 1 |
## Steps to Reproduce
I tried to run the flutter app from cmd using `flutter create repo`
and then `cd repo`
`flutter run`
After running this command the following errors are shown:
* Error running Gradle:
Exit code 1 from: D:\projectFlutter\repo\android\gradlew.bat app:properties... |
## Steps to Reproduce
Run the gallery app, and try to show the date picker component
## Logs and Crash Reports
══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
The following assertion was thrown during performLayout():
RenderVirtualViewport ... | 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
... |
In the section on NgModules, after introducing the shared module, the core
module does not import the shared module and instead imports the CommonModule
directly. The document provides no explanation and it seems some kind of anti-
pattern. Is there any reason not to import the shared module into the core
module?
| 0 |
Would it be possible to enhance the Stepper component so that it can have only
1 step?
Currently, `<Stepper>` needs to have an array of children of `<Step>`. I have
a use case where sometimes, only 1 step is needed.
So, i built a primitive workflow generator where the user can generate a
custom workflow. While quit... |
### Description
React warns about a single child for Stepper, even though a single child works
without issues.
Now, it may seem strange for a Stepper to only have one step, but I can
explain this use-case.
### Versions
* Material-UI: 0.17.4
* React: 15.5.4
* Browser: Any, but Opera 57 is what I'm using
##... | 1 |
E.g. if I want to de-duplicate tweets your friends are retweeting:
MATCH (friend) -[:retweeted]-> (tweet)
RETURN DISTINCT tweet
But still return who the first friend was to retweet that tweet (just like
Twitter does).
This won't work:
MATCH (friend) -[retweet:retweeted]-> (tweet)
... |
In Cypher, there is currently no way to set an existing Node's labels to an
explicit set of labels. The SET statement can be used to add labels to the set
of labels for a Node, but there is no way to update all of the labels for an
exiting Node. This is in contrast to Node properties where you can do SET n =
{map_of_... | 0 |
Consider:
let connection = await Deno.connectTls({hostname: "google.com", port: 443})
// No ‘await’.
connection.read(new Uint8Array(2048))
await connection.write(new Uint8Array([0x0D, 0x0A]))
console.log("yo")
I’d expect the `connection.write(...)` promise to resolve eventual... |
The issue seems to be that `Deno.startTls()` resolves before the connection is
fully setup - any writer created on the resulting tlsConnection will fail -
here's a test:
import {
fail
} from "https://deno.land/std@0.83.0/testing/asserts.ts";
import { BufWriter } from "https://deno.land/st... | 1 |
## 🐛 Bug
It is advertised, that forward pass of JITed RNNs (e.g. GRU) is as fast as
cuDNN implementation.
But it is not the case.
## To Reproduce
Steps to reproduce the behavior:
See here: https://gist.github.com/usamec/af21be7b83e6b1a3f38c26136af811f3
## Expected behavior
Forward pass is as fast as cuDNN.
... | 1 | |
#### Code Sample, a copy-pastable example if possible
# for example, index should be accepted, like so:
df.to_parquet( 'my_parquet_file.parquet', compression='gzip', index=False )
#### Problem description
[this should explain **why** the current behaviour is a problem and why the
expected output ... |
I'm using pandas 0.17.1
import pandas as pd
pd.__version__
`Out:'0.17.1'`
When column names are duplicated
cols = ['A', 'A', 'B']
with open('pandas.csv', 'w') as f:
f.write('1,2,3')
we can still load dataframe
pd.read_csv('pandas.csv',
he... | 0 |
**Migrated issue, originally created by grant-humphries (@grant-humphries)**
As I understand it `pip install sqlalchemy` should work on windows, but it
will return a warning that the c-extensions could not be installed unless you
have a c-compiler. Using Python 2.7, pip 8.1.2 on Windows 7 the install
completely fai... |
**Migrated issue, originally created by Frazer McLean (@RazerM)**
As mentioned in #3746, Windows wheels on PyPI would be useful.
I quickly set up wheel building on AppVeyor as a proof of concept. It's using
my GitHub repository but it supports Bitbucket too.
https://ci.appveyor.com/project/RazerM/sqlalchemy/build/... | 1 |
**Glide Version** : 4.4
**Integration libraries** :
**Device/Android Version** :
**Issue details / Repro steps / Use case background** :
**Glide load line /`GlideModule` (if any) / list Adapter code (if any)**:
Glide.with...
**Layout XML** :
<FrameLayout xmlns:android="...
**Stack... |
Hey,
I use Glide to download a GIF and insert it into PhotoView. Works fine, but I
want to be able to save this GIF to my local storage. I have searched through
issues over here, but none was viable for me.
I was trying to use this part of code to get this done:
override fun getDrawable() : Drawable... | 0 |
**Migrated issue, originally created by Anonymous**
(original reporter: ged) Continuing my speed optimization frenzy, here is a
(very) experimental patch to optimize the ORM speed by using a custom
ResultProxy which only returns dicts with whatever will be used by the ORM.
Once again, the results are encouraging: ... |
**Migrated issue, originally created by Brad Kittenbrink (@brad)**
WinPython distribution, Python 3.3, 64-bit, Windows 7 64-bit, SQLAlchemy 0.8,
SQL Server 2012
When trying to create a table on an existing SQL Server database, the
**do_execute** method in engine\default.py receives a bytes object in the
**statemen... | 0 |
##### System information (version)
* OpenCV 4.5.4
* Python 3.7 (opencv installed using pip: "pip install opencv-python")
* Ubuntu 18.04 amd64
##### Detailed description
Up to version 4.5.3 findContours returned contours as a list. Starting on
version 4.5.4 the contours are returned as a tuple. This will brea... |
##### System information (version)
* OpenCV => 3.4, master
* Operating System / Platform => all
* Compiler => gcc-10
##### Detailed description
[ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/matrix_iterator.cpp.o
cc1plus: warning: command-line option ‘-Wmissing-proto... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: xxx
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this issue
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.3
* Operating System version: Mac
* Java version: 1.8
### Steps to reproduce this issue
1... | 0 |
This is feature request, really.
I suggest to implement independent scroll bar for the code mirror window. It's
gonna be much easier to scroll down to the 100th line of code and still see
what you should implement and additional information on it
|
It might be more convenient if the instruction and coding area scrolled
independently of each other so you can refer to each section without having to
continuously scroll up and down.
| 1 |
Challenge use-a-google-font has an issue.
Similarly to #13463, there are two versions of this challenge, one in Basic
CSS (the original one) and one in Applied visual design (this one was added
with the new curriculum).
Actually both have a good description, I think the best thing would be to
merge the two challeng... |
Challenge http://www.freecodecamp.com/challenges/waypoint-target-a-specific-
child-of-an-element-using-jquery has an issue
The correct way to complete the code is:
$(".btn:nth-child(2)").addClass("animated bounce")
However, writing the code like this also marks the task as completed:
... | 0 |
##### Issue Type:
Bug Report
##### Ansible Version:
1.7.2
##### Environment:
CentOS 6.4
##### Summary:
Variable substitution occur only once when delegate_to using with serial.
##### Steps To Reproduce:
hosts
host1 copy_from=host9
host2 copy_from=host8
host3 copy_from=host7
pl... |
##### Issue Type:
Bug Report
##### Ansible Version:
all versions
##### Environment:
N/A
##### Summary:
There is a bug in the templating code of `delegate_to:` in that, it only
happens once per runner proces fork, instead of for every host.
##### Steps To Reproduce:
Test inventory and playbook:
... | 1 |

Hello,
I am tring to do install core of tensorflow on Raspberry PI 3, on Ubuntu 16.04
LTS using python 3.5.2, exactly following the instruction on
https://github.com/tensorflow/tensorflow/tree/master... |
Hello,
I was told to post this question here:
I am trying to complete a fresh install of Tensorflow on my Raspberry Pi
following a failed previous install. I figured it would be easier trying to
start fresh so I could more easily document my progress, and what solutions
worked or failed. Additionally the new guide ... | 1 |
by **maparent** :
Tested on MacOS 10.6.2
Reproduce:
cd go/src
export LC_ALL=fr
./make.bash
error:
.../go/bin/quietgcc -ggdb -I"/Users/maparent/OpenSource/go"/include -O2
-fno-inline -c
".../go/src/cmd/gc"/y1.tab.c
.../go/src/cmd/gc/yerr.h:17: error: 'loadsys' u... |
go version devel +4a839bf01b58 Tue May 20 15:52:08 2014 +1000 + linux/amd64
Build the attached program and run as:
export GOMAXPROCS=2
export GOGC=0
RES=`./0 2>&1`
OK=`echo $RES | grep "slice capacity smaller than length"`
if [ ! -z "$OK" -a "$OK" != " " ]; then
... | 0 |
It would be very useful to read a components static attributes (not bindings).
This is probably a prerequisite for to #633. There are many use-cases for
this.
#### Example use case: imitating native input api
Standard radio buttons are put into one single-input-can-be-checked group with
the name attribute:
... |
Lines 1 and 2 should read
`var AppComponent = ng.Component({`
instead of
`var AppComponent = ng ng.Component({`
Running the former in Chrome 46.0.2490.71 gave me a `Error during
instantiation of Token Promise<ComponentRef>!.` exception, the original
exception being `No Directive annotation found on [object Object... | 0 |
### Version
2.5.16
### Reproduction link
https://codepen.io/gamperl/pen/JZGMWK
### Steps to reproduce
Run the provided JSFiddle
### What is expected?
The component in the slot should be moved from the table to the div element.
Or a new one is created and the old one is destoryed.
### What is actually happenin... |
### Version
2.5.14+
### Reproduction link
https://jsfiddle.net/cLdbL2t2/22/
### Steps to reproduce
Clicking "update message" button adds dots after message.
Once "alter" button is clicked, the message is no longer updated.
### What is expected?
Updating message continues working even after slot is altered.
... | 1 |
Hello,
I've came to notice that I have the following console log:
`THREE.WebGLRenderer 84`
I haven't found any issues, however, it is mandatory that this specific site
does not have any console logs.
Is it possible to hide/disable this log?
I've noticed other issues where people have had the same log (suggestin... |
I mean this:
https://github.com/mrdoob/three.js/blob/dev/src/materials/ShaderMaterial.js#L67
https://github.com/mrdoob/three.js/blob/dev/src/renderers/webgl/WebGLProgram.js#L221
vs
https://github.com/mrdoob/three.js/blob/dev/src/renderers/shaders/ShaderChunk/lightmap_vertex.glsl
| 0 |
It returns an array of 1's and -1's instead of what is documented.
|
Not sure this is what we want, but I think it is:
`fit` should not change the `random_state` so that fitting twice on the same
data set should produce the same result.
There was a comment by @ogrisel in #455 along these lines, I think.
| 0 |
Please allow setting custom analyzers that use the `keyword` tokenizer and
safe token filters on keyword fields. This would be great so we can use
`doc_values` for things like case-insensitive sorting and icu collation
without needing to create pipelines.
This was originally discussed in #12394 and the last comment ... |
Sometimes you want to analyze text to make it consistent when running
aggregations on top of it.
For example, let's say I have a `city` field mapped as a `keyword`.
This field can contain `San Francisco`, `SAN FRANCISCO`, `San francisco`...
If I build a terms aggregation on top of it, I will end up with
... | 1 |
## Steps to Reproduce
$ flutter create hello_world
$ cd hello_world/
$ open ios/Runner.xcworkspace/ # Configure the Xcode project with my signing key
$ flutter run -d 698b4da3275b3613ea0785a4b0718ce3ebf9bb38 # Tell it to use my phone
Exception from flutter run: SocketException: OS... |
## Steps to Reproduce
Upgrade to Xcode 8. Observe this issue: libimobiledevice/libimobiledevice#356.
Workaround is available in comment libimobiledevice/libimobiledevice#356
(comment) and I verified that it works.
/cc @chinmaygarde @tvolkert @cbracken
| 1 |
# Checklist
* I have checked the issues list
for similar or identical enhancement to an existing feature.
* I have checked the pull requests list
for existing proposed enhancements.
* I have checked the commit log
to find out if the if the same enhancement was already implemented in the
main branch.
... |
# Checklist
* I have checked the issues list
for similar or identical enhancement to an existing feature.
* I have checked the pull requests list
for existing proposed enhancements.
* I have checked the commit log
to find out if the if the same enhancement was already implemented in the
main branch.
... | 0 |
##### System information (version)
* OpenCV => 4.0.0 beta
* Operating System / Platform => Windows 7 64 Bit
* Compiler => Visual Studio 2015 build tool , cmake, nmake
##### Detailed description
the code in modules\stitching\src\blenders.cpp
#ifdef HAVE_CUDA
namespace cv { namespace cud... |
##### System information (version)
* OpenCV => 4.0.0 beta
* Operating System / Platform => Windows 7 64 Bit
* Compiler => Visual Studio 2015 build tool with cmake and nmake
##### Detailed description
compilation fails
the earliest fail i've forgot the scene,
it was in file "modules\cudaoptflow\src\farneba... | 1 |
[ 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
If i have an html that binds a property on its component and an error happens
while detection changes for this property, the whole applica... |
**I'm submitting a ...**
[X] bug report
[ ] feature request
**Current behavior**
In prod mode, change detection stops working after uncaught exception occurs
during the binding evaluation.
Details:
the subscription to zone.onMicrotaskEmpty event, which is established in
angular/core/appli... | 1 |
panic: runtime error: index out of range [recovered]
panic: runtime error: index out of range
goroutine 9 [running]:
regexp.(*machine).backtrack(0xc2085c4ea0, 0xac7ce0, 0xc2085c4f78, 0x0, 0x2b26, 0x0, 0x4b2fc0)
/Users/rsc/g/go/src/regexp/backtrack.go:343 +0x394
regexp.(*R... |
by **lvscar** :
current http lib lack of public function for sending user-defined headers
make send(src/pkg/http/client.go) public?
| 0 |
by **goprogger@gmx.de** :
Before filing a bug, please check whether it has been fixed since
the latest release: run "hg pull -u" and retry what you did to
reproduce the problem. Thanks.
What steps will reproduce the problem?
package main
Version 1.go:
-------------
... |
by **serge.hulne** :
Problem:
The following code uses a map to store unique bigrams (couple of
words) from a text file (and an array to sort them according to their
frequency of occurence).
The file used for the test is :
http://www.gutenberg.org/cache/epub/100/pg100.txt
... | 0 |
I have 8 GB ram and all my apps run blazing fast, including chrome which is
known these days to be laggy.
Unfortunately, launch time for Atom is really slow on Ubuntu 14.04 64 bit
|
Status: This is an ongoing effort.
Via @kevinsawicki
The current plan is to investigate what is slow on startup, optimize it, and
then investigate concatenating all the CoffeeScript requires to save eval time
on startup.
### Merged Changes
Times below are were taken with a Macbook Pro on OS X 10.8.5 with 2.6 Ghz
... | 1 |
# Environment
Windows build number: 10.0.18362.0
Details:
Platform ServicePack Version VersionString
-------- ----------- ------- -------------
Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0
Any other software?
Ubuntu 18.04 WSL
Anacon... |
# Environment
Windows build number: 10.0.18362.0
Windows Terminal version (if applicable):
PowerShell: PowerShell 7 Preview 6
# Steps to reproduce
If you run PowerShell 7 Preview 6 in Windows Terminal, Out-GridView, Show-
Command, and Get-Help -ShowWindow don't get a focus. They ope... | 0 |
Hi,
I'm noticing the reverse nested aggregation feature is available only for the
nested data model but not for parent-child. We need to use parent-child since
update latency is very important to us but noticing that aggregations which
are several levels deep are not possible in a single query using parent child.
... |
I get these NPE after running after running for about 10 minutes or less. I
did not see these NPEs with ES v1.4.1.
ES v1.4.2 on tribe node and the ES clusters the tribe node is aggregating.
[2015-01-06 04:08:01,591][WARN ][tribe ] [dc1-app1111] failed to process
[cluster event from mobile_dc1, zen-disco-receive(fro... | 0 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.210.0
**System** : Unknown Windows Version
**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:... |
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 |
### Bug report
**Bug summary**
In 3.2, `scatter` is color-mapping 4 points when the `c` input is 2D with
shape (1, 4). This is a change from 3.1.
The docs for `scatter` say
> Note that _c_ should not be a single numeric RGB or RGBA sequence
> because that is indistinguishable from an array of values to be
> ... |
### Bug report
**Bug summary**
Scatter docs say that in order to provide a single RGB/RGBA color for all
scatter elements, it is required to pass a 2D array with a single row for `c`
argument input:
> If you want to specify the same RGB or RGBA value for all points, use a 2-D
> array with a single row. Otherwise, ... | 1 |
**Apache Airflow version** : 2.0.1 (possibly any?)
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
N/A
**Environment** : Any
* **Cloud provider or hardware configuration** : Any
* **OS** (e.g. from /etc/os-release): Any
* **Kernel** (e.g. `uname -a`): Any
* **Install tools** ... |
### Description
* I met LoadJob bug in `BigQueryInsertJobOperator` and tried to use `GCSToBigQueryOperator` instead when update from Airflow 2.2.5 to 2.3.2.
### Use case/motivation
* most BigQuery-related operator recommend that we should use `insert_job()`, but gcs_to_bq_operator still use `run_load ()`.
* ... | 0 |
### Current Behavior:
When the dependency tree contains many versions for one subdependency, npm
puts the highest version at the top level (i.e., at node_modules/pkgname),
even when another version has more referrals. This other version is then
installed many times.
### Expected Behavior:
NPM checks for each packa... |
### Current Behaviour:
I have some npm packages installed globally, which are command line utilities
(`create-react-app`, `distributed-dig`, snyk`, and others). I recently updated
to npm version 7 (7.5.2) with node 14 (14.15.4) on Windows 10 (version: 2004
|| build: 19041.746).
If I perform a global `dedupe` ...
... | 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.4-SNAPSHOT
* Operating System version: "mac os x", version: "10.12.6", arch: "x86_64", family: "... |
* 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.9
* Operating System version: Windows10 2004
* Java version: 1.8
### Steps to reproduce this... | 0 |
React version:
## Steps To Reproduce
1.1111111111111
2.22222222222
## The current behavior
fffffffffffffffffffff
## The expected behavior
gggggggggggggggg
|
I've noticed that there's no way to access a class' statics through one of its
instances.
When trying to find a `statics` method inside an instance method, `this` does
not contain the method. `this.statics` exists, but is `null`.
This is something I think could be a bit useful. This is a behavior that
exists in Ja... | 0 |
* I tried using the `@types/react` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
I think you should consider to update these lines of code in order to support
react 16 fragments
render(): JSX.Element | null | false | string | J... |
* I tried using the `@types/xxxx` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there).
* Mention the authors (see `Definitions by:` in `ind... | 1 |
Forgive me if this has been discussed already, but why does
`sklearn.cross_validation._fit_and_score` use a `verbosity` parameter and the
`print` function, rather than using python's `logging` module? As someone who
is building a library that uses sklearn, it means that I have to expose that
`verbosity` parameter in ... |
This is a proposal to use python's logging module instead of using stdout and
verbose flags in the models API.
Using the logging module would make it easier for the user to control the
verbosity of the scikit using a single and well documented configuration
interface and logging API.
http://docs.python.org/library/... | 1 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke/8301/\n\nFailed: [k8s.io] Kubectl client [k8s.io] Update Demo should do a rolling\nupdate of a replication controller [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:233\n Expected error:\n <*errors.errorString | 0xc820926400>: {\n s: \"Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.155.129.194 --kubeconfig=/workspace/.kube/config get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo --namespace=e2e-tests-kubectl-g5f7f] [] <nil> Unable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout\\n [] <nil> 0xc820e6a320 exit status 1 <nil> true [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe038 0xc8200fe0a8] [0xbc7e00 0xbc7e00] 0xc820cf6240}:\\nCommand stdout:\\n\\nstderr:\\nUnable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout\\n\\nerror:\\nexit status 1\\n\",\n }\n Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.155.129.194 --kubeconfig=/workspace/.kube/config get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo --namespace=e2e-tests-kubectl-g5f7f] [] <nil> Unable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout\n [] <nil> 0xc820e6a320 exit status 1 <nil> true [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe038 0xc8200fe0a8] [0xbc7e00 0xbc7e00] 0xc820cf6240}:\n Command stdout:\n \n stderr:\n Unable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout\n \n error:\n exit status 1\n \n not to have occurred\n \n\nPrevious issues for this test: #26425\n\n" |
[BeforeEach] [k8s.io] Kubectl client
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework.go:101
STEP: Creating a kubernetes client
Mar 16 12:19:35.383: INFO: >>> testContext.KubeConfig: /var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/... | 1 |
Hi,
As described in this issue, when I run `cargo test` I receive this output:
FAILED (errors=1)
', cli/tests/util/mod.rs:34:5
stack backtrace:
0: backtrace::backtrace::libunwind::trace
at /Users/vsts/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/... |
🙁
tmnk@buildDeno:~/deno$ ./target/debug/deno fmt badly_formatted.js
Download https://deno.land/std@8c90bd9/prettier/vendor/standalone.js
Download https://deno.land/std@8c90bd9/prettier/vendor/parser_typescript.js
Download https://deno.land/std@8c90bd9/prettier/vendor/parser_markdown.js
... | 1 |
I would like the following to work:
julia> x, ys... = (1,2,3)
ERROR: syntax: invalid assignment location "ys..."
This would also let us write function signatures like:
julia> foo((a, bs...), c, ds...) = bs
ERROR: syntax: invalid assignment location "bs..."
Which would... |
This would be a very nice syntax for taking head and rest. Likewise `a..., b =
[1,2,3]` might be good for slurping the initial elements into `a` and the tail
element into `b`.
| 1 |
Challenge target-html-elements-with-selectors-using-jquery has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6)
AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/601.7.8`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
I have complet... |
Challenge use-rgb-values-to-color-elements has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64; rv:48.0) Gecko/20100101
Firefox/48.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
<style>
body {
background-color: rgb(0, 0, 0);
... | 1 |
I installed with npm the babel-core and this files are empty, i need them for
system js.
|
When I install the latest babel-core I end up with browser.js and
browser.min.js as empty files with no content just some white space, each file
is around 4 bytes, compared to babel-core 5.8 where browser.js is 2MB. I am
using npm 2.11.3. I don't see any errors or warnings on install everything
appears fine, except t... | 1 |
Hello everybody,
I have a little issue with the modal component.
When I open a modal, the button close (with data-dismiss attribute) works and
close it. But if I reopen the same one, it's over, it doesn't work anymore.
The only way to close the modal is to click outside of it or to press ESC.
Any idea ? (I'm a PHP... |
Hi,
The code used on last Thursday worked fine. But after updated to latest code
on Monday (GMT+8), the modal dialog when clicks to dismiss for seconds onward
cannot be close.
I am checking on source code line 932, if I commented out this line then it is
working again.
this.$element
.removeClass('in')
.attr('a... | 1 |
### Describe your issue.
installed with `python3.10 -m pip install scipy` and after a long time it
returend without any error.
However `python3.10 -c 'import scipy.spatial'` fails with:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/dave/.local/lib/pyt... |
### Describe your issue.
Importing `scipy.signal` under Py3.10 (in a venv) fails with this message (on
Py3.9.4 and older it works):
$ python3
Python 3.10.0a6 (default, Mar 2 2021, 02:01:08) [GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
... | 1 |
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow): tensorflow/benchmarks:cnn_tf_v1.12_compatible
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 16.04-hwe
* Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the iss... |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Ubuntu 16.04 LTS (GNU/Linux 4.4.38-rt49-tegra aarch64)
* **TensorFlow installed from (source or binary)** : source
*... | 0 |
## Bug Report
**For English only** , other languages will not accept.
Before report a bug, make sure you have:
* Searched open and closed GitHub issues.
* Read documentation: ShardingSphere Doc.
Please pay attention on issues you submitted, because we maybe need more
details.
If no response anymore and we c... |
I use 4.0.1 in my spring boot 2.2.2
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.20</version>
</dependency>
<dependency>
<groupId>org.apache.sharding... | 0 |
When I click on a link with an ID, the link target shows up under the bar.
This is not as noticeable for functions, which have a very large title, but
here is an extreme example of what happens when I go to the docs for
`np.uint8`:

## Error
* * *
## Downloading: "https://github.com/pytorch/vision/archive/master.zip" to
/home/pratik/.cache/torch/hub/master.zip
AttributeError... | 1 |
Currently the .gitignore generated when you type `flutter create -t module
foo` inside `foo` contains the line ".android". My testing suggests excluding
this from a git checkout causes problems for other people trying to check out
your project.
You can test this by:
1. Start with some existing android project and... |
I have problem in following the steps of this wiki:
Add Flutter to existing apps
I have been trying to follow this wiki to create a Android Native project that
can jump to an Flutter View, but I have trouble in simply building the
project.
## Steps to Reproduce
1. Create an Android Project in Android studio (v... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.