text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
* VSCode Version: 1.1.1 * OS Version: Windows 10 x64 Steps to Reproduce: ![unnamed](https://cloud.githubusercontent.com/assets/13858505/15593349/0753f4b4-23b4-11e6-92bd- aa73baaef5eb.png) 1. When i write this kind of code, part of it is highlighted as green 2. Example if i write `var testing = test ? cons...
* VSCode Version: 1.2.0 - insider * OS Version: Elementary OS Steps to Reproduce: 1. In elementary os, I am able to use ctrl+c/ctrl+v within terminal, This functionality is missing in integrated terminal. 2. So please add direct paste and copy functionality in integrated terminal. It's a cool feature.
0
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 7....
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details I have enabled nativeWindowOpen an...
1
denoland extension is installed in the VSCode IDE, but it still doesn't works. ![deno error](https://user- images.githubusercontent.com/6489613/84145237-24981c00-aa77-11ea-9a5e-7ffbaac4cc4e.png)
I switched from one of the now-deprecated extensions, which was working, and this one isn't working properly. In fact, it seems to have all the same errors that you get with plain TypeScript and no Deno extension: ![main_ts_—_jlox_and_Issues_·_denoland_vscode_deno](https://user- images.githubusercontent.com/3674979/...
1
I am now experimenting with the ES6 import syntax (at least I think it's ES6) and I noticed that the following is formatted, in my opinion, wrongly: import { Controller as UploadController, State as UploadState } from './controllers/upload'; should be: import { Contr...
export{x,y as yy,z}from "foo" Should be fixed to export { x, y as yy, z } from "foo" Similarly, import{x,y as yy,z}from "foo" Should be fixed to import { x, y as yy, z } from "foo"
1
**Gurpreet Singh** opened **SPR-3410** and commented The xml shown in section 3.2.1.1 of documentation is missing the following text "http://www.springframework.org/schema/beans" in xsi:schemaLocation attribute of beans tag. If we try this xml, we get org.xml.sax.SAXParseException with message ' 'SchemaLocation: s...
**Stephen R. Saucier** opened **SPR-4718** and commented the formatFieldValue method in AbstractPropertyBindingResult does not locate any PropertyEditors using PropertyEditorManager.find(...). This means that any PropertyEditors located using the JavaBeans convention of having the name the same as the class it is ed...
0
Challenge http://www.freecodecamp.com/challenges/waypoint-manage-packages- with-npm has an issue. This waypoint should be updated to match cloud9's updates, however, there is a legitimate issue that could confuse a beginner on item 12. The command listed in item 12 should be changed to 'how-to-npm' in order to run t...
The directives of the challenge http://www.freecodecamp.com/challenges/waypoint-build-web-apps-with-express.js need to be updated to the new C9 user interface.
1
TL;DR : I think this can be done in the **density tests** , we just need to vary them so that there are **collisions** (dupe pods) being submitted. ... In a real kube system, there is a likliehood that 10 or 20 RC's might be created simultaneously. We should ensure that the if we submit, say 100 concurrent pod crea...
_Problem_ There is alot of jargon in the scheduler code, some examples: * `hardPodAffinityWeight` == RequiredDuringSchedulingScheduling * `softPod...` == "PreferredDuringScheduling pod affinity." * Symmetry, a major part of the affinity algorithm implementation, is also undocumented in docs/devel/scheduler. ...
0
Currently we can create a layout by setting the width (col- _-_ ) of the elements. We can also create spaces between them by leaving cols blanks. It would be great if we can create vertical spaces between elements with the same logic. In a tiny project I made, you can see an exemple of a possible implementation ...
Bootstrap CSS adds `margin-bottom` to some components and `margin-top` to others. Then if, for example, you start a new row with a `h1` (which has `margin-top`) it will be "natively" pushed away from the previous component creating a good sense of component separation right out-of-the-box. In contrast if you start th...
1
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened Airflow 2.2.5 Running a DAG and got this error for a task. [2023-02-22, 09:38:16 EST] {standard_task_runner.py:79} INFO - Running: ['airflow', 'tasks', 'run', 'icwg_fastqsr_ftp_service_volume', 'find_service_volume_for_...
### Apache Airflow version 2.4.1 ### What happened Running `airflow db upgrade` on an Airflow installation with 100 DAGs fails with this error: ERROR [airflow.models.dagbag.DagBag] Failed to write serialized DAG: /usr/local/airflow/dags/REDACTED.py Traceback (most recent call last): File "...
0
I believe this framework is very well put together and I know its based on LESS but are you thinking about adding an option for the people that use SASS.
As of `3.0.0` you had the ability (albeit undocumented) to use nested containers, as such; <div class="container"> <div class="row"> <div class="col-md-12 col-lg-10 col-lg-offset-1"> <div class="container"> <!-- centered elements here --> ...
0
See below for Minimum Working Example or whatever that's called ( **edit** : add versioninfo()): julia> x = [1 2; 3 4] 2×2 Array{Int64,2}: 1 2 3 4 julia> using LinearAlgebra julia> x .-= LinearAlgebra.I ┌ Warning: broadcast will default to iterating over its argume...
Broadcasting is not only super convenient, but it also gives new features. For example, broadcasted operations can generate GPU kernels with GPUArrays.jl. So it's really nice to be able to broadcast operations... but this one seems missing. I can't seem to do: for j in 1:length(u), i in 1:length(...
1
**TypeScript Version:** 1.7.5 / 1.8.0-beta / nightly (1.9.0-dev.20160217) **Code** // A self-contained demonstration of the problem follows... **Expected behavior:** **Actual behavior:**
I'm trying to follow the instructions here, specifically this part: > If file name is omitted then compiler will check if jsx options is specified > - if it is set and is not JsxEmit.None then source text will be interpreted > as '.tsx'. However, I'm not getting the expected result. **TypeScript Version:** 1.8.10...
0
# 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....
# 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. ...
0
Quite a boatload of errors considering I copied the install instruction from sklearn site itself. > Ernests-MacBook-Pro:~ ernest$ pip3 install -U numpy scipy scikit-learn > Requirement already up-to-date: numpy in /usr/local/lib/python3.7/site- > packages (1.14.5) > Requirement already up-to-date: scipy in /us...
#### Description Unable to `pip install`(compile error: `PyThreadState` has no member ...) with Python 3.7rc1. My apologies if this has been reported, but I couldn't find it in the issues (closed/open) nor any pull request for it. There have been similar issues with pyyaml (yaml/pyyaml#126), numpy (numpy/numpy#105...
1
# Checklist * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was alrea...
# Checklist * I have checked the issues list for similar or identical enhancement to an existing feature. * I have checked the pull requests list for existing proposed enhancements. * I have checked the commit log to find out if the if the same enhancement was already implemented in the master branch...
0
Any updates? I got a lot of ts errors when I used `@deno-types` to include type definitions for the ky libarry. // @deno-types="https://deno.land/x/ky@v0.23.0/index.d.ts" export { default as ky } from "https://deno.land/x/ky@v0.23.0/index.js From the error message, it is the `lib.dom.d.ts` w...
When bundling the following code to be used in the browser, I get the error _Uncaught SyntaxError: Identifier 'i2' has already been declared_ when loaded in the browser. ### index.html <script type="module" src="bundle.js"></script> ### modules.js import rough from 'https://unpkg.com/r...
0
A clear and concise description of what the bug is. #### How to reproduce the bug 1. Go to https://superset.apache.org/docs/api 2. Scroll down the page. 3. You will see that the page will not scroll to the end. This applies to multiple pages in the documentation. Pressing PgDown on keyboard or using docu...
## Screenshot ![Screenshot 2022-02-23 at 11 52 18](https://user- images.githubusercontent.com/63287675/155305469-ce03e338-8689-401d-a174-13ee9167a841.png) ![Screenshot 2022-02-23 at 11 53 46](https://user- images.githubusercontent.com/63287675/155305680-c74d1da7-fc5f-4398-b6d3-8bbb9b84e3b3.png) ## Description Ele...
1
_Original tickethttp://projects.scipy.org/scipy/ticket/715 on 2008-08-07 by trac user mgogoulos@..., assigned to unknown._ scipy.object0 and scipy.object result in segmentation fault, see the following: $ gdb python ... (gdb) run -c "import scipy; obj = scipy.object0()" Starting program: /usr/bin/python -c "impo...
### Is your feature request related to a problem? Please describe. ## Motivation Sometimes you have pairs of values x, y and you want to know whether y is independent of x or not. People sometimes compute a test statistic of x, y pairs directly, examples are Pearson/Spearman coefficient, Kendall tau or similar. Ot...
0
**Describe the bug** when using the postgres version of Insert, the ` sqlalchemy.dialects.postgresql.Insert.on_conflict_do_nothing` method, if you provide a `constraint` argument, it doesn't properly escape it, causing a SQL syntax error on a otherwise valid constraint name. if you add escaped quotes to the constr...
**Migrated issue, originally created by Adrian (@thiefmaster)** In some cases it would be useful to have a set on the python side, e.g. because you don't need/want duplicates and the set api is nicer to use in that case (as you won't have to worry about removing dupes). Since there's already `as_tuple`, I'd deprec...
0
Using a couple Facebook-like links in my navbar ![grab 2013-08-21 a 6 05 52 pm](https://camo.githubusercontent.com/6cabc9d4f1d85da3d4e6316ee1fc4edec9dfed5d6e86d680c75b4889652df390/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3332303439342f313030343939302f31356631383634382d306161652d313165332d3...
related to issues #8500 , #7808 , #4929 ; using `.hidden-sm` to hide span within `.nav > li > a` . Because class is `display: block` above -sm then text wraps to new line. Would you consider `.hidden-*` classes to be `display: inline-block` instead ? Here's a jsfiddle of the two cases - but the repercussions could b...
1
# Bug report **What is the current behavior?** Using webpack in the electron js app I can't import native module libraries like `ffi-napi`, `ref-napi`, etc in my application. Libraries like those generally expects node's `__dirname` to set as global. Thus, setting `node: {__dirname: true}` would work in my app but...
Simple, the nodejs webpack api doesn't run the same way as the webpack command line. I'm trying to write custom loaders and plugins, I'm stuck at the loaders and after banging my head, i see that it doesn't even work the same way as the command line one does. Why is this? How can i make the webpack node API behavior...
0
This is a very outdated way to do search. Modern editors will show the first hit starting from the current caret position as you type the search. It feels very odd to type something in the search box, wait for it to do something and have nothing happen. I keep thinking this means it can't find any matches in the docu...
Here's another Sublime Text feature Atom doesn't have that Sublime users may miss. {`Cmd`,`Ctrl`} + `i` starts an incremental find, which works like {`Cmd`,`Ctrl`} + `f` but jumps to the first match as you type and closes when you hit enter. It's great for quickly getting to a different part of the file. I'm movin...
1
I want to integrate my Flutter module into my existing app. I follow this link for a tutorial but it requires me to copy dart codes and assets into my existing project. That's not good. Is there any way to encapsulate my Flutter module as a Framework? and I can use that Framework without setting Flutter environment i...
I am trying to integrating Flutter into our current iOS project. However, we have a lot of members in our team, it is really hard to push all of them install flutter environment. So I tried to embed only App.framework, Flutter.framework and flutter_assets in the project, and it seems work fine in other people's m...
1
**Migrated issue, originally created by Adrian (@thiefmaster)** from sqlalchemy import * from sqlalchemy.dialects.postgresql import ARRAY, array from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import * def _patch_sa_cte_fix(): import pkg_re...
**Migrated issue, originally created by Henrique Alves (@hcarvalhoalves)** I'm trying to do something that, in principle, should be simple: inject a expression-based column into an ORM-based Query. I've tried this: query = db.session.query(MyClass).all() # Using `now` just as an example, ideally ...
1
#### Describe the bug 在发送 delete 请求时,传入 data 在 0.19.2 版本的时候,该 data 是能正确发送,并被后端 `@RequestBody` 正确解析的,在 0.20.0 版本后该 data 没有被正确发送,进而会导致数据接收不到或者发生 400 错误 #### To Reproduce import Axios from 'axios' Axios.delete('/api', { headers: { 'Content-Type': 'application/json' }, ...
#### Describe the bug Axios last version (0.20.0) does not use data from config when making DELETE request. In 0.19.2 it's working fine #### To Reproduce axios.delete("...", { data: { ids: [...] }, }).then(response => { ... }).catch(error => { ... }); #### Expect...
1
I'm trying to add attributes to my rendered radios $builder ->add('myRadios', 'choice', array( 'choices' => array( 'one' => 'uno', 'two' => 'due'), 'multiple' => false, 'attr' => array('class' => 'testClass'), 'expa...
It would be nice to be able to define extra HTML attributes for choices in a choice list that are added to the `option` or `input` tags. Origin of this ticket: #3456
1
This is not urgent. There is a ton of deprecation warnings across many modules with pytorch-1.7+ and a few with python-3.8: (I hard-wrapped the lines to avoid the need to scroll, but it makes somewhat harder to see the warnings): src/transformers/modeling_deberta.py:18 src/transformers/modeling_deber...
### System Info - `transformers` version: 4.20.1 - Platform: Windows-10-10.0.19044-SP0 - Python version: 3.8.12 - Huggingface_hub version: 0.4.0 - PyTorch version (GPU?): 1.11.0 (True) - Tensorflow version (GPU?): 2.8.0 (True) - Flax version (CPU?/GPU?/TPU?): not installed (NA) ...
0
# Environment Windows build number: [run "ver" at a command prompt] Windows Terminal version (if applicable): Any other software? # Steps to reproduce # Expected behavior # Actual behavior ![image](https://user- images.githubusercontent.com/13494828/62001482-0148d480-b124-11e9-9c2...
# Environment Windows build number: [run "ver" at a command prompt] Microsoft Windows [Version 10.0.18950.1000] Windows Terminal version (if applicable): Version: 0.3.2142.0 Any other software? vim/nvim Ubuntu 18.04.2 LTS # Steps to reproduce forwarding a l...
0
deno 1.32.2 (release, x86_64-unknown-linux-gnu) v8 11.2.214.9 typescript 5.0.3
OS: Windows 10 Version 10.0.19045.2728 From `deno 1.32.1+7722014` and up, running `deno repl` or just `deno` from certain directories causes the deno process to hang with no repl prompt and with excessive memory usage. The bug is reproducible if running deno from `C:\`, `C:\Windows`, `C:\Users`, `C:\Users\<current_...
1
VS2015 is crashed when opening an empty `index.ts` file on TypeScript repository that has empty `index.ts` and `tsconfig.json` files. ![vs2015](https://cloud.githubusercontent.com/assets/3143368/15615716/d88a77bc-247a-11e6-9b79-1ea8fd084eee.png) I got this problem since yesterday. I feel this problem is related to ...
In the following example, running `original.js` directly in MS Edge 25 / EdgeHTML 13 (with experimental JavaScript enabled) outputs `"Get to the chopper!"` to the console. `downlevel.js` is produced by running `typescript@next` (I used v1.8.0-dev.20151210) over `original.js` with the `--allowJs` option. Running `dow...
0
python-3.8.3, numpy 1.19.0 numpy is compiled against intel mkl 2018.2.199 (newer versions of mkl + numpy => nvidia's nvblas no longer work ) OS ubuntu linux. >>>np.show_config() blas_mkl_info: libraries = ['mkl_rt', 'pthread'] library_dirs = ['/opt/intel/mkl/lib/intel64/'] ...
_Original tickethttp://projects.scipy.org/numpy/ticket/1013 on 2009-02-20 by @wesm, assigned to unknown._ This error is very unintuitive for end-users, arrays formed from SQL query results can frequently end up as object arrays by accident. In [15]: arr = np.random.randn(100).astype(object) ## In [16]: np.log(arr)...
0
_Original tickethttp://projects.scipy.org/numpy/ticket/1961 on 2011-10-13 by trac user staticfloat, assigned to unknown._ If I type numpy.log(2**63), I get the expected answer of 42.975. If I type numpy.log(2**64), I get: AttributeError Traceback (most recent call last) /Users/sabae/ in () \----> 1 np.log(2**...
_Original tickethttp://projects.scipy.org/numpy/ticket/1013 on 2009-02-20 by @wesm, assigned to unknown._ This error is very unintuitive for end-users, arrays formed from SQL query results can frequently end up as object arrays by accident. In [15]: arr = np.random.randn(100).astype(object) ## In [16]: np.log(arr...
1
Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 08/02/2020 18:34:42 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boolean value) at System.Timers.Timer.Start() at Po...
Popup tells me to give y'all this. 2020-07-31.txt Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 07/31/2020 17:29:59 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boo...
1
![screen shot 2014-12-16 at 11 36 32 pm](https://cloud.githubusercontent.com/assets/7575914/5466586/86deb278-857c-11e4-90e2-2ca106e04996.png) im not sure what's causing this. but i think it happens when i try to create a file, and don't hit enter to save it, that bar just gets stuck there. thanks
When the dialog (add file for example) loses the focus, the parent modal stays open. A small div hides a part of tabs. You can reproduce the problem simply pressing tab in the add file dialog.
1
**Jean-Pierre Bergamin** opened **SPR-8785** and commented We face a deadlock in virgo 3.0.0.RELEASE when starting our spring dm powered bundles during the creation of the application contexts. Two bundles get in a deadlock while their contexts get created simultaneously. Please see the discussion in the eclipse f...
**Mark Davies** opened **SPR-8471** and commented A less significant version of this problem has already been raised under #10033 \- a performance bottleneck affecting Wicket. However, the same issue causes a serious thread deadlock in our application, occasionally preventing application startup. The basic issue se...
1
* VSCode Version: 1.00 * OS Version: Win 10 Steps to Reproduce: 1. Install node.js 6.0.0 2. Try to debug within a router.get function. router.get("/:id", (req, res, next) => { controller.getSingle(req.params.id).then(data => res.json(data)); }); When I add a breakpoint at th...
* VSCode Version: 1.0.0 * OS Version: Windows 10 Steps to Reproduce: 1. install node v6 2. generate express application 3. open the app folder with vscode 4. open console and run `node --debug bin\www` 5. attache to node process with vscode 6. set break point to `users.js:line:6` 7. and navigate i...
1
Hello I have the below task and fails with "You cannot call a method on a null-valued expression." only when parameter "force" is specified. The "KIT" directory is already created. Ansible version is 2.0.0.2 on CentOS 6.7. The target operating system is Windows Server 2012 R2. name: Download kit win_get_url: f...
##### Issue Type: Feature Idea ##### COMPONENT NAME core ##### Ansible Version: $ ansible --version ansible 2.0.0.2 config file = configured module search path = Default w/o overrides ##### Ansible Configuration: No custom configuration. ##### Environment: Ubuntu 15.04 ##...
0
##### System information (version) ##### System information (version) * OpenCV => 3.4.0 * Operating System / Platform => Raspbian jessie * Compiler => python 2.7/python 3 ##### Detailed description ##### for my project i need to install opencv so i picked the latest version 3.4.0 ...I followed instruction ...
##### System information (version) ##### System information (version) * OpenCV => 3.4.0 * Operating System / Platform => Raspbian jessie * Compiler => python 2.7/python 3 ##### Detailed description ##### for my project i need to install opencv so i picked the latest version 3.4.0 ...I followed instruction ...
1
> **I'm use the onBeforeRequest to intercept my request and redirect to my > protocol "app",but,when i use the http.request(nodejs) to make a request(a > set-cookie will come with the response),let this registerStreamProtocol‘s > callback process the response,and then , I'm lose the set-cookie.’** > How do I get thi...
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * v9...
1
The goal of this issue is to replace all instances of _whitelist_ and _blacklist_ in `caffe2/CMakeLists.txt`. See issue #41443 for more information.
The goal of this issue is to replace all instances of _whitelist_ and _blacklist_ in `caffe2/CMakeLists.txt`. See issue #41443 for more information.
1
* VSCode Version: 0.10.11 * OS Version: Mac OS X 10.11.3 Steps to Reproduce: 1. Open a new project and make sure `editor.tabSize` is set to `auto` 2. Create a new file `test.js` with the following contents 'use strict'; const multiline = ` this is a multiline string with ...
VS Code 64 bit compile is desperately needed. When you use the explorer extension "Open with Code" and are looking at files in c:\windows\System32 on a 64 bit OS, the File System Redirector gets in the way and sends you to the SysWOW64 directory, which may not contain your file. UX is horrible. For example, right c...
0
I have just tried to update an installed extension, but the process seemed to hang. I eventually decided to restart VS Code, and when I did, the extension in question was no longer installed. I attempted to install it again, but the process never seemed to complete. I did this a few times, each time opening/closing ...
The maximum number of editors currently is **three**. There doesn't appear to be a way to change this in user settings. It would be helpful and flexible if there was a configuration option in user settings to override this default max value (i.e. some developers might be able to handle four or five editors and still...
0
When using single or double quotes within back-tick quotes, they are not considered quoted: ![screenshot 2015-12-10 14 26 50](https://cloud.githubusercontent.com/assets/573056/11725918/1e339a48-9f4a-11e5-90ac-d02f433dcdca.png) So if they happen to be closed within the back ticks, it's not the end of the world, but ...
Right now, those keywords like `import` `class` `from` are all plain white.
1
Hi team, I have been having **issues with pandas memory management**. Specifically, there is an (at least for me) unavoidable peak of memory which occurs when attempting to **remove variables** from a data set. It should be (almost) free! I am getting rid of part of the data, but it still needs to allocate a big amo...
Hi, I reopen #18422 with copy-pastable example #### Code Sample, a copy-pastable example if possible import pandas as pd idx1 = pd.date_range('2011-01-01', periods=3, freq='H', tz='Europe/Paris') idx2 = pd.date_range(start=idx1[0], end=idx1[-1], freq='H') df1 = pd.DataFrame({'a...
0
Consider `jsonify()`cation of a dictionary contained in a list: print flask.__version__ print repr(flask.jsonify([{"a": 1, "b": 2}]).data) With the following output: 0.10.1 '{\n "a": "b"\n}' `jsonify()` has -- without complaining -- mangled the data into something really not u...
ECMAscript 5 changed behavior of Array literals. That part of the documentation is outdated by now. We should check what browsers are affected by this and update the docs accordingly.
1
» ./configure ~/tmp/tensorflow ~/tmp/tensorflow Please specify the location of python. [Default is /usr/bin/python]: /usr/bin/python3 Do you wish to build TensorFlow with Google Cloud Platform support? [y/N] No Google Cloud Platform support will be enabled for TensorFlow Do you wish...
I upgraded to 0.11rc1 as you have advised, @tatatodd in issue #4841 . I did a `sudo ./configure`, and this was the result: $ sudo ./configure ~/tensorflow ~/tensorflow Please specify the location of python. [Default is /usr/bin/python]: /usr/bin/python3 Do you wish to build TensorFlow with ...
1
I plan to move to using AWS S3 SDK instead of using JetS3T. I have noticed the following problems with JetS3T: 1. AWS SDK has better support for auth (reading credentials files etc) 2. It is far behind AWS S3 SDK in terms of development-release/support. What do you think @gianm @leventov @cheddar ?
Impossible to take advantage of using `tools insert-segment-to-db` when using s3 as deep storage backend.
0
A gradient snippet was recently added to the CSS snippets. This has an incorrect syntax for the unprefixed version. When it was standardised the angles were changed so that the old "top" keyword (as used in the snippet) maps to "to bottom" in the standard syntax. "left" becomes to right, and so on. The current code...
It looks like Visual Studio Code locks some files and I can't use the command line Git client when it is open. Closing Visual Studio Code resolves this issue. The index.lock file did not exist when I checked for it so it must be preventing the command line client from working in some other way. Here's the output from...
0
* VSCode Version: 1.2.0 * OS Version: Win 10 enterprise preview Steps to Reproduce: 1. Set user setting to "terminal.integrated.shell.windows": "%programfiles%\Git\git-bash.exe" 2. Open terminal ctrl+` Expected: Terminal opens. Actual: Terminal window flickers and closes (presumably crashes). Workaro...
I have a suite of projects that I'd like to have a shared configuration (e.g. all the repos at my company). Currently we have duplicate `.vscode/settings.json` files, and several common `.vscode/tasks.json` tasks. Some projects have additional tasks defined beyond the common ones. * * * I'm unsure what the right a...
0
When I open the Samples tab in data table, it show "No results" even though the row counter shows that there are rows available to display and inspection of the request in the console shows that data was fetched. I think the bug might have been introduced in PR #16299 \- it uses columns from chart query to display ...
SQL Lab goes to a "500 - Internal Server Error" if you try to export a .csv file from a query that has two columns with the same name if those columns correspond to character typed. This issue is not suggesting that SQL Lab needs to support the ability to return two fields with the same name, but rather that SQL que...
0
I would be nice if the explorer would collapse to the bottom given that the "Opened Editors" view is becoming more useful lately. ![image](https://cloud.githubusercontent.com/assets/900690/15473361/db99abf4-20ff-11e6-97bb-17573fe886e3.png)
* VSCode Version: 0.10.11 * OS Version: Mac OS X El Capitan I would like to be able to specify multiple commands in a Task Runner. Right now, only one command is supported. Is the best way to do this with a shell script? Cheers, Trevor Sullivan Microsoft MVP: PowerShell
0
**Dave Syer** opened **SPR-7731** and commented #### Overview Sometimes (always?) it would be nice to have a `@Rule` implementation that did the job of the `SpringJUnit4ClassRunner`. The main motivation for this is to be able to use other runners (e.g. `@Parameterized`, `@Categories`, Mockito, etc.). There might...
**Matthew T. Adams** opened **SPR-9281** and commented I've found a case where the ability to specify that certain bean profiles are active by default is extremely convenient. We are migrating from one environment to another (from pure Hibernate to JPA) in an evolutionary fashion. When not specifying any active be...
0
### Apache Airflow version 2.6.1 ### What happened When i use _do_xcom_push=True_ in **DatabricksSqlOperator** the an exception with following stack trace is thrown: [2023-06-06, 08:52:24 UTC] {sql.py:375} INFO - Running statement: SELECT cast(max(id) as STRING) FROM prod.unified.sessions, parameter...
### Apache Airflow version 2.6.2 ### What happened I installed `apache-airflow` and attempted to set up the db via: `airflow db init` but it fails with the following pydantic error: DB: sqlite:////Users/username/airflow/airflow.db /Users/username/Desktop/project_root/.venv/lib/python3.9/site-p...
0
### Documentation Link _No response_ ### Problem The footer reads: > © Copyright 2021 - 2012 John Hunter, Darren Dale, Eric Firing, Michael > Droettboom and the Matplotlib development team; 2012 - 2021 The Matplotlib > development team. The first year range 2021-2012 is obviously wrong. ### Suggested improvemen...
### Documentation Link https://matplotlib.org/devdocs/index.html ### Problem Bottom copyright starts with > © Copyright 2021 - 2012 John Hunter, ... Compare with stable docs: > © Copyright 2002 - 2012 John Hunter, ... ### Suggested improvement _No response_ ### Matplotlib Version master ### Matplotlib docu...
1
#### Code Sample, a copy-pastable example if possible On master: In [3]: values = ['a', 'b', np.nan] In [4]: lib.infer_dtype(np.array(values)) Out[4]: 'string' This returns 'mixed' if the list itself or a Series is passed: In [5]: lib.infer_dtype(values) Out[5]: 'mixed...
It is not clear if this should raise on construction or not http://stackoverflow.com/questions/17338148/pandas-duplicate-datetimeindex- entries-lead-to-odd-exception?noredirect=1#comment25166923_17338148 In [3]: from collections import OrderedDict In [4]: import datetime as dt In [5...
0
[ ] bug report [x] 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** you need to use `constructor` **Expected/desired behavior** perhaps `$class` **...
## I'm submitting a... [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report [ ] Performance issue [ x ] Feature request [ ] Documentation issue or request [ ] Support request => Please do not submit support request here, instead see htt...
1
I'm suggesting some sort of interface to incorporate the functionality of Node's `tty` module, which would solve #6738, as well as setting all sort of terminal configurations, such as enabling/disabling input echo, and getting the terminal size.
In some cases, such as a Git Credential Helper, a script needs to get both program arguments through stdin, and prompt the user for data. In Linux, this is done by opening /dev/tty which is, according to the manpage, a handle to the process' _controlling terminal_ , which is a separate stream from stdin. I have als...
1
> This is a suggestion for spec change. ### Problem Sometimes type's members could only be applicable with some restrictions of enclosing type parameter (generic type constraints). For instance, this is use case of RxJS: var xs: Observable<Observable<string>>; xs.mergeAll(); // mergeAll is appl...
**TypeScript Version:** 1.8.10 ## Inconsistencies: ### 1\. The documentation for compiler options shows that you can set `module: "none"` http://www.typescriptlang.org/docs/handbook/compiler-options.html ![image](https://cloud.githubusercontent.com/assets/2856501/15205118/7e691a12-17c9-11e6-823b-f2ea0b56ea4f.pn...
0
Sorry, I'm not sure if I should open this in the Vue CLI or the Vue CLI Webpack template repository. I'll move them if necessary. The problem is, Vue triggers the `componentchanged` event of an a-frame component forever. This is the code: <a-scene> <a-entity> <a-camera @componentchanged...
Sorry, I'm not sure if I should open this in the Vue CLI or the Vue CLI Webpack template repository. I'll migrate them if necessary. The problem is, Vue triggers the `componentchanged` event of an a-frame component forever. This is the code: <a-scene> <a-entity> <a-camera @componentchan...
1
**Geert Jan Sterenborg** opened **SPR-3184** and commented Hi, Currently we have a config-module for every specific implementation of our product. These config-modules contain our Spring configuration-files. So we have a lot of duplicate bean-configs. We initialize the configuration files like so: \---start of...
**Vladimiras Makarovas** opened **SPR-3316** and commented spring-framework-2.0.4-with-dependencies-20070327-26.zip trace: javax.security.auth.login.LoginException: org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [conf/netsvep-aas...
0
I realize this error could be specific to my application but it happens only after upgrading from Next version 2.4.0 to the latest version. I have a dependency which has a dependency to react-addons-css-transition- group. When upgrading the latest 'next' version I get he error below when building the application. Mo...
# Bug report ## Describe the bug Bug #5635 was closed as a duplicate of #5628, but I don't think it actually was a duplicate. I can see why you'd think so at first glance though. Both seem to be related to the Fragment tag's usage, but at least for the case of #5635, I think that was a coincidence because the probl...
0
On Windows the Menu does not behave very native. For one, pressing Alt should select the first menu ("File"). Then, pressing Arrow-Left or Right I cannot navigate between the menu items. Arrow-Up and down works within the menu.
Electron is missing a basic standard feature of the menu system in Windows whereby the user can activate any menu and then use the left and right arrow keys to navigate the entire menu bar. Here is a short video on youtube which illustrates this behavior at ~0:56.
1
OS-X Mountain Lion Python version 3.3.1 Matplotlib version 1.2.0 Revision 1 Almost all text is being partially displayed. For instance, in the example in _Text properties and layout_, the text at the center displays as " **mid** " rather than " **middle** ". Most other text in that plot is similarly truncated.
To get the estimated (x,y,z) coordinate of a mouse event in a 3D figure we must parse these values from the string generated by `Axes3D.format_coord`. Wouldn't it be more useful to factor that out into a separate method (`coord`?) giving access to `x, y, z = proj3d.inv_transform(xd, yd, z, self.M)`? `format_coord` wo...
0
What does 'go version' print? go version devel +26aa53304a48 Fri Mar 07 16:08:12 2014 -0500 linux/amd64 What steps reproduce the problem? If possible, include a link to a program on play.golang.org. package main // #cgo pkg-config: cairo // #include <cairo/cairo.h> i...
Calling with reflection with embedded types seems to be broken. Here is a short snippet showing the issue: package main import "reflect" type A struct{} type B struct{A} func (a *A) S() { println("Hi!") } func main() { b := &B{} ...
0
## Question <sharding-jdbc.version>4.1.0</sharding-jdbc.version> <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>sharding-jdbc-spring-boot-starter</artifactId> <version>${sharding-jdbc.version}</version> </dependency> ### mysql version ...
## Bug Report > ERROR Maxwell - SQLException: No database selected When I use shardingproxy connect maxwell , It throw this error ,and maxwell could not start When I use proxysql or mysql cli connect maxwell, It run OK. ### Which version of ShardingSphere did you use? Mysql version: 5.7.21 Maxwell version: 1....
0
I deleted the node_modules directory and reinstalled it, then I met this problem how can I make it works correctly, please help me
I just upgraded to `next@6.0.0`, I use a custom server, when I try to `run dev`, I get an error. npm run dev > frontend-next@1.0.0 dev /Users/foo/gitlab/next-project/backend > babel-node ./src/server.js /Users/foo/gitlab/next-project/backend/node_modules/babel-core/lib/transformat...
1
**Migrated issue, originally created by Dmytro Starosud (@dima-starosud)** This is using sqlalchemy 1.2.0b3. Please consider following code snippet. class A(Base): __tablename__ = 'a' id = Column(Integer, primary_key=True) value = Column(String)...
**Migrated issue, originally created by Dmytro Starosud (@dima-starosud)** This is using sqlalchemy 1.2.0b3. I've faced weird behavior shown in following code snippet. Assertion in that test fails. But if you comment either `#1` or `#2` or both it will pass. Base = declarative_base() ...
1
Electron Version: 4.0.6 Operating System: windows 10 1803 Expected Behavior It shd print using PrintToPDF() when requested from the renderer Actual Behavior Upon the print request everything freezes To Reproduce //RENDERER await ipc.sendSync("ExecuteBackendFx", { fxName: "PrintToPDF", fxArgs: null }...
* **Electron Version:** * 4.0.6 * **Operating System:** windows 10 1803 ### Expected Behavior It shd print using PrintToPDF() when requested from the renderer ### Actual Behavior Upon the print request from the renderer using await everything freezes ### To Reproduce //RENDERER await ipc.sendSync("E...
1
### Version 2.6.10 ### Reproduction link https://jsfiddle.net/shenron/kbuymoz0/ ### Steps to reproduce Create a watcher, and reject a promise inside. ### What is expected? Vue should capture the reject with `errorCaptured` ### What is actually happening? The reject has not been captured
Hi, I am trying to build components (here) which use a settable computed property bound to the parent vm with `prop`. These components may also need to set a default value for it, calling the property setter during compilation. Rather than setting up custom events which duplicate the role of `prop`, it seemed clean...
0
In the lovely FirstPersonCamera object, the onMouseDown event calls the function `event.preventDefault()` which, of course, prevents clicking the mouse from doing what it usually does. However, I want to have a text box overlay in certain cases that can work in conjunction with the FirstPersonCamera. Currently, the e...
##### Description of the problem The WebGLRenderer already calculates whether an object is frustum culled, using an internal Frustum. It'd be nice if this information was exposed so that we don't have to duplicate the Scene traversal and calculations with our own Frustum outside of the renderer. A couple ideas: ...
0
I'm on Windows 7, with a username of 19 characters including 1 dot (not my choice, it's a company machine) - monusername.ADOMAIN below. Installer bombs out, log as follows: Program: Starting Squirrel Updater: --install . Program: Starting install, writing to C:\Users\monusername.ADOMAIN\AppData\Local\SquirrelTemp ...
I download AtomSetup.exe I run it as an administrator I agree there are probably curious permission setups and my user directory is mapped to a central server. I get no choices where to install from the installer. Other applications have worked I get the error dialog. Here's the log. I can't alter where i...
1
We're getting occasional failures in the garbage collector when it tries to scan an interface and gets a bad interface table pointer. sync to tip set GOEXPERIMENT=precisestack set GOGC=0 run all.bash With GOGC=0 it crashes reliably. SIGSEGV: segmentation violati...
This statement causes numerous confusion in mailing lists, people try to tie it to thread-safety and inability to assign to string variables. And it does not have any formal meaning behind it. The formal part here is that string indexing operation cannot be assigned to and is not addressable. And that is stated right...
0
three.js's documentation contains a bunch of fake hyperlinks; anchor tags which do not have an `href` attribute but instead rely on JavaScript `onclick` events to navigate. These links can't be opened in new tabs by middle-clicking or by right- clicking. The links also don't show a URL preview in the status bar when...
Hi mrdoob/team, Many times while going through the documentation I would like to ctrl/cmd+click on links pointing to particular class documentation to open in new tab. Because the elements don't even contain href attribute, it simply doesn't work. Similarly, I can't right click and "Open in new tab". I'm not provid...
1
It's one of the feature I'd love have in Atom. It should save tabs, open files, root directories, cursor position,... Do you think it can be integrated ?
A feature I love about ST2 and iA Writer, which I'm missing in Atom, is when you quit the app with open windows (including unsaved documents), they all appear again when you reopen. This has saved me countless times in my workflow to handle having to do a system restart for software update, etc and not have to take ...
1
**Describe the bug** When you use the copy method from the InstancedBufferGeometry the instanceCount attribute is copied by defualt. This could lead to errors, since the copy method accepts any kind of geometry and for this reason the instanceCount could be set to undefined. **To Reproduce** call InstancedBufferG...
**Describe the bug** In r117 (#19135) you renamed `maxInstancedCount` to `instanceCount` AND changed the default value from `undefined` to `Infinity`. However, there is a rare case when it still becomes undefined: copying from a non-instanced geometry. **To Reproduce** If you call `instancedGeo.copy(simpleGeo);` i...
1
#### Related Issues #6017 Celery Multi creates pid and log files in the wrong directory ## Environment & Settings **Celery version** : **`celery report` Output:** # celery report software -> celery:4.4.3 (cliffs) kombu:4.6.9 py:3.7.7 billiard:3.6.3.0 py-amqp:2.6.0 platf...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
0
julia> @code_warntype (Int ∘ identity)(1) gives Variables: #self#::getfield(Base, Symbol("##57#58")){DataType,typeof(identity)} x::Tuple{Int64} Body: begin return ((Core.getfield)(#self#::getfield(Base, Symbol("##57#58")){DataType,typeof(identity)...
There seems to be a performance regression in fft as demonstrated below: slowdown2.jl function ch(nsteps, u) w = complex(u) p = plan_fft!(w) q = plan_ifft!(w) for n in 1:nsteps w = p*w w = q*w end w end sran...
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.0-SNAPSHOT ### Step to reproduce this issue 1. https://github.com/apache/incubator-dubbo/blob...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.3 * Operating System version: MacOS Catalina 10.15 Beta * Java version: 1.8 ### project struc...
0
Hi, I have a simple IconMenu which is not controlled. Once the menu is displayed and any MenuItem is clicked, the menu closes as expected. However clicking anywhere after this logs the error - `Warning: setState(...): Can only update a mounted or mounting component. This usually means you called setState() on an un...
This is a new regression only observed in 0.14.2, downgrading to 0.14.1 removes warning. On umounting any IconMenu component, I receive the following warning and stacktrace that is entirely within Material UI: Warning: setState(...): Can only update a mounted or mounting component. This usually means you called set...
1
$ go version go version devel +f2e954f463e0 Thu Aug 29 10:16:09 2013 +0200 linux/amd64 steps that will reproduce the problem: 1. $ cd $GOPATH/src $ unzip path/to/attached/delfile.zip 2. $ go install delfile $ ../bin/delfile prints "still there" 3. $ rm delfil...
by **AndersEdmanXYZ** : running go get to fetch pkg from external sources need extra tools to be installed as listed in http://code.google.com/p/go-wiki/wiki/GoGetTools Documentation in http://golang.org/cmd/go/ description of go get is external tool need not mentioned error r...
0
* VSCode Version: 1.1.1 * OS Version: RHEL 7.2 Steps to Reproduce: 1. type `Ctrl+P` and `ext install csharp` 2. The status bar at the left bottom remains "installing" status. It doesn' t finish for several hours. I get into this situation only csharp extension. I can install other extensions such as g...
* VSCode Version:1.2.0 * OS Version:ubuntu 16.4 on a remote server or while editing root needed config files from builtin terminal i have to use vim at the moment . Is there or will there be a functionality to pipe file into current code pane from builtin terminal
0
Since #1987, our SxS manifest is auto-generated, so it's certainly possible to run the terminal unpackaged again. However, we need the `resources.pri` that's only generated by building the CascadiaPackage project. Ideally, we'd be able to rebuild the terminal code (with `bx`, #2168), and launch it using `openterm`. W...
I've built successful from command line using the following command. `msbuild /p:Configuration=Release /p:Platform=x64 /p:PlatformToolset=v142 /p:TargetPlatformVersion=10.0.18362.0 /p:PreferredToolArchitecture=x64 OpenConsole.sln` I'm trying to find a possible solution for deploying from the command line. Is addi...
1
#### Code Sample, a copy-pastable example if possible Case 1 import pandas as pd df = pd.DataFrame({ 'a' : [1,1,1,2,2,2,3,3,3], 'b' : [1,2,3,4,5,6,7,8,9], }) df.groupby('a', as_index=False).agg({'a': 'count'}) Case 2 import pandas as pd...
From this SO question. The user had two dataframes and wanted to use the second as the values argument to `isin`. We'd need to think about how to handle the other index. In this case the user only cared about the columns, not the index labels. Previous issues/PRs: #4258 and #4211
0
**David Victor** opened **SPR-8016** * and commented I am working with an API which returns an empty response body on http status 200 (OK) & a body which is populated on http status 400 (Bad Request). When using RestTemplate.getForEntity() this is fine for the case where the body is populated, however I get an exc...
**Keith Donald** opened **SPR-6745** and commented This means annotation-driven type conversion does not work when binding to JavaBean properties with SpEL. This can be worked around by defining annotations on the method parameter of a setter method, and the return value of a getter, but is not ideal. SpEL should ...
0
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): no...
**System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): No * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 x64 * Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: No * TensorFlo...
1
When we create a lazy load service , It is supposed to pass initializer to staticProxyConstructor of a proxy instead of its constructor. I have no idea why this happened, please check this link.
Symfony 2.8.1 PHP 7.0.2.1 (debian) I've enabled the Symonfy serializer. I'm using the `"friendsofsymfony/rest-bundle": "^1.7"` with the following config: fos_rest: param_fetcher_listener: force routing_loader: include_format: false view: mime_ty...
1
![](https://camo.githubusercontent.com/8b204fa74ef59a859dc39ed963048becf27118c19162f1bc079d147796d46f63/687474703a2f2f692e696d6775722e636f6d2f7a41753945464b2e706e67) 1. http://getbootstrap.com/javascript/#carousel 2. Change `.carousel-control` width to `16px` from devtools The left one is too close to the edge ...
When your popover has non-html content (for example jquery object) and you reopen popover - events on content (jquery object) doesn't work. @stefanneculai added `empty()` call in setContent (so jquery removes events). Commit: `41628c9`
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 ...
**Steps to reproduce and a minimal demo of the problem** http://plnkr.co/edit/IAMpyeJl9rQlAcEFPoRs?p=preview _What steps should we try in your demo to see the problem?_ 1. put some input longer than 2 characters in the first input 2. try to put some input longer than 2 characters in the second input **Current...
1
##### ISSUE TYPE bug report ##### COMPONENT NAME ec2_lc module ##### ANSIBLE VERSION 1.9.2 ##### CONFIGURATION basic configuration ##### OS / ENVIRONMENT N/A ##### SUMMARY ec2_lc fail to create when no default vpc in region ##### STEPS TO REPRODUCE : 1. delete default vpc in some region 2. create no...
##### Issue Type: * Bug Report * feature request ##### Ansible Version: ansible 1.9.3 Also tried with the early 2.0.0 version. ##### Ansible Configuration: Nothing special, just the inventory, sudo_user, remote_user and added additional roles_path. ##### Environment: Ubuntu 14.04 for manager and manag...
1
## 🐛 Bug Error text: [2175/2785] C:\Users\circleci\project\build\win_tmp\bin\sccache-cl.exe /TP -DAT_PARALLEL_OPENMP=1 -DCPUINFO_SUPPORTED_PLATFORM=1 -DFMT_HEADER_ONLY=1 -DIDEEP_USE_MKL -DMINIZ_DISABLE_ZIP_READER_CRC32_CHECKS -DONNXIFI_ENABLE_EXT=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx_torch -DTH_BLAS_...
## 🐛 Bug Use multinomial on cuda without replacement, it generates repeated items occasionally. ## To Reproduce Steps to reproduce the behavior: for i in range(10000): for j in torch.ones(600,30000,device="cuda").multinomial(1000): if j.size()!=j.unique().size(): ...
0
Apparently this works well in practice and it's pretty robust and can work on heterogeneous columns. The idea is to univariately sample from the training set. The obvious downside is that you have to store the training set. For few unique values we could store the counts, but that would require separately treatin...
The purpose would be to provide an unbiased, stochastic, univariate imputer. The imputer would replace missing values by values sampled uniformly at random from the non-missing values of the sample column. This would require to add additional `random_state` constructor parameter to the class. As for #11208 this str...
1
We have been iterating on Dashboard native filer behind the feature flag after announcing phase 1 testing #12148 All bugs that are identified have been fixed, lots of new features have been added since then, based on request and feedback from the community. We are heavily testing this week and will make all features...
Make sure these boxes are checked before submitting your issue - thank you! * 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...
0
react-select has a couple of typings issues, I think. `OptionRendererHandler`, and `ValueRendererHandler` incorrectly specify `option: Option<TValue>` when it should be `option: TValue`. Debugging the callback shows that the raw/original object is sent to these handlers, not one wrapped in an `Option<T>`.
1>c:\Program Files (x86)\Microsoft SDKs\TypeScript\2.6\lib.es2015.iterable.d.ts(203,11): error TS2300: Build:Duplicate identifier 'Promise'. 1>c:\Program Files (x86)\Microsoft SDKs\TypeScript\2.6\lib.es2015.promise.d.ts(223,13): error TS2300: Build:Duplicate identifier 'Promise'. 1>c:\Program Files (x86)\Microsof...
0
julia> [:A=>rand(2)] 1-element Array{Pair{Symbol,Array{Float64,1}},1}: Error showing value of type Array{Pair{Symbol,Array{Float64,1}},1}: ERROR: AssertionError: Array{Float64,1} is not a subtype of Pair{Symbol,Array{Float64,1}} Stacktrace: [1] typeinfo_prefix(::IOContext{Base.Generi...
Would be useful for many packages, JuliennedArrays, LightQuery, SplitApplyCombine, MappedArrays, Query, etc. Base already has an AbstractEltypelessArray: the lazy broadcast machinery, it would just be a matter of formalizing the interface. Given that traits aren't coming any time soon, it couldn't be `<: AbstractArra...
0
In #10939 we landed primordials into `deno_core`. They are frozen intrinsics that are not vulnerable to prototype pollution. We now need to undergo the tedious task to refactor all of our JS code to use these primordials. Here is the TODO list: * extensions/webidl/00_webidl.js (@lucacasonato) #11227 * extensions...
0
Hey I know there are a lot of issue related but none on 4.6.1. The gif is really slow. I get it from direct file not an Url. `Glide.with(context).asGif().load(R.raw.update_needed).into(imageView);` Some idea?
**Glide Version** : 3.7.0 **Device/Android Version** : 6.0 **Issue details / Repro steps / Use case background** : dump the image when resource ready and check the quality that decode from resource & cache **Glide load line /`GlideModule` (if any) / list Adapter code (if any)**: Glide.with(image.g...
0
**Colin Yates** opened **SPR-1993** and commented IIRC calling RequestUtils.getStringParameter() for a request parameter which had no value would return "". In Spring 2.0M4 it throws a BindingException. This is wrong IMHO :) because there is an explicit getRequiredStringParameter, the implication being that getStri...
**Paul Benedict** opened **SPR-6162** and commented Our team had two different context files with two bean definitions named the same. Truth be told, one developer didn't know another his other teammate already defined it elsewhere. Because bean definition classes weren't identical, the auto-wiring was failing (for...
0
### Describe the bug See the reproduction source code. I select two same columns in Core. Result column descriptions are drastically different when compiled with SQLite dialect. That leads to crashes in the downstream projects that rely on `_result_columns`, for example, encode/databases. The subsequent crash is ...
**Migrated issue, originally created by wenlong_lu** I have several large(billions of rows) tables which need upsert operations. I have checked the #960 and #2551, and still did not get what I want. if you think this is duplicated, pls close it. ### upsert idea from PostgreSQL official page I just follow the idea...
0
Hi, I'm new to github and still trying to find my feet. So if this comment is in the wrong place then please let me know. I have noticed a change in the mixins.less which causes my code to break. It seems that there is a mistake (starting at line 388) where the @ and the { have been swapped around. This happens agai...
With latest version of mixins.less lessphp (version 0.3.8) if showing error: Fatal error: Uncaught exception 'Exception' with message 'parse error: failed at `{ .span(@index); }` ../less/mixins.less on line 578' There are no problems with previous versions with (~".span@{index}") { .span(@Index); }
1
Have this exception during indexation documents for suggest completion: suggest_top_products: client: default index_name: my_index_suggest_top_products use_alias: true settings: number_of_shards: 6 number_of_replicas:...
I use the context suggester for, well, suggestions, and I have more than 256 different categories. When I try to index a document with 257 categories, I get the following error: { "error":"IllegalArgumentException[TokenStream expanded to 257 finite strings. Only <= 256 finite strings are suppor...
1