text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
Switching between the different app bar display options in the "Contact profile" study can cause the Flutter Gallery app to crash. I tested this on a OnePlus3T using the production version on the PlayStore and locally using the version in v0.5.1. @HansMuller I think this is behind the error in #17598 ## Steps to Re...
Flutter doctor is amazing! But, for the first hour, it may be (incorrectly) suggesting that you need _both_ iOS and Android toolchains installed _just to try Flutter_. See anecdote here: https://twitter.com/clarklab/status/998613583599669250
0
from @dhirschfeld I just ran across the bug described in issue #3020 (#3020) as our unit-tests started failing after upgrading pandas. I did a git bisection and found the first bad commit to be `9deda9e`: 9deda9e687915017cc9db7698504ead1f89ead9e is the first bad commit commit 9deda9e687915017cc9d...
When resampling from a TimeSeries with freq='MS' to freq='D' the TimeSeries is shifted forward by one day, skipping the first element: In [64]: dates = pd.date_range('01-Apr-13','01-May-13',freq='MS') In [65]: ts = pd.TimeSeries([1,2],dates) In [66]: ts Out[66]: 2013-04-01 ...
1
Challenge http://www.freecodecamp.com/challenges/waypoint-learn-how-script- tags-and-document-ready-work has an issue. The way the last two directions are written is _very_ confusing: **Add $(document.ready(function() { to the beginning of your script element.)** **Close your $(document.ready(function() { function...
Challenge http://www.freecodecamp.com/challenges/bonfire-mutations has an issue. The example from the task says: ['Mary', 'Aarmy'] should return false because 'Mary' is only 4 letters while 'Aarmy' is 5, so 'Mary' can't possibly contain 'Aarmy'. Consider this example: ['Mary', 'Maary']. 'Maary' has 5 letters, but...
0
Download link for v3.0.0-rc1 is not working: https://codeload.github.com/twbs/bootstrap/zip/v3.0.0-rc1-dist ![error](https://camo.githubusercontent.com/2ed1657127d41c3de686b0b2e3eb649c2848dfcd2e22ead2fb0bc2468d851ecf/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313138393934362f3837353134362f...
I can not download the version of the bootstrap 3 https://codeload.github.com/twbs/bootstrap/zip/v3.0.0-rc1-dist
1
##### Issue Type: Feature Idea ##### Ansible Version: ansible 1.5.4 ##### Environment: Debian 7 ##### Summary: Ability to use useradd's -o flag "allow to create users with duplicate (non- unique) UID" ##### Steps To Reproduce: not possible ##### Expected Results: This is useful if you want to create an ftp...
The recommended directory layout from the documentation (http://docs.ansible.com/ansible/playbooks_best_practices.html#directory- layout) indicates putting all playbooks at the top level, alongside inventory files. This can get really messy in a large project. We put all configuration in roles. Playbooks are basical...
0
Hi, I am using the following java code to create instance of ElasticSearch instance and create a index called "testindex". Node node = NodeBuilder.nodeBuilder().settings(ImmutableSettings.settingsBuilder() .put("path.data", "/etc/elasticsearch"...
I have a problem with the embedded Java client (for testing) after moving our our Java integration library from 1.0 to 1.4.0.Beta. We use the Java client embedded. During application restart, we check if an index exists and create or update it. Now we have the problem, that indices exists returns false, causing crea...
1
### Bug report A segmentation fault happening with PySide2 5.12.1 but not with 5.11.0. This might be an upstream issue. **Code for reproduction** import sys import faulthandler faulthandler.enable(file=sys.stdout) from matplotlib import rcParams from matplotlib.backends.backend...
### Bug report **Bug summary** Importing matplotlib after PySide2 is imported causes crash occasionally. When the order of imports is reversed, the occasional crash goes away. I'm not sure whether this is PySide2's problem or Matplotlib's. I've also reported this bug on Qt Bug Tracker. **Code for reproduction** ...
1
I only have one encoder, but it lists 50+ encoder variables in the side bar (see attached). This also happens for my decoder. I presume that it is duplicating the variables for each time step? Notice that it says 500+ inputs! Also, the graph becomes unwieldy and barely loaded in Safari (crashed in Chrome, wouldn't l...
**Error Message** UnknownError: Fail to find the dnn implementation. **System information** * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Pop!_OS 19.04 * TensorFlow installed from (source or binary): jupyter * TensorFlow version (use command below): !pip install tensorflow-gpu * Python versio...
0
I am trying for the life of me to get one of the more efficient source map option working. When I use any `source-map` oriented devtool setting, if I try and set a breakpoint in Chrome 48.0.2564.82, it jumps to a different line that what I selected. If I use `eval-source-map` not only do I get the line number jump,...
**I'm submitting a bug report** **Webpack version:** 1.10.x **Please tell us about your environment:** OSX 10.x **Current behavior:** A module is evaluated twice. **Expected/desired behavior:** This should not happen by default. It really goes against the ES6 module contract. * **If the current behavi...
0
MWE: julia> g(::Ref{Union{Int, Other}}) where {Other} = Other g (generic function with 1 method) julia> g(Ref{Union{Int, Float64}}(1)) Float64 julia> g(Ref{Union{Int, Array}}(1)) ERROR: MethodError: no method matching g(::Base.RefValue{Union{Int64, Array}}) Closest can...
This might be a duplicate of #36377, not sure. Suppose I want to make a type struct Foo{I <: Integer} v::Vector{Complex{I}} end Now, at runtime, I have a vector of integer `Complex`, but I don't know _which_ integer type, so I can just make an abstractly typed array: j...
0
### 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 `npm install` does not work if try to install one workspace to another STR: * `mkdir foo && cd ./foo` * `npm init -y` * `npm ...
### EDIT See #3847 (comment) for minimum reproduction case. --@wraithgar * * * ### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior Running `npm install --workspace=<workspace>` is resulting in npm exiting with an errorcode and the following stack trace: ...
1
* Electron version: 1.7.9 * Operating system: Windows ### Expected behavior The datalist element should let the user to select a predefined value from a drop-down list for input elements. ### Actual behavior After selecting a value from drop-down list, that value is displayed in the input field, but the "value...
Electron version: 1.7.3 beta Operating system: Windows 7 x86_64 Professional Clicking the pyramid icon on an input control associated with a data list and picking a value from the list, then evaluating `value` property of the input control, the value is expected to match the text chosen from the data list, which t...
1
### 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)** : Mac 10.13.3 * **TensorFlow installed from (source or binary)** : source * **TensorFlow version (use command below)*...
### 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.4 * **TensorFlow installed from (source or binary)** : source * **TensorFlow version (use command belo...
1
Hi all. I've asked this question here: http://stackoverflow.com/questions/35274885/can-you-have-a-stand-alone- directive-in-angular-2 It came down to using within a component, but it's throwing an error: > The component Slider has 1 elements, but only 0 slots were provided. Slider.ts import {Compon...
http://plnkr.co/edit/5731Z9N6tQ391gQtfZrA?p=preview I've been over the documentation 10 times, I've read through the source code, tutorials, the works... and I still can't wrap my head around what I'm doing wrong. all I want to do is: <app myTitle='my awesome title'> and access myTitle from inside...
1
**Do you want to request a _feature_ or report a _bug_?** I am not sure,maybe a bug. **What is the current behavior?** Uncaught TypeError: ref is not a function at commitAttachRef (eval at 18 (vendor.bf495772693e68a40763.js:746), <anonymous>:13520:7) at commitAllLifeCycles (eval at ...
This is not react bug (it is more about react docs) but I tried all those channels recommended to get help without result, so I have no choice but to post it here. I opened this issue in react docs repository but no response. Here is the link: reactjs/react.dev#3915 There is also related highly voted question on ...
0
* VSCode Version: 1.0.0 * OS Version: Windows7 64bit Steps to Reproduce: 1. type `CTRL-SHIFT-P` 2. type `install ext` Before 1.0.0, we can get installation of extensions with typing `install ext`, but latest are not because `install extension` is translated to `拡張機能` in japanese. ![efa2b5478a55e89c](https...
* VSCode Version: バージョン 0.10.12-insider コミット `ef2a1fc` 日付 2016-03-21T11:33:38.240Z シェル 0.35.6 レンダラー 45.0.2454.85 ノード 4.1.1 Even Japanese people, typing Japanese words are very painful and time- consuming because of IME composition problems. We expects that the commands are all in English. For examp...
1
Suppose you have an output `save` that is (incorrectly) connected to a non- stream: @Component( selector: 'editor', outputs: const ['save'], ... ) class Editor { // Oops, this was supposed to be an output! void save() { saveToBackend(); } } and s...
Related: #3754 (should be fixed together) Listing an event in a directive without creating an associated `EventEmitter` instance results in cryptic error: > TypeError: Cannot read property 'observer' of undefined > at Function.ObservableWrapper.subscribe (angular2.js:19403) > at EventEmitterAccessor.subscribe...
1
A checkbox/toggle in the General Settings page to disable the Power Toys system tray icon. Or, better yet (but more work), a Power Toy to choose all system tray icons to be enabled/disabled as some applications do not have the ability to completely disable their system tray icon.
It would be nice if in keyboard manager we could map macros for excels, games etc or do a task on pressing a empty key or keys that are not used like scroll lock or the entire numpad on a mouse or a keyboard like running security scan through command prompt or doing through gui like opening youtube, discord or starti...
0
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 1.0.0 **System** : Microsoft Windows 7 Professional **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module....
I right-clicked on a folder in the tree view **Atom Version** : 0.194.0 **System** : Windows 7 Entreprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Fu...
1
##### System information (version) * OpenCV => 4.5.2 (issue on 4.5.. and 4.5.4) * Operating System / Platform => Gentoo Linux 64 bit * Compiler => gcc ##### Detailed description Compilation fails agaisn tlapack-3.10.0 with /build/opencv-cuda/src/opencv-4.5.2/modules/core/src/hal_internal.cpp:1...
##### System information (version) * OpenCV => 4.5.2 * Operating System / Platform => Linux * Compiler => GCC 10.2.0 ##### Detailed description opencv fails to build with lapack 3.9.1 with the following error: /build/opencv/src/opencv-4.5.2/modules/core/src/hal_internal.cpp: In function ‘int l...
1
# Checklist * I have verified that the issue exists against the `master` branch of Celery. (not against latest commit specifically but against latest version 4.4.5) * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. ...
# 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....
1
I receive a `Neo.DatabaseError.General.UnknownError` upon trying to MERGE two particular nodes. Nothing seems special about these nodes. I'll include as much info as I can below, but I doubt this will be particularly helpful. Feel free to contact me to get more info. Also mentioned in the Neo4j-users slack. As back...
Given the following unique constraint CREATE CONSTRAINT ON (x:NODE) ASSERT x.id IS UNIQUE running the following query fails with a `Neo.DatabaseError.General.UnknownError`: CREATE (group:GROUP) WITH group MATCH (node:NODE) WHERE node.id = null CREATE (group)-[:IS_MA...
1
Make sure these boxes are checked before submitting your issue - thank you! * [x ] I have checked the superset logs for python stacktraces and included it here as text if any * [x ] I have reproduced the issue with at least the latest released version of superset * [x ] I have checked the issue tracker for the...
* I have checked the superset logs for python stacktraces and included it here as text if any * I have reproduced the issue with at least the latest released version of superset * I have checked the issue tracker for the same issue and I haven't found one similar ### Superset version 0.18.2 ### Expected resu...
1
## command flutter doctor ## exception ArgumentError: Invalid argument(s): Invalid locale 'ia_FR.UTF-8' #0 Intl._throwLocaleError (package:intl/intl.dart:231) #1 Intl.verifiedLocale (package:intl/intl.dart:225) #2 Intl.verifiedLocale (package:intl/intl.dart:210) #3 ne...
## Steps to Reproduce when I run "flutter upgrade", the process gets exited unexpectedly after Downloading Material fonts... phase ## command flutter upgrade ## exception The null object does not have a getter 'length'. NoSuchMethodError: method not found: 'length' Receiver: null Arguments: [] ...
0
Challenge Bonfire: Return Largest Numbers in Arrays has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: function la...
Update signin page to only display signin options Add signup route that uses the email-signup route handler.
0
### Preflight Checklist * I have searched the issue tracker for a feature request that matches the one I want to file, without success. * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. ### Electron Version 12.0.5 ### What opera...
I'm assuming this is controlled by Atom Shell and not Atom, so I'm reporting it here; `process.env.PATH` does no longer match the user's `$PATH` environment variable. It is instead some form of system default, "sanitized" value. This regression seems specific to OS X. I have verified `process.env.Path` is not "sanit...
0
sample session: $ rusti WARNING: The Rust REPL is experimental and may be unstable. If you encounter problems, please use the compiler instead. rusti> fn f() {} () rusti> fn f() {} () rusti> 42; <anon>:35:0: 35:10 error: duplicate definition of value f <anon>:35 ...
See comment below: #13655 (comment). * * * **old report** I tried running it in the debugger, but couldn't get gdb to find "rust_fail" for a breakpoint. I also didn't check whether this is a duplicate, sorry. $ rustc -v rustc 0.11-pre-nightly (`e332287` 2014-04-16 00:56:30 -0700) host: x86_64-unknown-linux-gn...
0
**Describe the bug** We've been hitting this for awhile but finally dug into exactly why it's happening. With the addition of a normal offset bias for shadows (#18915) normals are required in the vertex shader to compute the fragment position in the shadow frame. However if vertex normals are not available on the ge...
Minecraft Education edition has a tool for exporting .GLB files directly from the game, but the resulting GLB file won't receive shadows when displayed using three.js on Windows devices. This issue occurs when using Windows browsers (Firefox, Chrome, Edge), but not when using MacOS browsers (Chrome, Firefox, and Saf...
1
* Electron version: v1.2.4 * Operating system: docker image node:6.2.2 (debian derived) running Xvfb When running electron-prebuilt on debian in docker, electron exits WITHOUT firing the `app.on('ready', () => {})` callback. Here's the stack dump generated by running with `ELECTRON_ENABLE_STACK_DUMPING=true`: ...
* Electron version: 1.2.4 * Operating system: Linux xxx 4.2.0-38-generic #45~14.04.1-Ubuntu SMP Thu Jun 9 09:27:51 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux I was trying to set 1.2.2 - 1.2.3 versions and works fine. When updating to 1.2.4 app.on('ready'...) never works. No errors output on console. Trying "Quick...
1
**Elasticsearch version** : 5.0.0~alpha2 **JVM version** : java version "1.8.0_91" Java(TM) SE Runtime Environment (build 1.8.0_91-b14) Java HotSpot(TM) 64-Bit Server VM (build 25.91-b14, mixed mode) **OS version** : Linux ip-10-10-155-12 3.13.0-74-generic #118-Ubuntu SMP Thu Dec 17 22:52:10 UTC 2015 x86_64...
**Elasticsearch version** : alpha2 **JVM version** : build 1.8.0_74-b02 **OS version** : OS X El Capitan 10.11.3 **Description of the problem including expected versus actual behavior** : **Steps to reproduce** : 1. Install and run elasticsearch-alpha2, topbeat-alpha2, and kibana-alpha2 (Topbeat is only monito...
1
`perf(ext/websocket): replace tokio_tungstenite server with fastwebsockets #18587` The above commit seems to break websockets. Symptom: websocket sends do not go through until new messages arrive to the connection. It's easy to reproduce with example close to the one from https://medium.com/deno-the-complete-refer...
Today, I upgrade deno to 1.32.4. Websocket break in deno 1.32.4. First message successfully send but cannot send message after timeout. It work fine in deno 1.32.3. const { socket, response } = Deno.upgradeWebSocket(reqEvent.request); socket.onopen = () => { console.log("socket opened")...
1
It would be really nice if we could show the name of the shell in the tab title instead of the full path to it. It would make the tab titles shorter, and allow for easier visual recognition of which tabs are what. Ideally, if there is more than one tab with the same name it should append "-1", "-2", etc. to the tab n...
"Is it also possible to shown a short title instead of the whole path?" _Originally posted by@wahid in #491 (comment)_
1
**Glide Version** : 4.6.1 **Integration libraries** : None **Device/Android Version** : Robolectric environment **Issue summary** : When attempting to load an https image which returns a 404 error, the request is performed twice. **Issue details / Repro steps / Use case background** : I have a test case wh...
**Glide Version** : 4.0.0 **Integration libraries** : **Device/Android Version** : Emulator Pixel / API 25 **Issue details / Repro steps / Use case background** : I have trouble loading resources to an image view using the `load` method. I have test with several different resources. I observed that this...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * [ -] I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.3 ### Steps to reproduce this issue * ### Expected Result * ### Actual Result ...
* 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 * Operating System version: Ubuntu 16.04 x64 * Java version: 1.7 ### Steps to reproduce this...
0
### What problem does this feature solve? I'm using a global error handler for process errors during component render function and watchers. But it does not catch the exception thrown in the list method below: export default { data() { return { key: null, }; }, ...
### Version 2.5.17-beta.0 ### Reproduction link https://jsfiddle.net/w5d9gqmo/3/ ### Steps to reproduce In provided example: * open console * hit increment * observe computed value evaluations in console In vue terms: * create dependency structure with many paths to the same watcher (A->B, B->C, A->C)...
0
# Bug report Hi guys, when I use `dev: false` inside my app, **material-ui** classes wont load. ## Describe the bug That's the code: const port = process.env.PORT || 3000; const dev = process.env.NODE_ENV !== 'production'; const app = next({ dev: false }); const handle = app.getRequestHa...
# Bug report ## Describe the bug Used the material-ui Next.js starter `https://github.com/mui-org/material- ui/tree/master/examples/nextjs`, and wrote an app. The app works fine when running with `yarn dev`, `yarn start`, and a custom `server.js` with `dev` set to `true`, but when I deploy it using a custom `serve...
1
**Description** Is there a way to use pydantic models for GET requests? I would like to have a similar interface for both query params and for the body. So for instance, an example could look like this: class PingArgs(BaseModel): """Model input for PingArgs.""" dt: datetime.dateti...
* I added a very descriptive title to this issue. * I used the GitHub search to find a similar issue and didn't find it. * I searched the FastAPI documentation, with the integrated search. * I already searched in Google "How to X in FastAPI" and didn't find any information. * I already read and followed all...
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 ...
After upgrading to alpha.48 I noticed that the http module no longer can stand on its own... According to the examples we now have to import `rxjs/operators/map` to even get access to the essential map() method. I am wondering, isn't this a bit clunky and unnecessary? Why reveal the dependency on rx.js like this? ...
0
## 📝 Provide a description of the new feature It would be great to add the possibility to apply remapping to a specific keyboard device only (for example if the user uses a small keyboard or numpad for macros only). The keyboard can be specified with its USB PID or a more user friendly device selector. * * * If y...
## A way to switch between different keyboards, specifically those with different layouts #### My use case: I use a windows laptop with a windows keyboard layout. I remap some of those keys to my liking. When I connect to an external apple keyboard, I would like to be able to utilize a new mapping set so that the...
1
a = torch.tensor(1) b = torch.tensor(0) c = a/b (output 'Floating point exception' then crash)
This seems to be an issue with TH and not pytorch, the same thing happens in lua torch. import torch a = torch.IntTensor([0,1]) b = torch.IntTensor([0,1]) print(a.div(b)) # Floating point exception (core dumped) Another unrelated weirdness happens with float tensors when the answer is `inf...
1
In Bootstrap 3.2.0 adding a form-control-feedback icon to a select input causes the icon to hover over the select's dropdown icon, thus it's not clickable anymore. It looks like this: ![bildschirmfoto 2014-08-26 um 02 45 06](https://cloud.githubusercontent.com/assets/1466269/4038749/c4f4da48-2cbb-11e4-9f90-c1942c6...
I have found a bug at select input with validation icon. http://jsfiddle.net/57XnU/1/
1
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-aws/6373/\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:158\n BeforeSuite on Node 1 failed\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:158\n \n\nPrevious issues for this test: #26135 #26236 #27920 #28492 #29970 #30075\n#32980 #33313\n\n"
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gce-scalability/10992/\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:158\n Sep 23 11:26:08.874: Error waiting for all pods to be running and ready: 1 / 418 pods in namespace \"kube-system\" are NOT in the desired state in 10m0s\n POD NODE PHASE GRACE CONDITIONS\n node-problem-detector-v0.1-dwpq2 e2e-scalability-minion-group-i5cw Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2016-09-23 11:12:13 -0700 PDT } {Ready False 0001-01-01 00:00:00 +0000 UTC 2016-09-23 11:12:13 -0700 PDT ContainersNotReady containers with unready status: [node-problem-detector]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2016-09-23 11:16:54 -0700 PDT }]\n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:128\n \n\nPrevious issues for this test: #26135 #26236 #27920 #28492 #29970 #30075\n#32980 #33313\n\n"
1
As the title says, when I trigger my popover from a floating action button, it causes a FOUC in the top left corner of my app. ![react material ui fouc](https://user- images.githubusercontent.com/115199/31040955-7118478e-a553-11e7-8448-7b9f01431416.gif) You can see the code for my setup here: https://github.com/atr...
### Problem description Popover component renders children before applying position styling. This results in a 'flash' of the popover in the top left corner (`x: 0, y:0`) before positioning correctly. This is caused by the `setPlacement` function being wrapped in `setTimeout`. Removing the setTimeout wrapper resolve...
1
I'm using requests 2.11.1. The following code throws an exception: from requests import Request, Session from http.cookiejar import CookieJar cj = CookieJar() req = Request('GET', 'http://google.com', cookies=cj).prepare() resp = Session().send(req) The exception is: ...
Duplicate bug disclaimer: this is related to other Unicode + header issues, however, those all focus on errors raised while generating an outbound request. This applies only to inbound requests. (See also: #1082, #400, and to a lesser extent, #390, #409, #421, and #424; if this is already covered by another bug, sorr...
0
Template filled out below but this is pretty clear. This line populates Worker.task_events using `either`: celery/celery/worker/worker.py Line 377 in 04771d6 | self.task_events = either('worker_send_task_events', task_events) ---|--- However, as of version 5, the `task_events` arg is `False` here when t...
# Checklist * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was already fixed in the master branch. * I have included all related issues and possible dup...
0
# Environment 0.18.1 PowerToys Run # Steps to reproduce Search for anything on your system # Expected behavior Search results to be shown instantaneously # Actual behavior I search for an application and it takes a noticeable amount of time to find the application # Screenshots Difference in uaing keypir...
I just want to mention something, I hope it will be fixed in the next version. The power toys run is not smooth, when you write something it lags a little bit. It has to be smoother like the windows search .
1
# 🚀 Feature request I was just reading how `make style` can be automated with pre-commit hooks. Noticing how often I run and even more often forget to run `make style` before committing, perhaps others are in the same boat - and therefore I thought to propose to the dev community to (mostly) automate this process. ...
### System Info * `transformers` version: 4.19.2 * Platform: Linux-5.4.0-72-generic-x86_64-with-glibc2.29 * Python version: 3.8.10 * Huggingface_hub version: 0.7.0 * PyTorch version (GPU?): 1.11.0+cu113 (False) * Tensorflow version (GPU?): not installed (NA) * Flax version (CPU?/GPU?/TPU?): not install...
0
**I'm submitting a ...** (check one with "x") [ ] bug report => search github for a similar issue or PR before submitting [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
I have an app that requires the overloading of some stylesheet properties. A use-case example: * App defines only one style * Api (remote backend) defines a "theming" option, e.g. "logo", "primary color", et cetera. In my opinion I should be able to interpolate the styles argument just like templates, taken the...
1
**Glide Version** : com.github.bumptech.glide:glide:3.7.0 **Integration libraries** : com.github.bumptech.glide:okhttp3-integration:1.4.0@aar **Device/Android Version** : All devices **Issue details / Repro steps / Use case background** : We have a RecyclerView and each item contains ImageView In Recycler view ...
**Glide Version** :4.4.0 **Integration libraries** :RxJava/RxAndroid/RxKotlin,Retrofit,okhttp3-3.8.0,gson,jsoup. **Device/Android Version** :Huawei 6X/Android 7.0 **Issue details / Repro steps / Use case background** : ##### Issue details: I init a android project with kotlin.when I add Glide dependenies,it cra...
0
I override `Response.force_type` to handle my own custom responses (and some extra builtin types like lists). I recently tried to upgrade to Flask==1.1.x but it no longer calls my handler and throws an exception instead. ### Reproduce import pytest from flask import Flask, Response, jsonify ...
When using flask 2.0.2 and having an error in the import the flask cli does not output the traceback anymore. It seems to have stopped to work after #4283 was merged. To reproduce: make an import error and run: (.venv) PS D:\Workspace\private\notifications\python-api> flask run --debugger --reload ...
0
julia> @generated function generatedfoo(T) :(return $T) end generatedfoo (generic function with 1 method) julia> (@which generatedfoo(1)).source ERROR: UndefRefError: access to undefined reference It doesn't make much sense to me to not have this here. It'...
The following code seems to leak the scope of the variable `x`: try for i in 0:0 x = i end println("first: $x") catch err println(err) end try for i in 1:1 x = i end println("second: $x") catch err ...
0
## Bug Report **For English only** , other languages will not accept. Before report a bug, make sure you have: * Searched open and closed GitHub issues. * Read documentation: ShardingSphere Doc. Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we c...
## Bug Report **For English only** , other languages will not accept. Before report a bug, make sure you have: * Searched open and closed GitHub issues. * Read documentation: ShardingSphere Doc. Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we c...
0
* I have checked the FAQ of this repository and believe that this is not a duplicate. * I have searched the issues of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.8 * Operating System version: macOS Catalina * Java version: 1.8 ### Steps to reproduce this...
* 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: 所有版本 * Operating System version: 所有版本 * Java version: 所有版本 ### Steps to reproduce this issue 1....
0
Not able to import seaborn and the trace back refers to error in scipy. I installed all packages using pip ### Reproducing code example: import seaborn as sns ### Error message: ImportError Traceback (most recent call last) <ipython-input-13-8c064...
<<Please describe the issue in detail here, and for bug reports fill in the fields below.>> When importing stats or optimize using: import scipy.stats import scipy.optimize I get: ImportError: cannot import name '_ellipsoid' ### Reproducing code example: I have tried to uninstall and forec...
1
Hi, and first, thank you so much for your project. This problem first appeared in my work project which is unfortunately private. All my files was considered as ignore and appeared in grey in the treeview. I took some time and finally succeed to isolate and reproduce it. In a Git project, if a .gitignore from a sub...
I've the following setup: > tree . └── ipfs ├── .gitignore ├── ipfs ... > cat ipfs/.gitignore ipfs > echo because ipfs/ipfs is a binary. and atom is ignoring the entire ipfs/ directory > echo this shouldnt happen because the .gitignore i...
1
### Version 2.6.10 ### Reproduction link https://codesandbox.io/s/functional-components-issue-ubtr8 ### Steps to reproduce Create a functional component. Add that component to another with a class attribute ### What is expected? The class attribute should be added to the root element of the component ### Wh...
### Version 2.5.2 ### Reproduction link [https://jsfiddle.net/hastom/uomhejLe/4/](https://jsfiddle.net/hastom/uomhejLe/4/ ### Steps to reproduce 1. Inspect list with dev tools 2. Click add to end button 3. All 4. nodes highlithed that means they were updated ### What is expected? First item dropped, n...
0
**Symfony version(s) affected** : 4.1.2 **Description** Since i update from 4.1.1 to 4.1.2, default binding from controllers failed : Controller "App\Controller\Admin\KitController::edit()" requires that you provide a value for the "$customDir" argument. Either the argument is nullable and no null value has been...
**Symfony version(s) affected** : 3.4.13 (and other new patch releases for 4.0 & 4.1) **Description** I just updated my app from `3.4.12` to `3.4.13` and have an error with a service configuration. **How to reproduce** Add a binding by variable name for an argument of a controller action. I have a controller l...
1
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. If Comment is done in a block format it fails challenge. ![image](https://cloud.githubusercontent.com/assets/10080526/9741077/58226...
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. Left side error checking seems wrong ![comment your javascript code](https://cloud.githubusercontent.com/assets/6602253/9322092/8ff...
1
opencv-4.1.2 breaks vlc, e.g., since it compiles some files with gcc instead of g++ Some parts of /usr/include/x86_64-pc-linux-gnu/opencv4/opencv2/core/cvdef.h can only be compiled by a C++ compiler, e.g., #ifndef CV_CXX11 # if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1800) # define CV_CXX1...
##### System information (version) * OpenCV => 3.4.1 * Operating System / Platform => Linux * Compiler => gcc-7-20180222 (a 7.3.1 snapshot) vlc-3.0.1 fails to build against opencv-3.4.1, because the C compiler produces and error at line 485 of /usr/include/opencv2/core/cvdef.h. The error message is: ...
1
* For Visual Studio Code 0.10./6 * And for Windows 7 Enterprise SP1 * When in the cmd I `type %HTTP_PROXY%` * Then I get "http://proxy.mydomain.com:8083" * And when I try do install any extension, e.g. PureScript language supports. * Then I get the error: `getaddrinfo ENOTFOUND proxy.ml.mydomain:8083 prox...
Whenever I try to install any extension, using _ext install_ , I get a **connect ETIMEDOUT 191.238.172.191:443** error. Trying to navigate to **https://191.238.172.191** in the browser produces a warning regarding the certificate being valid only for * **.market.visualstudio.com** , but I'm allowed to proceed. Shou...
1
Why this framework using Dart ? not using more stable and robust like TypeScript or ES6 Javascript ? Look at Angular and other TypeScript based framework, it stable and easy to understand for large team and beginner. So any plan to leave Dart and using TypeScript language ?
Hi, I don't know to ask for help for implementation so I fire an issue. If you find this not appropriate, please delete. Thanks. In iOS, we have a `UITabBarController` which stays permanently at the bottom of the screen when we push to a new ViewController. In iOS, we have a UITabBarController which stays permanent...
0
It is unclear in the prompt whether the test function `sym(A, B, C, D, E, F)` is requesting the user to create a function that accomplishes: `return A △ B △ C △ D △ E △ F` OR `return ((((A △ B) △ C) △ D) △ E) △ F` The syntax difference is important. For the following test case: `A = [3, 3, 3, 2, 5] B = [2, 1, ...
This is a bit of a formal issue, not a "bug" per se: In CSS, proper font names like Arial or "Times New Roman" should be Title Case (and in quotes where applicable). Generic font names like sans-serif or monospace should be lowercase. \--- wm Challenge Set the Font Family of an Element has an issue. User Agent...
0
* VSCode Version: Version 1.2.0 (1.2.0) * OSX Version: 10.11.5 #!/bin/bash export GOPATH=$HOME/go export GOBIN=$HOME/go/bin export GOAPP=$HOME/go_appengine export JSBIN=$HOME/node_modules/.bin/ export ANDROID=$HOME/Library/Android/sdk/platform-tools/ export PATH=$PATH:$GOBIN...
#3246 When tab focus mode is on, doing the following: * Select text editor * Press `tab` * At this point I have no idea what is focused as I can't see anything on the UI with a border. * Pressing `enter` will add a new line where the cursor was, pressing `enter` again will not add another line * Pres...
0
-- -- ******** Summary ******** -- General: -- CMake version : 3.14.0 -- CMake command : /root/miniconda3/envs/torchbeast/bin/cmake -- System : Linux -- C++ compiler : /usr/bin/c++ -- C++ compiler id : GNU -- C++ c...
When building pytorch with docker with `docker build -t pytorch_cuda9 -f tools/docker/Dockerfile9 .` I get the following error and the build stops: `Step 10/14 : RUN git submodule update --init ---> Running in 34e6a586e55a fatal: Not a git repository: /home/ubuntu/pytorch/.git/modules/torch/lib/gloo Unable to fi...
0
// CREATE INDEX curl -X PUT -d '{ "number_of_shards" : 1, "number_of_replicas" : 1 }' "http://localhost:9200/services" // MAPPING curl -X PUT -d '{ "service": { "properties": { "name": { "type": "string", "index": "not_analyzed" }, "pin": { "type":"geo_point" }, "currentstatus": { "ty...
Currently the Completion & Context Suggesters suggests from documents that were deleted but not still merged away by Lucene. Ideally the suggesters should never suggest from deleted documents. The solution is to encode lucene docids in the generated FST used by suggesters, and filter out suggestions from deleted doc...
0
**Description** Cache pools can easily be configured in the framework bundle with framework: cache: pools: cache.pool1: adapter: cache.adapter.redis cache.pool2: adapter: cache.adapter.redis But all the...
What do you think about deprecating the `Date` and `Time` constraints in favor of add a `format` option to the `DateTime` constraint. We can do that using the `DateTime::createFromFormat()` and `DateTime::getLastErrors()` to check if a date is valid based on a specific format. What do you think? Can be this discu...
0
##### System information (version) * OpenCV => 4.1 * Operating System / Platform => Ubuntu 18.04.2 LTS * Compiler => g++ (Ubuntu 7.3.0-27ubuntu1~18.04) 7.3.0 ##### Detailed description Build output check failed: Regex: 'unrecognized .*option' Output line: 'cc1: warning: unrecognized...
##### System information (version) * OpenCV => 4.0.1 * Operating System / Platform => Linux 64-bit (Ubuntu 18.04) * Compiler => Clang 7.0.1 ##### Detailed description The following test in `imgcodecs` is failing: [ RUN ] imgcodecs/Imgcodecs_Image.read_write/3, where GetParam() = "jp2" ...
0
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Developer should be able to shallow test components in pages using `withRedux` ## Current Behavior Cannot access methods or state within components in pages using `withRedux` ## Steps to Reproduce (fo...
❌ This won't hot reload when changes are made on render function: import React from 'react' export default class Opa extends React.Component { render = () => ( <div>Welcome to next.js!</div> ) } ✅ But this will hot reload when changes are made on render function: ...
0
Right now it is not possible to collapse the xml elements in the editor. ![code_xml](https://cloud.githubusercontent.com/assets/5127501/11301612/ca8c46f8-8f98-11e5-80d3-685bae4abb78.png)
I searched but couldnt find this in the issues. Id love to be able to collapse sections of the code. Any thoughts?
1
**Elasticsearch version** : 2.3.0 **Plugins installed** : [head, decompound, naturalsort] **JVM version** : 1.8.0_03 **OS version** : Linux Mint 18 **Description of the problem including expected versus actual behavior** : When performing a multi_match query with fuzziness enabled results with typos have higher ...
Using this query: "query": { "fuzzy": { "_all": "excellent" } The top results are all misspellings of excellent, likely as the result of IDF. This is surely behaviour that typical end users would see as a bug? If nothing else the docs for fuzzy query should reference FuzzyLikeThis query as an alternative....
1
**Marc Logemann** opened **SPR-1623** and commented wouldnt it make sense to enhance WebApplicationContextUtils with sister methods which accept a PortletContext? Currently I am working in a Portal Environment where its not easy to get a ServletContext, but a PortletContext is not different at all, unfortunately We...
**Keith Donald** opened **SPR-5368** and commented It is common to use a component-scan directive in your app-config to populate your root application context. Unfortunately, discovered `@Controllers` will not be hooked into the DispatcherServlet pipeline without also configuring a custom DefaultAnnotationHandler...
0
In `test_auc_duplicate_values` we use `reorder=True` which is deprecated. If we remove that, the test fails. I'm confused as to what is happening?
I find the equal distance warning in the neighbors module a bit annoying and think we should change the default value, so that no warning is raised. As iris has duplicate points, the warning will always be raised there. For digits, I think the warning is raised because entries are discrete (0-16) so same distances ...
0
* Electron version:1.8.1 beta * Operating system: mac os high sierra ### Expected behavior system: mac os 10.11.6 ![image](https://user- images.githubusercontent.com/13149266/31598921-d866d882-b215-11e7-9c19-78411fcfdd66.png) ### Actual behavior ![image](https://user- images.githubusercontent.com/13149266/3...
* Electron version: 1.7.6 * Operating system: MacOS High Sierra GM ### Expected behavior Title bar should not be invisible ![screen shot 2017-09-14 at 11 22 04 am](https://user- images.githubusercontent.com/320654/30441406-f34fe61a-993e-11e7-8592-244e50a92bb9.png) ### Actual behavior Title bar is invisible ...
1
**I'm submitting a ...** (check one with "x") [x] bug report **Current behavior** * **I'm submitting a ...** * bug report * **What modules are related to this Issue?** * [X universal * **What is the current behavior?** Unable to server-render "code" placed in the `template` as the parser isn't sure...
**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
I'm new for Atom so I don't have a clue how to fix this. On Windows, I copy some text that have a trailing carriage return from other application, such as excel, notepad, then try to search the opening doc in Atom. Then I was surprising that there's no match. Because you cannot see the trailing carriage return in an...
Pasting something like this in the Find box displays incorrectly 'use strict'; ![paste](https://cloud.githubusercontent.com/assets/127535/5308709/f7235d2a-7bce-11e4-90c9-a2f6b2f092b8.png) It seems like the box gets the height of the content so the overflow hidden doesnt happen. ![css](...
1
My understanding is that `org.neo4j.server.transaction.timeout` is only for server mode. I would like to request a timeout feature for embedded mode, to automatically abort any transaction longer than a given time. Ideally this could be overridden in an individual transaction. Previously we used the recommendation he...
I am using Java API in an embedded graph (version 1.9.4) and using the following code to get the ShortestPath - GraphAlgoFactory.shortestPath(expander, 15) where expander is a expander with specific relationship types. In rare cases, the graph (which is about 28 G on a JVM sized to 10G) just spins for more than ...
1
Challenge Target the Children of an Element Using jQuery has an issue. User Agent is: `Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. * * * After Loading in the...
Challenge Waypoint: Clone an Element Using jQuery has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. ## Issue I believe...
1
### Problem description It's a weird issue. The border of a TextField has the color black (see Screenshot): ![bildschirmfoto 2016-12-06 um 19 26 21](https://cloud.githubusercontent.com/assets/2188790/20939277/7f42c96e-bbee-11e6-877b-7ffcd8ed283d.png) Checking the CSS in the developer console: ![bildschirmfoto 201...
### `borderColor` does not work! I copied the code from http://www.material-ui.com/#/components/text-field. _Styled examples_ const styles = { errorStyle: { color: orange500, }, underlineStyle: { borderColor: orange500, }, floatingLabelStyle: { co...
1
Please go to Stack Overflow for help and support: Microsoft Windows [Version 6.3.9600] (c) 2013 Microsoft Corporation. Alle Rechte vorbehalten. C:\Users\Fritz>pip install "C:\tensorflow\tensorflow\contrib\cmake\build\tf_pyth on\dist\tensorflow_gpu-1.5.0-cp35-cp35m-win_amd64.whl" Requirement 'C:\tensorflow\ten...
As announced in release notes, TensorFlow release binaries version 1.6 and higher are prebuilt with AVX instruction sets. This means on any CPU that do not have these instruction sets either CPU or GPU version of TF will fail to load with any of the following errors: * `ImportError: DLL load failed:` * A crash w...
1
Challenge http://beta.freecodecamp.com/challenges/waypoint-declare-string- variables has an issue. Please describe how to reproduce it, and include links to screenshots if possible.
Challenge http://beta.freecodecamp.com/challenges/waypoint-declare-string- variables has an issue. Please describe how to reproduce it, and include links to screenshots if possible.
1
Hi, I found two duplicate property set in exported CSS. I don't know if it's the purpose or there's problem with LESS to CSS conversion. /* line 3483, padding */ .btn-group-xs > .btn { padding: 5px 10px; padding: 1px 5px; font-size: 12px; line-height: 1.5; borde...
I have popovers in hrefs in a modal div with couple of text and number inputs and all inputs are cleared out when popover is hiding.
0
### System Info * transformers version: **4.30.2** * Python version: **3.10.11** * System: Ubuntu 22.04.2 LTS ### Who can help? @ArthurZucker @younesbelkada ### Information * The official example scripts * My own modified scripts ### Tasks * An officially supported task in the `examples` folder (su...
### System Info platform==Ubuntu18.04 python==3.10 transformers==4.29.2 ### Who can help? @ArthurZucker ### Information * The official example scripts * My own modified scripts ### Tasks * An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...) * My own task or dataset (give...
1
![test image](https://camo.githubusercontent.com/83c710b6f795a5c7f7c7c1e6765212a93e655a010dcb5a60bee5ed3c321af020/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3533303938382f323231363537332f31613966393434382d396130642d313165332d383238382d6434633337646265666339322e706e67) I believe the spacing b...
This is the underlying problem raised in #1178. It is illustrated by the test below; note that boundary anomalies are visible in all forms--agg on the screen, and pdf and svg displayed with a viewer--but in different places depending on the viewer and the size of the figure as rendered. Note that the colorbar is ...
1
Your website says "... contribute SWIG interfaces to your favorite language ...". It will be good if yo have pure implementations in other languages like JVM and .NET without having to use SWIG.
Issue to trace effort of swig interface for java. Started implementation - will update with progress. If anyone has any comments/tips - please feel welcome to join the discussion!
1
It would be a good enhancement to have a 'Open Recent' on the File Menu, like in Sublime.
I would like to be able to find files or folders that I have recently opened in previous editing sessions. On Windows this is usually done under the File menu. For example: File > Recent Files > (displays a sub menu of top 10 most recently used files in descending order). File > Recent Files > > (top 10 most rec...
1
What steps will reproduce the problem? 1. create file "a" and "b" 2. run `os.Rename("a", "b")` What is the expected output? file "b" should be atomically replaced with file "a" What do you see instead? rename a b: Cannot create a file when that file already exists. ...
by **awalterschulze** : Before filing a bug, please check whether it has been fixed since the latest release. Search the issue tracker and check that you're running the latest version of Go: Run "go version" and compare against http://golang.org/doc/devel/release.html If a newer v...
0
**Describe the bug** A clear and concise description of what the bug is. **If your problem is not a bug, please file under Support or Usage Question** **To Reproduce** Code snippet to reproduce, ideally that will work by pasting into something like https://npm.runkit.com/axios, a hosted solution, or a repositor...
We're using `axios` both on the back-end, to communicate with some third-party APIs, and on the front-end, to communicate with our back-end. I recently ran into some problems trying to add some client-side tests for code that uses axios. Because axios detects its environment at require time, even using something like...
0
Description: When using bundle inheritance and template inheritance at the same time (where one of the child bundle's templates extends one of the parent bundle's templates), an error is thrown. Expected outcome: It should be possible to extend a parent bundle's template from a child bundle's template. How to rep...
What do you think about creating an interface EventDispatcherAware, a trait EventDispatcherAwareTrait and maybe a tag too (event_dispatcher_aware) to inject automatically the EventDispatcher on services?
0
Both danish and faroese keyboard layouts uses Alt Gr-´ to print the pipe character "|" but the key binding resolver registers Alt Gr-´ as "ctrl-alt-[" I tried adding the following rule to keymap.cson: '.workspace .editor:not(.mini)': 'ctrl-alt-[': 'native!' But this causes atom to both fol...
Original issue: atom/atom#1625 * * * Use https://atom.io/packages/keyboard-localization until this issue gets fixed (should be in the Blink upstream).
1
Hi, Please make typescript auto-property support like C# to easier use. Thanks.
When you're creating a class and you want to define some properties you have to write much code to do so. **Current way** class MyClass { /** * Creates a new Instance of this class */ constructor(private _id: number, private _name: string) { } ...
1
Currently with the extensions API, we have access to output channels (creation and access through `vscode.window.createOutputChannel()`). And likewise, we can get adhoc user input through `vscode.window.showInputBox`. I think what would be really helpful is if the extensions API included the capability to have a con...
While it is awesome that we have the Debug Console for an interactive console experience while debugging, it would be ideal if VS Code also supported a persistent REPL (interactive console) which could also be used at any time. Users of languages such as PowerShell, F#, Python, Ruby, and many others would benefit fro...
1
I want to know if there is a problem with my transaction manager or is the SQL statement incorrectly written, or is it something else?I hope anyone can give me some hints. The development environment:hibernate+spring Exception: com.google.common.eventbus.EventBus$LoggingSubscriberExceptionHandler handleException ...
Supporting `DISTINCT` SQL syntax is on the way. We plan to support `DISTINCT` SQL syntax. The following is our thought about `DISTINCT`, welcome to discuss this solution. ##### SQL Usage | None GROUP BY | GROUP BY ---|---|--- Simple SELECT | SELECT DISTINCT price FROM item; | SELECT DISTINCT price FROM item GR...
0
The title says everything. If you have several files open, and press CTRL-O, at the moment the open dialog will default to "Recently Used". However, it makes a _lot_ of sense to default, as a starting point, to the directory where the file currently viewed is. For example if you are working on the file `youtRepo/aut...
When you create a new buffer and hit save, Atom will present me with a save dialog and the default selected folder is the project root. That's almost never the place I want to put a file. Sublime Text was a lot smarter with this -- although I do not remember the exact heuristics. For example, it would propose saving...
1
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 0.166.0 **System** : Mac OS X 10.10.2 **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Atom can only handle files < 2MB for now. At /Applications/Atom.app/Contents/Resources/app/src/project.js:355 Error: ...
Uncaught Error: Atom can only handle files < 2MB for now. **Atom Version** : 0.153.0 **System** : linux 3.13.0-40-generic **Thrown From** : tree-view package
1
They shrink so much that with many open files the titles become unreadable, e.g.: ![screen shot 2015-04-15 at 10 51 33 am](https://cloud.githubusercontent.com/assets/989043/7161499/67e4d598-e35d-11e4-8b1e-287259ce63f7.png)
When I select some text and then paste something instead of it, sometimes I get random piece of the pasted text being selected. Look at the screencast: ![atom_paste_instead_selection](https://cloud.githubusercontent.com/assets/7574192/5847084/71d1d11a-a1da-11e4-93f3-d76f59c67e5c.gif) Here I'm selecting pieces of ...
0
ERROR: type should be string, got "\n\nhttps://mp.weixin.qq.com/s/j9ibj4ZYAqNZwwvSpIAtLA states a 64% simulator CPU\nusage which is plausible but also seems like a bug.\n\nCould be related to #13203 and/or iOS simulator only too\n\n"
## Steps to Reproduce Create a widget below: class Loading extends StatelessWidget { @override Widget build(BuildContext context) { return new Column(mainAxisAlignment: MainAxisAlignment.center, children: [ new Center(child: const CupertinoActivityIndicator()), ...
1
## Issue description The current Windows build fails, caused probably by some erroneous type, provided to a CUDA C++ class. I made a fresh build after removing all the content of the ./build directory ## System Info collect_env.py: Collecting environment information... PyTorch version: 1.5.0a0+e...
Kind of similar to #25389 Sometimes our Eigen build fails this way: C:\Jenkins\workspace\caffe2-builds\py2-cuda9.0-cudnn7-windows-build\third_party\eigen\Eigen\src/LU/InverseImpl.h(366): error C2993: 'Derived': illegal type for non-type template parameter '__formal' C:\Jenkins\workspace\caffe2-bui...
1
By default many model selection tools such as `cross_validate`, `validation_curves` and `*SearchCV` catch exceptions, raise a warning and score the model with `nan`. This can be a nice behavior, especially for `*SearchCV` estimators that can explore invalid hyper-parameter combinations. However the warnings can be h...
### Describe the bug Hello, I am using a sklearn.tree.DecisionTreeRegressor for two tasks where one task is just a 'subsets' of the other and I expect to get the same tree, but I don't. In the two tasks, the examples are identical, where task2 the feature matrix is duplicated horizontally, i.e. if the feature spac...
0
Hello, I try to upgrade my vue app to 1.0 and get the following error over 200 times for each for loop: `[Vue warn]: Duplicate value found in v-for="book in books": "\"". Use track- by="$index" if you are expecting duplicate values.` This is my template code with 2 loops: <select name="relation[boo...
### Version 2.5.2 ### Reproduction link https://codepen.io/spenspazmer/pen/aLXGGY?editors=1011 ### Steps to reproduce 1.Create a v-for list with items 2.Inspect and observe the item elements 3.Trigger an action that shifts and pops the list 4.Observe ### What is expected? The items should be removed with...
0
**Steps to reproduce and a minimal demo of the problem** http://plnkr.co/edit/h02LVM8sPwKJ6ljDVShz?p=preview _What steps should we try in your demo to see the problem?_ Should see right away **Current behavior** when using a method along with [ngClass], debugging shows that the classes get applied correctly, b...
**I'm submitting a ...** (check one with "x") [x] feature request **Problem** > Inspired by #13757 The template provided by an ancestor component is not useful to a descendant component since its content cannot be reference nor can it be used to build the descendant (even with #13764). This li...
0