text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
When you want the FlashBag to set a message, you'd like to do getFlashBag on the session. However, you can only achieve this by type hinting an injection on the Session\Session object. The Session\SessionInterface doesn't contain the "getFlashBag" method thus you can't use the Request::getSession(); If you do want t...
I don't know if this is intended, but the `SessionInterface` from HttpFoundation does not contain the `getFlashBag` method. Why is this annoying? Well if I have got a request in a controller and I call `getSession` on it my IDE provides autocompletion for the `SessionInterface` and I am not seeing the `getFlashBag` m...
1
The following code is taken in part from the contour demo of the matplotlib documentation. I am using contourf instead of simple contour. The contour plot is shown just as I want it to be within the matplotlib figure window. As soon as it comes to saving I am not content with the result. A PNG save looks perfect, bu...
This is the underlying problem raised in #1178. It is illustrated by the test below; note that boundary anomalies are visible in all forms--agg on the screen, and pdf and svg displayed with a viewer--but in different places depending on the viewer and the size of the figure as rendered. Note that the colorbar is ...
1
**Juha Syrjälä** opened **SPR-9578** and commented I am trying to use a result of method call to a spring bean as a part of the cache key, but that doesn't seem to work. `@Inject` private KeyCreatorBean keyCreatorBean; `@Cacheable`(value = "cacheName", key = "{`@keyCreatorBean`.createKey, #p0}") `@Override` ...
**Alex** opened **SPR-2294** and commented I have a class 'MyBean' with a property 'myMap' of type java.util.Map. Spring allows me to configure an instance of this class as follows, using mapped properties: <bean id="myBean" class="com.foo.MyBean"> <property name="myMap[foo]" value="a" /> </bean> This works f...
0
# System information (version) * OpenCV = 4.5.5.dev * torch = 1.6.0 # Steps to reproduce net = cv2.dnn.readNetFromONNX(onnx_path) # Issue I am getting the following error. when I updated the PyTorch to the latest version like 1.12.0 I am getting a new error `(-215:Assertion failed) inputs.size() in function ...
##### System information (version) * OpenCV => 4.2 * Operating System / Platform => MacOS Catalina v.10.15.3 * IDE => Spyder 4.1.0 * Compiler => python3.7 ##### Detailed description I can open images and process them with openCV, but when it comes to destroying windows shown with cv2.imshow() using cv2.des...
0
There was 1 failure: 1) Symfony\Component\Process\Tests\SigchildEnabledProcessTest::testPTYCommand Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ 'foo +sh: 1: 3: Bad file descriptor ' cat /etc/lsb-release DISTRIB_I...
Running phpunit src/Symfony/Component/Process I got the error There was 1 failure: 1) Symfony\Component\Process\Tests\SigchildEnabledProcessTest::testPTYCommand Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ 'foo +sh: 1:...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Steps to Reproduce (for bugs) 1. I have 2 pages on pages folder: `category.js`, `detail.js` 2. Open browser 3. I go to `/category` 4. Then go to `/detail?id=1` 5. Then go to `/detail?id=2` 6. Press back button...
In the firebase examples (I'm using Typescript from the next.js example folder) but have also tried https://github.com/jthegedus/firebase-functions- next-example), it's not clear how to add images - as any attempt to add them to the `/src/public` folder included in the examples or indeed a `/src/static` folder (to ma...
0
Here is an example, when auc is calculated wrong: import numpy as np from sklearn.metrics import roc_curve, auc p = np.array([3E-011, 5E-11, 2E-010, 1E-008, 2E-006, 1.29E-005, 0.0003, 0.1, 0.2, 0.3, 0.46]) p = np.expand_dims(p, axis=1) y = np.array([0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1]) ...
pred=[1e-10, 0, 0] sol=[1, 0, 0] metrics.roc_auc_score(sol, pred) # 0.5, wrong, 1 is correct pred=[1, 0, 0] sol=[1, 0, 0] metrics.roc_auc_score(sol, pred) # 1 correct
1
I use /hack/local-up-cluster to start a local k8s. And operate like below: ./cluster/kubectl.sh run my-nginx --image=nginx --replicas=2 --port=80 CONTROLLER CONTAINER(S) IMAGE(S) SELECTOR REPLICAS AGE my-nginx my-nginx nginx run=my-nginx 2 0s ...
A new Pod with HTTP Health Check probe is created as: apiVersion: v1 kind: Pod metadata: name: wildfly-pod labels: name: wildfly spec: containers: - image: jboss/wildfly name: wildfly-pod livenessProbe: # an http probe ...
1
#7827 added a command to the Dockerfile installing gevent here. #7744 created a new requirements file to install extra dependencies, one of them gevent here ### Expected results Adopt only one strategy -> #7744
Importing same dashboard with changes generates a copy ### Expected results Dashboard gets updated ### Actual results Multiple copies of the same dashboard. Slices are updated correctly #### Screenshots ![image](https://user- images.githubusercontent.com/767180/64529890-37c16400-d30c-11e9-8d8d-aca0cff07527.png)...
0
_Please make sure that this is a build/installation issue. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template_ **System information** * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 * Mob...
_Please make sure that this is a build/installation issue. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template_ **System information** * OS Platform and Distribution (e.g., Linux Ubuntu 16.04):Win 10 * TensorFl...
1
Assume you want to evaluate or grid search the parameters of the following pipeline from sklearn.preprocessing import Imputer from sklearn.linear_model import LogisticRegression from sklearn.pipeline import Pipeline p = Pipeline([ ('imputer', Imputer(strategy='media', missing_v...
When `GridSearchCV` sees a NaN, it panics. This is annoying when the estimator is a pipeline that starts with an `Imputer`, as now the imputer must be trained outside of the grid search giving potentially skewed results.
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. ### test * Dubbo version: 2.7.0 * Operating System version: * Java version: 1.8 ### Steps to reproduce this issue 1. 通过spring配...
* 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.4.1 * Java version: 1.8 ### Actual Result dubbo/dubbo-common/src/main/java/org/apache/dubbo/c...
0
Challenge Clone an Element Using jQuery has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <scrip...
Challenge Waypoint: Clone an Element Using jQuery has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. ## Issue I believe...
1
Looks like we lost the duplicate-react warning (#3332) due to merging #5205 which contained sophiebits@`4ba0e95`
ERROR: type should be string, got "\n\nhttps://gist.github.com/syranide/51bd85cadd0b439d8a05\n\nHighly unscientific delta below (~700b). Shouldn't be _that_ significantly\naffected by addition of \"behaviors\" when doing it proper, contains a bunch of\nattributes not currently in React and also duplicates the list of node names\nthat exist to create the DOM components.\n\nPS. This is the more or less 100% complete list of nodes and attributes (with\nthe exception of some obscure ones that weren't listed because they are\ndeprecated/not standard).\n\n \n \n raw gz Sizes\n 380459 75767 build/JSXTransformer.js\n 622841 127139 build/react-with-addons.js\n 128227 35285 build/react-with-addons.min.js\n 566573 115629 build/react.js\n 118837 32732 build/react.min.js\n \n \n raw gz Sizes\n 380459 75767 build/JSXTransformer.js\n 626512 127876 build/react-with-addons.js\n 130808 35933 build/react-with-addons.min.js\n 570244 116363 build/react.js\n 121417 33424 build/react.min.js\n \n\n"
0
The `_optimize` API is great for improving performance of time series indices or other cold indices, but the name of it is incredibly misleading. Lucene changed from calling it `optimize` to `forceMerge` back in Lucene 3.5 (from this blast in the past, eh @s1monw!). Maybe it's time that we change it too?
Optimize is a very costly operation, and rarely necessary. I think it's trappy because it's name is so tempting, and also because in ES the optimize is done in the background (so the request returns immediately), hiding the true cost. There are times when it's appropriate, e.g. in the logging use case when you know ...
1
With bazel 0.26.1 gcc 7.4 cuda 10.1 update 2 and the latest git clone of tensorflow, I hit the following error at the bazel build command ERROR: /home/mh.naderan/.cache/bazel/_bazel_mh.naderan/dacf7a124fc721f30ac789c201b3b139/external/llvm/BUILD.bazel:201:1: C++ compilation of rule '@llvm//:llvm...
**System information** * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Linux RedHat 7.6 * Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: N/A * TensorFlow installed from (source or binary): source * TensorFlow version: master branch * Python version:...
1
# Checklist * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was already fixed in the master branch. * I have included all related issues and possible dup...
# Checklist * I have 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
# Description Importing pandas makes plotting with matplotlib and standard datetime objects impossible. A type error is raised in matplotlib because pandas import datetime and "override the global" one. I would not expect pandas to override the default datetime. After importing pandas one cannot use datetimes for ...
register it upon plotting? http://stackoverflow.com/questions/13988111/importing-pandas-in-python- changes-how-matplotlib-handles-datetime-objects
1
use crypto/tls connect to server with self-signed certificate handshake failure go version: go version go1.5.2 darwin/amd64 os: osx 10.10 > code: > cert, err := tls.LoadX509KeyPair(crtPath, keyPath) > tlsConfig = tls.Config{Certificates: []tls.Certificate{cert}, ClientAuth: > tls.VerifyClientCertIfGiven, In...
by **andreas@ionisiert.de** : What steps will reproduce the problem? cd rm -rf go hg clone -u weekly https://go.googlecode.com/hg/ go/ cd go/src ./all.bash go get code.google.com/p/goprotobuf/{proto,protoc-gen-go} package code.google.com/p/goprotobuf/proto import...
0
->add('recipientContacts', EntityType::class, [ 'mapped' => false, 'required' => false, 'multiple' => true, 'expanded' => false, 'class' => Contact::class, 'query_builder' => function (EntityRepository $repository) { return $repository->createQu...
In #12006, Symfony introduced the concept of ExpressionFunctionProviders. The consequence is that you cannot use the DependencyInjection component from 2.6 together with an older version of the ExpressionLanguage component. Is there a way to make the developer's experience easier? Can we maybe add the old behaviour a...
0
When following the tutorial, I get a syntax error. Package.json: { "name": "next-version", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "dev": "next" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "next": "^6.0.0", "react": "^16.3.2", "re...
Next.js has example and work with sw-precache as service-worker. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior It should be possible to use Workbox and workbox-webpack-plugin to create a service worker. ## Current Behavior When adding followi...
0
When trying to create an Isolate in `--debug` mode the Dart VM is unable to fetch the Dart source code for the new Isolate. The error is thrown when tapping the `Start` button in the `services/isolate.dart` example. This issue was previously reported as #5814 and was partially fixed to work in `--release` mode ...
* ubuntu 17.04 ![flutter-error](https://user- images.githubusercontent.com/21167871/33302423-e836c298-d436-11e7-9e95-554be98368c2.png)
0
# Summary of the new feature/enhancement # Proposed technical implementation details (optional)
# Environment Windows build number: Microsoft Windows [Version 10.0.18362.356] Windows Terminal version (if applicable): 0.5.2681.0 # Steps to reproduce Run this litle command in the terminal using a cmd.exe tab to produce a little box: echo ┌┐ & echo └┘ # Expected behavior The box should have p...
0
### Problem description Button href component return error when clicked. ### Steps to reproduce import MenuIcon from 'material-ui-icons/Menu'; import AppBar from 'material-ui/AppBar'; import Button from 'material-ui/Button'; import Hidden from 'material-ui/Hidden'; import IconButton f...
### Problem description Upgrading to React V16 throws error: this.updater.enqueueCallback is not a function ### Steps to reproduce yarn add react@next react-dom@next ### Versions * Material-UI: v1.0.0-beta.5 * React: @next * Browser: Chrome ### Description When clicking a button, dropdown etc. this.updat...
1
Tried to compile rustc@9b9833299245cc1eac68b52169e9152d0f412d6b on my Windows 7 x64 (MSYS2) when it crashed. Crashed even after running `make clean` first. For the record, I tried to compile with `RUSTFLAGS='-C codegen-units=8'` set. $ export RUSTFLAGS='-C codegen-units=8' $ make RUST_BACKTRACE=1 ...
==> ./configure --prefix=/Users/andrewrynhard/develop/homebrew/Cellar/rust/HEAD --disable-rpath --enable-clang --release-channel=nightly configure: configure: note, user-provided CC looks like clang; CC=clang. configure: configure: CFG_USING_CLANG := 1 configure: error: bad CL...
0
On: `Microsoft Windows [Version 10.0.17763.134]` I have implemented conpty in my terminal emulator: https://github.com/wez/wezterm I can successfully run `target\debug\wezterm.exe` to spawn console applications such as `cmd.exe` `powershell.exe` and `bash`. The issue I'm seeing is that when I launch bash, either...
# Environment Windows build number: 10.0.18362.267 Windows Terminal version (if applicable): Windows Store version (latest) Windows Terminal (Dev Build) # Steps to reproduce I have build Terminal from source and am using it successfully, but I would like to try the version from the ...
0
Repro Steps: kubectl create -f nginx-deployment.yaml deployment "nginx-deployment" created kubectl get deployments NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE nginx-deployment 3 3 3 3 0s kubectl rollout histor...
## what * Let the user override the default `change-cause` generated by `kubectl` by specifying it in the `metadata` of the resource file Example: ![image](https://cloud.githubusercontent.com/assets/52489/15233372/04024156-185d-11e6-8d1f-9f4131bd7829.png) ## why * The automatic annotations are not very help...
1
Hello, first, thank you for this amazing library ! :) It is my first time reporting an issue, so please, feel free to let me know if anything is improper. The code for reproducibility import seaborn as sns import matplotlib.pyplot as plt import pandas as pd a = [0,1,2] b = [1,...
This is the code that I ran import matplotlib.pyplot as plt import seaborn as sns fmri = sns.load_dataset("fmri") fmri.info() sns.set(style="darkgrid") sns.lineplot(data=fmri, x="timepoint", y="signal", hue="region", style="event") plt.show() This is the error I ...
1
I am suggesting to create opencollective and spent this money to contests and grants. For example: * grant for new Three.js UI * contest with particles * etc. This is not duplicate of #11318 because this issue more about contests than OpenCollective and suggesting how to spend this fund.
Being able to provide an optional callback function to customize the URLs being requested by ColladaLoader would be very appreciated.The function would be unique per ColladaLoader instance, and would create the URL parameter of the THREE.ImageUtils.loadTexture() call around line 3483, and possibly the DAE around 109 ...
0
**Sergio Bossa** opened **SPR-4433** and commented The protected ServletRequestAttributes#getSession(boolean ) method returns a null session on child threads. This is wrong because it doesn't get into account what happens in the constructor: [code] public ServletRequestAttributes(HttpServletRequest request) { ...
**Sam Brannen** opened **SPR-9619** and commented #### Status Quo Unlike the Spring .NET Expression Language, the Spring Expression Language currently does not provide a means to retrieve unique elements within a collection. * * * #### Use Case and Work-Around With raw collection _projection_ , the resulting col...
0
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior ## Steps to Reproduce (for bugs) next.config.js module.exports = (phase, { defaultConfig }) => { return { publicRuntimeConfig: { defaultEnvironmentSettings: 'test'...
Although I see the use case for this, I personally will never use this feature. I lose too much flexibility & reusability (and/or gain awkwardness) by not using SASS/Stylus/whatever. And with a cached, single (or not) stylesheet, I won't suffer any performance loss by not taking the small, as-needed css module appro...
0
# does not work in production I'm having an issue with next link, on my development environment the component work really well, i have included the code for the component bellow, my main issue is when i deploy to production (im using zeit now) the link does not work and anything happens when the button is clicked, ...
This is bug report Link does not work with css-module imported. That happens when page with Link has no css, and linked page has. No errors in console, so im not sure about reasons, but there is minimal repo to reproduce: https://github.com/standy/next-css-error Bug appears in `next@7.0.0` \+ `next-css@1.0.1`, ...
1
Hello. We using react for some our projects and found, what on staging servers it start generate warning about "It looks like you're using a minified copy of the development build of React. When deploying React apps to production, make sure to use the production build which skips development warnings and is faster"....
Hello. Since upgrading to v15 I get this all over the place in my unit tests: `Warning: It looks like you're using a minified copy of the development build of React. When deploying React apps to production, make sure to use the production build which skips development warnings and is faster. See https://fb.me/react-...
1
### Problem description When a click for the first time on a Link which is inside of a MenuItem and an IconMenu it shows the following warning in the browser's console : warning.js:44 Warning: Unknown props `desktop`, `focusState` on tag. Remove these props from the element. For details, see https://fb.me/react-unk...
### Spotted errors Warning: Unknown props `desktop`, `focusState` on <a> tag. Remove these props from the element. in a (created by Link) in Link (created by Menu) in div (created by List) in List (created by Menu) in div (created by Menu) in ClickAwayListener (creat...
1
Before filing a bug, please check whether it has been fixed since the latest release: run "hg pull -u" and retry what you did to reproduce the problem. Thanks. What steps will reproduce the problem? 1.goinstall github.com/mattn/go-gtk/gtk 2.open browser to http://godashboard.app...
The following problem occurs in the gcc5 branch and trunk. It was found when testing on pp64le Ubuntu 14.04 and 14.10 but the problem also occurs on x86 with gccgo. It works with golang on both platforms. Here is a testcase that demonstrates the failure: package main import ( "encoding/json" "fmt" ) type Ho...
0
Hi, I've searched the sources to find an equivalent to the Parser and Formatter- concept in AngularJS 1.x. As it looks like, we can use custom Value-Accessors to format and parse bindings. * Is this a good idea? * If yes, is the following implementation (that works and parses/formats a German Date in the format...
**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 ...
0
React version: 18.2 ## Steps To Reproduce 1. download npx create-react-app my-app --template redux-typescript 2. npm start Link to code example: `function Ddd() { return ( <React.StrictMode> <Dd /> </React.StrictMode> ); }` `function Dd() { console.log(12); return <div>12</div>; }` `root.render( <Ddd /> );`...
React version:18.0.0 with 18 import ReactDOM from "react-dom/client"; const root = ReactDOM.createRoot( document.getElementById("root") as HTMLElement ); root.render( <React.StrictMode> <App /> </React.StrictMode> ); with 17 import ReactDO...
1
**Is this a request for help?** (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.): **What keywords did you search in Kubernetes issues before filing this one?** (If you have found any duplicates, you should instead reply there.): * * ...
I was mostly following this guide, which seems to be either deprecated and/or broken: https://github.com/kubernetes/kubernetes/blob/master/docs/getting-started- guides/ubuntu.md One key bug, one of the scripts references the wrong Github account, fix: diff --git a/cluster/ubuntu/download-release.sh ...
0
Rather than the complex script for radio buttons, we should go for a more semantically meaningful option similar to the one in the link below (yes I know it's using javascript but that's only to apply the active class for demonstration). It is more complex semantically but it gets rid of the javascript and adds nati...
My data source returns objects instead of strings (because they carry additional metadata besides the autocomplete label) I can get away with this by overriding every callback to perform the requested logic only on the label, but for some reason, the 'updater' callback returns an [Object object] string instead of my...
0
As Unicode TR11 suggested, all neutral characters map to halfwidth or narrow characters. According to EastAsianWidth following characters are neutral: ✖ 0x2716 ✚ 0x271A ✭ 0x272D ✹ 0x2739 so they should be halfwidth or narrow, but is rendered full-width in CMD.exe, which is causing terminal disarrangement. Y...
# Environment Windows build number: 10.0.18362.239 Windows Terminal version (if applicable): 0.2.1831 Any other software? No # Steps to reproduce Just open the terminal and write some text. # Expected behavior Normal font rendering # Actual behavior ![Capture](https://user- images.g...
0
# Environment Windows build number: Microsoft Windows [Version 10.0.18362.418] Windows Terminal version (if applicable): Version: 0.6.2951.0 # Steps to reproduce 1.) Set the initialRows value to 30, and open a new wt instance 2.) Shrink the window to approximately half the size vertically ...
# Environment Windows build number: 18972 Any other software?: WSL installed # Steps to reproduce * Sign out of Windows * Sign back in * Start Terminal really quickly and open up a WSL instance * The WSL instance does not have Windows file paths connected to it (e.g: typing in `...
0
#### Challenge Name https://www.freecodecamp.com/challenges/create-a-set-of- checkboxes#?solution=%0A%3Clink%20href%3D%22https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DLobster%22%20rel%3D%22stylesheet%22%20type%3D%22text%2Fcss%22%3E%0A%3Cstyle%3E%0A%20%20.red- text%20%7B%0A%20%20%20%20color%3A%20red%3B%0A%20%20...
Challenge arrow-functions has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.76 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. arrow functions are described as ()=>( return ... ...
0
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME * with_sequence ##### ANSIBLE VERSION ansible-playbook 2.3.2.0 ##### CONFIGURATION ##### OS / ENVIRONMENT 3.10.0-514.6.2.el7.x86_64 ##### SUMMARY This is my playbook. * * * * hosts: all tasks: * name: sequence check debug...
##### ISSUE TYPE Bug Report ##### COMPONENT NAME core ##### ANSIBLE VERSION ansible 2.2.1.0 ansible 2.3.0 ##### CONFIGURATION ##### OS / ENVIRONMENT CentOS Linux 7 ##### SUMMARY List order is lost using with_items ##### STEPS TO REPRODUCE --- - hosts: localhost ...
1
**Migrated issue, originally created by Adrian (@thiefmaster)** Probably a bit early since 9.5 isn't out yet, but once it's out this would be pretty useful. https://wiki.postgresql.org/wiki/What's_new_in_PostgreSQL_9.5#INSERT_..._ON_CONFLICT_DO_NOTHING.2FUPDATE_.28.22UPSERT.22.29 This could be a table arg, e.g. `p...
**Migrated issue, originally created by jek (@jek)** Implement generic MERGE, aka 'upsert'. In ANSI, it looks like: MERGE INTO table_name1 USING table_name2 ON (condition) WHEN MATCHED THEN UPDATE SET column1 = value1 [column2 = value2 ...](,) WHEN NOT MATCHED THEN INSERT columns VALUES (valu...
1
Hi everybody, I’ve tried using BART summarisation code, and I had a question about finetune.py Can SummarisationTrainer checkpoint be loaded as a BartForConditionalGeneration model from the evaluation script?
# ❓ Questions & Help ## Details I fine-tuned the BART model on a custom summarization dataset using the **transformers/examples/summarization/bart/finetune.py** and **transformers/examples/summarization/bart/run_train.sh** files in the repository for training (which generated three _checkpointepoch=*.ckpt_ files) a...
1
_Original tickethttp://projects.scipy.org/numpy/ticket/1015 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...
_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
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 0.211.0 **System** : Unknown Windows Version **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:...
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
Sorry in advance if this is a duplicate. As of numpy 1.12.1, an error is raised by genfromtxt() when using `names=True` with `comments=None`. Tested with: * Python 2.7.14 |Anaconda custom (64-bit)| (default, Oct 16 2017, 17:29:19) * numpy 1.12.1 * Linux rsiverd-linux.lco.gtn 3.10.0-693.5.2.el7.x86_64 #1 SMP Fr...
## Documentation Now that https://numpy.org/numpy-tutorials/ is deployed, we need to decide how to organize our internal documentation. Currently, this page is also called NumPy Tutorials. The two tutorials listed there are also available as Jupyter Notebooks from the separate numpy- tutorials repo. In our docs te...
0
While writing on ES through hadoop job ,it freezes with logs as :Caused by: **java.lang.NoClassDefFoundError** : Could not initialize class **org.elasticsearch.common.lucene.Lucene** ,What might be the reason? **Elasticsearch version** :2.3.3 **JVM version** :1.7 **OS version** :14.04 **Logs** : RemoteTransport...
Here is what I did: I install a fresh new version of elasticsearch 2.1.0. And starts it (note that I'm running it with `license` and `marvel-agent`). $ bin/elasticsearch [2015-11-27 20:59:15,909][INFO ][node ] [Ajak] version[2.1.0], pid[74419], build[72cd1f1/2015-11-18T22:40:03...
1
As discussed here, it may be the time to think about refactoring the `Request` and the `Response` classes to follow the `php-fig` standards. You can see this interfaces here. Message from @iltar: > Actually, I've been thinking of converting the current Request/Response > objects to builders. Parameter converters e...
Naïve list gathered with grep. Let's make using each of these usable, standalone, in a PSR-7 centric app, or just check if there is something to do, or decide to not do it. ## May handle PSR-7: * Bridge/Doctrine (see #15414 (comment)) * Bridge/Monolog * Bridge/Swiftmailer (see #15414 (comment)) * Bridge/Twi...
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.1-SNAPSHOT * Operating System version: all * Java version: all ### Steps to reproduce this is...
* 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: xxx * Java version: 1.8 ### Steps to reproduce this issue 1...
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 ...
in my application I have a json object which is hardcoded. that values are bound with the input controls in the view. but if i changes the values of the json object during/based on some events, then those changes values are not getting reflected in the view/input controls? how do i forcefully reload/refresh the view?...
0
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-\nsoak-continuous-e2e-gce/6557/\n\nFailed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage\ntracking resource tracking for 0 pods per node {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:278\n Sep 19 03:49:34.643: Memory usage exceeding limits:\n node jenkins-e2e-minion-group-5uqi:\n container \"runtime\": expected RSS memory (MB) < 131072000; got 171597824, container \"kubelet\": expected RSS memory (MB) < 73400320; got 82259968\n node jenkins-e2e-minion-group-7sff:\n container \"runtime\": expected RSS memory (MB) < 131072000; got 132644864\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:153\n \n\nPrevious issues for this test: #26784 #28384\n\n"
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-\nsoak-continuous-e2e-gke/8553/\n\nFailed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage\ntracking resource tracking for 0 pods per node {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277\n Sep 1 13:37:16.682: Memory usage exceeding limits:\n node gke-jenkins-e2e-default-pool-8cc0a277-uewx:\n container \"runtime\": expected RSS memory (MB) < 89128960; got 93290496\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:153\n \n\nPrevious issues for this test: #26784 #28384\n\n"
1
* Electron version: 1.2.6 * Operating system: Windows 7 In the API demos, when moving around the error dialog, it leaves a trail. Curiously, the information dialog does not leave such a trail. Furthermore, you can see that the Start Menu also left an imprint on the left side of the window! ![capture](https://cl...
* Log on to a Windows 7 machine * Switch your theme to Windows Basic or Windows Classic (this has the side-effect of disabling Aero's DWM composition) * Launch an Electron app * Switch to another app window * The other window fails to repaint: ![window repaint issue](https://cloud.githubusercontent.com/ass...
1
I'm using Atom on Linux Mint 17. Whenever I open Atom, I noticed my HDD led blinking like crazy. iotop shows atom is doing a lot of disk reads: 5241 be/4 jfsantos 6.48 M/s 0.00 B/s 0.00 % 37.54 % atom --ev~trap.js'); 5242 be/4 jfsantos 5.75 M/s 0.00 B/s 0.00 % 36.67 % atom --ev~trap...
When I start atom for the first time I have a very high disc io. I've started iotop and found 4 apps running: 2288 be/4 user 717.17 K/s 0.00 B/s 0.00 % 98.51 % atom --eval require('/usr/local/share/atom/resources/app/node_modules/coffee-cash/lib/~ee/source-maps'); 2291 be/4 user 679....
1
It would be nice if Symfony core provide Javascript bundle to inject common javascript library e.g. jQuery to make the standard way for common use. My idea, If we can just include javascript library (global modular) to our project with just config in our config file (app/config/config.yml or any place) it will be ni...
Q | A ---|--- Bug report? | yes Feature request? | no BC Break report? | no RFC? | no Symfony version | 3.3 This is some kind of re-opening of #20673. The implementations done in `3b4a8f3` missed the point. Getting a _runnable_ query like the following one: SELECT s0_.name AS name_0 ...
0
The linux/arm64 port has been broken since March 20. Now that I have access to hardware, here is a minimal reproduction: package main func main() { text := "abc" s := &s{text} println(text[2] == s.text[2]) } type s struct { text ...
Distilled from one of the failures in go test strings, a small-ish test case looks like this: mwhudson@am2:~/go/src$ cat s5.go package main import "fmt" type stringFinder struct { pattern string } var f = &stringFinder{pattern: "He"} func next(...
1
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? Go tip. 1. What operating system and processor architecture are you using (`go env`)? OS X and Linux on Travis 1. What did you do? Build Hugo (https://github.com/spf13/hugo). If possibl...
This was first reported here russross/blackfriday#251, but it looks like a Go compiler issue. ###### What version of Go are you using (`go version`)? `go version devel +59fc42b Fri Apr 1 22:23:13 2016 +0000 linux/amd64` ###### What operating system and processor architecture are you using (`go env`)? ...
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:** 9.0.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:** * 9....
1
How about building a crypto module entirely implemented in WebAssembly? Benefits would include: good performance, optimal portability Luckily, we could also get timing safety for WebAssembly by patching V8 to implement CT-Wasm.
Some applications like handling password will require hashing and encryption. These operations could be implemented in js/ts, but It really needs to be handled from a trusted environment to be secure. It looks like there have been some attempts to get this one rolling before recently with #1461.
1
For example when you apply ".hidden-xs" to a , it turns into a block, rather than an inline element, when visible.
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
How could I make animations like in Google's Material Design guidelines? Maybe it is too much for the proposal of these components but [IMHO] It would be nice have a way to implement these default animations and to extends new animations easily, woudn't it?
Is there planned work on implementing any of these ideas? https://www.google.com/design/spec/animation/meaningful-transitions.html
1
This was a recent regression.
extern "C" fn main() {} gives extern-rust.rs:1:0: 1:23 error: main function expects type: `fn()`: expected "Rust" fn but found "C" fn extern-rust.rs:1 extern "C" fn main() {} ^~~~~~~~~~~~~~~~~~~~~~~ but changing the `"C"` to a `"Rust"` as the error message i...
0
Let's say that you have a JSON document similar to this: { "value": 5, } And the value of `value` can be either a number or a string. There is currently no way to write a generic implementation of `Decodable` that can handle this. Attempting to read the value of `value` will remove it and...
Now it's impossible to implement Decodable for a map with different value types because read_* methods lose the stack head anyway. Decodable doesn't have a method returning the stack head as-is without any type casting. Let's look a case where Json dictionary has values with int and String types. ...
1
**Glide Version** : 4.12.0 **Device/Android Version** : Explicitly tested on Pixel 5 running Android 12, but this is applicable to all devices and Android versions. **Issue details / Repro steps / Use case background** : When using a placeholder resource ID like so, Glide uses an unexpected Context to load the dra...
Hi soon with Android Q the night mode will be very important in my opinion and it would be nice if you can fix this little problem. Glide does not find pictures in the following directories: drawable-night drawable-night-hdpi (also mdpi, xhdpi, xxhdpi and xxxhdpi) Greets Frank
1
In the very long line, escape string disturb syntax highlighting. For example the line below (MySQL), INSERT INTO `wp_microbenotesposts` VALUES (1,1,'2014-10-24 11:26:58','2014-10-24 11:26:58','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','pu...
I opened a Python file with the following line (#963): PrintAndLog(u"SSID: " + RememberedNetwork["SSIDString"].decode("utf-8") + u" - BSSID: " + RememberedNetwork["CachedScanRecord"]["BSSID"] + u" - RSSI: " + str(RememberedNetwork["CachedScanRecord"]["RSSI"]) + u" - Last connected: ...
1
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 0.187.0 **System** : STEVENMICHEL **Thrown From** : Atom Core ### Stack Trace Uncaught SyntaxError: Unexpected end of input At file:///C:/Users/Steven%20Michel/AppData/Local/atom/app-0.187.0/resources/app/static/index.html#%...
[Enter steps to reproduce below:] Occurs on Atom startup **Atom Version** : 0.165.0 **System** : Mac OS X 10.10.2 **Thrown From** : terminal-status package, v1.3.5 ### Stack Trace Uncaught SyntaxError: Unexpected end of input At file:///Applications/Atom.app/Contents/Resources/app/static/index....
1
Please: * Check for duplicate issues. * Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this: import jax.numpy as jnp print(jnp.arange(10)) # [0 1 2 3 4 5 6 7 8 9] * If applicable, include full error messages/tracebacks.
When defining a list of constraints as an input for the scipy.minimize (using a default 'SLSQP' method), repeated or redundant constraints will raise messages like "Singular matrix C in LSQ subproblem", and a solution is not achieved, when in fact, these repeated/redundant constraints should just be ignored. This is...
0
### Describe the issue: `numpy.random.randint` samples `[1]` happily with these parameters np.random.randint(1.1, 2.9, size=1) but raises a `{ValueError} low >= high` for np.random.randint([1.1], [2.9], size=1) ### Reproduce the code example: import numpy as n...
### Describe the issue: numpy/core/src/umath/loops_trigonometric.dispatch.c.src:202:20: internal compiler error: in convert_move, at expr.c:218 NPY_NO_EXPORT void NPY_CPU_DISPATCH_CURFX(FLOAT_@func@) ^ 0xb6b59717 __libc_start_main /build/...
0
I'm building Julia 0.5 (master) on my Raspberry Pi. This aborts with make[1]: Entering directory '/home/pi/src/julia-0.5' cd /home/pi/src/julia-0.5/base && /home/pi/src/julia-0.5/usr/bin/julia -C arm1176jzf-s --output-ji /home/pi/src/julia-0.5/usr/lib/julia/inference.ji --startup-file=no coreimg.j...
Using fresh clone of master at `db11bc7`. My last successful build was at `e18ed61`. /home/sachs/src/julia-master/base/precompile.jl signal (11): Segmentation fault while loading no file, in expression starting on line 0 Allocations: 44889342 (Pool: 44888794; Big: 548); GC: 25 Segm...
1
Idea: add something like `node-gyp` for native modules.
I know that using protobufs simplifies the writing of native modules, but how does importing them work? What's the structure of it supposed to be? How do we specify how the native module should be built?
1
Challenge http://www.freecodecamp.com/challenges/waypoint-use-hex-code-for- specific-shades-of-gray has an issue. Please describe how to reproduce it, and include links to screenshots if possible. ![waypoint__use_hex_code_for_specific_shades_of_gray___free_code_camp](https://cloud.githubusercontent.com/assets/115569...
0
![20200509172405](https://user- images.githubusercontent.com/9105659/81469871-1659a480-921a-11ea-9db9-820ca1f2bae0.jpg) code in TableMetaData constructor can't see this index in sqlserver console
## Bug Report **For English only** , other languages will not accept. Before report a bug, make sure you have: * Searched open and closed GitHub issues. * Read documentation: ShardingSphere Doc. Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we c...
0
* I have 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.x * Operating System version: MacOS * Java version: 1.8 ### Steps to reproduce this issue ...
* 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-release * Operating System version: MacOS * Java version: 1.8 ### Steps to reproduce this ...
0
Context: /basics/3 original source code: package main import ( "fmt" "math" ) func main() { fmt.Println(math.pi) } issue: # command-line-arguments /tmp/sandbox679643269/main.go:9: cannot refer to unexported name math.pi /tmp/sandbox679643269/main.go:9: undefined: math.pi math.pi should be changed...
Context: /basics/3 Example in "Exported names" section does not compile. Error is: # command-line-arguments /tmp/sandbox260995202/main.go:9: cannot refer to unexported name math.pi /tmp/sandbox260995202/main.go:9: undefined: math.pi
1
Need to allow to use generics for "this" type, like this: `this<T>` class Collection<T> extends Array<T> { map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): this { // this method will return this<T>, but I want to return this<U> return ...
First, thank you team for polymorphic `this`. It is really handy! I think I ran into a case though that I am finding challenging, when I need to return a `this`, but the generics might have changed. For example: class A<T> { private items: T[] = []; map<U>(callback: (item: T, idx: numb...
1
servel.yaml : max.connections.size.per.query >1 and Large amount of data queried sql : SELECT aci.sys_contract_id, aci.contract_no, aci.contract_name, aci.sys_contract_id, acoi.sys_contract_id, acoi.object_name, acoi.sys_object_id, aci.progress_status, aci.journal_progress_status FROM app1_c...
### Which version of Sharding-Jdbc do you using?(您使用的Sharding-Jdbc版本为?) 2.0.0.M3 ### Expected behavior (您预期的结果是) 兼容spring-boot2.0 ### Actual behavior (实际运行的结果是) spring-boot升级2.0后解析不了这样的配置格式,报错 java.lang.IllegalArgumentException: Could not resolve placeholder '0..1' in value "demo.user_${0..1}"
0
Feature request: Emacs has a cool feature called "prettify symbols mode," demonstrated for Haskell here. This could also subsume #192. The basic idea is to register a sequence of characters whose glyphs will be replaced with another glyph, but the original characters still appear in the text document. Ideally, the s...
* VSCode Version: 1.1.1 * OS Version: oxs 10.11.4 In china, install extension is very slowly, sometime i want to pause one extension at some project
0
### Describe the bug The problem is basically the one described here: #51 (comment) My fastapi app is behind a reverse proxy that forwards all requests for /api/v1/* and rewrites them to /*. The application itself doesn't know that but the FastAPI object which has openapi_prefix="/api/v1". If I have an endpoi...
# Schema is auto-added when using file uploads with no clear reason to why * View template and re-review suggestions ✅ * Try to find exiting issues/solutions ✅ ## Problem: When adding a file upload using the FastAPI's `File` and `UploadFile` two schema's seem to be automatically added without any clear reason ...
0
##### Description of the problem riven.zip The mesh loads and everything, and the animation's tracks doesn't and its duration is 0, this happens on some models ##### Three.js version * Dev * r111 * ... ##### Browser * All of them * Chrome * Firefox * Internet Explorer ##### OS * All of them ...
##### Description of the problem Hello, The following is a **solution** to a problem I have just faced with the **animations** parsed by the new ColladaLoader. I use Autodesk Maya 2017, and when exporting the 3D model containing animations, an extra `<animation>` tag has been added under the "real" `<animation>` t...
1
##### System information (version) * OpenCV => Current master (`6356403` on 2018-8-23) * Operating System / Platform => Ubuntu 18.04 * Compiler => GCC 7.3.0, CMake version 3.10.2 ##### Detailed description When compiling OpenCV I ran into the following error: Scanning dependencies of target op...
# OpenCV Documentation When you click on the link in the following line in the documentation "List of codes can be obtained at Video Codecs by FOURCC page", you get redirected to the wrong page. This is in the VideoWriter section of the documentation. https://docs.opencv.org/2.4/modules/highgui/doc/reading_and_writ...
0
**Tuomas Kiviaho** opened **SPR-8489** and commented I see that (Context)SingletonBeanFactoryLocator still using BeanFactoryUtils beanOfType instead of BeanFactory getBean(requiredType). Changing this would allow autowiring exclusions and as a bonus the implementation wouldn't have to be aware of ListableBeanFactor...
**Eric Dalquist** opened **SPR-2138** and commented The form:form tag from the spring-form.tld does not actually support in code all of the attributes advertised in the documentation and tld. The tld lists the following supported attributes: id name cssClass cssStyle lang title dir onclick ondblcli...
0
If possible I would love to see an option for which monitor the zone editor is editing zones for. Even if there is a proper way to do it, I feel it should be simplified for less tech-savvy people. Just a simple Monitor 1 and Monitor 2, identified in the Windows display settings would work fine. It's been a hassle t...
Working on a machine with several versions of Visual Studio installed (2010, 2015, 2017, 2019), so the sensible search term to load an instance of Visual Studio 2017 is "2017". This brings up "Visual Studio 2017" just fine, but it is always the second suggestion, not the first. The first suggestion is to copy "2017"...
0
* * * ### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : I've adapted the ZeroOut operator from the Adding a New Op example. * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux Ubuntu 16.04 * **TensorFlow installe...
_Please make sure that this is a build/installation issue. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template_ **System information** * OS Platform and Distribution (e.g., Linux Ubuntu 16.04):win10 * Mobile dev...
0
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION ansible 2.1.1.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION custom role_path ##### OS / ENVIRONMENT Ubuntu 12.04 ##### SUMMARY After upgrade from 2.1.0 to 2.1.1 cannot use group_vars...
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION ansible 2.1.1.0 ##### CONFIGURATION ##### OS / ENVIRONMENT Ubuntu 16.04 ##### SUMMARY group_vars are ignored if the inventory is the output of a script that is stored in a subdirectory. This includes the popular ec2 inventory script. Thi...
1
This looks pretty new. Haven't seen this particular failure before. What steps will reproduce the problem? run net/http tests in a loop What do you see instead? === RUN TestServeFileMimeType-65 --- FAIL: TestServeFileMimeType-65 (0.00 seconds) fs_test.go:338: ...
GOTRACEBACK controls what gets printed on failure. By default "a failure prints a stack trace for every extant goroutine, eliding functions internal to the run-time system, and then exits with exit code 2." It would be nice if we there was a variant that printed just the offending goroutine, which is usually what yo...
0
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION ansible-playbook --version ansible-playbook 2.0.0.2 config file = /var/lib/jenkins/jobs/XXX/workspace/ansible.cfg configured module search path = modules/ansible ##### CONFIGURATION Nothing special ##### OS / ENVIRONMENT L...
##### Issue Type: Bug Report ##### Ansible Version: 1.7.2 ##### Environment: Centos 6 ##### Summary: When using git module with recursive=no the option is used on initial clone but ignore on subsequent checkout if new commits are available ##### Steps To Reproduce: use a task like : name: sync front with pr...
0
[Enter steps to reproduce below:] 1.Edit Yaml file for Hexo 2\. Save file (with a dash in the `title` field) 3\. Run Hexo Server **Atom Version** : 1.0.0 **System** : Microsoft Windows 10 Home Insider Preview **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' ...
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
Challenge adjusting-the-padding-of-an-element has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0`. Please describe how to reproduce this issue, and include links to screenshots if possible. <style> .injected-text { margin-bottom: -25px;...
#### Issue Description I am working on this challenge (Use Clockwise Notation to Specify the Padding of an Element) but I can't seem to get past it, is it my code? #### Browser Information * Browser Name, Version: Mozilla/5.0 * Operating System: Macintosh; Intel Mac OS X 10.11; rv:48.0 #### Your Code ...
1
# Environment Windows build number: windows 10 1909 PowerToys version: 0.18 *PrtScn key is used for new official screenshot app # Steps to reproduce active the powertoys window,then use PrtScn key in the keyboard # Expected behavior screenshot bar should be shown like this ↓ ![屏幕截图\(...
# Environment Windows build number: 10.0.18363 PowerToys version: 0.18.0 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run # Steps to reproduce 1. Open PowerToys Run interface 2. Press PrtScreen key (for me FN+END on german keyboard layout) # Expecte...
1
This is more of a feature request... When viewing a markdown file in split panes with one side being the raw markdown and the other being the HTML preview, I'd like to be able to have the two panes stay in sync as I scroll one or the other. For example, if I scroll down in the raw pane, I'd like the preview pane to ...
* VSCode Version:0.10.14 code-insiders * OS Version:Windows 10 Steps to Reproduce: 1. Open a markdown preview to the side of markdown source 2. Scroll source file It would be nice to have a way to lock the preview and scroll at the same time. Especially nice for longer markdown files. This came in from an...
1
So we can do something like this: COUCHDB_URL = 'https://mybigusername:myenourmouspassword@mycouchdb.provider.com/databasename/' s = requests.Session(url_prefix=COUCHDB_URL) r = s.get('/_all_docs', params=dict(include_docs=True)) r = s.get('/some_document_id') The example uses the Cou...
Is it possible to add an optional base url attribute to the Session object ? For example; auth = ('user', 'pass') with requests.session(url='http://api.twitter.com', auth=auth) as s: resp = s.get('/1/statuses/home_timeline.json')
1
# Summary of the new feature/enhancement I have eight equally sized zones but if I only have three open windows it would be better to connect to neighbouring zones and enlarge my windows. # Proposed technical implementation details (optional) By pressing the Shift+CTRL key and holding the window between two zones ...
# Environment Windows build number: Microsoft Windows [Version 10.0.19041.388] PowerToys version: Release v0.19.2 # Steps to reproduce remap ctrl+v to windows + v then try to paste something and select it in the dropdown the dropdown will close and nothing will happen # Expected behavior s...
0
If i am setting image to imageview from path image view is automatically zooming, can you tell me why this happen? My code is Glide.clear(imageView); Glide.with(mContext) .load(path) .asBitmap() // .animate(R.anim.activity_fade_in) // .dontAnima...
**Glide Version/Integration library (if any)** : 3.5.2 **Device/Android Version** : S4/4.4 **Issue details/Repro steps** : Load a different sized thumbnail and image, or placeholder and image and note the result: ![demo](https://cloud.githubusercontent.com/assets/2906988/6538023/e027582a-c45c-11e4-8758-abb9d7a...
1
On this csv file: DecisionM,IntelligentM,freq,total 0, 5, 9, 20 0, 6, 21,33 0, 7, 35,65 0, 8, 35,83 0, 9, 14,41 0, 10, 10,26 1, 5, 11,20 1, 6, 12,33 1, 7, 30,65 1, 8, 48,83 1, 9, 27, 41,, 1, 10, 16, 26 `pandas.read_csv()` gives me --...
keys = [('a', 'b', 'c'), ('d', 'e', 'f', 'g', 'h'), ('i', 'j', 'k', 'l')] pd.MultiIndex.from_tuples(keys).lexsort_depth Out[106]: 5 work correctly while: keys = [('spot_es', 'spot', 'es'), ('prod_de_wind_ecen', 'prod', 'de', 'wind', 'ecen'), ('avu_fr_maxe-1', 'avu',...
0
Hello everyone, I have experienced a very unusual bug that I never saw before. When I run this codes, I got logout from MacOS and return to login page! import matplotlib.pyplot as plt from astropy.visualization import astropy_mpl_style from astropy.utils.data import get_pkg_data_filename ...
### Bug report **Bug summary** Trying to view a plot made with Python 3.7, Spyder, and IPython with the Tkinter backend causes a crash and the macOS Mojave login screen appears. **Code for reproduction** Any kind of plot will cause the problem. import numpy as np import matplotlib.pyplot as plt...
1
### System info * Playwright Version: v1.35.1 * Operating System: Windows 11 * Browser: None (Unit testing) * Other info: ### Source code **Test file (self-contained)** import { expect, test } from "@playwright/test"; test('Playwright promise rejection with finally', async (...
### System info * Playwright Version: 1.32.2 (experimental-ct-react) * Operating System: macOS Ventura 13.0 * Browser: All * Other info: playwright uses `vite@2.8.6` to build for production (shown when running cmd in terminal). For the reproduction I added vite to `peerDependencies` using version `2.8.6` whi...
0
Is there anyone else out there using Playwright to test Power BI visuals? I didn't find anyone in the Power BI community doing it. I need to be able to click a value in a visual to adjust other visuals (& "get" values); right click to show a drop down to drill through to another report that has additional values and ...
I have been at this for about 4 weeks with very little luck. I can't find where anyone else is using playwright to manipulate a Power BI report like a user. Can this be done? Currently unable to reference elements in a visual. For a single cell the select value is very long. //doing this I get Error: Evaluation fai...
1
When I run ansible-playbook on HEAD, I get the following traceback: TASK: [Check known pacnews] *************************************************** ok: [grego] => (item={'path': '/etc/fstab', 'old': '4ebaee2c67a0e6df3def1fbd8ce5194d07ca6546', 'new': 'a805082718eb9814229968ab11be76a8d34d6033', 'keep...
It seems some recent changes has introduced this regression, this occurs on OSX 10.7, bumping up the limits by "ulimit -n 2048" works around the problem. There might just be some file descriptors/pipes not being closed. You could limit the loop (wherever its happening) for the subprocesses to be just 1024? I might p...
1
So I'm using a custom `usePrevious` hook that returns the 'previous value' which is as far as I know pretty common practice. It leverages a ref inside the hook. When I declare a ref inside a functional component and use this in a `useEffect`, `react-hooks/exhaustive-deps` does not require me to add the ref to the dep...
Describe what you were doing when the bug occurred: 1. 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.2.1-3816ae7c3 Call stack: at chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157108 at Map.forEach () at commitIndex (chrome- extension://fmkadmap...
0