text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
Describe what you were doing when the bug occurred: 1. 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.10.1-f160547f47 Call stack: at updateTree (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:19729:21) at getCommitTree (chrome- extension://fmkadmapgofa...
Describe what you were doing when the bug occurred: 1. Profiling recharts library 2. Filtered on commits greater than 3s 3. Walking through the commits doing a next > next * * * ## Please do not remove the text below this line DevTools version: 4.10.1-f160547f47 Call stack: at updateTree (chrome- extension...
1
I know this looks like a duplicate of #1636, but even with pandas 0.8.1, I don't get the expected plotting behaviour: In [1]: from numpy import arange In [2]: import matplotlib.pyplot as plt In [3]: import pandas In [4]: pandas.__version__ Out[4]: '0.8.1' In [5]:...
This bug is easy to reproduce: def printA(group): print group.A.values[0] return 0 pandas.DataFrame({'A': [0,0,1,1], 'B': [0,1,0,1]}).groupby('A').apply(printA) This should print 0 1 and return a `Series` containing two zeroes. Although it does return ...
0
It looks like the way to define `InkWell` is to put it at the top of the stack so that we can see the ripple effect and the taps are captured by the `InkWell` widget. Im my case I have nested levels of containers each with their own `InkWells`. Now because of the way `InkWells` are designed, I can't have the inner c...
Internal: b/151678927 Pictured: two ink wells, one for the card, and one for the smaller rectangular widget at the center of the card. The smaller rectangular widget has been tapped. The current Flutter behavior is on pictured to the left, the ideal behavior is pictured to the right. In Android, by default, ancesto...
1
## Flutter Doctor Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. PS C:\Windows\system32> flutter doctor Checking Dart SDK version... Downloading Dart SDK from Flutter engine ead227f118077d1f2b57842a32abaf105b573b8a... Unzipping Dart SDK... Upda...
## Steps to Reproduce Trying to install Flutter in Windows 10 Machine. Clone the repo and added path and run `flutter doctor ` it downloaded sdk and getting error. deleted the cache folder in bin and retried but same error. ## Logs same as `flutter doctor -V` ## Flutter Doctor Updating flutter to...
1
Right now, every time Renderer needs to switch the brush colors, it does the following: 1. get the `TextColor` from the attribute run 2. get the RGB value of the color from the color table 3. pass that to `Engine::UpdateDrawingBrushes` Step 2 is lossy, and is the source of a class of bugs I'll call "ConPTY na...
Pressing the settings-button does not open the settings tab. Instead it opens a .json file in Visual Studio 2019. OS: Windows 10 Pro 1903 (Build 18362.418) Windows Terminal Version 0.5.2762.0
0
**Alex Antonov** opened **SPR-6261** and commented Provide interface definition model for generating HTTP client interface proxies wrapping RestTemplates. Code implementation to follow. * * * **Affects:** 3.0 RC1 **Issue Links:** * #16747 Introduce proxy-based REST client similar to HttpInvokerProxyFactoryBe...
**Donny A. Wijaya** opened **SPR-6464** and commented Geert Pante submitted the codes for this issue at: MOD-458. * * * **Affects:** 3.0 RC2 **Reference URL:** http://forum.springsource.org/showthread.php?t=73939&highlight=flash+scope **Attachments:** * FlashScope.java ( _675 bytes_ ) * FlashScopeFilter.ja...
0
I've seen that v1.11 will be introducing aliases for different histogram binning optimization methods. I'm really looking forward to this feature, so thank you for implementing this! My question is how these methods will interact with the range parameter (this is not currently documented). * If the range is withi...
Travis CI has become too slow, simple PRs can take overnight to finish. Some of that is probably extra testing on the part of NumPy, OTOH, I look at the stats and active opensource builds are capped at 550 with a backlog of 10K That doesn't seem healthy.
0
We need a general purpose FFI that can call any C library, using either tcc or clang. Suggested interface: loadc("libpcre") # loads the C library, reading headers and all /* the namespace libpcre could be used to avoid naming clashes _/ pcre_compile("foo\s_bar", PCRE_CASELESS, ...)
Long conversation with Jeff. Part of the discussion was around structs. We concluded that the main goal here is maximum compatibility with C. A `struct` is similar to a composite type (which we discussed renaming to `class` instead of `type`) except that it has immediate value semantics: struct Foo ...
1
We need to be able to create a reusable memory module so that memory can be shared across all `WASMModule`. An example code that would be valid for this use case may look like: **entry.js** import(“./abc.js”).then(abc => abc.doIt()); **abc.js** import { duplicateText } from “./string....
## Feature request **What is the expected behavior?** Webpack use JsonP to load other chunks. wondering whether we can load chunks by requireJs? **What is motivation or use case for adding/changing the behavior?** in my case, i want to share common chunks among different compilations, and assets from different ...
0
* VSCode Version:0.10.11 * OS Version:Windows 10 Steps to Reproduce: 1. Open powershell and cd to a existing project folder 2. run "code ." 3. Try to rename an existing folder VSCode return an error "Operation not permtited". ![image](https://cloud.githubusercontent.com/assets/593137/14441479/53d1b80c-0...
* VSCode Version: 0.10.11 * OS Version: Windows 2012 R2 Steps to Reproduce: 1. Open project and do some work 2. Update a npm package. e.g. `npm i -D typescript` It errors with: npm ERR! Error: EPERM: operation not permitted, rename 'E:\hwong\p4\projects\pandash\node_modules\typescript' -> 'E...
1
Hello https://superset.apache.org/ is having problems. On the right side of the pages there are scroll bars. I am not able to scroll the Text down.
## 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
It's needed for things like an `Any` type, or safe dynamic loading. It basically needs to be an generic intrinsic that returns some kind of data structure that uniquely identifies the generic type it has been instantiated with. Ideally it also includes information about the crate itself and it's meta data, so that t...
I discussed this briefly with @aturon, but I thought I would submit an issue to track the discussion. I have been trying to implement an equivalent to Java's thread park / unpark using #[thread_local] but it requires being able to run some cleanup code when the thread exits. This currently isn't possible but should ...
0
I am using CentOS 7 and Anaconda 2. Recently, I updated the matplotlib package using `conda`, if I type `import matplotlib.pyplot as plt`, the python interpreter will complain about > This application failed to start because it could not find or load the Qt > platform plugin "xcb". > Reinstalling the applicatio...
When I try to run anaconda-navigator I get the following message: This application failed to start because it could not find or load the Qt platform plugin "xcb" in "". Available platform plugins are: minimal, offscreen, xcb. Reinstalling the application may fix this problem. Aborted (core dumped) I have no c...
1
**Original** var constructorTestObject = new constructorTestClass(1, 'string', true, 2); constructorTestObject.arg\u0031 = 1; constructorTestObject.arg2 = 'string'; constructorTestObject.arg\u0033 = true; constructorTestObject.arg4 = 2; **Expect** var constructorTestCla...
**Expected** : module moduleType\u0032 { export var baz2: number; } //// [escapedIdentifiers.js] var moduleType\u0032; (function (moduleType2) { })(moduleType\u0032 || (moduleType\u0032 = {})); **Actual** : module moduleType\u0032 { export var ...
1
### Bug report **Bug summary** The FigureCanvasBase defines the signatures of various event handlers, such as `motion_notify_event(self, x, y, guiEvent=None)`. The qt and wx backends define their own handlers in a GUI-specific fashion (`mouseMoveEvent(self, event)` for qt (which is the only toolkit to use a subclas...
`FigureCanvas.motion_notify_event` and other event handlers have different signatures across backends: lib/matplotlib/backend_bases.py 1893: def motion_notify_event(self, x, y, guiEvent=None): lib/matplotlib/backends/backend_gtk.py 321: def motion_notify_event(self, widget, event...
1
**Describe the bug** In the file 【axios/lib/core/mergeConfig.js】. the 'url ' has existed in 'valueFromConfig2Keys' and 'defaultToConfig2Keys' By the way, I think the 'params' shoud exist in 'valueFromConfig2Keys' BUT NOT IN 'mergeDeepPropertiesKeys' var valueFromConfig2Keys = ['url', 'method', 'data...
#### Describe the bug Axios depends on follow-redirects version 1.14.4. There's a CVE that allows cookie exposure through redirects (described here). This CVE was fixed in follow-redirects v1.14.17. #### To Reproduce Run a vulnerability scan #### Expected behavior Depend on follow-redirects v1.14.17 or later. ...
0
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Router.push has {scroll:false} option like Link component for back to previous scroll position ## Current Behavior Router.push has no {scroll:false} option ## Steps to Reproduce (for bugs) 1. 2. ...
Hello. I try to insert a html comment in the _document, but when rendering a page, the comment falls into the text in body. Is there a solution to the problem? ## Your Environment Tech | Version ---|--- next | 5.0.0 node | 9.5.0 OS | win 10 browser | chrome 64 etc |
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 repo...
# 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
**Keith Donald** opened **SPR-7839** and commented This is effecting the mvc-showcase sample after upgrading from 3.0.4 to 3.0.5. In the failing scenario, I'm attempting to bind to: public class JavaBean { private NestedBean nested; } public class NestedBean { ...
**Antranig Basman** opened **SPR-2981** * and commented When making large numbers of instantiations, in particular at short scopes such as within an HTTP request, Spring core performance can become a bottleneck. Note that this appears to be an orthogonal problem to that referred to in #7460 since this affects singl...
0
Hi guys, I have searched around existing `Elvis Operator` in TS and no result has found. That`s why I propose include this ability. For example, like in C# or Groovy we can write next expression let result = somevalue?.name; it desugared to var result = somevalue!==undefined?somevalue....
# Current Status * The TC39 proposal is now at stage 3 (🎉🎉🎉🎉🎉) * Implementation is in progress * You can expect this feature in TypeScript 3.7 * We'll update here when it's available in a nightly build * Holding off on Optional Call until its semantics are clarified at committee Open questions * W...
1
Hey it might be a noob question but i tried using it in react native and all hell broke loose ... since all these are react components ... any idea why it cannot be used in react native? (i am a bit disappointed about this) thanks Rares
version 0.14.1 produces this error: Uncaught Error: Invariant Violation: addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding a ref to a component that was not created inside a component's `render` method, or you have multiple copies of React loaded (details: https://fb.me/react-refs-must-...
0
I've just changed a component from `class Header extends React.Component` to `const Header = (props) => (/*JSX here*/ )`. Now one of my tests is failing because it can't find an instance of that component where there should be one. This line of code: import Header from '../../header'; //... le...
I originally left a comment in #4936, but I felt this might be better as a separate issue. > I completely agree with the rationale behind no backing instances and no > refs for stateless components. I want to use pure stateless components as > much as possible. > > However, I'm running into instances where testing s...
1
**Do you want to request a _feature_ or report a _bug_?** I want to report a bug **What is the current behavior?** eslint --fix trying to break my hook) **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug will get fixed much faster if w...
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** Consider: function Example({ fetchData, someArg }) { let data = 'defaultValue'; useEffect(() => { data = fetchData(someArg); }, [someArg]); return JSON.stringify(dat...
1
npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report this error at: npm ERR! https://npm.community npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\abc\AppData\Roaming\npm- cache_logs\2020-11-03T13_58_52_163Z-debug.log please help me to get fix this
### *Updated* as of 01/15/2021 **Note: Please readthis doc before filing a new issue.**
1
#### Code Sample, a copy-pastable example if possible In [2]: df = pd.DataFrame([[1], [2], [3.3]]) In [3]: df.groupby([1,1,1]).agg(len) Out[3]: 0 1 3.0 #### Problem description The result of `len` should be `int`, regardless of the input. This is not specific to `len`: `la...
gbq.py currently returns an error if the result of a query is what Google considers to be 'Large'. The google api allows jobs to be sent with a flag to allow large results. It would be very beneficial to provide this as an option in the BigQuery connector.
0
## Summary When configuring `ROBOTSTXT_OBEY = True` "delay requirement" `Crawl-delay:` is not considered. ## Motivation We want to fully comply with robots.txt requirements. ## Workaround Review `robots.txt` and checking delay config by hand.
Crawl-Delay directive in robots.txt looks useful. If it is present the delay suggested there looks like a good way to adjust crawling rate. When crawling unknown domains it can be better than autothrottle. A draft implementation: https://gist.github.com/kmike/76aca46cad18915b8695 Some notes: * it may be useful t...
1
When i open a modal and click the data-dismiss="modal" button, it closes. But when i reopen the modal and click the close button, nothing happens.
Hi, The code used on last Thursday worked fine. But after updated to latest code on Monday (GMT+8), the modal dialog when clicks to dismiss for seconds onward cannot be close. I am checking on source code line 932, if I commented out this line then it is working again. this.$element .removeClass('in') .attr('a...
1
Duplicate of #8890. As far as I can tell, the Timestamps for the index generated by `iterrows()` are 5 hours behind where they should be in this example: In [33]: idx = pd.date_range("2010-01-01 00:00:00-0500", freq='D', periods=3) In [34]: df = pd.DataFrame([1,2,3], index=[idx]) In ...
data = data.sortlevel() print(data.loc[("STW AU Equity", "2014-04-29"), "split"]) data.loc[("STW AU Equity", "2014-04-29"), "split"] = 1 print(data.loc[("STW AU Equity", "2014-04-29"), "split"]) # result 1.0 symbol date STW AU Equity 2014-04-29 1 ...
0
I have just spent quite some time debugging my code because the absolute value function might return negative values. See the following working example: import numpy as np np.array([-32768,-3000],dtype=np.dtype('int16')) np.abs(_) While the second value is converted to +3000 as expected, ...
There are some functions that fail when passed `Decimal` objects as scalar inputs. I'm not particularly interested in using Decimal arrays, for obvious reasons, but the lack of scalar support limits our ability (see Turbo87/utm#40) to use numpy as a 'better' math module in a certain sense. I'm not sure if you would c...
0
the following works quickly in 0.15.2 and has a performance issue on the last operation df.T.duplicated() in 0.16.0 and 0.16.1 also on a private data set that works on 0.15.2 i get an error on 0.16.0 and 0.16.1 on the same operation. code: import pandas,numpy df = pandas.DataFrame({'A': [1 ...
#### Code Sample, a copy-pastable example if possible trange = pd.date_range(start=pd.Timestamp(year=2017, month=1, day=1), end=pd.Timestamp(year=2017, month=1, day=5)) # make a duplicate trange = trange.insert(loc=5, item=pd.Timestamp(year=2017, month=1, day=5)) df = pd.DataFrame(0, i...
0
**Symfony version(s) affected** : 4.2 **Description** I am building an affiliation system in my app. After user registered as an affiliate a new ROLE_AFFILIATE is added to the user. But user is denied access to route even after updating the isEqualeTo method. I have to logout first then login again in order to get...
I'm implementing the security component in my app and was surprised to find that a user's roles are decided at login time and cannot be easily updated after that. While the chosen UserInterface object can be refreshed on each load to check for changes (like the password changing or any other details), there is no way...
1
##### System information (version) * OpenCV => 3.4 and 4.3 * Operating System / Platform => Ubuntu 18.04 * Compiler => GCC 7.5.0 ##### Detailed description I'm having some trouble since I changed from OpenCV 3.2 (repo version) to 4.x (compiled from source) in my C++ project (also happens in 3.4). I've replic...
##### System information (version) * OpenCV => 3.4.4 * Operating System / Platform => Ubuntu 16.04 64 Bit * Compiler => Python Version OpenCV 3.4.4 **caffe version SSD detector supports multiple "min_size" and "max_size" param but OpenCV gives a error:** [libprotobuf ERROR /io/opencv/3rdparty/protobuf/src/...
0
Would be nice to have `kubectl stats podName` work like docker stats (basically a top like interface on the client that connects to an endpoint streaming data every second). I think this should be pretty straightforward, since the kubelet server already supports requests for `/stats/ns/podname/uid/containername` Wou...
We saw this in Jenkins. The following loops until the test is killed: [1] INFO: 9 / 14 pods in namespace 'kube-system' are running and ready (20 seconds elapsed) [1] INFO: POD NODE PHASE CONDITIONS [1] INFO: kube-ui-v1-bp9s2 pull-e2e-2...
0
* Electron version: 2.0.0-beta.1 * Operating system: masOS High Sierra 10.13.4 Beta (17E150g) ### Expected behavior When I clicked one of the Menu Items, the click function should be triggered. ### Actual behavior ![image](https://user- images.githubusercontent.com/6451933/36522155-d97db440-17d5-11e8-80f2-53b...
* Electron version: Electron built at `aea06ed` * Operating system: macOS 10.13.2 ### Expected behavior `MenuItem` click handlers should get called in the popped up context menu. ### Actual behavior Click handlers never getting called back. ### How to reproduce Open a popup in the main window: ...
1
This could be considered a bug or a feature request. I say this because I know that React is checking for W3C valid attribute property names, but the check is run inconsistently between normal components and custom components which makes its behavior confusing. That means this could be feature to be more explicit abo...
**Do you want to request a _feature_ or report a _bug_?** Request a feature I am working on project to build AMP page with React Server Side Rendering. I am having an issue to add custom attribute to built-in AMP element. In order to be able to use amp-bind we need to be able to output “bindings”, which are speci...
1
I'm not sure if this is a duplicate of the other let block issues, but I came across this: let global foo bar(x::Float64) = x+1 bar(x::Float32) = x+2 foo(x) = bar(x) end julia> @code_warntype foo(1.0) Variables: #self#::#foo x:...
`@testset` internally creates a try/catch block to run the tests in, so the tests are run in a local scope. However, since the syntax is `@testset "..." begin ... end`, it is natural to assume the code is run in a `begin` block, which is globally scoped. This can lead to confusing behavior where functions defined wi...
0
##### Issue Type: Bug Report ##### Ansible Version: ansible 1.7 specificaly, git commit `6fdf77f` ##### Environment: Running from Mac OS X. Ansible installed in virtualenv. $ pip freeze Jinja2==2.7.3 MarkupSafe==0.23 PyYAML==3.11 ansible==1.7 ecdsa==0.11 paramiko==1.14.0 ...
Ansible hangs on docker_image building when the image already exists. The whole playground is at https://github.com/nolar/vagrant-ansible-docker- sample/tree/docker_image_broken branch (pretty simple). Specifically, this task causes the problem (playbook.xml, line 97): - name: Build or re-build an...
1
here is my sample data `cities_counter[:10]` [('上海', 285), ('杭州', 225), ('北京', 163), ('广州', 136), ('南京', 130), ('武汉', 124), ('深圳', 88), ('温州', 67), ('苏州', 66), ('宁波', 45)] and I want to make a bar plot with Seaborn and Matplotlib, so here is my code >>> sns.set(style="whitegrid") ...
As #829 and #592 said, the reason is "seaborn override default fonts specified in matplotlibrc configs". Thus, you can set the default seaborn font style after import the seaborn as follows: `import seaborn as sns` `sns.set_style("darkgrid",{"font.sans-serif":['simhei', 'Arial']}) ` The simhei is the chinese fo...
1
Pages which have duplicate values in their query string are treated as different pages: * http://www.example.com/?q= * http://www.example.com/?q=&q= * http://www.example.com/?q=&q=&q= * ... If the first page has a link to the second and the second a link to the third, `scrapy` enters an infinite loop, reque...
## Summary If the file mentioned in `scrapy genspider` already exists, then genspider should refuse to generate the the file. ## Motivation As it stands, existing code can be blown away if this command runs twice. ## Describe alternatives you've considered Prompting the user for overwriting existing spider.
0
Okay, first, I want to say, I'm not sure if this is equivalent to #872 But it would be nice to be able to completely hide the window border that looks like ![image](https://user- images.githubusercontent.com/6083371/65777089-3e890d00-e13b-11e9-9621-eb8338a1f127.png) What wasn't mentioned in the other topic was th...
Hi, Please add Anaconda prompt to list. I installed anaconda, but I can't see it in terminal list. Please help me.
0
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 1.0.0 **System** : Microsoft Windows 8.1 **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) ...
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
### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior I am unable to install a package (`@jest/core`) With a caret range (`@jest/core@^27.0.1`). When I do so, I get the `notarget` error. ### Debug Log 0 verbose cli [ 0 verbose cli '/User...
### 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 The artifacts of a merge conflict (`<<<< HEAD`, `||||`, `====`, `>>>>> <hash>`) in a `package-lock.json` file were accidentally commi...
0
http://scikit-learn.org/dev/related_projects.html currently references https://github.com/scikit-learn/scikit-learn/wiki/Third-party-projects-and- code-snippets but the latter duplicates a lot of the former's contents. Should we retire it and merge any missing (and still relevant) content into related_projects?
For instance have a look at: http://scikit-learn.org/dev/auto_examples/cluster/plot_dict_face_patches.html some of the centroids are duplicated, presumably because of a bug in the bad cluster reallocation heuristic.
0
[X ] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior FontIcon's onClick method's action should be able to override the hoverColor's reset callback after the click. ## Current Behavior When a hoverColor is specified for the fonticon, the method called by...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The `className` prop can be overridden by other tools or the user (eg. Styled Components). ## Current Behavior The `className` prop can not be overridden when the Drawer is of the type `temporary` ## ...
0
### Code Sample from Stamford [http://stamfordresearch.com/linear-regression-using-pandas-python/](url) (original code) [](url) import numpy as np import pandas as pd import matplotlib.pyplot as plt data = pd.DataFrame ({ 'length' : [94,74,147,58,86,94,63,86,69,72,...
X axis was inverted automatically and unexpectedly when plotting a series of data against another series of data using pandas. My example code blow creates three plots, only some, not all, of which shows inverted x axis. I think this behavior is very confusing for users even if there was some rationale behind it. I...
1
### Describe your issue. Hello, I was "pip install scipy" to install scipy in my m1 macbook pro. Then, errors came out. (I wrote it on Error Messages). Anyway I am currently developing in a virtual environment of python 3.9.5 through conda. I wonder why these errors occur during the installation process and how they...
**EDIT:** As of **2021-08-06** , this solution seems to work for **scipy 1.7.0** (native, not through rosetta): brew install openblas pip install cython pybind11 pythran numpy OPENBLAS=$(brew --prefix openblas) CFLAGS="-falign-functions=8 ${CFLAGS}" pip install --no-use-pep517 scipy==1.7.0 ...
1
It would be nice to implement MacOS/Linux style configurable hot corners actions.
# Summary of the new feature/enhancement I primarily use launchers to open (known) apps. As such, I don't need to know if it's a Win32 application, if it's a running process, et cetera. Similar to Spotlight, I would like as little detail to be returned as possible. An application's icon, along with its name is all I...
0
I just have a problem that when i click disable button and then click the uninstall button on the package and then I think that this package is remove because I can't see it in the package list in the setting.but it not because when i try to reinstall it by searching the package name again ,the uninstall and enable b...
_From@HitomiTenshi on May 17, 2015 1:39_ How to reproduce: * Go to settings -> Install * Find a package you have installed at the moment * Press disable and after that click on uninstall * Restart atom * Search for your disabled/uninstalled package You will now see that it is uninstalled AND disabled, b...
1
I tried using the types/angular-ui-bootstrap package, and now I have tons of build errors along the lines of: "Build" duplicate identifier 'angular' these are being raised from the angular-animate index.d.ts (which was fine before I imported angular-ui-bootstrap) I also get the error: Buile: Module 'angular.ui...
Regarding PR #32567 // cc @rbuckton @RyanCavanaugh, @DanielRosenwasser * I tried using the `@types/node` (10.12.21) package and had problems. * I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript I don't know what this split was intended to do, but I had some typescript com...
0
this was never meant to be exposed to the user, is not-documented, and is just plain confusing
this was always meant as a private implementation detail. deprecate it now!
1
How do we disable source maps on the static export? That is: `next build && next export` Now 'out/' has many `.map` files, which I'd like to avoid. Any solution? Couldn't find on the docs, thanks.
# Bug report If i use the latest next.js and latest preact together and described like in the documentation it doesn't work. Even i fixed the preact aliasing, i cannot build and run this setup in the serverless build target. ## Describe the bug If i follow the installation readme of the preact plugin it results in...
0
According to the manual — by default — the compiler option `strict` is set to `true`, and the option `useUnknownInCatchVariables` is currently set to `false`. That manual page also shows an example of what an implied `tsconfig.json` looks like — which doesn't currently depict the state of this relationship, but that...
In TypeScript 4.4, the option `"useUnknownInCatchVariables"` was introduced and was default enabled under `"strict"` which is the default for Deno. It is a good change, as it helps ensure code properly guards against non-errors being thrown, which if not properly guarded can cause their own runtime errors. The proble...
1
Using 0.10.7-insider on Windows 7 The implements keyword isn't highlighting correctly ![capture](https://cloud.githubusercontent.com/assets/563860/12849759/7150423c-cc75-11e5-9890-c46607820cbc.PNG)
Try the following example in VS code (0.10.6) in the dark theme: module Conway { export interface Foo { } export class Bar { } export class Cell extends Bar implements Foo { } } ![image](https://cloud.githubusercontent.com/assets/6461412/12140156/ee...
1
Using SQLAlchemy 1.2.14, I attempted to reflect a schema from a customer which contained several thousand tables, and noticed this was very slow. Using echo="debug" as an option on the engine, I noticed that the SQLAlchem reflection code is iteratively querying the database for table metadata, instead of issuing one ...
**Migrated issue, originally created by Mark Amery (@ExplodingCabbage)** https://www.postgresql.org/docs/current/static/datatype-json.html recommends using "jsonb" over "json" for most use cases, since its performance is superior. (The "json" type just stores the input as text, which has to be parsed in order to do...
0
![image](https://user- images.githubusercontent.com/40592585/68524139-14ac3400-02fe-11ea-9b73-30cabb19e1dc.png) ![image](https://user- images.githubusercontent.com/40592585/68524155-44f3d280-02fe-11ea-8dac-1901b93e0d67.png) How do I write it in JSX
## Example name experimental-amp ## Describe the bug I try to use a sample from https://ampbyexample.com/dynamic_amp/dynamic_content_after_user-interaction/ without luck. When I add `<div [text]="products[productId] + ' available'">Please select a product</div>` error while compiling occured `SyntaxError: /exper...
1
**Do you want to request a _feature_ or report a _bug_?** bug **What is the current behavior?** Edit: To clarify, importing SVGs directly works fine, as described here: https://create-react-app.dev/docs/adding-images-fonts-and-files/#adding-svgs. It only fails when used indirectly through an NPM package. When us...
Describe what you were doing when the bug occurred: 1. Turn on Profiler 2. The app sens a lot of small requests to BE 3. To make sure that all requests fulfilled, I went to Network TAB. When it was finished and stop profiling. 4. The profiler showed some results and then crashed. * * * ## Please do not rem...
0
The QA Vagrant tests are vital for ensuring the correctness of the Elasticsearch distributions. These tests do not currently pass and should be brought to green. Relates #16854
Now that doc values have become the default fielddata implementation, we should progressively deprecate in-memory fielddata so that doc values would be the only way to sort or aggregate on fields. * #14082 Numerics, dates and booleans * #16589 Not-analyzed strings * Geo-points (need to add doc values by defaul...
0
* Electron version: 1.6.10 * Operating system: Windows 10 (System scaling factor is 2.5) ### Expected behavior Create a BrowserWindow and the BrowserWindow's size is the same of option. ### Actual behavior The created BrowserWindow's size is larger than the option ### How to reproduce Just create a BrowserWi...
* Electron version: 1.6.8 or 1.7.1 * Operating system: Windows ### Expected behavior In windows multiple monitor setup with different DPIs, electron app starts out of bounds ### Actual behavior Should start at the same place where app was last opened ### How to reproduce 1. Have two monitors with 200% and...
1
Any app I'm running on a Pixel device (O MR1) with `flutter run` crashes with: 02-06 16:30:06.552 25519 25546 D OpenGLRenderer: HWUI GL Pipeline 02-06 16:30:06.571 25547 25547 I crash_dump64: obtaining output fd from tombstoned, type: kDebuggerdTombstone 02-06 16:30:06.571 735 735 I /system...
## Steps to Reproduce I updated flutter and compiled the app and tried to run. It crashed immediately. Tried it several times. ## Logs 02-04 17:10:10.083 10693-10936/com.raisedbythebeat.teacherfinder A/libc: Fatal signal 4 (SIGILL), code 1, fault addr 0x75f8880400 in tid 10936 (ui_thread) 02-04 1...
1
I'm behind a corporate firewall and have to have a .npmrc setup with a proxy and https-proxy. There appears to be something in next@6.0.0 that tries to connect to npm on launch and seems to ignore my .npmrc proxy settings as I'm seeing what look like proxy problems when I start my next app in dev mode. ## Expected ...
* I have searched the issues of this repository and believe that this is not a duplicate. When defining a variable with css outside of React class components there are no problems: const backgroundImageStyle = css` div { background-color: red; } `; class Dropdown...
0
**System information** * TensorFlow version (you are using): 1.12 * Are you willing to contribute it (Yes/No): Yes **Describe the feature and the current behavior/state.** Gradient Accumulation(GA) is a workaround to enable big batches on limited memory GPUs which has been supported in Caffe and PyTorch. Ins...
**System information** * CentOS Linux release 7.4.1708 * Source, hash: `bf4767c` * TensorFlow version: 1.12 * Python version: Python 3.4.9 * Installed using virtualenv? pip? conda?: * Bazel version (if compiling from source): 0.19.2 (bazel from centos repos) * GCC/Compiler version (if compiling from s...
0
In my application, I update figures every several seconds. I am not sure why, but WebAgg backend tends to draw text wrong. For example: ![webagg_text](https://camo.githubusercontent.com/97dcb8bc0587aaa54af2ea37c413be9dfa002b891f11c2702917abc96c9c97cf/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f617373657473...
### Bug summary Hi, When using `triplot` with a `label` the resulting legend contains two duplicated entries (even though the markers is None): plt.triplot([0,2,1],[0,0,1],[[0,1,2]], label='Label'); plt.legend() ![Screenshot 2022-05-03 at 12 17 10](https://user- images.githubusercontent.com/110...
0
**Describe the bug** A clear and concise description of what the bug is. Before submitting, please remove unnecessary sections. **To Reproduce** Steps to reproduce the behavior: add event listener to a div mounted with three _**Code**_ currentMount.addEventListener('mousemove', event => this.onM...
In r120, disabling orbit controls on mousedown no longer triggers mousemove events when dragging. To reproduce add the following code to misc_controls_orbit.html. This worked in the last several releases. Thanks. renderer.domElement.addEventListener('mousemove', ()=>{ console.log('mousemove'); ...
1
Still unsure if this problem is on numpy's side, but I tried downgrading to 1.14 (minimum numpy version for my dependencies) and verified it all works, no errors. Given the recent changes on `random` I thought of bringing it up with you guys, particularly @charris @mattip (from #14207 ) I am sorry I could not isol...
There is a complex set of questions around how to handle method resolution in the presence of `__numpy_ufunc__`. Currently in master is an extremely complicated set of rules that isn't documented and that I don't actually understand (see #5748 for the latest set of changes to this), so it's kinda hard to know whether...
0
I'm using Next.js framework and react-player component to play some music on my site. Everything is good until I navigate to the second page. Then the music player stops and when I go back to the first page, the music starts playing again. While I want the music to not be interrupted by going to different pages and ...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Automatically render the static folder to get access to some assets for the manifest.json file. ## Current Behavior The routing seems confused thinking that static is a page instead of an asset folder....
0
I've got an opaque string type. We basically use this type for things that are strings under the hood, but shouldn't be interchanged with actual free text strings- for example GUIDs. We also use the nominal type checking hack with the private void property to nominally type check them. We have a problem, though,...
`IDBKeyRange` is defined as follows. https://github.com/Microsoft/TypeScript/blob/master/bin/lib.d.ts#L11630 interface IDBKeyRange { upper: any; upperOpen: boolean; lower: any; lowerOpen: boolean; } declare var IDBKeyRange: { prototype: IDBKeyRange; ...
0
Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.18362.0 IntPtr Length: 8 x64: True Date: 08/05/2020 15:58:03 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
Platform ServicePack Version VersionString -------- ----------- ------- ------------- Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 # Steps to reproduce ## Test-CTRLC.ps1 [console]::TreatControlCAsInput = $true Start-Sleep -Seconds 1 $...
# Environment Windows build number: 10.0.18362.175 Windows Terminal version: 0.2.1831.0 PowerShell Core 6.2.1 PowerShell 5.1 I'm on a Microsoft Surface Book. There is no Pause key and no Break key. Ctrl+Break is not an option for stopping a program unless I plug in an external keyboar...
1
Having votes on a signle request does not appear to be effective, so maybe if in stead of voting on an exisisting one we create hundreds of code folding requests will they add it? been wanting to use VS Code for months now, and it's frustrating to have complicated features like extenstions added, but something simpl...
I searched but couldnt find this in the issues. Id love to be able to collapse sections of the code. Any thoughts?
1
### Describe the bug TypeError is raised when running a query that joins two tables and has a with_entities() clause, if the with_entities contains a column that is of type sqlalchemy_utils.JSONType. That comes from the SQLAlchemy-Utils library. I don't think this is a bug in SQLAlchemy-Utils since it worked in pre...
**Migrated issue, originally created by Anonymous** The code looks like this (skipping a log of details): class visit_dim_category(object): pass ... class schema ... #somewhere in class schema: self.visit_dim_category = Table( "visit_dim_category", self.metadata, Column("id",Integer, primary_key=True) ,...
0
Tried building Atom on Windows (8.1) after a long time and ran into some problems with the latest master version (`98d3646`). C:\atom [master]> script/build Node: v0.12.2 npm: v2.7.4 Python: v2.7.7 Installing build modules... Installing apm... child_process: customFds option is ...
if it is intended to be used as a text edior ,and i think it is, it takes really long time to atom get opened. I mean, to edit a simple text file; i can open tens of leafpad instances until atom gets started. I do not expect it to be as fast as leafpad but it should not be slower than sublime.
0
I would like to know if it is possible to mix validation group and group sequence ? I used GroupSequence like this : * @Assert\GroupSequence({"Branch", "Step2"}) * @ProjectAssert\Configuration(groups={"Step2"}) */ class Branch // some property with validator. // and...
Currently, the API of `ValidatorInterface` does not support group sequences. This should be made possible by supporting the following calls: $validator->validate($object, new GroupSequence(array('first', 'second'))); $validator->validateProperty($object, 'foo', new GroupSequence(array('first', 'sec...
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for 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 * **Electron Version:** * 7....
1
## 1\. Environmental description Horizontal sharding database ssm project + spring-namespace the question like issues#24876 I submitted the two questions So far it has not been solved. ## 1.1. dependencies <dependencies> <dependency> ...
Sometimes shardingValue have been removed in hintShardingAlgorithm? HintManager hintManager = HintManager.getInstance(); hintManager.setDatabaseShardingValue(ShardingActivitiConstant.ALL_DATASOURCES); List<Order> orderList = orderService.getOrderList(); same code,some times the value of ...
0
## 🐛 Bug ## To Reproduce import torch input = torch.zeros ([1,1,1]) input2 = torch.zeros ([1,4,1,1]) out= torch.zeros([1]) torch.cholesky_solve(input=input, input2=input2, out=out) Output: free(): invalid pointer Aborted (core dumped) ## Expected behavior Expect ...
Duplicate of pytorch/vision#1172, but in main torch repo so we can keep all milestone issues together.
0
### System info * Playwright Version: [v1.31.1] * Operating System: [All] * Browser: [not relevant] ### Source code **Config file** // playwright.config.ts import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ ... testDir: "tests", ...
### System info * Playwright Version: 1.32.2 * Operating System: Pop!_OS 22.04 * Browser: Chromium and WebKit (Firefox is ok) * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. **Config file** N/A **Test file (self-contained)** // scr...
0
### Describe the issue: xref: numba/numba#8478 For a long time, the `.types` attribute on ufuncs has contained char typecode descriptions of the implemented loops. For example: In [1]: import numpy as np In [2]: np.sin.types Out[2]: ['e->e', 'f->f', 'd->d', 'f->f', ...
Apologies if this is a duplicate as it seems such an obvious bug but I could not find another issue about it. Legacy printing mode omits the plus signs for complex arrays. >>> import numpy as np >>> np.ones(5, dtype=np.complex128) array([1.+0.j, 1.+0.j, 1.+0.j, 1.+0.j, 1.+0.j]) >>> np.set_p...
0
#### A small, complete example of the issue # Your code here df = pd.DataFrame(columns=['a','b','c']) df.groupby('a',as_index=False).agg({'b':'nunique'}) #### Expected Output We shouldn't get an Exception #### Output of `pd.show_versions()` INSTALLED VERSIONS \------------------ commit:...
#### Code Sample, a copy-pastable example if possible In [18]: b = pandas.Series() In [19]: g = b.groupby(level = 0) In [20]: g.nunique() --------------------------------------------------------------------------- IndexError Traceback (most recen...
1
Move all parent/child queries (has_child, has_parent, top_children) from id cache to field data. This has a number of advantages: * Parent/child memory footprint will get reduced by using field data, compared to what it now takes with id cache. The id cache use concrete object arrays to store the parent ids which ...
If there is already an ES running on a port and we try to bind to it, you can get weird errors. In case they're NPEs, I'm assuming because it's 2.x trying to talk to 1.4.4. We should handle this more gracefully. [2015-09-21 10:01:01,575][INFO ][org.elasticsearch.node ] [Fabian Cortez] version[2.0.0-r...
0
when i press alt the F in the File menu is underlined yet when i press ALT+F i get editor:move-to-end-of-word? and when i press ALT+H to supposedly access the help menu i get editor:delete- to-beginning-of-word? the rest of the menu keyboard shortcuts work conflict only happens when an editor window has focus i...
I don’t really stick to one computer to program, and some computers don’t have editors. Currently I use Sublime Text portable, but it would be great if there was a portable version of Atom.
0
We are using the Java client, and we have some custom code to inflate Java objects from the returned doucments. The get and search APIs seem to return completely different interfaces and object trees, even though they both contain the same underlying information. This is a problem for us because our inflation code is...
This typically happens if the query contains eg. two inner hits definitions on the same nested path and does not define explicit names for inner hits.
0
http://stackoverflow.com/questions/32553207/values-missing-when-loaded-from- pandas-hdf5-file/32587108?noredirect=1#comment53034458_32587108 e.g. if I df.to_hdf('foo.h5','df',encoding='utf-8') then pd.read_hdf('foo.h5','df') should pick up the encoding for each table (unles...
#### Code Sample, a copy-pastable example if possible >>> ser = pd.Series(pd.Categorical([np.nan])) >>> ser.nunique() ValueError: buffer source array is read-only #### Problem description The above code gave 0 in v20.3 and is expected to give 0 also in v0.21. The problem is independent of if ...
0
I cooked up a minimal example (a modified example from the julia docs) in order to show my problem: func_dict = Dict{Int,Function}() function mycustomsort{T}(a::T, b::T) return func_dict[1](a,b) end # Last chance to define mycompare here(!!) const mycustomsort_c = c...
It seems much harder to pass a proper closure as a callback function in Julia 0.6 than in previous versions due to #17057. In particular, the method ~~described in the manual and~~ in this blog post no longer works: passing the `Function` via a "thunk" `void*` that is called from a `cfunction` fails because the `Func...
1
Hello, I am new to 6to5 and I am trying to convert some of my ES6 files into ES5. I have had some success with this but wasn't entirely sure my approach was right. This is what I am doing: 1. Using `grunt-6to5` to transpile my code 2. Using `grunt-browserify` to concatenate my files into a bundle using the fo...
## Bug Report **Current Behavior** Given the current code block: test(function() { var a = 1; // one } // two ); The first line of comment is incorrectly attributed to the trailingComments of the anonymous function: {...
0
### The problem Although they are not commonly used, SecurityBundle provides some useful functions called `logout_path()` and `logout_url()` (see reference). In regular Symfony applications I don't use them because I always know exactly the URL or the route name associated with the logout action. However, when deve...
Hi, I am trying to use the new auto wiring feature to automatically load the entity manager to my service: my_test_service.test: class: MyTestBundle\Service\TestService autowire: true use Doctrine\ORM\EntityManager; class TestService { public function ...
0
### Describe your issue. 404 not found ### Reproducing Code Example Here: https://docs.scipy.org/doc/scipy/reference/tutorial/index.html#user-guide when click `Getting started` 404: https://docs.scipy.org/doc/scipy/reference/getting_started.html ### Error message Not Found ...
After Big Sur update I'm not able to install scipy in any of my virtualenvs. pip install scipy generate this error numpy.distutils.system_info.NotFoundError: No lapack/blas resources found. Note: Accelerate is no longer supported. ---------------------------------------...
0
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Orientation in StepButton's props should be optional as document described. ## Current Behavior Orientation is a required prop, cause type missmatch. ## Steps to Reproduce (for bugs) <S...
### Problem description React release 15.2.0 will cause some of the components generating Unknown prop `tooltipPosition` on tag. Remove this prop from the element. For details, see https://fb.me/react-unknown-prop Referring https://gist.github.com/jimfb/d99e0678e9da715ccf6454961ef04d1b ### Versions * Mate...
0
I think that certain functions should return the same type as the input, if they implement `__array_wrap__`, but aren't necessarily subclass of `ndarray`. The pandas `Series` class is an instance of this. We'd like it if functions like `where`, `diff`, and a few others returned a `Series` object similar to how ufuncs...
Is there a reason `np.diff,np.ones_like,np.empty_like` do not call `__array_wrap__` on exit; am I doing something wrong, or is this a bug? (using numpy 1.7.1) Create a NDLike class which is a container for a ndarray In [34]: %cpaste Pasting code; enter '--' alone on the line to stop or use Ctrl-D....
1
## Problem Description When running `npm start` after running `npm install` in the webpack example, the following error occurs: `Module build failed: Error: Failed to load plugin material-ui: Cannot find module 'eslint-plugin-material-ui'` Steps to Reproduce: 1. `git clone --depth 1 https://github.com/callemall...
### Problem description Documentation for AutoComplete props is incorrect. The following passage: Other properties (not documented) are applied to the root element. Should read: Other properties (not documented) are applied to the TextField element.
0
When working on the Multiview PR #16316 I'm facing a problem with the shader generation: If you are going to use multiview you need to add an specific directive on the shader: `layout(num_views = 2) in;`. This will require a FBO with a TextureArray2D attached with two views. Typically if we require a multiview sessi...
It would be necessary to have multiple multiple webglprogram on a single material to solve #11400. This would require several steps to be taken to get this done: * Figuring out what parameters are necessary to generate a webglprogram and use a single parameter source to create it. (#18279) * Build single parame...
1
pytorch1.6 ubuntu20.0 code: for i, (inp, labels) in enumerate(tqdm(train_loader)): inp = inp.to(device) with torch.cuda.amp.autocast(): preds = model(inp) batch_size = inp.size(0) text, length = converter.encode(labels) preds_size = torch.IntT...
## 🐛 Bug get cuDNN error: CUDNN_STATUS_BAD_PARAM in cnn-lstm network forward method ## To Reproduce import torch from torch import nn, optim from torch.cuda.amp import GradScaler, autocast class Net(nn.Module): def __init__(self): super(Net, self).__init__() ...
1
#### Describe the bug My TSLint gives an error (see screenshot) after upgrading from 0.21.4 to 0.23.0 axios. #### To Reproduce If in `AxiosPromise` you pass any value other than `unknown`, then TSLint throws an error. For example, if I receive a {name: string} object in response, then I cannot use the interface to...
#### Describe the bug CVE-2021-3749 describing a severity 7.5 Regex DoS vulnerability All our builds failing as a result of HIGH rating during security scan. #### To Reproduce https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3749 #### Expected behavior Expect there to not be a security hole (sorry - bot...
0
Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 08/05/2020 18:14:55 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
Currently loss functions does not allow weighting each instance differently. For example, in machine translation, we don't want to calculate losses for PAD labels. This can be done with cross entropy by specifying label weights, but can't be done with MSELoss (which is used to train critic/baseline model if we apply ...
It would be useful to have losses that return a batch of losses, rather than summing/mean-ing them. This is useful e.g. for adding weights on the loss that vary for each batch element, and for masking losses on the outputs of variable-length RNNs. Most common losses can be emulated using element-wise arithmetic (or ...
1
## Steps to Reproduce I've forked the geofencing example written by @bkonyi at https://github.com/MaikuB/FlutterGeofencing (edit: apologies, I've deleted the fork but I imagine it's not needed anymore. If it is then let me know) to demonstrate this 1. Follow the steps for enabling a plugin to execute headless D...
Attempting to use a plugin in the context of a background isolate spawned by another plugin will cause failures when making calls over method channels. On Android, the `PluginRegistrant` interface is used to allow for plugins to register the application's plugins with a `FlutterNativeView` but no equivalent is availa...
1
I'm in a LAN, with last windows build from http://atom.someguy123.com/#sthash.eU1lJdcA.dpbs System is a Windows7 x64. If I open a local file (desktop for example) loads correctly the file. If I open a remote file (on the private network \172.28.26.*) treeview sees all the files and folders, when I click on a file...
OS: Windows 7 Atom Version: 0.95.0-3f0640f Hosting files on a network drive (i.e. \network\private\myfiles) and opening files in atom does not show anything. Files list on left pane and a tab opens up in editor, but tab is empty and shows nothing. Additional Note: I tested using a mapped drive and it worked. It a...
1
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.9-SNAPSHOT * Operating System version: MacOS 10.14.5 * Java version: 11.0.2 ### Steps to rep...
* 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.5 * Operating System version: macOS 10.15.3 * Java version: 1.8.241 ### Steps to reproduce t...
0
**Jon Chase** opened **SPR-3954** and commented Here's the forum thread that covers the bug: http://forum.springframework.org/showthread.php?t=44442 Basically, when using the Spring MVC JSP forms taglib in FreeMarker templates, binding errors are not output by the <form:errors /> tag. Other tags seem to work fine,...
**Dave Syer** opened **SPR-8683** and commented AntPathMatcher.AntPatternComparator algorithm wrong for hierarchical matches, Consider an incoming request GET /hotels/foo/rooms and two patterns that match 1: /hotels/{hotel}/** 2: /** Intuitively 1 is more specific than 2, so the comparator should return negati...
0
* Electron version: 1.6.6 * Operating system: Linux Slackware x64 ### Expected behavior Normal install ### Actual behavior npm -g install electron /usr/local/bin/electron -> /usr/local/lib/node_modules/electron/cli.js > electron@1.6.6 postinstall /usr/local/lib/node_modules/ele...
我想通过快捷方式来获取目标路径的参数,是否有详细的API ,或者代码,想通过参数来打开软件跳转到不同的页面,请问,大大们是否有相关的质料。 I want to get the parameters of the target path through the shortcut. Do you have a detailed API or code to open the software to jump to different pages through the parameters? Could you please tell me if you have the relevant materials? Is there...
0
##### Description of the problem I am working on a Three.js project which requires thousands of unique meshes to be rendered. Since number of objects have big impact on rendering performance I merged those objects into single mesh (manually, not using geometry.merge() function) and created "pseudo objects" which kee...
##### Description of the problem I'm working with a set of models that use vertex color alpha. Now that threejs uses buffer geometry almost exclusively, adding in vertex color alpha is pretty simple, and it would be nice to see these changes upstream. The changes mostly involve declaring color as a vec4 instead of v...
1