text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
It should be possible to pick and choose which media queries one wishes to
include in bootstrap.css. This is in response to this issue:
#1784
|
.attr('checked',false) unchecks the checkboxes, but .attr('checked',true)
doesn't check them. You should use .prop('checked') instead of
.attr('checked') and .is(':checked')
| 0 |
* VSCode Version: 1.2.0-insider (24e811)
* OS Version: Windows 10.0.10586
Steps to Reproduce:
1. Open integrated terminal
2. Type e.g. 'dir' and press enter
3. Toggle/close integrated terminal
4. Toggle/open integrated terminal
Expected: Terminal opens
Actual: Error: Cannot set property 'innerHTML' o... |
* VSCode Version: 1.2.0-insider
* OS Version: Windows 10
* Git Bash Shell (relevant?)
Steps to Reproduce:
This only happens sometimes and is perhaps secondary to #7345?
1. `Ctrl`+`~` to invoke the integrated terminal
2. See that the terminal is invoked but blank and that this error popup is displayed:
!... | 1 |
**I'm submitting a ...** (check one with "x")
[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
**Current behavior**
Angular 2 rc2 - Routing throws an ex... |
I'm submitting a clarification. It might be a feature request:
Scenario:
I have a popup in my application which does not belongs to any route. What I
need to ensure is, while the popup is open, when user clicks on a navigation
(which takes to a component route), before activating this route, I need to
close the po... | 0 |
If you validate a form field with, for instance,
`Symfony\Component\Validator\Constraints\Length` and submit the form with the
value of the field as an array, the `LengthValidator` will throw an
`UnexpectedTypeException`, generating a 500 response, instead of adding a
violation to the form field.
I tried to work aro... |
I have this example, which i use in a small json-api where i use the form
component to handle requests and validation.
->add('account', 'text', [
'constraints' => [
new NotBlank(),
new Type('string'),
new Regex(... | 1 |
I cannot set a line or block comment in C# files anymore.
|
Type if (
expected => closing )
actual => nothing
| 1 |
I isolated the issue SciML/DifferentialEquations.jl#303 at least down to
ForwardDiff on a large nonlinear function.
P2D2c = function(dy,y,pars,t)
Dbulk = pars[1]
Dsn = pars[2]
Dsp = pars[3]
F = 96487.000000
R = 8.314300
Rpn = pars[4]
Rpp = pars[5]... |
I was trying to provide myself with a large collection (>500) of test
functions for optimization and came across an interesting benchmark for
compiler performance. It stresses the ability to infer _long_ function bodies.
To understand what the body looks like, follow the URL in the `download`
statement (and look at t... | 1 |
@sjudd I have the same problem(#2859),The glide version which using is V4.5.0.
please have a check. below is the bug info.
java.lang.NullPointerException: Attempt to invoke virtual method
'java.lang.Class java.lang.Object.getClass()' on a null object reference
at android.util.Log.printlns(Log.java:441)
at androi... |
I have a problem.
Glide Version: 4.3.1
Android Version:5.1.1
Device:SM_J200H
java.lang.NullPointerException: Attempt to invoke virtual method
'java.lang.Class java.lang.Object.getClass()' on a null object reference
at android.util.Log.getStackTraceString(Log.java:340)
at android.util.Log.w(Log.java:192)
a... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.0
* Operating System version: windows 64
* Java version: 1.8
### Steps to reproduce this iss... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.0
* Operating System version: win7
* Java version: 1.8.0_151
### Steps to reproduce this iss... | 1 |
## Steps to Reproduce
Device: OnePlus 6T, Android 9
1. Click on FlatButton with 3 fingers
2. FlatButton changes colors and crash in background
## Logs
E/flutter ( 5777): [ERROR:flutter/shell/common/shell.cc(184)] Dart Error: Unhandled exception:
E/flutter ( 5777): NoSuchMethodError: The gett... |
Internal: b/143427192
On our released version of App, we were notified with an exception as the
title show, the detail track infos are as follow:
NoSuchMethodError: The getter 'lastPosition' was called on null.
6 Receiver: null
7 Tried calling: lastPosition===>#0 PointerEventConverter.expand (pac... | 1 |
The ES6 definition of the "class" construct has the concept of "class
expression" - i.e. class definitions may be used as values, such as:
var obj = new (class { x = 5; });
var cls = class { x = 5; };
var cls2 = class extends cls { y = 6; };
var obj2 = new cls2();
// and so on
Sad... |
module foobar
{
export function foo()
{
return;
}
export enum foo
{
bar,
baz
}
}
results in valid javascript:
var foobar;
(function (foobar) {
function foo() {
return;
}
... | 0 |
by **alex@zylman.com** :
Similar to issue #6258, but not the same.
What steps will reproduce the problem?
Try to read a CSV file where the fields are unquoted and one of them begins in something
that would need lazy quotes, e.g.
Field1,Field2,"LazyQuotes" Field3,Field4,Field5
... |
by **whitetiger0990** :
What steps will reproduce the problem?
1. _,error:=net.Dial("tcp","",host);
2. Have a 2Wire router (which is what I believe is causing the problem, but
may be wrong)
What is the expected output? What do you see instead?
I expect error==nil, but instead e... | 0 |
### Example
Set up a brand new FastAPI venv:
virtualenv venv
source venv/bin/activate
pip install fastapi[all] pytest
Copy/paste example from the testing docs at
https://fastapi.tiangolo.com/tutorial/testing/:
from fastapi import FastAPI
from fastapi.testclient import ... |
### First Check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... | 0 |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* v1... |
I'm using the latest beta of electron 11 (beta.23), with electron/remote 1.0.
I tried running my app, and I see a crash with the following stack trace.
Uncaught Exception: TypeError: process.electronBinding is not a function
at Object.<anonymous> (/my_app/ui/node_modules/@electron/remote/dist/src/m... | 1 |
Hello us it possible to translate Powertoys in Dutch
|
# Summary of the new feature/enhancement
The windows key shortcut guide UI strings need to be localized.
The application will be localized in the following langauges:
Language | Culture Code
---|---
English | en
German | de
Spanish | es
French | fr
Italian | it
Japanese | ja
Korean | ko
Portugues... | 1 |
Why does everyone use GIL incorrectly?
Recently reported a bug in Pytorch.
Today updated numpy 1.16.3 to 1.16.4
Same problem with GIL.
|
If an application is using multiple embedded sub interpreters that use numpy,
there is a possibility that floating point errors can cause the thread to
deadlock. I traced this down to ufunc_object's _error_handler() method where
it does NPY_ALLOW_C_API and that freezes on PyGILStateEnsure(). Interestingly,
the PyGILS... | 1 |
The commit `7e87eb1` removes the _format param being passed to
twig.controller.exception:showAction. No updates were made to the TwigBundle's
ExceptionController to account for this change and as such errors or
exceptions from non-html requests render incorrectly with the html templates.
One possible fix for this is... |
Hello,
I was wondering if it could be interesting to provide a intergration between
the security and form components for the login part.
The security listeners for login work with the request object directly. It's
easy to create a formType class and use it to display the form, but it will
never be submitted.
I se... | 0 |
http://stackoverflow.com/questions/28857937/trying-to-check-data-frequency-
with-pandas-series-of-
datetime64-objects/28858228?noredirect=1#comment45982435_28858228
It works fine with `datetime64`. Currently you have to convert to datetime in
order to check allclose
|
`numpy.isfinite` should support `datetime64` and `timedelta64` objects. It
should return `True` for any ordinary value, and `False` for
`datetime64('NaT')` and `timedelta64('NaT')`.
As a side-effect, this will make `isclose` and `allclose` usable for
`datetime64` and `timedelta64` objects.
In [97]: nu... | 1 |
The `peek` function is very useful and an efficient alternative to marking and
resetting a stream when all you need to do is get a single character. The
current `peek` returns a byte, however, which leads to errors when people
assume that they can compare that byte to a character and check for a
character (only works... |
As discussed here: https://groups.google.com/forum/?fromgroups=#!topic/julia-
users/kDKL1dS4L0w
Basically, I'd like to be able to peek at the first few characters of an IO
stream, without removing the characters from the stream. In particular, it
needs to work with streams that are not files and therefore not seekab... | 1 |
Please go to Stack Overflow for help and support:
https://stackoverflow.com/questions/tagged/tensorflow
If you open a GitHub issue, here is our policy:
1. It must be a bug, a feature request, or a significant problem with documentation (for small docs fixes please send a PR instead).
2. The form below must be ... |
_Please make sure that this is a build/installation issue. As per ourGitHub
Policy, we only address code/doc bugs, performance issues, feature requests
and build/installation issues on GitHub. tag:build_template_
**System information**
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Linux Ubuntu 16.04... | 0 |
**Elasticsearch version** : Amazon Elasticsearch 2.3.2
**Description of the problem including expected versus actual behavior** :
Inserting same field to same index with different mapping don't create new
mapping.
Field name change creates new mapping
Issue seems to be duplicate of closed #16348 #15138 #15568
... |
**Describe the feature** : Ability to retain only the top N buckets given an
aggregated metric on parent buckets. This would be similar to the
`bucket_selector` aggregation (which removes buckets based on a script).
**Example** : Given a filters aggregation that's provided with 300 filters, we
have a sub-aggregation... | 0 |
Hey Sokra,
This is my first webpack plugin and contribution to the open source community.
The issue that I was faced with is that we have multiple projects and even
some runtime loadable code and many developers. Some parts of one project may
run standalone or is loaded by another project.
The idea is that we'd li... |
**Do you want to request a _feature_ or report a _bug_?**
Report a bug.
**What is the current behavior?**
Duplicate entries are added to records when RuleSet `ref--` values are needed
and the order of loader config changes. This causes the records file to
balloon over time.
**If the current behavior is a bug, pl... | 0 |
Seems to be an issue serializing a model returned from
tensorflow-gpu==1.11.0
keras==2.2.4
from keras.utils.training_utils import multi_gpu_model
..
..
gpu_model = multi_gpu_model(model,gpus=2)
gpu_model.compile(loss="binary_crossentropy",
optimizer=opt,metrics=["accuracy"])
..
..
fit
..
print("[... |
Hey guys,
the new multi_gpu feature seems to have a bug. If you want to save the model
you get an error like the one below. To reproduce just run the test
multi_gpu_test_simple_model() with parallel_model.save("logs/model.h5") at the
end.
def multi_gpu_test_simple_model():
print('####### test ... | 1 |
by **mdwhatcott** :
What does 'go version' print?
go version go1.3.3 darwin/amd64
What steps reproduce the problem?
1. go get github.com/mdwhatcott/cycle
2. cd $GOPATH/src/github.com/mdwhatcott/cycle
3. go test -cover
What happened? The go test command hangs ... |
Present on:
go version devel +52e26bb34741 Sun Aug 04 23:32:40 2013 +0400 freebsd/amd64
and
go version go1.1.1 freebsd/amd64
What steps will reproduce the problem?
This doesn't run on the playground as it is a go tool issue; the input source is:
http://play.gol... | 0 |
**Is this a BUG REPORT or FEATURE REQUEST?** (choose one):
Bug report.
**Kubernetes version** (use `kubectl version`):
master
**Environment** :
* **Others** : CI envionment
**What happened** :
=== RUN TestDeploymentController_dontSyncDeploymentsWithEmptyPodSelector
E1012 02:19:51.54640... |
The link to the "Pod API object" at the bottom of the Pods page in the user
guide points to a page that can't be loaded:
https://htmlpreview.github.io/?https://github.com/GoogleCloudPlatform/kubernetes/v1.0.1/docs/api-
reference/definitions.html#_v1_pod
| 0 |
OS X El Capitan + Anaconda 2.4 (Python 3.5) + matplotlib 1.4.3
At `ipython` terminal:
In [1]: import matplotlib.pyplot as plt
In [2]: plt.plot(range(5))
Out[2]: [<matplotlib.lines.Line2D at 0x1085feef0>]
In [3]: plt.show()
This works. However, if I call `plt.xkcd()`, things fall apart.
... |
The matplotlib xkcd example plots at
http://matplotlib.org/examples/showcase/xkcd.html
stopped working with matplotlib 1.4.x (they used to work with earlier
versions). This is with Python 2.7.5 on Mac OS X 10.9.5 and matplotlib 1.4.3.
The following Traceback is printed if I run one of the examples:
... | 1 |
**Do you want to request a _feature_ or report a _bug_?**
Bug (maybe)
**What is the current behavior?**
If wrapped in React.StrictMode and a function component contains a call to
`useState`, the function (render) is called twice - even if the state setter
is never called.
**If the current behavior is a bug, ple... |
**Do you want to request a _feature_ or report a _bug_?**
Probably a feature, I'd like to know why the `useState` hook does not have a
second argument to compare inputs similar to other hooks.
**What is the current behavior?**
I'm trying to implement custom hooks for a timer and countdown library that we
use at w... | 0 |
**TypeScript Version:**
1.8.2
**Code**
foo.ts
var foo: number = "s";
tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"target": "es5"
},
"exclude": [
"foo.ts"
]
}
**Expected behavior:**
In an NTVS ty... |
Hi,
I think that the `///<amd-dependency />` functionality exhibits odd behavior
when combined with an ES6 import.
For example, this TypeScript code:
/// <amd-dependency name="jquery" path="/jquery/jquery.min.js" />
import 'jquery';
$('#myDiv').html('Hello');
emits as this JS when using... | 0 |
Debugging an extension does not work if the WiFi adapter is disabled on my
laptop. (i.e in airplane mode). I get the message "Cannot connect to runtime
process (reason: [object Object])", while the debug window said it could not
connect to the debugger.
Additionally it would be nice for the debugging window to give ... |
If my wifi is offline or my laptop is in flight mode I am unable to launch the
VSCode debugger for debugging extensions.
## Steps to repo
1. Clone a repository with an extension (or `yo code`)
2. Restore npm packages
3. Open extension in VS Code
4. Press `F5`
When doing so the following error is displayed:... | 1 |
`rollaxis` has an optional `start` parameter that, if specified, moves the
axis to the position _before_ `start`. Or, as the documentation puts it
> The axis is rolled until it lies before this position. The default, 0,
> results in a “complete” roll.
(Just by the way: The last sentence is unclear. What's a "comple... |
In Anaconda3(numpy 1.90).
## I think there are something wrong to the results of the matrix inverse
function below.
import numpy as np
a = np.mat('1,2,3;4,5,6;7,8,9')
print(a.I.I)
> > > G:\Anaconda3\python.exe C:/Users/4078/test/chap3.22.py
> [[ 2.38095238 3.0952381 3.80952381]
> [ 2.85714286 3.21428571 3... | 0 |
Neo4j Version: 3.0.4
Objective of the below query is to eliminate duplicate bus service and bustop
in a path, it work fine if i didn't provide the relationship count
**-[r:CONNECTSWITH]- >** but if the relationship count defined
__-[r:CONNECTSWITH_..3]->_* ,then its throwing
`Key not found: r`
**Working:**
`OPTIO... |
**Is your feature request related to a problem? Please describe.**
For better indexing, I'd like to increment a property on a node everytime a
relationship is merged and decrement the same property everytime the
relationship gets deleted.
Here is an example:
If I understand correctly, the following `MERGE` query ... | 0 |
I know there are more than a few target environment options, but was thinking
it would be nice if there were some basic targets of "es5" or "es6" so that
for modern node/iojs where generators and other es6 features are in the box,
they can be used (as well as newer browsers)...
I'm just thinking it would be nice if ... |
Possibly through a `blacklistUserAgent` option or something. Would use the
kangax compat-table. Important to note that it does not guarantee complete
spec compliancy on the vendors end.
References:
* https://github.com/kangax/compat-table
* https://github.com/Fyrd/caniuse
* https://github.com/3rd-Eden/userage... | 1 |
This code worked with babel 5.x and doesn't with babel 6.x. The expectation is
that countdown1 and countdown2 both produce the same results:
'use strict';
function sleep(timeout) {
return new Promise(function (resolve, reject) {
setTimeout(function () {
resolve();
... |
If named async function recursively calls itself by name then the compiled
code is wrong.
Workaround is to assign anonymous async function to a variable and do
recursive calls via that variable.
Problematic code:
async function x( a ) { if ( a ) return a; else return await x( 42 ); }
x().then( a... | 1 |
**Bug description** : when using the built-in PropertyAccessor service,
accessing an array property containing `/` in its key throws an error.
**Example**
* in a standalone `bin/test.php` file, in a working Symfony instance
<?php
$loader = require __DIR__.'/../vendor/autoload.php';
$ke... |
**Symfony version(s) affected** : 4.1.7, 4.1.5 (Serializer Component)
**Description**
CacheItem throws an Error: `Cache key "p@triggers" contains reserved
characters {}()/\@:` when using the Serializer Services `deserialize` Method
in combination with ObjectNormalizer and XmlEncoder (by passing an XML File
and an O... | 1 |
The links below the section:
Importing CSS / Sass / Less files
https://github.com/zeit/next.js#importing-css--sass--less-files
don't work.
| ERROR: type should be string, got "\n\nhttps://github.com/zeit/next.js#importing-css--sass--less-files\n\nIt seems https://github.com/zeit/next-plugins doesn't exist anymore.\n\n" | 1 |
**Donny A. Wijaya** opened **SPR-7229** and commented
* * *
**Affects:** 3.0.2
**Issue Links:**
* #9424 Add additional redirect prefixes to allow for more control over redirect behavior ( _ **"duplicates"**_ )
|
**Marvel** opened **SPR-5212** and commented
This is the worst possible kind of bug report, and so I apologize in advance,
but it has only appeared once in production and was not reproducible. On top
of that, the actual case that generates the error seems to be pretty much
impossible. The cast exception you see belo... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Mark TextField as an error state when form validation fail
## Current Behavior
Do nothing when in an error state
## Steps to Reproduce
https://codesandbox.io/s/qk17pp2vlq

## Steps to Reproduce (for bugs)
;
mRequestOptions.transform(new RoundedCorners(8));
Glide.with(mContext).load(url).apply(mRequestOptions).into(iv);

|
In library module I need to use glide loading with generated API
customization.
Using AppGlideModule class runs to Duplicate entry ZipException in main app,
LIbraryGlideModule not generate any class to use Glide loading in library
module.
How can I use Glide customized loading in my android library module?
| 0 |
After 0.10.9 vscode does not preserve the undo/redo stack. Sometimes it
preserves for 5 to 10 items. It was not behaving like this before upgrading.
|
In the case of #2829
| 1 |
**System information**
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 Pro Build 17134
* TensorFlow installed from (source or binary): Package (pip install tensorflow-gpu)
* TensorFlow version: 1.12.0
* Python version: 3.6.7
* Installed using virtualenv? pip? conda?: pip
* CUDA/cuD... |
As announced in release notes, TensorFlow release binaries version 1.6 and
higher are prebuilt with AVX instruction sets. This means on any CPU that do
not have these instruction sets either CPU or GPU version of TF will fail to
load with any of the following errors:
* `ImportError: DLL load failed:`
* A crash w... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
When consuming packages with both transpiled and untranspiled modules, as
defined in their `package.json` with `main:` pointing to the transpiled
version and `module:` pointing to the untranspiled one, Ne... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
should have a `asPath` key in `url` object as documented
## Current Behavior
`url.asPath` does not exist
## Context
I noticed there's already a PR merged for this issue, but it requires breaking
... | 0 |
Perhaps a re-opening of #15123, (which we thought was a duplicate of #15895,)
but also may be a new issue.
Worth noting this is only happening when nodes are at 1.1; when nodes are at
1.0, these tests pass.
See `kubernetes-upgrade-1.0-1.1-gke-step5-e2e-old` Jenkins job:
Kubectl client Update Demo... |
See:
https://github.com/kubernetes/kubernetes/blob/v1.6.0-alpha.0/pkg/master/controller.go#L126
This code should make several attempts before `Fatalf`ing. Alternatively, we
could consider not listening for connections until this code has succeeded.
| 0 |
## 📝 Provide a description of the new feature
I do like when there is a few icons in my traybar but they are informative for
me. Unfortunately, PT isn't in this list. So I would like to have an ability
to hide icon like in most applications like NVIDIA Control Panel, PhysX, etc.
Would it be possible?
Thanks in ad... |
Just an option to hide the system tray icon directly in the settings of the
app.
If you'd like to see this feature implemented, add a 👍 reaction to this post.
| 1 |
It failed in gce suite. I honestly have no idea under which team it falls:
@bgrant0607 @thockin @ixdy @wojtek-t.
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/es_cluster_logging.go:46 Nov 27 02:50:59.145: Failed to find all 300 log lines
|
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): secret
permission mode
**Kubernetes version** (use `kubectl version`):
v1.5.0-alpha.0.1251+e05e8664d5dd7a
**Environment** :
* **OS** (e.g. from /etc/os-release): Re... | 0 |
Challenge Factorialize a Number has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/54.26.2840.71 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
var factor =1;
func... |
Challenge Factorialize a Number has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 5.1; rv:47.0) Gecko/20100101
Firefox/47.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
var count=1;
function factorialize(num) {
for(var i=1; i<=... | 1 |
Similar to how `npm uninstall` works, I would like this feature to be added.
You can pass the full URL used during the installation. Examples:
$ deno uninstall https://deno.land/std/node/module.ts # Uninstall via URL
$ deno un https://deno.land/std/path/mod.ts # Shorthand for `uninstall`
... |
As the title says: I have an API program which I want to turn into a single
executable using `deno compile`. Everything works fine when using `deno run`,
but using `deno compile` produces an executable which fails with:
error: Uncaught SyntaxError: Identifier 'i2' has already been declared
at f... | 0 |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* El... |
* Electron version: 3.1.0
* Operating System (Platform and Version): Windows 10 Enterprise, 1803
When having a setup of two (or more) displays with mismatching "scaling"
factors, calling `BrowserWindow.setBounds()` with a position that is on the
other display, results in both the new position and the size of the... | 0 |
* Electron version: 0.37.5
* Operating system: Windows 10
Hi! Here's a minimal Electron app to reproduce the bug: electron-webview-
resize-bug.zip
1. Run the app
2. Click the button to hide the webview
3. Resize window
4. Click the button again to show webview
5. **Bug:** Notice the webview hasn't been... |
I have a very little demo like this:
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<webview src="https://www.google.com/" autosize="on" minwidth="576" minheight="432"></webview>
</body>
</html>
When I run the ap... | 1 |
Ran into the same problem #2315 , that's what I Deno.run:
clang -std=c++2a -g -IC:\Users\rs\***\***\*** -c -fno-exceptions -Wall -Wextra -Wpedantic -Wno-unused-parameter -Wno-c99-extensions -fsanitize=address C:\Users\rs\***\Projects\***\***\src\node.cc -o C:\Temp\***\temp\src\node.cc.o
... |
### Reproduction
1. Generate test file:
echo "hello world" > file.txt
for i in {1..10}; do cat file.txt file.txt > file2.txt && mv file2.txt file.txt; done
2. create test.js
const proc = Deno.run({
cmd: ["cat", "test.json"],
stdout: "piped",
stderr: "piped"
... | 1 |
**Ken Egervari** opened **SPR-8665** and commented
I have an application that I've recently upgraded to 3.0.6 from 3.0.5. The
application used a property editor to convert a String to a List of objects,
back and forth.
I am positive this code used to work. In fact, the unit tests for the property
editor continue to... |
**Marvel** opened **SPR-5213** and commented
I saw a similar issue raised out by Jasper Rosenberg (#8738 ).
I would like to share my understanding on this , code snippet below is using
the non-thread safe variable beanClass, which may cause issue in multiple
thread environment.
private... | 0 |
Recently, Javier posted a blog post about supporting « notes » in XLIFF files.
As notes are written directly in the XLIFF files by translators for instance,
this means the technical guys in charge of the application will have to be
warned for notes and open the files.
I was wondering if we could enhance the `transla... |
I'm implementing a solution which allows the user to log in with passwords
generated in Symfony 1.4. Since the mergePasswordAndSalt behaviour must be
different to accommodate this (i.e. it should behave differently depending on
the algorithm used), I have to duplicate the entire class since I can't access
the "algori... | 0 |
## ℹ Computer information
* PowerToys version: v0.21.1
* PowerToy Utility: Shortcut Guide
* Running PowerToys as Admin: Yes
* Windows build number: [run "winver"] 18363.1082
## 📝 Provide detailed reproduction steps (if any)
1. Install PowerToys
2. Open Settings, relaunch as administrator with button
... |
# Environment
Windows build number: 10.0.18363.836
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable): Settings (Shortcut Guide)
# Steps to reproduce
Got the Dark Theme set in Windows.
Open Settings > Shortcut Guide for the first time.
# Expe... | 1 |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for a feature request that matches the one I want to file, without success.
### Problem Description
The product I'm dev... |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for a feature request that matches the one I want to file, without success.
### Problem Description
The Electron `net` ... | 0 |
Challenge http://freecodecamp.com/challenges/waypoint-declare-string-variables
has an issue.
The asserts propably shouldn't be shown.
It's the same for the other Basic JavaScript Waypoint's.
Chrome: Version 44.0.2403.157
Windows 8.1
` raises an `AttributeError` error complaining a `draw()` call
was not previously performed even though a `draw()` call was already done.
This happens using the `GTK3Agg` backend.
A minimum (not working) code example _(inspired byscipy-cookbook)_
#!/usr/bin/python3
import matplotlib... | 0 |
On the 1.5.2 branch (or 1.5.1), the file src/atomics.h is missing a template
keyword for jl_atomic_store_release , around line 269, making the file
uncompilable (in VS2017). See
julia/src/atomics.h
Line 269 in 539f3ce
| static inline void jl_atomic_store_relaxed(volatile T *obj, T2 val)
---|---
.
This is ... |
First, It seems like the template parameters for this function aren't defined.
Trying to embed julia in c++, using the bare minimum example given in the
documentation gives the error:
`1>C:\Julia_1.5_x32\include\julia\atomics.h(269,55): error C4430: missing type
specifier - int assumed. Note: C++ does not support de... | 1 |
I just upgraded our project from symfony2.4 to symfony2.6, everything went
fine except web profiler is not working correctly, when I page source code, I
found web profiler's javascript code are being included twice.
And after web page is loaded, profiler alert "404 message".
I temporary fixed this problem by adding... |
Whenever starting with an incognito or clean cache browser in any app in any
browser
I am getting Warning: session_start(): The session id is too long or contains
illegal characters, valid characters are a-z, A-Z, 0-9
Whenever reloading it works and also whenever I try to debug with phpstorm it
gives no problems, h... | 0 |
Some times ripple effect not working for focus
## Steps to Reproduce (for bugs)
1. Open https://material-ui.com/demos/buttons/
2. Play with keyboard focus
or
1. Watch video https://youtu.be/rV0zxotpekk
## Your Environment
Tech | Version
---|---
Material-UI | 1.0.0-beta.18
React | 15.5.4
browser | ... |
On the Getting Started - Installation page, Cloudflare appears to be reading
`npm install --save material-ui@next` as an email address and replacing it
with `npm install --save material-[email protected]`
The `[email protected]` links to https://material-ui.com/cdn-cgi/l/email-
protection.
* I have searched t... | 0 |
Hi all,
There is still this reoccurring issue with the tensorflow-gpu install with the
latest version from pip.
When i try and test using the "Hello World" constant I get the below errors
even though it works.
E c:\tf_jenkins\home\workspace\release-
win\device\gpu\os\windows\tensorflow\core\framework\op_kernel.cc:... |
My environment is Win7 x64, python 3.5, tensorflow r1.0 GPU version.
I download contrib/tensor_forest/python/tensor_forest_test.py and run 'python
test.py' in console. Then the following error information shows:
..E c:\tf_jenkins\home\workspace\release-win\device\gpu\os\windows\tensorflow\co
re\f... | 1 |
Form fields rendered individually with form_widget(...) or form_row(...) are
re-rendered via form_rest(...)
This issue is related to beta2 and was not present in beta1.
Example:
{{ form_row(borrower_form.contact_info.first_name) }} {{
form_row(borrower_form.contact_info.last_name) }} Phone Number
{{ form_widget... |
Hello,
Would be great to have a "TelType" for instance, with an template.
Options could be to choose between "national" format or "international" format
etc..
And Constraint to validate this of course...
What do you think about it ?
| 0 |
## Steps to Reproduce
return new Scaffold(
appBar: new AppBar(
title: new Text('Enter text to read'),
), ... |
Longpress on TextField with maxLines set to null, an exception occurs.
If maxLines is a number, no exception.
The following NoSuchMethodError was thrown building _TextSelectionHandleOverlay(dirty, state:
_TextSelectionHandleOverlayState#c8639):
The method 'toDouble' was called on null.
Re... | 1 |
# Proposal
I propose these implementations:
## Deno.cacheDir()
Implementation of rust's cache_dir
## Deno.cache(path: string, options: CacheOptions)
access to `deno cache` as a method
## resolveCacheModulePath(path: string)
Native way to resolve an url to the local cache file. Either returns the
`filepath` if ... |
We recently changed `deno fetch` to `deno cache`. When we introduced the
runtime compiler APIs, one of the challenges is that it didn't align well with
the subcommands. Given that we have a better name now for the subcommands, it
feels right to re-align the runtime compiler APIs, also based on some
experience with th... | 1 |
Challenge http://www.freecodecamp.com/challenges/waypoint-add-your-javascript-
slot-machine-slots has an issue.
I am allowed to continue to the next challenge with the single condition still
in a state of failure. I can skip along without adding a return statement or
modifying the existing return statement.
Additio... |
Challenge http://freecodecamp.com/challenges/waypoint-add-your-javascript-
slot-machine-slots has an issue. It marks the challenge as completed as soon
as I create an "If statement". It does not check whether the if statement is
correct.
:
#![feature(plugin)]
#![plugin(docopt_macros)]
docopt!(Args, "
Usage: foo (--help | --version)
Options:
-h, --help Show this message
--version Show the vers... |
the error reproduced #20913
#![feature(plugin)]
#![plugin(regex_macros)]
extern crate regex;
static R : regex::Regex = regex!(r".+");
fn main() {
println!("Hello, world!");
}
Cargo.toml
[package]
name = "hello_world"
version = "0.0... | 1 |
My issue concerns `scipy.sparse.csgraph.shortest_path`, more specifically the
Floyd-Warshall solver, which does not deal with **explicit zeros** as the
other algorithms (they are removed here).
The following (slightly convoluted) example highlights the different handling
of explicit zeros.
#### Reproducing code exa... |
In [5]: from scipy.stats import multivariate_normal
In [7]: multivariate_normal().rvs(size=(1,)).shape
Out[7]: ()
All size parameters should support `None`, `()` and `(1,)` and produce shapes
`()`, `()`, and `(1,)` respectively.
As mentioned below, this problem also occurs with the `w... | 0 |
My debian x64 fails on `make check`:
$ rust -v
rust 0.8-pre (2562f48 2013-09-16 06:30:51 -0700)
host: x86_64-unknown-linux-gnu
$ RUST_LOG=rustpkg make check TESTNAME=no_rebuilding_dep 2> out
<snip>
running 1 test
test tests::no_rebuilding_dep ... FAILED
metrics sav... |
Sometimes people use multiple `mod` statements that refer to the same file in
order to access that files content as a module in different modules/files,
thinking all those instances would be identical. But in reality that just
duplicates all definitions in the file at different places in the module
hierarchy, which l... | 0 |
It would be great to enable the Fancy Zones to span across desktops. I have a
49 In Dell ultrawide monitor that that uses two video inputs to drive a single
display. The single display acts like two distinct monitors with the advantage
of not having a bezel in between since it is really one monitor. Enabling
monitor ... |
It would be great if between the borders of two zones there could be a
dropzone square that would span the dropped window across both zones.
And in the crosspoint of 4 zones for example could be a square that would span
the dropped window across all 4 zones for example.
I suppose this would only work with column,... | 0 |
### System info
* Playwright Version: 1.33.0
* Operating System: Windows 11
* Browser: electron
* Other info:
Before I update playwright today (May, 15), this error didn't happen. I tried
to run the same script last week and was running ok. Didn't happen any update
in my electron app that could possible bre... |
Playwright shows `test.step` in various reporters, but it isn't shown in
traces. Showing them can help with dissecting larger traces from large tests.
| 0 |
# Environment
Windows build number: Version 1903 (OS Build 18362.295) in a Hyper-V VM
PowerToys version: v0.11.0
PowerToy module for which you are reporting the bug (if applicable): FancyZones
# Steps to reproduce
-Enable `FancyZones`
* _Override Windows Snap hotkeys (win+arrow) to mo... |
# Summary of the new feature/enhancement
Currently the new FZ editor only comes up and applies zone layouts to the
primary monitor. In order to get a layout on a different monitor, the original
custom editor is needed. Bret and Jeff have a design for this change and now
they need to implement it.
# Proposed technic... | 1 |
**Apache Airflow version** : 2.0.0
**Kubernetes version** : -
**Environment** :
* Two servers running docker
* Docker image:` apache/airflow:2.0.0-python3.7`
* Each server contains:
* webserver
* scheduler
* celeny worker 1
* celeny worker 2
* celeny flower
* Broker- redis version `6.... |
### Apache Airflow version
2.3.1 (latest released)
### What happened
I have a DAG with several dag_runs which rendered fine in the Grid view.
After adding new task Grid view failed to load getting blank view .
There is an error in browser console.
`TypeError: Cannot read properties of null (reading 'runId')`... | 0 |
Roles would look cleaner if filenames were shortened from
`roles/foo/tasks/main.yml` to `roles/foo/tasks.yml`. Counting a directory as a
file, this would reduce the number of files inside role directories with 50%.
Moreover, file lookup in editors such as sublime text would work better,
because typing `roles/foo/task... |
##### ISSUE TYPE
* Feature Idea
##### ANSIBLE VERSION
ansible 2.1.0
##### OS / ENVIRONMENT
N/A
##### SUMMARY
The directory structure would me much more compact if a file
`roles/<X>/tasks.yml` were included as `roles/<X>/tasks/main.yml` is right
now.
When a project is organized in many, sm... | 1 |
# Environment
Windows build number: [run "ver" at a command prompt]
Windows Terminal version (if applicable):
Any other software?
# Steps to reproduce
# Expected behavior
# Actual behavior
When I resize the terminal in ubuntu overlay the text is duplicated.
|
# Environment
Windows build number: [Version 10.0.18362.175]
Windows Terminal version (0.2.1715.0):
# Steps to reproduce
open any terminal (PowerShell/cmd/wsl). type any command (e.g. `dir`, `ver`,
`uname`) and enter. resize the app window to the minimum and gradually enlarge
the window... | 1 |
WARNING: Error during initialization of module CHOLMOD:
ErrorException("could not load library "libsuitesparseconfig"
dlopen(libsuitesparseconfig.dylib, 1): image not found")
WARNING: Error during initialization of module CHOLMOD:
ErrorException("could not load library "libsuitesparseconf... |
Not sure if this is the correct place to post this issue.
I can't get the current commit of Julia to work (the command worked for HEAD
versions before 0.5)
→julia ... | 1 |
## feature request description
The NLP community is shifting from LSTMs to Transformers for a number of NLP
tasks.
This would be great if we could have a packed standard Transformer
implementation in the 'nn' package, i.e. a **nn.Transformer** , just like we
have a nn.LSTM.
## Code example
fairseq-py has a teste... |
## 🐛 Bug
The result of `torch.max` with `dim` is different on CPU and on CUDA. CPU
version return the last element, while CUDA version returns first.
## To Reproduce
Steps to reproduce the behavior:
In [1]: import torch ... | 0 |
Here's an example where `Alpha` and `Beta` both extend `Axios` and when you
log instances of these classes you can see that `this.defaults.headers` are
shared between the two classes.
The expected behavior would be that `alpha` would only contain the `alpha`
header and `beta` would only contain `beta`.
Any idea why... |
If I have two instances of axios created with axios.create and I set a default
header on one, it also changes it on all the other ones in existence.
var instance1 = this.oauthService = axios.create({});
var instance2 = this.oauthService = axios.create({});
instance2.defaults.headers.common... | 1 |
Tensor split still works, but Variable split does not.
In [19]: v = Variable(torch.Tensor(5,1))
In [20]: v.split(1)
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input... |
High Priority:
* `repeat`
* `split`
* `std`
* `var`
* `renorm`
* `eq`
* `ge`
* `gt`
* `le`
* `lt`
* `ne`
Mid Priority:
* `cross`
* `cumsum`
* `trace`
* `unfold`
* `cumprod`
* `atan2`
* `__and__`
* `__bool__`
* `__iand__`
* `__ior__`
* `__ixor__`
* `__mod__`
* `__nonz... | 1 |
## Steps to Reproduce
As of a few days ago, hot reload (by typing little-r) consistently crashes the
Android Flutter application.
@apwilson is also seeing this.
## Flutter Doctor
[✓] Flutter (on Mac OS, channel master)
• Flutter at /Users/dayang/fuchsia/lib/flutter
• Framework revision `0533ffc` (64 minutes a... |
If you alter a file and then click the Hot Reload button in IntelliJ then you
will be presented with an error that looks like:
error: Unable to read Dart source '
error: Unable to read Dart source 'package:<some file in your project>.dart'.
Application finished.
| 1 |
Q | A
---|---
Bug report? | no
Feature request? | no
BC Break report? | no
RFC? | yes
Symfony version | 3.4
While the Symfony DI component is a really awesome tool to help build high
quality apps, I was thinking there could be ways to improve its DX in terms of
autocompletion in IDEs.
When interacting... |
I would like to use the Validator component to validate objects against a set
of rules I need to create programatically.
This validation needs to be applied „stand-alone“ (for example, when
populating objects with data provided as JSON). If it could also transparently
be used when working with Forms that would be ev... | 0 |
##### System information (version)
* OpenCV = 4.0.0-pre
* Operating System / Platform = Ubuntu 16.04
* Compiler = GCC (4.8)
##### Detailed description
I've trained a darknet classifier to classify digits , classifier works
correctly on the darknet framework , but when I load it to opencv using the
classifica... |
##### System information (version)
* OpenCV => 4.0.1
* Operating System / Platform => Ubuntu 16.04
* Compiler => gcc
##### Detailed description
Hi,
I am using OpenCV DNN module for NN inference. Inference on single image, i.e.
batch size of 1 works fine but when I try to use more than one images in
inferenc... | 0 |
It's a small problem. Now in "/etc/hosts" of master in vagrant cluster, there
are duplicate "127.0.0.1 localhost". Though it doesn't make any error, I think
it's better to remove duplicate content.
|
Looking at the examples in guestbook and guestbook-go, there are some
properties that appear more than once inside the json file - this is redundant
and creates overhead for the api users.
Example:
version and id attributes appear twice.
https://github.com/GoogleCloudPlatform/kubernetes/blob/9c8ba8495d1d581808f7... | 0 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : N/A
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : N/A
* **Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device** : N/A
* **Te... |
I did not find a PR for this patch. Maybe this discussion belongs to that
particular commit page. If so, I will move it there.
Can somebody explain the rationale behind this patch? Current contrib/verbs
uses exactly this flag to transfer tensors. Note it is set true here. Removing
it totally breaks verbs. I am askin... | 0 |
### System info
* Playwright Version: [v1.32]
* Operating System: [All, Windows 11, Ubuntu 20, macOS 13.2, etc.]
* Browser: [Chromium]
### Source code
@pytest.fixture(scope="session")
def browser_context_args(browser_context_args):
current_test = os.environ.get("PYTEST_CURRENT_TEST"... |
Playwright currently offers the `LocatorAssertions.toHaveCount` function, that
allows to expect -with wait- for a locator to have an exact count.
await expect(someLocator).toHaveCount(1);
However, it doesn't provide an out of the box way for asserting on non-exact
counts.
The proposal here is to add ... | 0 |
tooltips are always positioned on top wherever they were configured to be,
this even affects the main demo:
http://twitter.github.com/bootstrap/javascript.html#tooltips
|
congrats on releasing 2.3.0!
I was checking out some of the docs and saw that tooltips data-placement is
not working correctly. I think its because of the one pull request that makes
options set in javascript override the options that were set in the html but
I'm not sure..
| 1 |
Julia's ease of use and speed advantages over other languages makes it a very
good candidate for general purpose programming in addition to scientific
analysis. There have been a few interesting issues that have come up that
indicate that a deeper exploration of Julia in a potentially untrusted/multi-
user environmen... |
A typo in one area of my codebase trigged illegal instructions at another,
making it hard to debug. Here is my minimal example:
struct sparse_t
val::Vector{Float64}
sub::Vector{Int64}
end
# BUGGY SPARSE TO DENSE
# Should have been
# Base.convert(::Type{Vector}, v:... | 0 |
I'd like to implement an alternative jump to file that uses a custom matching
algorithm. Is this possible, or is the extension API too limited to do this?
The closest thing seems to be the quickpick api, and it falls short. Perhaps
`QuickPickItem` could be allowed to implement a
`matches(input:string):boolean` metho... |
If I accept input using
window.showInputBox();
Is there any way I can listen to key change events? I am writing an extension
and I want to accept an input from the user and I want to autocomplete when
the user hits `tab` like most terminals. If this is not possible inside the
inputbox is there an... | 1 |
**TypeScript Version:**
1.8.7
**Code**
type StringOrNumberKeys: { [key: string | number]: number };
**Expected behavior:**
Should work
**Actual behavior:**
Error: an index signature parameter must be 'string' or 'number'
|
This syntax :
var map: { [index: string|number ]: number };
results in compiler error :
An index signature parameter type must be 'string' or 'number'.
| 1 |
requests/requests/utils.py
Line 497 in 1431502
| if 'text' in content_type:
---|---
From RFC 2616:
When no explicit charset parameter is provided by the sender, media subtypes
of the "text"
type are defined to have a default charset value of "ISO-8859-1" when received
via HTTP.
However, from RFC7231... |
Referring to these lines:
https://github.com/kennethreitz/requests/blob/master/requests/sessions.py#L457-L458
**attrs** is not defined and hence pickling of the session fails.
| 0 |
##### System information (version)
* OpenCV => 4.1.1
* Operating System / Platform => ubuntu 18.4 jetson nano xavier vx jetpack 4.4 DP[l4T 32.4.2]
* Compiler => g++
##### Detailed description
The code to set the windows fullscreen is not work when in jetson nano xavier
vx.
And the code to freeratio the win... |
##### System information (version)
* OpenCV => 3.1
* Operating System / Platform => Linux Ubuntu 16.04
* Compiler => gcc
##### Detailed description
On GTK, calling `cv::setWindowProperty(name, WND_PROP_FULLSCREEN,
WINDOW_FULLSCREEN)` will only enforce the window to go fullscreen _if_ the
current property val... | 1 |
The compiler requires an index signature parameter to be "string" or "number"
specifically, and doesn't allow type aliases.
type CustomId = string;
interface Works {
[customId: string]: string;
}
interface DoesNotWork {
[customId: CustomId]: string;
}
// An inde... |
According to #5185, string literal types are assignable to plain strings.
Given the following type definition:
type NodeType = "IfStatement"
| "WhileStatement"
| "ForStatement";
Both these assignments are valid:
const nodeType1: NodeType = "IfStatemen... | 1 |
Let me start with an example to explain the issue which is a major pain point
for us when using nested aggregations.
Imagine having Teams that handle Requests of certain Priority. Each request
may have multiple teams assigned to it and each team request assignment has
number of hours allocated for this team on this ... |
Data of type IP is returned in decimal equivalent of 32bit for inner hits (as
fielddata_fields).
I have not found a way to return them in dot decimal format (x.x.x.x).
I have put this question up for discussion in the forum a while ago:
https://discuss.elastic.co/t/return-ip-field-from-inner-hit-in-dot-decimal-
... | 0 |
When I attempt to assign to a variable of type `&fn(&B)`, other than in the
declaration of the variable, I get an unexpected panic in the compiler.
I tried this code:
struct B;
impl B {
fn func(&self) { }
}
fn main() {
let mut y = &B::func;
y = &B::func;
... |
I get an internal compiler error on the input detailed below.
I tried this code:
struct B;
impl B {
fn func(&self) { }
}
fn main() {
let x:&fn(&B) = &B::func;
}
I expected to see this happen: Maybe it should work like `let x = &B::func`,
but I'm guessing... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Spinner should looks like in chrome

## Current Behavior
Spinners looks li... |
Circular progress doesn't work on safari, it looks full.
Open next docs in safari.

### Versions
* Material-UI: Next branch
* Browser: Safari 9.1.3, 10.1; Firefox ... | 1 |
I need to implement object permission in my application. I can handle this in
each endpoint but it will lead to a lot of duplicated code.
For example:
@router.get(...)
def read_item(..., item_id: int, ...):
item = service.get_item(id=item_id)
if item.owner_id != current_us... |
### First Check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... | 0 |
#### Code Sample, a copy-pastable example if possible
"""Pandas bug."""
from numpy.random import choice, seed
from pandas import DataFrame
from pandas.util.testing import rands_array
seed(1234)
N = 5 * 10 ** 6
DTF = DataFrame({'Col{}'.format(k): choice(rands_array(10, ... |
xref #12585
I think this ought to raise a ValueErrror:
In [1]: pd.to_datetime('01-13-2012', dayfirst=True)
Out[1]: datetime.datetime(2012, 1, 13, 0, 0)
_This means if my data is bad (i.e. somehow I have a mixture of american and
british string-dates), I won't be told there was an issue when ... | 0 |
Challenge http://freecodecamp.com/challenges/waypoint-build-web-apps-with-
expressjs has an issue. Please describe how to reproduce it, and include links
to screenshots if possible.
Run expressworks and no listing in the menu for Session and Cookie.
, I press AltGr + ´ or in keycodes `17`+`18`+`192`.
Possible you could omit `17`.
What happens is that the code block collapse. Since I'm writing javascript, I
need to write | on a daily basis.
I couldn't find anything about AltGr on
https://atom.io/docs/latest/customizing-atom#customiz... |
Original issue: atom/atom#1625
* * *
Use https://atom.io/packages/keyboard-localization until this issue gets fixed
(should be in the Blink upstream).
| 1 |
I install matplotlib on OS X using a Gentoo prefix install. Everything seems
to work ok. The only problem I've encountered so far is that when I try to
save something to a file, I can't change the filename on the dialog box,
because the keyboard strokes go to the terminal where I am running python. I
don't know if th... |
I'm using OS X Lion, Python 2.7.2 built by Homebrew with llvm-gcc, and
matplotlib installed via `pip install
git+git://github.com/matplotlib/matplotlib.git`. There are no errors or other
alarms during installation.
When I make an interactive figure with the Mac OSX backend the keyboard focus
does not go to the plot ... | 1 |
**I'm submitting a ...** (check one with "x")
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... |
**I'm submitting a ...**
[x] bug report
[ ] feature request
[ ] support request
**Current behavior**
After updating to angular 2.0.2, I did a tslint and get this error (not
present before) :
node_modules\@angular\compiler\bundles\compiler.umd.js:8766
templat... | 1 |
fn main() {
struct Example;
trait BaseTrait { fn toString(&self) -> ~str { ~"BaseTrait" } }
trait DerivedTrait : BaseTrait {
fn new() -> Self;
fn toString(&self) -> ~str { ~"DerivedTrait" }
}
impl BaseTrait for Example { }
... |
Let me start off by saying, _any time that`LD_LIBRARY_PATH` must be used is a
bug_. Not just a user experience bug, but an absolute bug. The _sole_ purpose
of `LD_LIBRARY_PATH` is for _local administrators_ to override the default for
debugging or something, it must never be used by upstream or by distro, in any
pack... | 0 |
## ℹ Computer information
* PowerToys version: v0.22.0
* PowerToy Utility: FancyZones
* Running PowerToys as Admin: Yes
* Windows build number: 19041.508
## 📝 Provide detailed reproduction steps (if any)
1. Set Fancy Zones Layout
2. Click app and hold shift
3. Translucent zones should appear and dra... |
## ℹ Computer information
* PowerToys version: 0.21.1
* PowerToy Utility: FancyZones
* Running PowerToys as Admin: No
* Windows build number: [run "winver"] 20H2
* Monitor setup: 1 x 5120x1440 Samsung CRG9 49" Ultrawide, DisplayPort connected
## 📝 Provide detailed reproduction steps (if any)
1. Launc... | 1 |
* 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 duplicate issues... |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery. (I cannot test this because it's a production server)
* 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 t... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.