text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
Duplicate #17432 Windows 10, CMake 3.18, CUDA 10.2. OpenCV rev. `0cbaaba`, contrib rev. 39ced2af67b5f76d5d2f3a9c1f9cebfc0ddd8c65. During configuration CMake issues an error: CMake Error at cmake/OpenCVDetectCUDA.cmake:111 (string): string sub-command STRIP requires two arguments. Call Stack...
OpenCV => 3.4.5 Operating System / Platform => Windows 10, 64 bit Compiler => Visual Studio 2017 Alexander Alekhin closed my last bug with "duplicate", and "won't fix". I would love to know why it's a won't fix... If you use the dynamically imported OpenCV core DLL, and you link against MFC, when the dll unload...
0
Currently, any container runtime has to be linked into the kubelet. This makes experimentation difficult, and prevents users from landing an alternate container runtime without landing code in core kubernetes. To facilitate experimentation and to enable user choice, we should add a client/server implementation of th...
@smarterclayton raised this issue in #199: how should Kubernetes support non- load-balanced and/or stateful services? Specifically, Zookeeper was the example. Zookeeper (or etcd) exhibits 3 common problems: 1. Identification of the instance(s) clients should contact 2. Identification of peers 3. Stateful inst...
0
1. Open project 2. Right click for context menu on any project folder/file **Atom Version** : 1.0.0 **System** : Microsoft Windows 8.1 Pro N **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._res...
1. Open project 2. Right click for context menu on any project folder/file **Atom Version** : 1.0.0 **System** : Microsoft Windows 8.1 Pro N **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._res...
1
package main type X *[10]Y type Y X func main() { } //-------------------------------------------------------------- Compiler says: test.go:3: invalid recursive type Y Compiler version: cd89452cfea3 weekly/weekly.2011-04-04 I think these recurs...
by **jonas.p** : What steps will reproduce the problem? try to get Subject Alternative Name URIs in the same way you can access DNSNames, EmailAddresses and IPAddresses http://play.golang.org/p/by0PoVfPyd What is the expected output? URIs returns the subject alte...
0
# Checklist # Checklist * I have checked the issues list for similar or identical feature requests. * I have checked the pull requests list for existing proposed implementations of this feature. * I have checked the commit log to find out if the if the same feature was already implemented in the master branch...
celery: 3.1.23 (Cipater) rabbitmq-server:3.2.4-1 i found some task send to rabbitmq and then celery worker get duplicate task . function: def do_backup(name): .... for example: server: do_backup.delay("/tmp/__36") worker02: [2016-06-23 20:38:27,182: INFO/MainProcess] Received task: tasks.do_backup[40159...
0
# 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...
This doesn't happen on 4.4.3, only on 4.4.4. Here is a traceback: Traceback (most recent call last): File "/usr/local/lib/python3.7/site-packages/kombu/utils/objects.py", line 42, in __get__ return obj.__dict__[self.__name__] KeyError: 'backend' During handling of the above excep...
0
If an async op is not listed in the `OP_DETAILS` map in `40_testing.js`, you can get the following exception: TypeError: undefined is not iterable (cannot read property Symbol(Symbol.iterator)) at asyncOpSanitizer (deno:runtime/js/40_testing.js:177:32) at async resourceSanitizer (deno:r...
I don't have a clear reproduction path for this issue but I dug into the 40_testing.js code and I believe I found the cause of the issue. A user of my test_suite module opened an issue saying they were getting an error when upgrading to the newest version that uses the test step API. The user reported they are using ...
1
Logs and details after the comment here #1118 (comment) Test code: https://gist.github.com/ionelmc/4259997
I am using Celery version 3.0.19 from pypi (upgraded and tested today). Here are my steps to reproduce: app.py: from time import sleep from celery import Celery celery = Celery(broker="amqp://") celery.conf.update( CELERYD_CONCURRENCY=1, CELERYD_MAX_TASKS_PER_C...
1
**Migrated issue, originally created by Fayaz Khan (@fayaz)** In this specific scenario, `query.count()` & `len(query.all())` do not match: from sqlalchemy import create_engine, Column, ForeignKey, Integer, Table from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm impo...
**Migrated issue, originally created by Anonymous** Currently it throws error at File "C:\Python26\lib\site- packages\sqlalchemy-0.7.6-py2.6-win32.egg\sqlalchemy\sql\compiler.py", line 927, in visit_table hinttext = self.get_from_hint_text(table, fromhintstable) TypeError: get_from_hint_text() takes exactly 2 ...
0
Greetings, continuation from this problem #12134 thanks brendan, after the update, nodes were restarted and all containers started without problems, but there is one thing I am really afraid of my `mongodb` instances. I'm using this yaml file, just cut the container list. apiVersion: v1 kind: R...
There are currently two different ways of determining request information: https://github.com/GoogleCloudPlatform/kubernetes/blob/master/pkg/apiserver/handlers.go#L264 and the system of record: https://github.com/GoogleCloudPlatform/kubernetes/blob/master/pkg/apiserver/api_installer.go#L97 that actually dispatches 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** In Hybrid mode (when bootstrapped ...
### Bug Report Angular version: 2.0.0-beta.11 Browser: [all] Language: [Typescript] ### Description When downgrading an Angular 2 component to use in an Angular 1 application, the downgraded directive crashes if the original component uses multi- projection with more than 1 slot, for instance: <...
1
Hi, (demo) async function test( { a } = { } ) { alert( a ); alert( arguments ); } test( { a : 10 } ); Babel will alert undefined, because the destructuring parameters are evaluated inside the regenerator wrapper, which doesn't preserve the `arguments` variable. Actually, any ...
Here's the code snippet: const x = ({ a = 1 } = {}) => a console.log(x()) // 1 console.log(x({})) // 1 console.log(x({ a: 5 })) // 5 const y = async ({ a = 1 } = {}) => a async () => { console.log(await y()) // 1 console.log(await y({})) // 1 console...
1
# Feature request Currently, only the following meta tags can be duplicate as per the next/head logic var ALLOWED_DUPLICATES = ['article:tag', 'og:image', 'og:image:alt', 'og:image:width', 'og:image:height', 'og:image:type', 'og:image:secure_url', 'og:image:url']; So, it is not allowing me to render ...
* I have searched the issues of this repository and believe that this is not a duplicate. Looking at this repo — https://github.com/dargue3/nextjs-v5-object-context — this line of code (in `pages/index.js` used to return the names of all the functions belonging to a React component class before upgrading to `next ...
0
Challenge Waypoint: Clone an Element Using jQuery has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <script...
A bug seems to be present: Chrome 46.0.2490.86 m; Windows 8.1 with respect to `appendTo()` function. `$("#target2").appendTo($("#right-well"));` does work, but not the `$("#target2").appendTo("#right-well");`, the latter being suggested in the tutorial. Hard reload and cache clearing did not seem to solve the probl...
1
When the type of TextField is set to number and give it a initial value, once the entered number is deleted, the displayed value becomes 0. If you then enter another number, the zero will stay unless the page is refreshed. I've checked the value received in the onChange function, which doesn't come with the leading ...
TablePagination is missing from exports * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior `import { TablePagination } from 'material-ui/Table';` should import the component ## Current Behavior the imported is undefined ## Steps to Reproduce (for...
0
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME block include_role ##### ANSIBLE VERSION ansible 2.4.3.0 config file = /Users/kevinp/Documents/src/cm/ansible/ansible.cfg configured module search path = [u'/Users/kevinp/.ansible/plugins/modules', u'/usr/share/ansible/plugins/m...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME import_role ##### ANSIBLE VERSION ansible 2.6.0 (devel 8743b20c8e) last updated 2018/02/13 17:38:47 (GMT +200) config file = /home/nikos/Projects/ansible-demo/ansible.cfg configured module search path = ['/home/nikos/Projects/ansible-...
1
I created an extension to port Sublime keybindings to VS Code keybindings. I made a list of all the key bindings that were missing analogous commands in VS Code. Here is the list roughly ordered by importance. Please let me know about more I missed in the comments. If an extension exists with the functionality I add...
#6683 fix means the integrated terminal cannot be restarted after the process errors without reloading the window.
0
Here's the code I'm compiling: 'use strict' async function recurse(n) { if (n > 0) { console.log(n) await recurse(n - 1) } } recurse(10) My package.json is: { "scripts": { "build": "babel src --out-di...
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(); ...
1
When using DataFrame.apply(), it would be helpful to be able to apply different functions to different columns. There's a nice workaround on StackOverflow: import numpy as np import pandas as pd def multi_func(functions): def f(col): return functions[col.name](col) ...
I'm trying to use pandas to speed up timezone conversions on many datetimes and I can't get around `NonExistentTimeErrors`. Pandas `tz_localize()` seems to ignore the `ambiguous` argument for the non existent time case. Example: import pytz import pandas tz = pytz.timezone('Europe/Warsaw'...
0
We could integrate a function for signal words like in windows search. So the user enter `signalWord: abc` and the app knows for what the user is searching for. signal words can be: * window : search for window including browser tabs * browser : search for browser tab * app : user want to start apps * file ...
# Summary of the new feature/enhancement Pressing and holding Windows-Key should show the shortcuts of the curently active application instead of the windows-shortcuts only. For example when working with Lightroom show the lightroom-shortcuts but when working in Explorer show the explorer-shortcuts. # Proposed tech...
0
* VSCode Version: 1.1.0-alpha * OS Version: Windows 10 Steps to Reproduce: 1. Change language to German or French 2. Observe the file, edit, etc. menus It seems some translations regress after alpha updates. Is this expected?
* VSCode Version: 1.2 * OS Version: Windows 7, x65 Steps to Reproduce: 1. Open the terminal from within VS code 2. Do `git log` 3. Observe a first page of the command output (while the pager is awaiting for continuation) 4. Select a piece of the output text. 5. Attempt to copy the selected piece using...
0
Challenge http://www.freecodecamp.com/challenges/waypoint-target-a-specific- child-of-an-element-using-jquery has an issue. The challenge will not allow the user to proceed even after posting the right solution i.e. $('.well:nth-child(2)').addClass("animated bounce"); Currently the workaround to get ...
Challenge http://www.freecodecamp.com/challenges/waypoint-comment-your- javascript-code has an issue. Please describe how to reproduce it, and include links to screenshots if possible. Code "assert(editor.getValue().match(/(//)...../g)," appears on the left hand checklist. After completing the challenge and running...
0
There is something missing in javascript after 3.0.0-rc1, versions -rc2 -wip and the latest release. It shows a transparent background in modals when loads a single html file as remote content. There is a similar bug #10415, but this one is not related with Rails. <html> <head> <link rel="st...
1
OS: Windows 7 32 bit, using MinGW version suggested by wiki (because last one just fails) Trying to compile example from website. ![ ](https://camo.githubusercontent.com/aa477ebb9a19385b6edcb74affad405738b0a571345167a7b7bf90f5a8cc99cc/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3236353639363...
From ssylvan: Consider this a very preliminary bug report, I only gave it about two minutes because I have to run, so I could probably track this down further with some process monitor logging. In case this is useful as is I'll just tell you here. On 64-bit Windows 8 RTM I get this in a message box when runni...
1
### Problem Duplicate from stackoverflow 72375427 . When plotting 2D scatter data on a 3D scatter plot (eg as in the example code from matplotlib website, which incidentally shows the problematic behaviour as the sin curve is obviously off by a bit), the 2D data floats "on top" or "alongside" of the 2D face it is s...
I take an example from https://stackoverflow.com/questions/23951230/python-axis-limit-in-matplotlib In mplot3d, when you set, for example, `set_xlim(0, 0.8)`, the outcome has an extra like `set_xlim(0 - eps, 0.8 + eps)`, where eps is related to `deltas`. matplotlib/lib/mpl_toolkits/mplot3d/axis3d.py Line 187 i...
1
#### Code Sample, a copy-pastable example if possible # This works as expected, and as it worked in the past (0.17.1) pd.concat([pd.util.testing.makeTimeSeries(), pd.Series()], axis=1) # This fails in 0.20.1 pd.concat([pd.util.testing.makeTimeSeries().tz_localize('America/Chicago'), pd...
#### Code Sample I am not sure this is the simplest way to produce this error. import pandas as pd import pytz from datetime import datetime ldn = pytz.timezone("Europe/London") df = pd.DataFrame(data={"times" : [ldn.localize(datetime(2017,5,4, 11, 18)), ...
1
When I run program about Deep MINIST for Experts on Jupyter notebook,I met this question.How do I solve it?
The website of Yann LeCun is down at the moment. Therefore the MNIST-Script for downloading the files doesn't work either. (-> learn/python/learn/datasets/mnist.py won't work) Are there any mirrors?
1
Hello, I have some data where inadvertently the x and y data were of different types, eventually after much troubleshooting I discovered that one was `np.float32` and the other was `np.float64`. When trying to use least-squares minimization to fit to the data, either `scipy.optimize.curve_fit` or `scipy.optimize.leas...
I recently ran into an issue whereby curve_fit was failing to fit a function, even though the guesses were reasonable. The warning reported by Scipy was "/usr/local/depot/Python-3.5.1/lib/python3.5/site- packages/scipy/optimize/minpack.py:690: OptimizeWarning: Covariance of the parameters could not be estimated". Af...
1
### Describe the bug We had an existing database that worked fine. However, when we copied all the data from this existing database into a new database, we have found that the ORM is trying to insert the primary key ID from one again. This is the model: from datetime import datetime from typing im...
**Question** Given a composite type that is defined by a user following these instructions: https://docs.sqlalchemy.org/en/13/orm/composites.html Is there a way to register that type with `PGInspector` or the dialect so that it is available/used during table reflection? **Additional Context** The closest thi...
0
error: Uncaught ReferenceError: AudioContext is not defined const audioContext = new AudioContext() ^
`deno info` command can be used to print all dependencies of a module to terminal, but I want to use it in JavaScript/TypeScript code. It would be nice to have a function (let's say `Deno.info()`) that returns an object with these information.
0
When I opened my solution, always got this error message.I am from China. My dev-environment: > OS: Microsoft Windows 10 > IDE: Visual Studio Code 0.10.5 > DNX: 1.0.0-rc1-update1 **The solution created by visual studio 2013.** * * * *.csproj �� Microsoft.Build.Shared.ProjectErrorUtilities.ThrowInvalidPr...
_From@sporens on January 17, 2016 20:57_ Hi, The command executed by VS Code to install and resolve missing dependancies for an ASP.NET application fails with "Can't find path" when the path to the users' home folder includes a space. For example: c:\users\joeblogs\ <\- works c:\users\joe blogs\ <\- fails Run...
1
### Bug summary backend bug in matplotlib==3.6.1 with python3.11 same issue happend when embeding in Qt with PySide6==6.4.0.1 error report int() argument must be a string, a bytes-like object or a real number, not 'KeyboardModifier' This is caused by the "The new Enum system" within the release of PySide6, Qt f...
### Bug summary Error while importing matplotlib qt backend. The version details are as below matplotlib: 3.6.1 pyside: 6.4.0 python: 3.9.9 on a macOS-M1 machine. ### Code for reproduction from matplotlib.backends.backend_qtagg import NavigationToolbar2QT as NavigationToolbar ### Actual outc...
1
It's currently difficult (impossible?) to create plugins for React that use any of the stuff in `lib` without using crazy hacks. What's the best way to do this? Separate modules?
**Do you want to request a _feature_ or report a _bug_?** Feature * * * There's a common case of having a list of items, keyed by some id, and items can be added/removed over time. For example, say we have a list of users and a button to refresh the list with new data from the server. Here, `User` is a simple fun...
0
## 📝 Provide a description of the new feature ## _What is the expected behavior of the proposed feature? What is the scenario this would be used?_ INCLUDE SYNCTOY INTO POWERTOYS If you'd like to see this feature implemented, add a 👍 reaction to this post.
When searching for local files it could be convenient to add an option to restrict results to folders. In part because it would make results faster, and in part because personally I've found that 90% of the times I just want to open a folder and not a file. This could be as simple as adding a `f` shortcut. Eg: typi...
0
Hello, I run scrapy v1.1.0 I need some parts of the url to create some ids. Lately I have been noticing that response.request.url is returning a different url that the one that is used to scrape. In my code I use the item['LINK'] = response.request.url but that is putting in the wrong link on some scrapers like 2/...
### Description After running the scrapy shell with the defined url, I am getting the attribute error showing the following error: AttributeError: module 'OpenSSL.SSL' has no attribute 'SSLv3_METHOD' scrapy shell "https://quotes.toscrape.com/tag/humor/" ### Steps to Reproduce 1. [First Step] 2. [Second Step] ...
0
# Checklist * I have verified that the issue exists against the `main` branch of Celery. * This has already been asked to the discussions forum first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. ...
# Checklist * I have verified that the issue exists against the `main` branch of Celery. * This has already been asked to the discussions forum first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. ...
0
##### Description of the problem When i import the model it is correct. https://gyazo.com/ff1c9b427be5ba44ab1a500bffecabeb But with the animation on it flies off into the distance https://gyazo.com/3ce34820e57708c86c004f7f307a332a But it's working fine on Babylon with the same file and animation on: https://...
What is the easiest way to draw a long 3D tube that follows a 3D path. I have a collection of 3D points that represent a route through my world and I want to highlight it. If I draw it as a THREE.Line it comes out 1 pixel wide which is impossible to see, so I want it as a 3D solid. I tried extruding a shape along a...
0
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gce/21123/\n\nFailed: BeforeSuite {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:154\n Aug 4 06:39:58.074: Failed to setup provider config: Error building GCE/GKE provider: Get https://www.googleapis.com/compute/v1/projects/k8s-jkns-e2e-gce/global/networks?alt=json: net/http: TLS handshake timeout\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:151\n \n\nPrevious issues for this test: #26135 #26236 #27920 #28492 #29970\n\n"
We have two sets of labels on internal node object: one is on the object (Minion.Labels), one is on object meta (Minion.ObjectMeta.Labels). We should remove Minion.Labels and fix the conversion properly?
0
**Pekka Enberg** opened **SPR-1607** and commented With Hibernate 3.1, you can set multiple event listeners per type but Spring 2.0 M1 does not support that. Please see the following Hibernate Javadoc: http://www.hibernate.org/hib_docs/v3/api/org/hibernate/cfg/Configuration.html#setListeners(java.lang.String,%20jav...
**korey shronts** opened **SPR-7662** and commented Can multipart request support be added to portlet ResourceRequest processing? Current implementation of DispatcherPortlet only processes multipart requests for ActionRequest(s). * * * **Affects:** 3.0.4 **Issue Links:** * #12565 Handling Multipart request tha...
0
Recently updated to 0.12.2 and a checkbox element hooked up to `this.props` is dynamically updating in the browser. Using the React inspector for Chrome, `this.props.item.isActive` seems to be toggling fine, but for some reason the changes don't propagate into the DOM. Not sure if this is specific to the update, or I...
When using AMD, a component might use React as a dependency. This poses a problem when another instance of React has already manipulated the DOM. The wrong events get fired, or ID collisions occur ( _Invariant Violation: ReactMount: Two valid but unequal nodes with the same`data-reactid`: .0_). jsbin here: http://js...
0
Hi, I'm trying to make a component where I want to reuse the same projected 'ng- content' but it doesn't seem to be possible. It would be nice if angular could iterate through all the unnamed ng-contents and replace them. Here is a use case example. @Component({ selector: 'wt-link', templ...
version: `ng2-beta12` For some reason the order in which templates are defined is causing issues with transclusion. Doesn't Work for buttons but works for link <template [ngIf]="href ===''"> <button [ngClass]="cssClassList"> <ng-content></ng-content> </button> </templ...
1
**TypeScript Version:** 1.8.7 **Code** function func(val: "Test") { console.log(val); } func("Test"); **Expected behavior:** Should work normally and print "Test". **Actual behavior:** A compile-time error is reported (highlighting `func`): A signature with a...
Specialized signatures needing to be compatible with an overload was an artificial requirement due to issues in #943. Now that we've fixed that, we should consider what we're going to do with this rule. Could we remove it wholesale? That would potentially be a breaking change, but it seems like good one. Basically, ...
1
Ansible Version - 2.0, 2.0.0.2 Module - File Description - Trying to create directories more than 1 level deep gives following error: There was an issue creating /dir1/dir2 as requested: 'module' object has no attribute 'EEXISTS' If i remove dir2, it works. This command use to work with ansible version 1.9.2
##### Issue Type: Bug Report ##### Component Name: file module ##### Ansible Version: Ansible devel ##### Ansible Configuration: Default `ansible.cfg` ##### Environment: Debian, Ubuntu, unprivileged account ##### Summary: `file` module cannot create private directories with mode `0600` more than two levels...
1
I have an iOS app. I have set a launch screen image in xCode. I set the same image in a container in the main scaffold. But I see a brief flash of white (or whatever color the scaffold background is) between the launch image and scaffold image. How can I get rid of that?
I am trying to figure out this blank screen that shows up between the LaunchImage and my app's first screen. Has anyone noticed that. this is the code I wrote for a simple test. void main() => runApp( new MaterialApp( debugShowCheckedModeBanner: false, ti...
1
* Electron version:1.3.3 * Operating system:Windows7 Why in renderer process the webContents.session Event 'will-download' callbacks params DownloadItem Method setSavePath('path') it had no effect. But in main process is all right // In the renderer process. const {BrowserWindow} = require('el...
Hello, `DownloadItem.setSavePath()` is supposed to prevent the save dialog, which is exactly what I need. However, this doesn't work in a renderer process. The save dialog still appears. In fact, the `"will-download"` event handler is called _after_ the save dialog appeared and had been closed. The code was contract...
1
See http://jsbin.com/taxat/1/ Tested on MacOS 10.8.5, Firefox 26 and Chrome 32. Using <div class="hidden-md hidden-lg">XS and SM - via hidden</div> the content is shown in both xs and sm resolutions. Correct. But using <div class="visible-xs visible-sm">XS and SM - via visible<...
ERROR: type should be string, got "\n\nhttps://dl.dropboxusercontent.com/u/37682778/error/index.html\n\n"
1
**Do you want to request a _feature_ or report a _bug_?** bug **What is the current behavior?** Sometimes, Webpack generates code that contains Promises that are not rejectable. If an error is thrown in those Promise's body, the Promise is not rejected and thus the error bubbles up to the console, uncatched. *...
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** Currently, if you dynamically call the import function and you are offline, the catch function is never called. Webpack generates an uncaught exception. import('./my-component') .then(module => {...
1
**TypeScript Version:** 1.8.10 **Code** import Symbol from './Symbol'; export interface Iterable<T> { [Symbol.iterator](): Iterator<T>; } In Dojo 2, we provide a shim for `Symbol`. One of the things we have decided to do as a matter of principal is not modify the global namespa...
**TypeScript Version:** 1.7.5 / 1.8.0-beta / nightly (1.9.0-dev.20160217) **Code** // try augmenting the SymbolContructor to have some expected symbol on it. // in RxJS5's case, it'll be the Symbol.observable symbol from the es-observable spec. interface SymbolConstructor { observable: ...
1
### System info * Playwright Version: [v1.35] * Operating System: [Windows] * Browser: [Edge] * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. The code of a simple page <html> <body> THING <img src="api/myImage.png"/> ...
It would be great to be able to use pattern well adopted in React Testing Library tests - a custom render function which contains wrappers required by each component (ie. providers). Let's take a look at the example: // Button.test.tsx import { test as base, expect } from '@playwright/experimental-...
0
by **vladimir.webdev** : Complete code to reproduce: package main import ( "fmt" "websocket" ) func openConn(ch chan<- int) { ws, err := websocket.Dial("ws://localhost:9999/", "", "http:// localhost/") if err != nil { ...
by **sarnowski@new-thoughts.org** : What steps will reproduce the problem? 1. use amd64 OpenBSD-current 1. checkout current tip 2. run the src/all.bash script with bash What is the expected output? go builds. What do you see instead? Most of the time, the comp...
0
I'm not hugely familiar with CLI standards, but I don't think I've ever run in to the requirement that --flags precede the positional arguments. I spent a long while trying to get `--allow-net` to work before realising this was necessary. `deno run --allow-net something.ts` vs `deno run something.ts --allow-net` Is...
The order of the CLI flags should not be of importance. Check this example ![image](https://user- images.githubusercontent.com/6124435/62263509-c9d87180-b41c-11e9-8da9-b683316e0ad7.png) Shouldn't deno test.ts --config tsconfig.json be the same as deno --config tsconfig.json test...
1
### Is there an existing issue for this? * I have searched the existing issues ### This issue exists in the latest npm version * I am using the latest npm ### Current Behavior I am unable to install angular CLI after changes `--location=global` in node module. Please look i this issue ### Expected Behavior...
### Is there an existing issue for this? * I have searched the existing issues ### This issue exists in the latest npm version * I am using the latest npm ### Current Behavior current version of npm (8.11.0, node 16.15.1) writes a warning to STDERR on every command, that is a warning about using deprecated o...
1
#### Description Incorrect clustering results when using dbscan clustering with brute algorithm and large values. See the below code snippet - when the data type is changed to float64 or the algorithm is changed to ball_tree the correct clustering results are obtained. For context, the large values are geographi...
#### Description I noticed that sklearn.metrics.pairwise.pairwise_distances function agrees with np.linalg.norm when using np.float64 arrays, but disagrees when using np.float32 arrays. See the code snippet below. #### Steps/Code to Reproduce import numpy as np import scipy import sklearn.met...
1
>>> cv2.__version__ '4.5.1' >>> cv2.minAreaRect(np.array([[1,1],[1,10],[10,10],[10,1]])) ((5.5, 5.5), (9.0, 9.0), 90.0) >>> cv2.__version__ '4.2.0' >>> cv2.minAreaRect(np.array([[1,1],[1,10],[10,10],[10,1]])) ((5.5, 5.5), (9.0, 9.0), -90.0) Shouldn't the a...
##### System information (version) * OpenCV => branch `3.4` * Operating System / Platform => Ubuntu 18.04 * Compiler => g++ 7.4.0 ##### Detailed description This issue aims at discussing and inviting suggestions for supporting `string` data type in `Constant` layer. Currently, `getMatFromTensor` only support...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. (This page is missing) ### Environment * Dubbo version: 2.7.1-SNAPSHOT * Operating System version: MacOSX 10.14.1 * Java version: ...
* 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: v2.7.3 * Java version: 1.8 ### Actual Result https://github.com/apache/dubbo/blob/master/dubbo- c...
0
I don't know if there are relevant open bugs for this. I didn't see any on a quick glance. This issue is for tracking work toward being able to call Go from C programs (perhaps linked into the program already, perhaps as a dynload .so file). Elias Naur has done some good work getting...
by **daniel@heroku.com** : Although it's already possible to link C code into a Go program (that controls the entry point), it would be highly useful to me to have the opposite (running a Go runtime in a C program). I'm mostly interested in exposing exported Go symbols and bindings to ...
1
I'm submitting this as a bug, instead of a support question on SO, because I'm getting this error after a very clean install of the operating system. The error occurs when I attempt to do the most basic validation, but just importing tensorflow! * * * ### System information * **Have I written custom code (as opp...
Hi - Thanks for all your hard work on this! - I've been having a problem getting Tensorflow-GPU to work on my Windows 10 notebook with a GTX 1080. I've tried to make sure all the paths are correct, etc. and have followed all the tips I can find. I ran the tensorflow_self_check.py script and got the following result:...
1
# Environment Windows build number: Windows 10 Version 1909 Build 18363.836 PowerToys version: 18.1 PowerToy module for which you are reporting the bug (if applicable): Run # Steps to reproduce * Open PowerToys Run box (Alt + Space) * Input Calc for Calculator * Open Calculator *...
![vl9jLZAIRn_Trim-output](https://user- images.githubusercontent.com/65631993/82387225-1a749600-9a54-11ea-8e53-7f5a316b176d.gif) as you can see it goes to the same window i searched before . I am not very good at explaining i hope you can get what im trying to say
1
## ![image](https://user- images.githubusercontent.com/16353144/61019849-3936e480-a3ce-11e9-8332-77c7fee4fe50.png) ## Platform: Windows10 1703 OS Version: 15063.1387 After search many documents & issues, I got no answer. Is there anybody knows what happened to the installation of deno?
Example: import express from "npm:express@4"; const app = express(); const port = 3000; app.get('/', (req, res) => { res.send('Hello World!'); }); app.listen(port, () => { console.log(`Example app listening on port ${port}`); }); Depends on #12648
0
For a piece of code at work, we had a set of tasks that are essentially wrappers around a function. Originally each function was implemented independently. To reduce code duplication, I tried to make a higher order function that would take in the wrapped function (`ship_function`) and return a task that called it and...
# Checklist * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was already fixed in the master branch. * I have included all related issues and possible dup...
0
**Context** Local variables (defined with the `#` character at a element attribute) don't apply for this use case: rqw local variables for a loop with `ngFor`. In fact, when you define a local variable on an HTML element it corresponds to the component if any. When there is no component on the element, the variabl...
It looks like if I use the `@Attribute` on a class constructor: constructor(@Attribute('tabindex') tabindex: string) {} it causes the TS compiler to throw a semantic error: src/app/components/checkbox/checkbox.ts(63,14): error TS1239: Unable to resolve signature of parameter decorator w...
0
## 🐛 Bug I think the vector strides are passed incorrectly to `gemv` on GPU. It works well on CPU. ## To Reproduce import torch mat = torch.randn(2, 2).cuda() vec = torch.randn(2).cuda().requires_grad_(True) (mat @ vec).sum().backward() Here I get: > RuntimeError: at::cuda::blas::...
## 🐛 Bug ## To Reproduce Steps to reproduce the behavior: import torch import torch.nn as nn torch.set_default_tensor_type('torch.cuda.FloatTensor') x = nn.Parameter(torch.ones(2, 2)) (x @ torch.ones(2)).sum().backward() ------------------------------------------------------...
1
Hello Everyone, I am a newbie to Electron (Atom-shell), Was figuring out the api provided in ATOM shell. While doing mock up codes. I was unable to find any api to retrieve cookies and delete specific cookies for domain. Am i missing something, can someone put me in a right direction. Mac : ~/Library...
Can atom-shell support cookie?
1
## Bug Report I'm use jsx-control-statement@4.1.0 plugin. Production build is work properly but when I start development mode I have error `undefined is not a function` ![image](https://user- images.githubusercontent.com/3369304/111654069-79906c00-8819-11eb-855e-6aa094b053b6.png) In the source code of my develop...
I've run into this a couple of times recently and haven't been able to figure out why it happens. I put together this small test case: var className = `${prefix}__header`; var obj = {}; obj[className] = true; obj[className + '--open'] = true; obj[className + '--active'] = true; ...
0
**TypeScript Version:** nightly (1.9.0-dev.20160522-1.0) **Description** I'm trying to add a reference from the root: import {Hero} from "/models/hero"; But it only works if I add both `models` and `/models` to the rootDirs array: tsconfig.json "rootDirs": [ "mode...
**TypeScript Version:** nightly (1.9.0-dev.20160217) **Code** let greeting:string; let x = (message: string | number) => { if (typeof message !== "string") { return; } // It's obvious, that message must be a string now. It works with "else stat...
0
**1 What version of Go are you using (go version)?** $ go version go version go1.6 linux/amd64 **2 What operating system and processor architecture are you using?** $ cat /etc/issue Ubuntu 15.10 \n \l $ lscpu Architecture: x86_64 ... **3 Wha...
It is common to use go/types is as part of a go generate command or other command line tool to introspect a Go package. The go tool goes to some lengths to ensure that whenever you operate on a package, it builds the source for that package into object form before using it, so you don't end up using symbol i...
1
### Example 1 This came up with a student who upgraded from 0.6 to 1.0 directly, so never even got a chance to see a deprecation warning, let alone find an explanation for new behavior: julia> beforefor = true true julia> for i in 1:2 beforefor = false end ...
1
I am debugging PackageCompiler issue, which looks like is on Julia's C side: #32733 and TsurHerman/Fezzik#3 I compiled (in Arch Linux, gcc v9.1) julia with `make debug`. Started julia- debug REPL, command `using Makie` just trowed error (using regular version of julia error is not trowed): julia> usi...
While trying to track down a memory leak in `Metalhead`, I discovered the following assertion failure: julia> using Images [ Info: Precompiling Images [916415d5-f1e6-5110-898d-aaa5f9f070e0] Assertion failed: (!jl_subtype((jl_value_t*)sig, (jl_value_t*)type)), function check_ambiguous_visitor, f...
1
### Apache Airflow version 2.4.1 ### What happened Clicking Refresh on the graph view of any DAG does not refresh the view, it just gets stuck refreshing forever. In the JS console, it displays the following error message on each refresh: Uncaught SyntaxError: JSON.parse: unexpected character at l...
### Apache Airflow version 2.4.1 ### What happened After starting a DAG, the auto-refresh works in the grid view but not in the graph view. The top-right auto-refresh icon shows indefinitely that the page is refreshing but nothing happens. It is necessary to refresh the whole page to show the current status. ##...
1
I couldn't figure out to add support for arbitrary class labels to the SVMs and add a `classes_` attribute. I'm moving to other stuff for the moment, it would be great if someone found some time for this. The trouble comes with `class_weight` and regression. I think it would be good to add a `LabelEncoder` somewhe...
`from sklearn.datasets import fetch_mldata` `mnist = fetch_mldata('MNIST original', data_home='./data')` when I use this, it not working and in cmd show `Traceback (most recent call last): File "mnistTest.py", line 7, in <module> mnist = fetch_mldata('MNIST original', data_home='./data') File "C:\Python27\lib\sit...
0
#### Problem description pd.read_hdf() segfaults when called from multiple threads in read only mode. From the documentation I expected that reading a HDF5 file in another thread would work. In the example each file is mapped out to its own thread and the thread is responsible for opening and closing the file. Note...
I was about to answer an SO question giving the standard "use `lambda` or `functools.partial`" to create a new function with bound arguments when to my surprise my example didn't work with the OP's code. After some experimentation, it turns out to be because we don't always get the same return type. For example: ...
0
_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): Windows 10 * Mob...
Ref #8023 ### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Yes * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Ubuntu 16.04 * **TensorFlow installed from (source or binary)** : Docker image * **TensorFlow version (u...
0
by **sorosj** : What steps will reproduce the problem? 1. Compile a 64bit kernel (with 32bit executables support) 2. boot into a 32bit environment with that kernel (32bit compiler, gnu utiles & all) 3. try to run ./all.bash What is the expected output? golang compiles fine ...
go version go1.3 darwin/amd64 Create two files: "foo.go": package foo func foo() { NOPE I AM A SYNTAX ERROR } j "foo_test.go": package foo Then run `go test` and the test passes. If you add a single test case to `foo_test.go`...
0
See example below. There is no "sex" in the styled table. from IPython.display import display as d import pandas as pd df=pd.DataFrame.from_dict(dict(survived=[1,0,0,0,1,1,1,1], sex=["Male", "Female", "Male", "Female", "Male",...
I don't know if anyone's profiled the test suite, but we'd get major performance boosts if we wrote a Cython version of assert_almost_equal. Is there another open issue for this already?
0
**Kenny MacLeod** opened **SPR-6315** and commented This is a deliberately refiled duplicate of #10827, which was originally filed as a "refactor", and I think it perhaps should be "bug". Between 3.0.0 M4 and RC1, the protected parseStringValue method disappeared from PropertyPlaceholderConfigurer. For custom subc...
**Tommy Becker** opened **SPR-7901** and commented We're experiencing OOM errors during unit test runs. We make fairly heavy use of Java based context configuration in our application as well as the tests. Upon investigation, I see that there are a number of ApplicationContext instances still referenced on the heap ...
0
## 🐛 Bug Using a numpy array `i` as index for a torch tensor `t` (i.e. `t[i]`) is interpreted differently than indexing a numpy array with the same index, or indexing t with the index converted to a tensor. ## To Reproduce import torch import numpy as np a=np.array([0.]) t=torch.ten...
## 📚 Documentation The docs for index_put_ state in the second paragraph: If accumulate is True, the elements in tensor are added to self. If accumulate is False, the behavior is undefined if indices contain duplicate elements. It should be corrected to `elements in _value_ are added to self`. ...
0
**Migrated issue, originally created by Marco Martinez (@marcomartinez)** I'm trying to get `column_descriptions` from a query that I'm building that contains multiple joins to the same target, but I'm getting the following error message: Traceback (most recent call last): File "bug-alias.py", ...
**Migrated issue, originally created by Pavel Brych** After upgrading to 1.0.2 resp. 1.0.3 SQLAlchemy, this error popped up. It happens when label() is used with attribute of aliased entity. #!/usr/bin/python # -*- coding: utf-8 -*- from sqlalchemy import * from sqlalchemy.orm import * ...
1
Microsoft Windows [Version 10.0.18363.418] (c) 2019 Microsoft Corporation. All rights reserved. C:\Users\byr>npm install -g expo-cli npm WARN deprecated request@2.88.2: request has been deprecated, see request/request#3142 npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report th...
### Is there an existing issue for this? * I have searched the existing issues ### This issue exists in the latest npm version * I am using the latest npm ### Current Behavior Hello, I want to execute preinstall script BEFORE the dependencies of my project describes in package.json are downloads, but it do...
0
I have a shuffled series with a bunch of sinvalues in float16, like this: tdata.time_sin 110405276 -0.183105 175560878 -0.301270 ... 130331292 -0.158813 6782127 -0.282471 Name: time_sin, Length: 18490389, dtype: float16 There's no NaN values...
open issues & xref * (fillna) #19205 * #10382 * #15517 * #2511 * #16686 think this should be a bug. When calling the fill_na method in a pandas Series of type np.float16 it raises a ValueError, because of invalid dtype. May be there is a reason for that I can't guess, but I think it's a bug because it doe...
1
**Do you want to request a _feature_ or report a _bug_?** **BUG** **What is the current behavior?** `require.resolveWeak()` can't statically determine module string passed to it as well as `import().then`. _modules[moduleId] is undefined here_ : modules[moduleId].call(module.exports, module, mod...
# Bug report **What is the current behavior?** "dev" build exits with status 2. **If the current behavior is a bug, please provide the steps to reproduce.** It happens when executing `webpack serve --progress --profile --config webpack.dev.js` ### Webpack config /* eslint-disable import/no-dynam...
0
**I'm submitting a ...** (check one with "x") [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
**I'm submitting a ...** (check one with "x") [x ] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
1
# Problem statement When extending your desktop to multiple monitors, Windows 10 allows you to position and align the monitors, but on a pixel by pixel alignment. When using multiple monitors of different sizes and resolutions, it is difficult to drag your mouse from one monitor to the next when the sizes are differ...
# Environment Windows build number: Microsoft Windows [Version 10.0.18362.836] PowerToys version: PowerToysSetup-0.18.1-x64 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run # Steps to reproduce Install 0.18.1-x64 version # Expected behavior Alt+Space t...
0
**Tuomas Kiviaho** opened **SPR-6107** and commented In order to define bean using factory method from other than bean class itself requires currently using of a registered factory bean. Registered factory bean feels quite useless when implementing factory method pattern. In worst case bean count duplicates if bean ...
**Ben Rowlands** opened **SPR-5125** and commented The Spring DAO exception hierarchy is not fine grained enough to isolate duplicate key errors. A duplicate key error is an example of where an application may catch the exception and invoke alternative logic instead of just letting it fall down the stack. For exam...
0
exceptions.txt ### 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. ### Electron Version 12.0.2,11.x #...
### 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. ### Electron Version 11.4.5 ### What opera...
1
I've tried to train intermediate layers independently but when I run my code I've got out of memory issue. I would like to know **retain_graph = True** is the problem? or not and what I have to do to solve this problem. I am using hugging face BERT model and this is my code Thank you. t_outputs = t_...
Ok, sorry to bother you again, and really sorry if I am just doing it wrong again (I looked at the docs for things that would address this, but didn't see anything after looking at it quickly). It appears that the next segment of code leaks CUDA memory. I don't believe I had this problem on 0.2.0 (or some version cl...
1
**TypeScript Version:** 1.8 **Code** I have following tsconfig.json file in my project root directory (e.g. P:\MyProjectRoot\tsconfig.json): { "compileOnSave": true, "compilerOptions": { "preserveConstEnums": true, "experimentalDecorators": true, ...
From the kangax compatibility table (related test): > 14 Note that prior to ES6, it was recommended that ES5 implementations > forbid block-level declarations in strict mode. In ES6, block-level function declarations have block scoping in strict mode. Currently the following is a compiler error in TypeScript: ...
0
pi@raspberrypi ~ $ go version go version devel +c61a75775ab6 Fri Mar 22 17:46:45 2013 -0400 linux/arm pi@raspberrypi ~ $ cd $ov/go-client/hellovg pi@raspberrypi ~/gowork/src/github.com/ajstarks/openvg/go-client/hellovg $ ./hellovg fatal error: malloc/free - deadlock [signal 0xb code=0...
What does 'go version' print? go version go1.3beta2 +5bf1a8b3aeea Thu May 29 13:47:31 2014 -0400 darwin/amd64 What steps reproduce the problem? If possible, include a link to a program on play.golang.org. 1. run this code: http://play.golang.org/p/hxuIOC49ac What happen...
0
We propose to add a `pod/dockercmd` subresource, so that user can run some userful docker command on his container, such as commit the image of his container by running `docker commit`. By now, k8s just support the `docker logs` and `docker attach`command by the `pod/log` and `pod/attach` subresource. Our idea is to...
Passed on kubernetes-test-go 3-4 times, and then failed: TestGC gc_controller_test.go:122: [1]pod's deleted expected and actual did not match. expected: [a] actual: [b] cc @brendandburns
0
I'm using Chrome version 21 and Mac OS X 10.7. I **don't** have this same problem on Firefox 14, Safari 6, or Opera 12.
Tabs used as tabbable content areas for swapping out panes of content display no content each time the page is refreshed. I have to click on the second tab to display the content included in both tabs. For info, in my tabs, there aint any js effect but bootstrap-tabs.js.
0
Deep Learning VM images/tf-2-0-cpu-experimental-20190502 googcheng@tensorflow-4-vm:~$ git clone https://github.com/tensorflow/tensorflow.git Cloning into 'tensorflow'... remote: Enumerating objects: 2167, done. remote: Counting objects: 100% (2167/2167), done. remote: Compressing object...
I am using the Graph Transforms Tool (built with Bazel) to prepare my graph for Android TensorFlow Inference. When using `--transforms='quantize_weights'` everything works just fine. But with `--transforms='quantize_weights quantize_nodes'` I get this: I/TensorFlowInferenceInterface: Checking to see...
0
The behaviour below occurs in versions `'0.15.0rc1-21-g32c5016'` and `'0.14.1'`. When the `label` passed to the `drop` method of a `Series` is not in the index: (a) if the index is not all booleans then an error is raised (b) if the index is all booleans and has length > 1 then no error is raised; the original s...
Hello, The following code ran perfectly fine on 0.14.1, but breaks on 0.15 RC1, raising ValueError: cannot reindex from a duplicate axis. Is it a bug or an intended change of behaviour? Thanks. import pandas as pd import numpy as np d = {'Quantity' : pd.Series([1., 2., 3., 4., 5.], ...
0
deno compile -A --unstable main.ts -o ngs-signer -L debug Check file:///Users/synadia/Dropbox/code/src/github.com/aricart/nas-nats/ngs-signer/main.ts Compile file:///Users/synadia/Dropbox/code/src/github.com/aricart/nas-nats/ngs-signer/main.ts Emit ngs-signer synadia@malaga ~/D/c/s/g/a/n/...
Since v1.19.0 was released, we're seeing a problem when running `deno compile` in Github Actions. See: https://github.com/ecadlabs/taqueria/runs/5234787765?check_suite_focus=true We were using: - name: Setup Deno uses: denoland/setup-deno@v1 with: deno-version: "...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When using material-ui with Server Side Rendering - There should be no validation issues shown by https://validator.w3.org ## Current Behavior There are many validation issues thrown by https://valid...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior You should be able to use a `[Switch]` inside an `[ExpansionPanel]` ## Current Behavior When you include a `[Switch]` inside an `[ExpansionPanel]` every time you toggle the switch, the expansion pa...
0
### What problem does this feature solve? similar to angularjs directives, would like the ability to alias the names the component's parent uses to pass values ### What does the proposed API look like? component: export default { name: "paging", props: { "count": {"name": "pag...
### What problem does this feature solve? Debugging from template code is frustratingly impractical because you lose access to the conventional tools available to you in plain javascript. The reference to the `console` is missing because it is not in the scope of the component instance. Yes, you can add it to the co...
0
Hi, Thank you for your awesome work which I regularly use! Unfortunately after a Kruskal-Wallis H-test for independent samples I need to perform a Dunn test which is not already present and does not exist at all in Python (I only managed to found an R implementation cf this link).
When using `scipy.interpolate.interp1d` and specifying the same x-value multiple times the result is undefined, i.e., it depends on the interpolation method used (`kind`), but not in a very predictable way. The result ranges from `np.nan`, through any of the y-values that correspond to the duplicate x-values, to exce...
0
Is there any way we can get more sugar for events as observables e.g. import {Component, View, Directive, Output, EventEmitter, HostListener} from 'angular2/angular2'; import {DOM} from 'angular2/src/core/dom/dom_adapter'; import {ElementRef} from 'angular2/core'; @Directive({ ...
Not sure this is a good idea, or even possible, but thought I'd throw it out there. In vanilla Rx, if I wanted to listen to a DOM event to do a typeahead or something I'd do something like: //get DOM element const input = document.getElementById('myInput'); //observable of click events con...
1
Is there currently a way to run a locally built npm executable script using `deno run`. I'm thinking of something like this: deno run --allow-env --allow-read npm:<local-path> The scenario is running node code that we don't to publish to a public repository. I discovered the `createRequire` method, e...
Is there any way to use a local (modified) copy of an NPM package instead of a published one in this command? Thanks! deno run -A --unstable npm:vite
1
Hi! Thanks for a great & amazing library - been a very smooth ride so far building https://github.com/iverberk/nomad-ui with react and material-ui I'm done with the first run on the layout, and currently testing it out on mobile. I can't seem to find any documentation on Tabs and how they work with scroll / overfl...
The polymer paper-elements library contains a tab bar that is scrollable (see example E. https://elements.polymer-project.org/elements/paper- tabs?view=demo:demo/index.html). Is it possible to support this scrollable property for the tab bar in material-ui? ![schermafbeelding 2015-07-13 om 12 33 23](https://cloud.g...
1
### Describe the bug When the input is a Pandas DataFrame with multiple dtypes in the columns and the output is also Pandas, the dtypes aren't preserved but cast to a common type. I believe this happens because `check_array` does this cast: scikit-learn/sklearn/utils/validation.py Line 788 in 1882672 | dtype_or...
`Scorer` objects currently provide an interface that returns a scalar score given an estimator and test data. This is necessary for `*SearchCV` to calculate a mean score across folds, and determine the best score among parameters. This is very hampering in terms of the diagnostic information available from a cross-f...
0
function fn() {} `blah${fn()}blah` // actual: `blah${fn() }blah` // expected: `blah${fn()}blah`
This is what I get after Ctrl+K+D in VS: throw Error(`${JSON.stringify(this.value) } cannot be found in ${JSON.stringify(y) }`); As you see, a space was inserted after `JSON.stringify(...)`. The bug doesn't appear if a plain variable is used: `${x}`.
1