text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|

|
Trying to get packages from nuget. I'm not getting intellisense in
project.json. In the JSON server output window I see a lot of this:
`Request to the nuget repository failed: <?xml version="1.0"
encoding="utf-8"?><m:error
xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"><m:code
/><m:message... | 1 |
At the moment the scripts directory is hard coded to `scriptsDirectory = new
File(env.configFile(), "scripts");` but it would be handy to make this
configurable.
Main reason is that with the Puppet module we allow multiple instances, and it
would be handy that all instances on a single node can share the same
direc... |
Since dynamic scripting is off by default since elasticsearch >=1.2 (which is
good!), we have to move all our scripts to files in the `config/scripts`
folder. It would be awesome to have an option to change that folder in the
config to make it easier for using different folders in different
environments. Best would b... | 1 |
**Issues**
**Other Links**
* https://daveceddia.com/angular-2-errors/
* http://www.bennadel.com/blog/3040-i-have-a-fundamental-misunderstanding-of-change-detection-in-angular-2-beta-8.htm
|
**I'm submitting a ...**
[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
**Current behavior... | 0 |
Two nodes went away as I updated the instances, but they still appear and,
more importantly/confusingly, their daemonset pods are still in Running state.
$ fleetctl list-machines
MACHINE IP METADATA
729947b9... 10.0.12.180 role=node
a0883347... 10.0.8.4 ... |
I don't see any existing issues filed for this.
Allow the user to instruct Kubernetes, based on data from liveness/readiness
probes (or failures to start new pods at all), to automatically undo a
rollout, not just pause it. This could even have a configurable maxFailures
knob to specify how many pods in "failed afte... | 0 |
(It is very likely an issue of V8, but)
#9421 says it should be fixed.
However, I am on a newly upgraded Deno binary but it still happens.
deno 1.7.5 (release, aarch64-apple-darwin)
v8 9.0.123
typescript 4.1.4
This error happens when trying to invoke a wasm module:
#
... |
I made the mistake of switching to macOS 11.2, since I get this error on my
Deno projects:

It seems to be link to nodejs/node#37061.
| 1 |
twitter thread https://twitter.com/domenic/status/697921719529398272

|
I am using VSC on Windows while developing for Linux-based webserver. Also,
several people on my team are using Macs. It is very annoying for us to switch
end of line sequence for each new file. It would be great if there was a user
setting to ensure all new files are created with a certain eol sequence.
| 1 |
My current use case is to cluster a bunch of data to generate labels, then use
a classifier to draw decision boundaries and make label predictions on new
data.
I love using pipeline and gridsearch packages in tandem, but can't use it for
this because clustering does not have a transform method for X. Is it
worthwhil... |
Following up on #3113 and #3112, what about arbitrary transforms to the `y`
values? Those issues dealt primarily with "label transforms" but I would like
to use transformers to mean or range center the `y` values as well.
Ideally I would have some transform that can be applied to the y values before
fitting and then... | 1 |
## Bug Report
**Current Behavior**
After I upgrade @babel/core to v7.5.5, circleci build throw error `TypeError:
helpers(...).ensure is not a function`
This error only happen in circleci environment. No error in windows or Mac
**Environment**
* Babel version(s): [v7.5.5]
* Node/npm version: [e.g. Node 10/np... |
It looks like if I have:
class Test {
constructor() {
someService.get().then(async () => {
this.foo = 'tada';
})
}
}
`this` is `undefined`. If I remove `async` I have the right `this`.
| 0 |
When installing on Windows 7 x64 with:
pip install opencv-python # py 2.7
or
pip3 install opencv-python # py 3.6
in both cases, it installs succesfully but at the end, when doing:
import cv2
we have this bug:
> ImportError: DLL load failed: The s... |
the installed opencv_world342.dll need "Api-ms-win-downlevel-
shlwapi-l1-1-0.dll" which is not in Windows 7. (vc2015_redist.exe already
installed).
when I copy it from windows10, it works.
| 1 |
Hi,
I don't know if this is a bug or a feature, or even if you guys noticed it
already and it's not an issue, but this caused me some problems so I thought I
should report it.
When you use the read_csv command to read a csv, you can pass the columns you
want to set as indexes. If those columns contain duplicated en... |
What do we want out of our API docs? What are the current issues?
I think we're (mostly) happy with `api.rst`: we manually list the classes and
methods that we want to include the docs, grouped by topics of our choosing.
I think we're unhappy with some aspects of the auto-genrated class pages.
The hack in our vend... | 0 |
Or it silently notices, and we should add clarity.
http://kubekins.dls.corp.google.com:8081/job/kubernetes-pull-build-
test-e2e-gce/26411/#
https://pantheon.corp.google.com/storage/browser/kubernetes-jenkins/pr-
logs/pull/20464/kubernetes-pull-build-test-e2e-gce/26411/
18:04:42 Feb 3 01:54:26.948: ... |
After running couple e2e tests on a GCE cluster created from HEAD endpoint
controller stops working (no entries in controller log on master) and no
endpoints are created for a service. I have this cluster still up and running
- let me know if you need more data.
kubectl get services
NAME CL... | 1 |
Run the following program on the following input:
package main
import (
"bytes"
"io/ioutil"
"os"
"golang.org/x/image/bmp"
)
func main() {
data, _ := ioutil.ReadFile(os.Args[1])
img, err := bmp.Decode(bytes.NewReader(data))
if... |
Run the following program on the following input:
package main
import (
"bytes"
"io/ioutil"
"os"
"golang.org/x/image/bmp"
)
func main() {
data, _ := ioutil.ReadFile(os.Args[1])
img, err := bmp.Decode(bytes.NewReader(data))
if... | 1 |
Using data-toggle="buttons" doesn't set the initial active state of the
radio/checkbox buttons if they are already checked.
In the following example, the first button should get a class of active when
the widget is initialized, but it does not.
<div class="btn-group" data-toggle="buttons">
<labe... |
Hi guys! Love your work!
Have some issues with checkbox and radio Buttons on Button-groups. I've try to
pre-load option with a form, but got all buttons disabled. Hope you'll fix it.
Thank you!
| 1 |
Getting a `TypeError` while using `np.unique` with array of `dtype=object`
### Reproducing code example:
import numpy as np
a = np.array([1, 2, 3, 2, 'a', 'b', 'a'], dtype=object)
np.unique(a)
### Error message:
----> 1 np.unique(a)
<__array_function__ internals> ... |
_Original tickethttp://projects.scipy.org/numpy/ticket/2188 on 2012-07-23 by
@yarikoptic, assigned to unknown._
tested against current master (present in 1.6.2 as well):
If with python2.x series it works ok, without puking:
$> python2.7 -c 'import numpy as np; print repr(repr(np.unique(np.array([1,2... | 1 |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first. (No option to post for me)
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for simila... |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.... | 0 |
# 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... |
# Environment
Windows build number: Enterprise 1903
PowerToys version: 0.18.0
PowerToy module for which you are reporting the bug (if applicable): PowerToys Run
# Steps to reproduce
1. Open an application, manually or with PTR (Firefox Developer Edition and Slack in my case)
2. Activ... | 1 |

|
I would expect either the whole word to wrap, or probably better to have it
change phone size or ellipsize. We probably want some standardized titlebar
behavior here.

| 1 |
`.text-center` and `.text-right` do not apply to table td / th elements, as
the align left rule for those takes precedence.
I've added this as a workaround; an alternative might be to add `!important`
to the `.text-` rules
.table th, .table td {
&.text-center { text-align: center; }
&.text... |
Hi,
The new `text-left`, `text-center` and `text-right` classes doesn't work on
the table cells. Maybe it would be nice to add an `!important` hack to force
alignment ?
| 1 |
# Bug report
**What is the current behavior?**
Using a test of the form
rules: [{
test: /\/filename.ext$/
}]
will fail on node users in the MINGW64 / msys2 / msysgit environment because
the path separator is `\`.
**If the current behavior is a bug, please provide the steps to reprodu... |
I'm attempting to use dynamic requires, but I want the mappings to have lower-
case aliases (I'm experimenting with the routing). When I'm using it like
this:
compiler.plugin('context-module-factory', function (cmf) {
cmf.plugin('alternatives', function... | 0 |
# Bug report
**What is the current behavior?**
`webpack-dev-server` (via `webpack serve`) compiles twice on every save in
VSCode. This doesn't happen when using an other editor such as Sublime.
**If the current behavior is a bug, please provide the steps to reproduce.**
Create a fresh package with `webpack`, `web... |
# Bug report
**What is the current behavior?**
Hot module reloading is not working after updating webpack to v5.66.0.
**If the current behavior is a bug, please provide the steps to reproduce.**
* Clone https://github.com/saltire/react-node-boilerplate.
* Run `npm i webpack@latest` to update to **5.66.0**.
... | 1 |
@tomasteicher: 'When I want to delete a node, i need to delete all its
relationships first. Maybe it would be good when there would be a method that
do all this deletions together.
For example, when I am deleting a node, I am using this my custom method
/**
* delete all nodes from first parameter with all its rel... |
This a request for a convenience modifier described in the subject. This would
allow Cypher queries to be constructed without having to figure out how to add
additional clauses to delete the nodes' relationships.
Rationale:
For a "simple" delete this is easy enough:
START n = node(...) MATCH n-[r?]-() DELETE r,n
... | 1 |
Error Description - Screen is keep moving up and down. Following error is
thrown
Detail Error from the logs
waiting for getByTestId('actions-7').getByTestId('button-anchor')
locator resolved to <button type="button" id="button-anchor"
class="css-16nx…>…
attempting click action
waiting for element to be visible,... |
### System info
* Playwright Version: [v1.33]
* Operating System: Mac
* Browser: All
* 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/your_profile/playwright_issue_title]
or
**C... | 0 |
I am observing that an error thrown by a dynamic import always results in an
"uncaught error". Here is an example:
// a.ts
try {
await import('./b.ts')
} catch {
console.log('catch')
}
// b.ts
throw Error()
Expected Output:
catch
Actual Ou... |
There is relevant failing test in `html/webappapis/structured-
clone/structured-clone.any.js`. We are likely not forwarding the error
somewhere.
| 0 |
Hi. Please see the question I have made here for a description of the problem.
http://stackoverflow.com/questions/34546446/flattening-typescript-typings-or-
interfaces
Here's the post:
As a TypeScript developer, I have become too used to "Duplicate identifier"
issues when working with `.d.ts` files.
Most recently... |
**TypeScript Version:**
1.8.7
**Code**
Transpiling `_apply.js` of `lodash-es@4.6.1` with the command
tsc --allowJs _apply.js --out apply.js -m amd
breaks the code. Apparently, the (arguably invalid) `@param {...*} args` JSDoc
comment causes the TypeScript compiler to generate code as if the p... | 0 |
It would be nice to be able to set a flag that will trigger invariant warnings
any time a prop is referenced from or passed into a component, but that was
not declared in propTypes.
|
It would be great if in debug mode react would warn you when you pass in a
property on props which is not specified in the propTypes object for that
component. i.e. a way to enforce that props should ONLY have the props
specified in propTypes and no others.
This would prevent use of undocumented properties and also ... | 1 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ansible-galaxy
##### ANSIBLE VERSION
ansible 2.5.0 (devel 33c4351a35) last updated 2018/01/23 14:32:52 (GMT -700)
config file = None
configured module search path = [u'/home/benb/.ansible/plugins/modules', u'/usr/share/ansible/plugins... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ansible-vault
##### ANSIBLE VERSION
ansible 2.3.1.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]
... | 0 |
> Issue originally made by @ochafik
### Bug information
* **Babel version:** 6.1.1 (babel-core 6.0.20)
* **Node version:** 5.5.0
* **npm version:** 3.3.12
### Options
--presets es2015
### Input code
class Foo { foo() { let foo = 1 } }
### Description
The following code c... |
## Bug Report
**Current Behavior**
babel throws
Duplicate declaration "foo" (This is an error on an internal node. Probably an internal error.)
**Input Code**
* REPL or Repo link if applicable:
https://babeljs.io/repl#?babili=false&browsers=Chrome%20%3E%3D%2045%2Clast%202%20Firefox%20versi... | 0 |
Incorrect/invalid select tag is generated if choices have duplicate content
('Category 4').
$f = $this->formFactory->createNamedBuilder('category', 'form')
->add('parent_category', 'choice', array(
'label' => 'Name',
'choices' => array(
'1' => 'Category... |
Hello!
Here is the new list for master :)
(up to `8725243`
Validator
/src/Symfony/Component/Validator/Resources/translations
Missing ids
Locale | Message ids
---|---
af | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
ar | 73 74 75 76 77 78
bg | 73 74 75 76 77 78
cy | 59 60 61 62 63 64 ... | 0 |
$ cat x.go
package p
type T interface{
_()
_()
}
$ go tool 6g x.go
x.go:6: internal compiler error: sigcmp vs sortinter _ _
It's inclear what a compiler should do, and the spec is silent. See spec issue #6604.
Once 6604 is resolved, this shou... |
by **getisboy** :
What steps will reproduce the problem?
1. Compile the following code using 8g and run it:
package main
import "fmt"
func main() {
slice := make([]int, 6, 6);
fmt.Print(int(float(len(slice))), " ");
for i := 1; i < int(float(len(sl... | 0 |
### Apache Airflow version
2.5.1
### What happened
Create two files with DAGs
Both DAGs must have the same ID
Airflow will constantly update DAG structure/code resulting in dozens of weird
behaviors and errors:
* wrong DAG visualization
* wrong DAG code
* errors about missing tasks from time to time
##... |
**Description**
I would like to see an error in Airflow UI (like `"Broken DAG: duplicate DAG-
id"`) when a DAG is present that has the same (non-unique) DAG-id as another
DAG. Currently, Airflow silently ignores one of these duplicated DAGs.
**Use case / motivation**
For users that either knowingly or unknowingly... | 1 |
### Bug report
**Bug summary**
The `horizontalalignment` keyword in suptitle() produces title alignment which
is opposite to what I expect from it. Setting `horizontalalignment='left'`
puts the alignment right, and vice versa.
**Code for reproduction**
import matplotlib.pyplot as plt
for di... |
### Bug report
**Bug summary**
`horizontalalignment = 'left'` aligns the title on the right,
`horizontalalignment = 'right'` aligns a short title on the left,
`horizontalalignment = 'right'` displaces a longer title on the far left
**Code for reproduction**
# Left alignment test, short title
fig... | 1 |
It would be nice if the popovers could be closed not only on the same element
that opens the popover. So you just click outside the popover to close it.
Like dropdowns.
|
Is it possible to add a options to make over popover hidden when we click on a
popover or on the body (html page)
For the feature version.
Thank's for your work
| 1 |
## Bug Report
**Current Behavior**
`x += y` doesn't evaluate the `x` value before `await`ing.
**Input Code**
let x = 0;
async function test() {
x += await 1;
console.log(x);
}
test();
x += 1;
**Expected behavior/code**
`1` should be logged.
However, `2` is being log... |
### Input Code
result = { __proto__: x, __proto__: y } = value;
### Babel Configuration (.babelrc, package.json, cli command)
presets - latest
### Expected Behavior
No error
### Current Behavior
Error: `Redefinition of __proto__ property`
### Possible Solution
### Context
### Your Environment
... | 0 |
Any plan about DOMParser? right now I've to switch back to Node.js and using
`jsdom`.
I've seen DOM feature request in the Issues column and someone said might
release on v1.0?
|
It would be pretty awesome if I could use Deno for parsing, transforming, and
serializing XML without a third-party module, just like I can in the browser:
* https://gistpreview.github.io/?a27f7e83972e7af2aa0edbb242ae8ef7
* https://gist.github.com/MarkTiedemann/a27f7e83972e7af2aa0edbb242ae8ef7
| 1 |
This might just be #28126, but it looks like a separate problem. On 1.0.2:
julia> using BenchmarkTools
julia> v = fill(2.0, 50000);
julia> v2 = vcat(v, missing);
julia> v3 = vcat(missing, v);
julia> @btime $v .* 3.0;
33.105 μs (2 allocations: 390.70 KiB)
... |
I have been trying to get into using `missing` and fast `Union` types in my
worflow and seem to be coming up with some issues. It's most easily
highlighted by:
julia> @code_warntype [1, 2] + [3.0, missing]
Body::Array
44 1 ── %1 = (Base.getfield)(Bs, 1, true)::Array{Union{Missing, Float64},1} ... | 1 |
from mailing list
Hi,
I'm using pandas to read in a set of tab delimited files into DataFrames. Each file has only 3-5 columns and roughly 20,000 rows. The files have a column that I'd like to index by, but some of the entries are duplicates. I find that it takes roughly 5 seconds to read a se... |
#### Code Sample, a copy-pastable example if possible
o = pd.Series(['test', np.nan, np.nan])
print 'Original has dupes: ', o.duplicated().any()
# Save and reload via msgpack
o.to_msgpack('/tmp/test.msgpack')
r = pd.read_msgpack('/tmp/test.msgpack')
print 'Reloaded has dup... | 0 |
Related to #1029.
It would be useful if we can get total number of unique terms for a particular
facet.
One use case is that we store "id" to a field. If we get number of unique
terms on the field, we know how many duplicates are included in result set.
|
Hi all,
I'd like to ask for 2 features for the terms facet that sound not too
difficult to implement to me:
* Adding a count / total field to the result of a terms facet, that gives the number of different terms the facet returns. For the moment I ask for maxint results to be sure I have the correct number...
*... | 1 |
Please make sure that the boxes below are checked before you submit your
issue.
If your issue is an **implementation question** , please ask your question on
StackOverflow or on the Keras Slack channel instead of opening a GitHub issue.
Thank you!
* Check that you are up-to-date with the master branch of Keras.... |
Please make sure that the boxes below are checked before you submit your
issue.
If your issue is an **implementation question** , please ask your question on
StackOverflow or on the Keras Slack channel instead of opening a GitHub issue.
Thank you!
* Check that you are up-to-date with the master branch of Keras.... | 1 |

|
# Environment
Windows build number: 10.0.18362.0
Windows Terminal version (if applicable): 0.4.2382.0
Any other software? wsl + emacs
# Steps to reproduce
1. Open emacs within wsl in Windows Terminal.
2. Type either of the following:
* M-> (alt + greater than) to move to th... | 0 |
**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**
Consider this template:
... |
Hey guys,
I just updated to angular/compiler 2.2.4 and my ngc is no longer creating my
application ngFactory files in the specified outGen folder. The last working
version of angular/compiler on my stack was 2.1.2. I'm currently on node 6.9.1
and angular 2.2.4. You can check out my stack here and follow the instruct... | 0 |
Relates to #3159, #4068, #2568, this branch, and this tool.
# Goals
* Bundle _declarations_ for TS projects to allow a library to be consumed with a single TS file, despite being many modules internally. Because of complicated internal module dependencies which would rather not be exposed to the consumer, this sh... |
class C {
constructor(options?: number) {
var options = (options || 0);
// !!! error TS2687: All declarations of 'options' must have identical modifiers.
}
}
| 0 |
Deno panics when running `deno run --v8-flags=--disallow-code-generation-from-
strings index.ts`
index.ts:
console.log("Hello World!");
The error:
Platform: windows x86_64
Version: 1.29.2
Args: ["deno", "run", "--v8-flags=--disallow-code-generation-from-strings", "TestFlags.ts"... |
Me and at least one other using Netlify edge functions are seeing
thread 'main' panicked at 'Failed to execute bootstrap script: EvalError: Code generation from strings disallowed for this context
I tried downgrading to `1.27.0` and the panic went away.
More info here
| 1 |
Currently (pending #8287), libextra will have the following encodings
* json
* ebml
* base64
* hex
And in theory we should add these in the future:
* xml
* base32
* ASN.1
(or at least those are the ones I could think of off the top of my head).
Right now they're all placed directly inside the `libex... |
So, I have the following
mod tokenizer {
#[test]
fn test_tokenize_one() {
//Numbers
let string = ~"1";
let string = ~"321";
//Strings
let string = ~"'This is a string'";
//Operators
let st... | 0 |
The documentation (components) states that the style for small pagination is
'pagination-sm' when in fact it is 'pagination-small'. Also, 'pagination-lg'
is actually 'pagination-large' in bootstrap.css.
|
To increase/decrease the size of form controls, you can add the classes input-
lg or input-sm (at least according to the website
[http://getbootstrap.com/css/#forms] - which is the most consistent solution).
In the css code, however, the classes are called input-large and input-small.
| 1 |
When using the DecisionTreeClassifier() sample_weight parameter, and weighting
examples by class lable such as 2:1 for class A versus class B, the
**nvalues** in the leaves of the tree produced by tree.export_graphviz() shows
a duplicate count for the number of examples for the weighted class.
This is misleading bec... |
@jmetzen thank you for contributing the new Gaussian Process module, it is
really helpful! I wondered if it is possible to specify the input dimension(s)
each kernel should be applied to? For example, if my input is 3-dimensional
and I would like a kernel setup like this:
kernel = rational quadratic ... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
* modules/web_infrastructure/apache2_module.py
##### ANSIBLE VERSION
ansible 2.4.0.0
config file = None
configured module search path = [u'/Users/*****/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible ... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
apache2_module
##### ANSIBLE VERSION
ansible 2.4.0.0
config file = /home/ps/.ansible.cfg
configured module search path = [u'/home/ps/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module locatio... | 1 |
For example
> touch empty
> kubectl rolling-update rcname -f empty
panic: runtime error: index out of range
goroutine 1 [running]:
panic(0x19dca80, 0xc82000e0d0)
/usr/local/go/src/runtime/panic.go:481 +0x3e6
k8s.io/kubernetes/pkg/kubectl/cmd.RunRollingUpdate(0... | ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-jenkins/pr-\nlogs/pull/33587/kubernetes-pull-test-unit-integration/47348/\n\n \n \n panic: interface conversion: interface is nil, not *v1.Secret\n /usr/local/go/src/runtime/panic.go:481 +0x3ff\n /usr/local/go/src/testing/testing.go:467 +0x22a\n /usr/local/go/src/runtime/panic.go:443 +0x521\n /go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/federation/pkg/federation-controller/secret/secret_controller_test.go:139 +0x70\n /go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/federation/pkg/federation-controller/secret/secret_controller_test.go:104 +0x194f\n /usr/local/go/src/testing/testing.go:473 +0xdd\n /usr/local/go/src/testing/testing.go:582 +0xae3\n \n\n@kubernetes/sig-cluster-federation\n\n" | 0 |
### Version
2.5.16
### Reproduction link
https://codesandbox.io/s/vn7jz1l1kl
### Steps to reproduce
Click the button that says "refresh"
### What is expected?
Nothing should happen
### What is actually happening?
[Vue warn]: Duplicate presence of slot "default" found in the same render tree
- this will likel... |
### What problem does this feature solve?
Let me start by saying I love Vue. It is an awesome framework you guys have
created, I enjoy using it, and it is at the very top of Frameworks of choice.
But from day one there has been one small area where I found Vue lacking, this
is in the Custom Directives department.
... | 0 |
**TypeScript Version: 1.8.10**
**Code**
This is the file in the libary
// File ../../lib/test.ts
/**
* Created by ThomasP on 29.04.2016.
*/
export function test(): number {
return Model.getNum();
}
export class Model {
static getNum(): number... |
We have a large TypeScript project using different git repositories to
separate work domains inside the project. We tend to create separate
repositories for self-contained modules and use those modules in other
repositories using git submodules. This helps tremendously to reduce clutter
and distribute work.
In our c... | 0 |
Date filter is not working on iPhone version of chrome (49.0.2623.73) and
safari, it's working on desktop chrome (48.0.2564.116)
`Last` swipe:{{last | date:'dd MM yyyy'}} Expiry:{{expiry | date:'dd MM
yyyy'}}
|
_ **Note:** This is a duplication of a stackoverflow question i asked a few
weeks ago without any answer.
I don't know if it's related to a bug or if it's the desired behavior.
As i did not find answer on stackoverflow, i thought it's was the only place
left to find one._
* * *
I'm writing a **custom validator... | 0 |
Impossible to do parallel numpy computations using python subprocesses,
because just simple import numpy requires ~1Gb paging file
I have 32Gb ram and 4Gb paging file
this code causes an error
import multiprocessing
import time
def proc():
import numpy
time.sleep(1000)... |
### Background
We run our compile runs with daemontools to lock virtual memory usage to
around 1GB per process (important when running very very parallel builds).
During update from 1.19.4 -> 1.19.5 our nightlies trip over code that uses
numpy.
Fine with numpy==1.19.4 (1GB):
softlimit -a $(expr 1024 ... | 1 |
According to the docs: https://github.com/atom/atom-
shell/blob/master/docs/api/screen.md you can access the primary display but
they don't mention anything about managing other screens.
Basically I want to load two BrowserWindows and tell them to appear on the
different screens (when a user has more than one screen... |
It's more and more common to find desktops with two or even three screens.
Make Atom Shell be able to detect such cases and allow the developer to show
the app in a certain screen.
| 1 |
const printButton = document.getElementById('printButton');
printButton.addEventListener('click',(event) => {
const webview = document.querySelector('#printWebview')
alert(webview)
//webview.send('webview-print-render')
webview.print({ silent: true, printBackground: true, deviceName: 'XP-80C' },
(data) =>... |
Just an idea. Looking at how powerful is Electron JS I came to this idea.
Being daily using apps like Spotify, Github Desktop, etc. it's been noticed by
everyone that they all use separate amounts of RAM on their own since each one
run's it's own runtime.
Now why don't we create a common runtime default that act's a... | 0 |
If you have multiple classes in the same module namespace but defined in
different files (or even just different `module` blocks) TypeScript's `tsc`
will wrap every one of them into its own nest of IIFEs; one for each level of
namespace nesting.
For deep namespace hierarchies this produces large amounts of code that... |
We have a typescript application and a use a file per class. There are lots of
benefits to this the major one being source control conflict reduction.
We compile our app using the --out compiler flag but I think there is room for
some serious optimization of the compilers output for modules.
Currently if you have t... | 1 |
Challenge http://www.freecodecamp.com/challenges/waypoint-style-text-inputs-
as-form-controls has an issue. Please describe how to reproduce it, and
include links to screenshots if possible.
1. The cursor will not go all the way down to the bottom of the blackboard.
2. The arrow keys on the keyboard are trying t... |
Challenge http://freecodecamp.com/challenges/waypoint-create-a-set-of-
checkboxes has an issue. Please describe how to reproduce it, and include
links to screenshots if possible.
Issue: adding a new line at the bottom of the text editor does not scroll the
editor to make the new line visible
reproduce: move the cur... | 1 |
### Bug summary
When plotting a surface and scatter points with `Axes3D`, either _none_ of the
scatter points are occluded by the surface or _all_ of them are occluded.
Whether or not they are occluded appears to depend upon a numerical threshold.
(Speculation: perhaps the occlusion of a single point?)
### Code for... |
### Bug summary
wspace parameter does not work using `fig.subfigures()` **without constrained
layout**.
### Code for reproduction
fig = plt.figure(figsize=(20, 14))
subfigs = fig.subfigures(1, 4, wspace=0.5, width_ratios=[0.5, 1, 1, 1])
axs0= subfigs[0].subplots(nrows = 12, ncols = 1, sh... | 0 |
"VIEW SAMPLES" shows 0 rows when it should show rows
### Expected results
it should show some samples from the table
### Actual results
it shows zero rows
#### Screenshots

this is not a regression introduced by any recent PRs.
see gif, View Samples tab should show sample data of the underlying dataset in
any data visualizations
| 1 |
**Elasticsearch version** : 2.3.5 (using
https://hub.docker.com/_/elasticsearch/)
**Plugins installed** : head, license, cloud-aws, marvel-agent (marvel is
disabled on tribe and master-only nodes)
**JVM version** : https://hub.docker.com/_/elasticsearch/
**OS version** : https://hub.docker.com/_/elasticsearch/
*... |
Hi folks,
there seems to be a regression from **1.7.3** to **2.0.0** regarding the
`gateway.recover_after_time` setting.
docker run --name="elasticsearch" -p 9200:9200 -p 9300:9300 -e "SERVICE_ID=$hostname" -e "SERVICE_NAME=elasticsearch" elasticsearch:2.0.0 -Des.index.number_of_shards=3 -Des.index.nu... | 1 |
Since TypeScript is a superset of JavaScript it should be possible to compile
ES6 code without errors.
This valid ES6 snippets throws the following error:
Error:(3, 14) TS2339: Property 'weight' does not exist on type 'Car'.
class Car {
constructor(weight) {
this... |
The following snippet is valid ES6, but does not compile due to the undeclared
property `thing`. Since TypeScript is aiming to be a superset of ES6, how will
this situation be approached?
class Thing {
constructor() {
this.thing = 12;
}
}
| 1 |
If the node doesn't exist in the cache we can't deference it
W0612 13:30:58.798999 17771 reflector.go:334] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:393: watch of *api.Node ended with: too old resource version: 2009 (2014)
panic: interface conversion: interface {} is nil, not *api... |
panic: interface conversion: interface {} is nil, not *api.Node [recovered]
panic: interface conversion: interface {} is nil, not *api.Node
goroutine 42845 [running]:
panic(0x24413e0, 0xc8383133c0)
/usr/local/go/src/runtime/panic.go:481 +0x3e6
testing.tRunner.func1(0xc83b... | 1 |
Given its role in ternary expressions (and perhaps in more upcoming syntactic
constructs?), isn't letting `?` be used as a variable name allowing too much
room for potential confusion?
julia> ? = true
true
julia> ??!?:?
false
julia> !??!?:!??!?:?
true
julia> !... |
I have a composite type which has a single Dict property that I thought would
be interesting to access with an overloaded ? operator
type J9Type
propDict::Dict
end
function ?(obj::J9Type,field::Union(Symbol,String))
return get(obj.propDict,field,Nothing())
end
A = J9Type... | 1 |
We've been adding a bunch of sync file system ops (aka handlers) recently -
for example `deno.statSync`. We want to have async thread pool versions of
these ops but we would like to do it without fully duplicating all of the
existing code.
This will require a relatively invasive refactoring of how we structure
handl... |
👋 trying to build the latest release, but run into some build issue. The error
log is as below:
build failure
==> cargo install -vv --locked --root /usr/local/Cellar/deno/1.5.4 --path .
Installing deno v1.5.4 (/private/tmp/deno-20201123-87041-1pvuv3v/deno/cli)
Updating crates.io index
... | 0 |
##### Description of the problem
When using webpack and babel in compiled code I see a lot of duplicated code
mostly because of inconsistent import paths, so some modules are imported more
than once.

F... |
This is an interest query for a PR.
Basic idea: The program specifies the data of interest and the renderer feeds
it - no exceptions.
Consequences: -1000 LOC or more, easier to maintain/extend renderer, no more
obscure updating bugs in the (then no longer) hard to trace interna, more good
stuff (I leave it an exerc... | 0 |
Pulling bug from original location in the google issue tracker:
https://issuetracker.google.com/issues/72938960
## Steps to Reproduce
When creating a new Flutter project in the opening screen of Android Studio,
for example `my_flutter_app`, the following identifiers are generated (see
attached image `android_studio... |
@dnfield, am having another issue with building apk release, but this time
coming from fluttertoast,
this is the result..Execution failed for task ':app:lintVitalRelease'.
Could not resolve all artifacts for configuration
':app:dynamicProfileRuntimeClasspath'.
Could not resolve project :fluttertoast.
Required ... | 0 |
I found browserWindow support progressBar but it is show on taskbar. Any
chance that electron can be able to support native progress bar like this:

In my understanding, the d... |
It would be great to have native modal progress dialogs, for example, this
small screenshot I found on Google:

My use case would be for copying a file and showing progress while blocking
the ~~application~~ ... | 1 |
Everything was working fine until I did npm update, I see this problem.
TypeError: Cannot read property 'toLowerCase' of undefined
at ReactDOMServerRenderer.renderDOM (/Users/****/Projects/****/node_modules/react-dom/cjs/react-dom-server.node.development.js:2776:27)
at ReactDOMServerRen... |
Looking at many SSG specific features being built into Nextjs (especially
#9524) , here's what I think is the biggest issue in using Nextjs for SSG.
The problem is that Nextjs entire documentation and manuals are written from
the perspective of a server-side rendering framework. They are not geared
around the us... | 0 |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): kubea... |
In `pkg/kubelet/kubelet,go` in `getClusterDNS(...)`, it appends cluster DNS
nameserver and search paths to the ones in the host resolv.conf.
A user reported trying to add skydns nameserver address and kubernetes search
paths to the host resolv.conf. Not what the instructions say to do, but a
reasonable thing to do. ... | 0 |
In the docs example, click the button twice, click outside the popover, it
doesn't close.
Also doesn't close after the position is adjusted.
|
http://www.material-ui.com/#/components/popover
Click on button in the demo, and when popover animation is not complete click
again.
Now clicking out of popover has no effect
| 1 |
## 📝 Provide a description of the new feature
Perhaps this is already available, but I've not been able to find it.
I love the new feature that allows me to hold `Shift` \+ `Ctrl` to snap a
window to multiple zones, but what would make it perfect is if we didn't have
to use the mouse. Is there a modifier key we ca... |
# Summary of the new feature/enhancement
using a hotkey + arrow combination for the direction, it should be possible to
make a window grow or shrink
When you want to grow a window that you have snapped to a smaller zone, and
you want to make it temporarily larger, you have to manually make it longer or
wider. It wo... | 1 |
* 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 have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there).
* Mention the authors (see `Definitions by:` in `in... |
* 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 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-jenkins/pr-\nlogs/pull/28599/kubernetes-pull-build-test-e2e-gce/58426/\n\nFailed: [k8s.io] [HPA] Horizontal pod autoscaling (scale resource: CPU)\n[k8s.io] ReplicationController light Should scale from 1 pod to 2 pods\n{Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:88\n Expected error:\n <*errors.errorString | 0xc820c80740>: {\n s: \"error while stopping RC: rc-light-ctrl: timed out waiting for \\\"rc-light-ctrl\\\" to be synced\",\n }\n error while stopping RC: rc-light-ctrl: timed out waiting for \"rc-light-ctrl\" to be synced\n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/autoscaling_utils.go:307\n \n\nHappened on a presubmit run in #28599.\n\nPrevious issues for this test: #27443 #27835 #28900\n\n" |
Actually there are 2 results in density test that seems conflict but NOT.
### 1.throughput case

when run the density test, this is the 1st test that shows count of different
pod status. This pic indica... | 0 |
@nathansobo the Markdown Preview Buffer is awesome...now that I know I can use
it. However, it would be the most awesomest if I could resize it. By that I
mean make the line between the two adjustable, so I could reduce the
percentage of the screen it takes up. Even better would be to have the option
to hide it behin... |
launchpad.net
would you please release atom for ubuntu , as a launchpad ppa repository?
| 0 |
### Reproducing code example:
Write a `demo.py`:
from __future__ import print_function
import time
import numpy as np
import six
if six.PY3:
timer_func = time.process_time
else:
timer_func = time.clock
n = 1000
start = timer_func()
... |
I just ran the brand new `python -X importtime -c "import numpy"`. Turns out
that `numpy.testing` takes rougly 29 % (23 ms) of the total import time (80
ms), most of which (62 %, 14 ms) is the `unittest` module (no `nose` in my
environment). In view of #10856, this is only going to get worse -- `pytest`
weighs in wit... | 1 |
Sometimes Atom is crashing at the startup.
# Basic information:
* Atom version: 0.194.0
* OS: Ubuntu 15.04 x64
* Desktop environment: Unity
# Apport info:
* Title: Atom crashed with SIGSEGV in Hunspell::spell()
* SegvAnalysis:
Segfault happened at: 0x7fb4e3da82de <_ZN8Hunspell5spellEPKcP... |
The biggest ones are selection and textmate snippets completing correctly
(mentioned in bugs).
### selection
* cmd + ctl + up/down moves line or selected lines up/down
* how to map multiple selection like ctl + shft + up/down in sublime
* how to select same word that is found over and over, cmd + d in sublime... | 0 |
I'm on commit `9f6d389` (master) to check out the folding stuff and I really
like it! :)
I noticed it isn't possible to fold empty regions like the interface below and
the empty function. The fold arrow doesn't appear. Is this by design? There
isn't that much to fold, only some newlines so it isn't a big issue thoug... |

| 1 |
Hello,
I am utilizing select fields and auto complete a lot in my app and I'd like to
know if there are plans for adding multi-select for these fields. I think
multi-select is widely required feature that a lot of developers can benefit
from.
Thanks!
|
What do you think about multiple select?
| 1 |
* user settings
* type 'editor.' -> invoke intelli-sense and choose 'editor.lineNumber'
* notice the result, I would expect that the 'editor.' I typed gets overwritten

|

From testing #2257
| 1 |
# 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... |
# Checklist
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.
* I have checked the pull requests list
for existing proposed fixes.
* I have checked the commit log
to find out if the bug was alrea... | 0 |
$ cat incorrect_init.go
package main
var (
a = p("a") + c + b
b = p("b") + f()
c = p("c") + f()
d = p("d") + 3
)
func f() int {
d++
return d
}
func p(s string) int {
println(s)
return 0
}
... |
http://play.golang.org/p/icbjgkx71B
got:
gc produces the initialization order: c b a .
want:
The variables b and c are independent of each other, and b is declared before c, so the
order should be: b c a .
gccgo reports the order: b c a .
Based on spec clar... | 1 |
While VS Code uses the same css.plist for CSS syntax highlighting as TextMate,
Atom has this own forked version that is way more up to date:
https://github.com/atom/language-
css/blob/01146c2eac7d47455d5c964dd65eaeb209cfa778/grammars/css.cson
Would be nice to find a way to keep all three in sync.
Not all parts of... |
I have set up my corporate proxy as explained on the documentation.
But every time that I try to download an extension with `ext install
extensionname`, it fails with this error:
 and trying to get go to
work properly when installed via fink. I could use some help getting the package setup
correctly. I am not sure why go wants to modify files in its own tree. Is there a
se... |
# Proposal: Vendor specification and experimental repository fetch code
Author(s): Daniel Theophanes
Last updated: 2015-12-06
## Abstract
Establish a specification file format that lists dependency revisions and
a package in the golang.org/x/exp repository that discovers, reads, and
downloads
packages at a gi... | 0 |
Trying to build the project (and using Babel JS)
I get these error messages
(Something in the mergeAndPrefix => Extend chain is trying to create two
copies of teh same property on these lines)
ERROR in ./lib/icon-button.jsx
Module parse failed: F:\Projects\app\node_modules\babel-
loader\index.js?stage=1!F:\Proj... |
* I have searched the issues of this repository and believe that this is not a duplicate.
I found the documentation diverged from the version of this package I have
installed which caused a lot of wasted time trying to debug non existent
issues. It should be possible to easily view the documentation for a specifie... | 0 |
Hi!
I was trying to install a fresh install of the tensorflow master from source,
but always run into an error:
$ bazel build -c opt --config=cuda --verbose_failures --spawn_strategy=standalone //tensorflow/tools/pip_package:build_pip_package
Eventually fails with:
ERROR: /sy... |
Hi
Sounds like the python3 building script have some issues:
PC% bazel build -c opt //tensorflow/tools/pip_package:build_pip_package
...........
WARNING: Sandboxed execution is not supported on your system and thus hermeticity of actions cannot be guaranteed. See http://bazel.io/docs/bazel-use... | 1 |
Hello,
Why a date field with the options below is it limited. Choice available
between 1902 and 2037?
$Builder-> add ('date', 'date', array (
'input' => 'datetime'
'widget' => 'choice'
'years' => range (1850,2050) "
));
documentation says:
> If timestamp is used, DateType... | ERROR: type should be string, got "\n\nhttps://github.com/symfony/symfony/blob/master/src/Symfony/Component/Form/Extension/Core/Type/DateType.php#L277\n\nWhen I set date options like\n\n \n \n $builder->add('expire', 'date', array('years' => range(2000, 2100)));\n\nyear choice field shows\n\n \n \n <select>\n <option value=\"2000\">2000</option>\n <option value=\"2000\">2000</option>\n ...\n <option value=\"2037\">2037</option>\n <option value=\"2038\"></option>\n <option value=\"2039\"></option>\n ...\n <option value=\"2100\"></option>\n\nIt's perhaps because `gmmktime` on 32-bit is only suitable for up to\n2038-01-19 03:14:07 .\n\nOn 32-bit php\n\n \n \n $ php -r 'echo gmmktime(0,0,0,6,15,2037);'\n 2128636800\n $ php -r 'echo gmmktime(0,0,0,6,15,2038);'\n ## shows nothing ##\n $ php -r 'var_dump(gmmktime(0,0,0,6,15,2038));'\n bool(false)\n\nOn 64-bit php\n\n \n \n $ php -r 'echo gmmktime(0, 0, 0, 6, 15, 2037);'\n 2128636800\n $ php -r 'echo gmmktime(0, 0, 0, 6, 15, 2038);'\n 2160172800\n\n" | 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.6.2
* Operating System version: win 10, spring-boot 1.5.9.RELEASE
* Java version: 1.8
### Step... |
* 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-SNAPSHOT
* Operating System version: macOs
* Java version: JDK 1.8
### Steps to reproduce ... | 0 |
julia> Pkg.update()
INFO: Updating METADATA...
INFO: Computing changes...
INFO: Installing ArrayViews v0.6.4
INFO: Installing Compat v0.7.7
INFO: Upgrading DataArrays: v0.2.19 => v0.2.20
My update hangs for over 2 hours.
Observed on OS X 10.11, julia 0.4.0, 0.4.1 and release-0.... |
I find that `Pkg.udpate()` stalls almost every time when updating a package to
a new version. This is how a typical output looks like:
julia> Pkg.update()
INFO: Updating METADATA...
INFO: Updating cache of Gadfly...
INFO: Updating cache of Clang...
INFO: Updating cache of Compose...
... | 1 |
I'm using 6to5 on a big app. I like that you guys use regenerator to implement
generators, so I'm confused why you care that things get renamed. I have a lot
of generator functions, and if I minimize, I see the error "GeneratorFunction
renamed?"
http://jlongster.com/s/genfunc-err.png
If there isn't a solution to th... |
See here.
The author of this code tries to be clever and set `GF.name` in the line
above, but this actually isn't possible to do (try it in Chrome or Firefox, it
will just ignore the assignment).
Having `"GeneratorFunction"` as the constructor name is mandated by the
specification. However, I would argue it's not a... | 1 |
I've tried to create a simple example that utilizes workers to send and
receive messages, but the main "thread" for lack of a better word fails to
receive any kind of message from my worker.
According to `deno -V` I'm using `deno 1.5.3`
Below are my test files, run them with `deno run --unstable --allow-read
test.t... |
Example:
`worker.ts`:
self.addEventListener('message', ev => {
try {
const {data} = ev as MessageEvent;
console.log('worker <- main:', data);
const value = data > 0 ? data * 2 : undefined;
(self as any).postMessage(value);
console.log('worker -> main:', va... | 1 |
Sorry, the best testcase I have right now is Servo master. If you run the
binary under gdb and try to break anywhere in the `compositing` crate, the
symbols just don't exist. You can't break by filename either. You can break on
mangled symbols, but there are no source positions. Other crates (like
`script`, for examp... |
## Reproduce Steps
1. Create a project using `cargo new test_rust`
2. Edit the `lib.rs` file to:
pub trait HasArea {
fn area(&self) -> f64 {
0f64 ... | 1 |
while i was working with flutter i came across a situation that i want to
access flutter plugin from my native code
example
> i set SharedPreferences using flutter code and i want to access this
> prefs from java
i achieved that by reading plugin source code and get SharedPreferences name
and how the plugin st... |
## Steps to Reproduce
dependencies:
flutter:
sdk: flutter
url_launcher: ^4.0.2
Code sample:
String url = 'https://baomoi.com/tai-dung-binh-cua-hlv-park-hang-seo/r/28958542.epi';
if (await canLaunch(url)) {
await launch(url, forceWebView: true);
}... | 0 |
The following code:
fn main() {
[].iter();
}
results in the following compiler error:
test.rs:2:1: 2:3 error: internal compiler error: borrow-vec associated with bad sty: &ty_err
This message reflects a bug in the Rust compiler.
We would appreciate a bug report: htt... |
fn main() {
let v = &[];
let it = v.iter();
}
vec-ice.rs:3:13: 3:14 error: internal compiler error: borrow-vec associated with bad sty: &ty_err
vec-ice.rs:3 let it = v.iter();
^
(Doesn't happen with `.slice`.)
| 1 |
**Willis Blackburn** opened **SPR-9068** and commented
I'm trying to implement RFC 2324 but cannot return HTTP response code 418
because it's not defined in the HttpStatus enumeration.
More generally, the enumeration of specific status values precludes the use of
any others.
* * *
**Affects:** 3.1 GA
**Issue Li... |
**Rick Evans** opened **SPR-2566** and commented
(c.f. comment from Matt Raible on #7043)
It would be cool if this tag supported a "key" attribute so you could read
directly from your messageSource. For example:
<form:label path="firstName" key="user.firstName"/>
Just a thought.
Matt
* * *
**Affects:** 2.0 RC3... | 0 |
Installed the react development tools to chrome Version 89.0.4389.114
(Official Build) (64-bit)
Open my development version of my react app localhost:3000 with several
components and I see the react icon
,
we'll get
Duplicate presence of slot "${name}" found in the same render tree - this will likely cause render errors.
I know it's intentional to prevent render errors (like losi... |
### What problem does this feature solve?
github missing repository vuejs/vue-ssr-webpack-plugin, i update webpack to
version 5 and have error
[vue-server-renderer-webpack-plugin] webpack config `output.libraryTarget`
should be "commonjs2".
### What does the proposed API look like?
in my output.libraryTarget is ... | 0 |
rename a file. when the commond pane disappeared ,click other fields make the
pane lose focus ,then ...

|
If you click away while doing "Add File" (or rename, etc), the dialog box
collapses but remains visible. I think the dialog box should continue to be
open even when you click away.
: no
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): macOS 10.13.6
* TensorFlow installed from (source or binary): from pip install
* TensorFlow version (use command below): v2.0... | 0 |
## Example
import { readJson } from 'https://deno.land/std/fs/mod.ts'
const f = await readJson('./settings.json')
deno run https://raw.githubusercontent.com/SimonSiefke/deno-sample/master/src/index.ts
## Expected behavior:
It compiles without errors.
## Current behavior:
... |
Parts of the standard library now require the `--unstable` option to function.
I suggest we move all things that use unstable APIs into different files which
are then re-exported by multiple entry points: `mod.ts` and `unstable.ts`.
`unstable.ts` would re export `mod.ts` \+ all unstable features.
| 1 |
### Feature request
🤗 Accelerate has a wrapper to help with distributed metric calculation (a
tough problem!), and the `no_trainer` scripts should be updated to include it!
An example can be seen here, below is an example diff of what the integration
would look like:
- predictions, refer... |
# 🚀 Feature request
`T5ForConditionalGeneration` inherits `generate` from `PreTrainedModel` via
`GenerationMixin`.
Currently in our docs if we write:
for more info see :meth:`transformers.T5ForConditionalGeneration.generate`
it doesn't get resolved in the html docs (it doesn't get a xref link,... | 0 |
One of my coworkers made the following observation:
> I noticed the julia profiler is sampling all the threads in a deterministic
> order, which can skew the profile for multithreaded code. When you stop one
> thread holding an important mutex, you can get a pileup of threads blocking
> for that mutex, which can mak... |
julia> sort(unsigned.([1,0,1,0,1,1]), rev=true)
6-element Vector{UInt64}:
0x0000000000000001
0x0000000000000000
0x0000000000000001
0x0000000000000000
0x0000000000000001
0x0000000000000001
see #42718 for why this bug exists
| 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.