text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
See repro below: import pandas as pd df_with_ts = pd.DataFrame(data=[['BL', pd.Timestamp('2015-02-01')], ['TH', pd.Timestamp('2015-02-02')]], columns=['item', 'date']) res = df_with_ts.groupby(['date']).apply(lambda x: pd.Series(x['item'].unique()[0])) In []: res ...
The .apply on DataFrame is converting my string to a date. I have posted this on StackOverflow: http://stackoverflow.com/questions/28487105/pandas-on-apply-passing-wrong- value I'm not sure if I'm doing something wrong or it is a bug, but it seems quite strange behavior. Example here In [8]: df = pd...
1
### Describe the bug AxiosError: unexpected end of file at AxiosError.from (C:\Users\samqw\Documents\scrapping\sense\node_modules\axios\dist\node\axios.cjs:785:14) at BrotliDecompress.handleStreamError (C:\Users\samqw\Documents\scrapping\sense\node_modules\axios\dist\node\axios.cjs:2696:29) at BrotliDecompress...
It seem axios simply concats the headers into a single string separated by comma rather than returning them in an array, this is problematic if a header value contains a comma. Example server: import * as http from 'http'; //Lets define a port we want to listen to const PORT = 8080; ...
0
I'm fairly sure this is unrelated to #5389 Returning a non-Promise custom type from an async function causes the compiler to crash. Given this tsconfig { "compilerOptions": { "experimentalAsyncFunctions": true, "target": "ES6" } } and this code ...
/usr/local/lib/node_modules/typescript/lib/tsc.js:29825 async function abc():number{ return 123; } /usr/local/lib/node_modules/typescript/lib/tsc.js:29825 throw e; ^ TypeError: Cannot read property 'flags' of undefined ...
1
When method extension coupled with multiple dispatch mechanism, we tend to be always find ourselves in the loop of continuing adding disambiguating methods. Seriously, this is unsustainable in the long run. Consider the following: # suppose this is defined in base type A <: BaseT end ...
Branching this Issue off of the conversation here: #30445 (comment) * * * Reproducing it in this Issue: > Also, I wanted to ask: Does anyone know why `signed` takes `x::Unsigned`, > but `unsigned` takes `x::BitSigned`? I'm _guessing_ it's to prevent `BigInt` > from falling under the `reinterpret` implementation. I...
0
**Tim Chen** opened **SPR-3180** and commented I have a PropertyPlaceholderConfigurer that is prefixed with #{ I can use it for any spring definition except those that are using namespaces. For example: Code: <tx:advice id="txAdvice" transaction-manager="jtaTxManager"> <tx:attributes> ...
**John Baker** opened **SPR-6052** and commented The following exception has been noted when the WL JMS drivers failed to connect: Exception in thread "jms.jobs.messageListenerContainer.SRUpdateFromSiebel-1" java.lang.NullPointerException at java.lang.String.indexOf(String.java:1564) at java.lang.String.indexO...
0
# Feature request ## Is your feature request related to a problem? Please describe. My development setup consists of multiple Docker containers: 1. Next.js application running in development mode 2. Mock API 3. Proxy that is used in front of Next.js application and mock API containers so one host is used for...
# Bug report ## Describe the bug We can't use nextjs v8 in dev mode with docker because it reload the DOM every 5 seconds. He can't access to the websocket port. I can open this port in my Dockerfile but it change every time I launch next ## To Reproduce Steps to reproduce the behavior, please provide code snip...
1
I use cifar10 model training my dataset,which is made by tf.python_io.TFRecordWriter() . I am sure labels in dataset are right,because it's running ok on Ubuntu PC but get Error Invalid argument: Received a label value of 255 which is outside the valid range of [0, 10) on Mac and GPU Server. W tensorflow/core/fram...
I use the cifar10 model train my own TFRecord dataset ,it's running on Ubuntu 14.4 without error,but getting these errors when I run it on Mac or GPU server。And I am sure the labels of my dataset are right ,I don't know why get labels bigger than 10 ,I just have 10 classifications。 I use this code write images and l...
1
React-i18n in Production ## Expected Behavior I'm struggling with a very strange bug on running the react-i18next with nextJS, it works perfectly on dev, but when I run it on production mode it crashes. The strange thing is that I created the configs based on the examples that are provided here, but it doesn't work...
# Bug report There are duplicate chunks for the `robot-bundle` component. The component is lazy loaded with `SSR: false`. This is the section of the react-loadable-manifest.json. You can see that `0zX2`, `3at2` are duplicated. Is that correct or what's the reason for this? _**There are also two chunks for the`...
0
NOTE: Only file GitHub issues for bugs and feature requests. All other topics will be closed. For general support from the community, see StackOverflow. To make bugs and feature requests more easy to find and organize, we close issues that are deemed out of scope for GitHub Issues and point people to StackOverfl...
It looks like the GPU installation from source got refactored and is failing to compile on my Ubuntu 16.04, CUDA 8.0, cuDNN 5.0, with GTX 1080 GPU. I had the GTX 1080 working with the build from a few days ago, but just pulled from the head and now cannot compile so I am not sure if this is the auto_configure for th...
1
by **jim@superluckycasino.com** : Before filing a bug, please check whether it has been fixed since the latest release. Search the issue tracker and check that you're running the latest version of Go: Run "go version" and compare against http://golang.org/doc/devel/release.html If...
by **supermighty** : http://play.golang.org/p/s5CbtvUW4J Using play.golang.org, fmt.Println out a time formatted using time.RFC822 and time.RFC822Z. What is the expected output? It is expected that they will be different. - time.RFC822 should output the alpha time zone (E...
0
After updating Symfony I thought I could see the effect of #14601 but it doesn't happen because there is **two** translations folders into the security component. I updated Security/Resources/translations/security.fr.xlf but Security/Core/Resources/translations/security.fr.xlf is used. I don't know if it's legit bu...
PHP 7 Using Symfony\Component\Validator\Constraints\Collection; I'm using Symfony 3.1 and I hope I'm not doing something wrong. When I validate a field, it doesn't stop after the first violation. Example : $errors = $val->validate( $info, new \Symfony\Component\Validator\Constraints\...
0
This code all "works," but in a surprising way: import pandas as pd t0 = 1234567890123400000 df1 = pd.DataFrame(index=pd.DatetimeIndex([t0, t0 + 1000, t0 + 2000, t0 + 3000])) df2 = pd.DataFrame(index=range(4)) df1.loc[:2, 'a'] = np.arange(2) df2.loc[:2, 'a'] = np.arange(3) We ...
#### Code Sample, a copy-pastable example if possible import glob import pandas as pd files = glob.glob('*.tab') dfs = [pd.read_csv(fp, sep='\t',index_col=[0], header=0) for fp in files] df = pd.merge(dfs[0], dfs[1],how='outer', left_index=True, right_index=True).sort_ind...
0
Please see: http://play.golang.org/p/VXUScwoGAH I can see and understand why the final equality test returns false, but at the same time given that the default timezone is Z, would nevertheless expect the result to be true.
It seems that marshaling and unmarshaling a zero time produces an object that is different from the original: func TestMarshalUnmarshalJSON(t *testing.T) { var expected, parsed Time body, err := expected.MarshalJSON() if err != nil { t.Errorf...
1
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Well, I added patches * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Windows 10, 64 bit * **TensorFlow installed from (source or binary)** : Source * **TensorFlow ver...
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : no * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Windows 10 1803 * **TensorFlow installed from (source or binary)** : source * **TensorFlow version (use command belo...
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: master * Operating System version: mac os 10.14.3 * Java version: 1.8.0_201 ### Steps to reprodu...
* 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: xxx * Operating System version: xxx * Java version: xxx ### Steps to reproduce this issue 1. ...
0
The documentation for `read()` in the `Reader` trait specifies: > Read bytes, up to the length of `buf` and place them in `buf`. > Returns the number of bytes read. The number of bytes read may > be less than the number requested, even 0. Returns `Err` on EOF. However, the `BufferedReader` type which implemen...
0
Hi, I recently opened an issue here atom/tabs#148 , claiming I couldn't drag tabs around to rearrange them, but realized it's a more general problem. I can't left-click and drag ANYTHING in Atom. I can't even left mouse down and drag to highlight text. It's as if the mouse up event is firing when it shouldn't. I'm u...
Almost certainly because of this Chrome issue: https://code.google.com/p/chromium/issues/detail?id=465660 (see also https://code.google.com/p/chromium/issues/detail?id=456222, https://www.virtualbox.org/ticket/13968). Didn't have this problem in Atom in this environment before the upgrade to use Chrome 41. Makes Atom...
1
### Affected Version 0.14.0-rc1 ### Description I created two dataSources for the same Kinesis stream, but it returned different results for the same query. Duplicate raw events was found in one dataSource (it was about 110 events). I'm suspecting this line. Maybe `isExclusive` should be set to true. But, I'm not ...
BufferUnderflowExceptions reported with 0.9.2-rc1: https://groups.google.com/d/topic/druid-user/bZJq0Z3U_Ms/discussion. May be related to #3314. The stack trace was: 016-10-03T17:20:43,407 ERROR [processing-9] io.druid.query.GroupByMergedQueryRunner - Exception with one of the sequences! java.nio....
0
### Bug summary Compare the colorbars at the top of the imagegrid in https://matplotlib.org/3.4.3/gallery/axes_grid1/demo_axes_grid.html and https://matplotlib.org/3.5.3/gallery/axes_grid1/demo_axes_grid.html (same example, but mpl3.4 vs 3.5): the ticks have incorrectly moved from the top side of the colorbar to the...
Part of #11299 deprecates the property `Patches.xy`. I assume this was based on the existing docstring > Set/get the vertices of the polygon. This property is > provided for backward compatibility with matplotlib 0.91.x > only. New code should use > :meth:`~matplotlib.patches.Polygon.get_xy` and > :meth...
0
#### Description I tried to use the `learning_curve` function using a `Pipeline` object as estimator but this results in a `TypeError`. #### Steps/Code to Reproduce import numpy as np from sklearn.datasets import load_boston from sklearn.linear_model import ElasticNet from sklearn.model_s...
#### Description `TypeError: 'tuple' object does not support item assignment` error thrown when calling `fit` on a `Pipeline` whose `steps` parameter was initialized with an n-tuple (as opposed to a list) of (name, transform) tuples. Previous versions of sklearn Pipelines worked when an n-tuple was used for `steps`...
1
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke/12566/\n\nFailed: [k8s.io] Kubectl client [k8s.io] Update Demo should create and stop a\nreplication controller [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:210\n Expected error:\n <*errors.errorString | 0xc820381c10>: {\n s: \"Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.218.12 --kubeconfig=/workspace/.kube/config get pods update-demo-nautilus-e438n -o template --template={{if (exists . \\\"status\\\" \\\"containerStatuses\\\")}}{{range .status.containerStatuses}}{{if (and (eq .name \\\"update-demo\\\") (exists . \\\"state\\\" \\\"running\\\"))}}true{{end}}{{end}}{{end}} --namespace=e2e-tests-kubectl-vpkad] [] <nil> failed to find client for version v1: error: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.\\n [] <nil> 0xc820938680 exit status 1 <nil> true [0xc820de2710 0xc820de2728 0xc820de2740] [0xc820de2710 0xc820de2728 0xc820de2740] [0xc820de2720 0xc820de2738] [0xabd2f0 0xabd2f0] 0xc820e038c0}:\\nCommand stdout:\\n\\nstderr:\\nfailed to find client for version v1: error: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.\\n\\nerror:\\nexit status 1\\n\",\n }\n Error running &{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.218.12 --kubeconfig=/workspace/.kube/config get pods update-demo-nautilus-e438n -o template --template={{if (exists . \"status\" \"containerStatuses\")}}{{range .status.containerStatuses}}{{if (and (eq .name \"update-demo\") (exists . \"state\" \"running\"))}}true{{end}}{{end}}{{end}} --namespace=e2e-tests-kubectl-vpkad] [] <nil> failed to find client for version v1: error: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.\n [] <nil> 0xc820938680 exit status 1 <nil> true [0xc820de2710 0xc820de2728 0xc820de2740] [0xc820de2710 0xc820de2728 0xc820de2740] [0xc820de2720 0xc820de2738] [0xabd2f0 0xabd2f0] 0xc820e038c0}:\n Command stdout:\n \n stderr:\n failed to find client for version v1: error: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.\n \n error:\n exit status 1\n \n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2006\n \n\nPrevious issues for this test: #28565 #29072 #29390 #29659\n\n"
`error: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.` appears in a lot of flakes. Speculation is that the metadata server is slow to respond. So far, these are the issues where this message has popped up: #28569 ...
1
by **google@barrera.io** : $ go version go version go1.2.2 linux/amd64 $ cat test.go package main import "net" import "fmt" func main() { conn, err := net.Dial("tcp", "google.com:80") if err != nil { fmt.Println(err) ...
Forking this from issue #3610. My experiments show that net.Dial has two modes of operation when connecting to a dual-stack hostname: 1. By default, it prefers IPv4 :( 2. When using a net.Dialer{DualStack: true}, IPv4 and IPv6 SYNs are sent simultaneously, and the resulting ...
1
julia 0.3.3 on Mac OSX 10.9.4/amd64 When I re-define a function, any other functions that call that function need to be recompiled to use the new definition. Here is a simple example: julia> function f() print("f called\n") end f (generic function with 1 method) julia> function g() pri...
if I define a function d2 before a function d1 which calls d2 then change d2, d1 uses the old definition for d2. I assume this is because it is all precompiled, but maybe there should be a note warning of this? Or would it be possible to replace the old definition with a longjmp to the new one? (Mostly important ...
1
## Problem Most Linux distribution provide `python2` as Python 2 program, yet python scripts within the repo still use `#! /usr/bin/env python` making it impossible to run them on Linux outside Docker sandbox. ## Suggestion Change these shebangs to `#! /usr/bin/env python2`
hello! I have built deno in my **Manjaro**. But Manjaro use python3 for default python.So I get a error. Can use python2 instead of python in the build script . thank.
1
The application was created from scratch and untouched. I am able to detect the 3 devices I tried with (1 emulator and 2 different model physical devices). All had the same error when attempting to run. Please see the details below: **$ flutter doctor -v** [√] Flutter (Channel beta, v0.5.1, on Microso...
It looks like 'flutter run --release --preview-dart-2' performs kernel compilation twice, which is a waste of build time. It becomes more important as we're going to do more time-consuming global transformations during AOT compilation. ## Steps to Reproduce 1. Add _outputStream.writeln("Kernel ...
0
### System info * Playwright Version: v1.32.1 * Operating System: Ubuntu (Github action runner no docker) * Browser: WebKit * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. <iframe title="Walls.io" ...
### System info * Playwright Version: 1.32.3 * Operating System: Mac * Browser: Chromium * Other info: It seems that having a screencasted chrome instance of a remote debugging process breaks all actions on the page. In the example below you can change the `FIXED` variable to `true` which will disable scree...
0
When running `make test_e2e_node` on systemd, I get a single failure related to a test that verifies the stats endpoint. ------------------------------ • Failure [60.090 seconds] Kubelet /home/decarr/go/src/k8s.io/kubernetes/test/e2e_node/kubelet_test.go:267 metrics api /home/de...
Right now, we have the concept packing api query parameters into a struct, converting that to the versioned (serialized wire) format struct, then packing that into URL query parameters. This needs some slight adjustment for API groups. Options: 1. Change nothing; every group needs its own e.g. ListOptions struct ...
0
Remove 'scrapy deploy' command and instead direct users to the documentation when they try to run it.
`scrapy deploy` command was deprecated a while ago and is no longer maintained. Its functionality has been moved to `scrapy-deploy` (for scrapyd) and `shub deploy` (for scrapinghub). So I think we should remove `deploy` command, specially for 1.0.
1
I am getting this weird behaviour in `jnp.linalg.norm` where in when I set `ord="fro"`, I get different values when I pass input array `x` having shape as `[1,1]` instead of `[2, 1, 1]`. However, it is only the case for `fro`. For other values of `ord`, I get consistent values. * Check for duplicate issues. * ...
Simple example: jnp.linalg.norm(jnp.array([1e-20], jnp.float32)) produces 0. Denormals are flushed to zero, and 1e-20**2 is smaller than the smallest normal float32. It's possible to define a non-underflowing Euclidean norm using variadic reductions: def norm2(xs): def redu...
1
# It sends an error I was gonna install sqlite3 through npm but suddenly an error occured ![Screenshot_20200121-214553](https://user- images.githubusercontent.com/59103946/72810002-bbfefd00-3c97-11ea-8ca4-17909af74d21.jpg)
npm http fetch GET 200 https://registry.npmjs.org/qs/-/qs-6.9.1.tgz 9519ms npm timing npm Completed in 3754889ms **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...
0
Given the example code below: <ul class="list-group"> <li class="list-group-item active"> <span class="badge">14</span> <a href="#">Cras justo odio</a> </li> </ul> When the class of `active` is applied to `li.list-group-item` the `color` of the anchor tag remains blue i...
http://bootply.com/78668
1
**TypeScript Version:** 1.8.9 **Code** new Map<number, number>([1, 2].map(x => [x, x])); // Error: // Argument of type 'number[][]' is not assignable to parameter of type 'Iterable<[number, number]>'… **Expected behavior:** types are inferred correctly, no error shown. **Actual behav...
I have a piece of code with many `foo[]`s that should really be `[foo,foo]` \-- it would be nicer if `map` had a type that preserves tuples, so something like this: var x: [number, number]; x = [1,2].map(x=>x+1); would work, even if it's some hack with a union of tuples up to some number of e...
1
Hi everyone :) I found a small inaccuracy in the docs for np.clip. There it says > Equivalent to but faster than `np.maximum(a_min, np.minimum(a, a_max))` > > https://github.com/numpy/numpy/blob/master/numpy/core/fromnumeric.py#L2039-L2051 but the function actually seems to behave like `np.minimum(a_max, np.maxi...
It's sometimes hard to tell in numpy whether a given numpy function will also be a method of an array. e.g. You can go `arr.max()` or `np.max(arr)`, but you can's go `arr.abs()` (you need to go `np.abs(arr)`. Same goes for most functions: `median`, `sign`, `exp`, etc. It would be nice, because I find it much more r...
0
I tried updating to the latest beta but code won't open now. When trying to open the application it starts to launch then closes itself. Trying to open Code from the command line says there is a segmentation fault. Tried re- installing but that didn't help. Once I got the following error. Process: Electron [18388] ...
See microsoft/vscode#296 for details. The stacktrace seems to be all in Electron land. Any ideas?
1
**Migrated issue, originally created by Michael Bayer (@zzzeek)** test: from sqlalchemy import * from sqlalchemy.orm import * from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() class A(Base): __tablename__ = 'a' id = Column...
I have an OAuth 2.0 application that has a database, user data and token data are stored in this database. I have also another application that has its own database and need to connect to OAuth 2.0 database, to check if the user' token is valid or not, and its own database. I connect to multiple databases on the sec...
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.6.4 * Operating System version: linux * Java version: jdk1.8 ### Steps to reproduce this issue...
* [ X] I have searched the issues of this repository and believe that this is not a duplicate. * [X ] I have checked the FAQ of this repository and believe that this is not a duplicate. I add one new serialization and there can't find any useage of method Serialization.getContentType() in project. So what stri...
0
Is there a reason why `read_csv` has a `usecols` and `skiprows` as arguments, but not `skipcols` and `userows`? Is this to avoid parameter checks or something more fundamental than that? It would be nice to have all four options to avoid clunky inversions of the type `usecols = columns.remove(unwanted_col)`.
#### Code Sample, a copy-pastable example if possible # Your code here import pandas as pd df = pd.DataFrame({'A'=[1,2,3],'B'=[3,2,1]}) Here, I need something like the following, C should be, True = if the row value of A is less than the value of B. Else False. Without a f...
0
## ❓ Questions and Help Hello, I'm trying to run pytorch v1.0.0 on aws lambda for object detection inference, and i'm building the package on `lambci/lambda:build-python3.6` docker image using the following command lines : RUN git clone --recursive https://github.com/pytorch/pytorch.git --branch=v1.0...
## 🐛 Bug I am running an image classification model with Serverless and AWS Lambda. Receiving following error upon calling the Serverless function; **"Error in cpuinfo: failed to parse the list of present procesors in /sys/devices/system/cpu/present"** \- I did not misspell this, the spelling is copied from the err...
1
A recent update to the React Developer Tools Chrome Extension looks like it has a build issue. ## The current behaviour Chrome console is reporting > DevTools failed to load SourceMap: Could not load content for chrome- > extension://fmkadmapgofadopljbjfkapdkoienihi/build/injectGlobalHook.js.map: > HTTP error: sta...
In extjs-reactor we use some react internal methods like mountComponent, unmountComponent, and receiveComponent, as well as the ReactMultiChild mixin to defer rendering to Ext JS. This interface was very helpful for anyone looking to make generic JS component libraries work in React (as opposed to those built specifi...
0
Here's what atom looks like on my Chromebook Pixel (2015) - running trusty Ubuntu / Gnome. It has a DPI of 239. ![screenshot from 2015-06-25 18 48 39](https://cloud.githubusercontent.com/assets/6345012/8367395/80fe2052-1b6b-11e5-8f7a-8263ee72b7d8.png) Is there any way to fix this via internal settings?
I've just installed Atom from a git checkout on Ubuntu 12.10, and the attached screenshot is what I see (I've shrunk the editor font size). I'm assuming that fonts aren't really meant to be that large. ![huge- fonts](https://cloud.githubusercontent.com/assets/362/4632693/3be39dee-53c0-11e4-8e64-4458a73ae4ae.png)
1
Hi, I configured my webpack files in order to develop a client project. I have some issues when i run the following command `yarn develop`. I have no issues in the production mode. Thanks for helping me. _webpack.dev.js_ const path = require('path') const commonConfig = require('./webpack.comm...
0
Challenge http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays- with-unshift has an issue. Please describe how to reproduce it, and include links to screenshots if possible. Although the comment conveys the correct message as below `// Add "Paul" to the start of myArray` `// Only change code below t...
Challenge http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays- with-unshift has an issue. Just a little detail that may lead to confusion: in the description of the Waypoint it's written "to the end", when the unshift function adds the new value to the beginning of the array: "Let's take the code we...
1
function f0(): [number, number] { return [1, 2]; // works } interface Some<a> { some: a; } interface None { none: void; } type Optional<a> = Some<a> | None; function f1(): Optional<[number, number]> { return { some: [1, 2] }; // works } function ...
Tuple types aren't always inferred when calling generic functions. For example: function identity<A>(value: A): A { return value } // works const [a1, b1]: [number, string] = [1, 'a'] // works const [a2, b2]: [number, string] = identity<[number, string]>([1, 'a']) ...
1
I am working in Android app that load images from Amazon S3. The Image URL randomly changes with token and expiry key. For that reason i can't cache the image Glide. There is any way to set Glide cache key as any static ID(like image id) not url. I attached my code snippet to load image from AWS Glid...
Hi, folks. I need to cache images with dynamic url. I have 2 methods .getImageId() and .getImageUrl(); I need to cache my downloaded images with getImageId() key, because this id is unique and image url change all time. How to set custom image id to cache? Please show me a way. Thanks.
1
##### System information (version) * OpenCV =>4.4 * Operating System / Platform => Windows 64 Bit * Compiler => Visual Studio 2017 ##### Detailed description I tried some models from https://github.com/AlexeyAB/darknet,as listed bellow: 模型 | 模型大小 | FPS ---|---|--- YOLOv2 | 194 MB | - YOLOv2-tiny | 43M...
OpenCV 4.2.0 New models from Alexey Darknet repository CFG: https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/csresnext50-panet- spp-original-optimal.cfg WEIGHTS: https://drive.google.com/open?id=1_NnfVgj0EDtb_WLNoXV8Mo7WKgwdYZCc Testing with the new OPENCV-dnn with cuda support I achieve better perfo...
1
On 0.7-alpha, out of the 600M, 250M are just the debug libs. I am pretty sure that 99% of the users do not use the debug libs in any way. Would be nice to slim down our download.
Going forward, we should stop including the debug build of Julia in the default binaries.
1
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME role inclusion ##### ANSIBLE VERSION ansible 2.4.2.0 config file = /home/user/.ansible.cfg configured module search path = [u'/home/user/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module loc...
##### Issue Type: Bug Report ##### Ansible Version: $ ansible --version ansible 1.7.2 ##### Environment: MacOS (also occurs on Ubuntu 14.04) ##### Summary: ssh logins that require sudo passwords can hang indefinitely. ##### Steps To Reproduce: I think the bug could be be reproduced if you enable sudo passw...
0
Windows Terminal 0.4.2382.0 Windows 10 # Steps to reproduce RUN 'Windows Terminal' with two command-prompts. Run next command in both prompt (simultanuously) for /l %f in (1,1,100000) do @echo abcdefghijklmnopqrstuvwxyz %f In de output of the first screen the 'wrong ou...
# Description of the new feature/enhancement # Proposed technical implementation details (optional)
0
Hi everyone, I have built the static library for tensorflow with cmake in Windows and I have the error "No session factory registered for the given session options ". This issue is fixed with the flag /Wholearchive, however it seems there is not equivalent flag for Qt creator. So, my question is if someone knows if ...
Hi everyone, I have built the static library of tensorflow for C++ in windows. And I am trying to use this library in qtCreator, however I have the issue (no session factory registered for the given options). But, it looks adding these flags in qtCreator doesn´t work so I still have the issue. Does someone know how ...
1
# Remap shortcut to support character keys ## Feature Request for Keyboard Manager ### Context Hi, only recently came across PowerToys and already fond of the wealth of utilities present. Many thanks for making these available! Due to limited hand mobility, I’m heavily reliant on key-remapping and macros for keyb...
[Power Toys Utility -Choose your layout for this desktop] User Impact: Low vision users using resize scaling will not be able to get the proper information as Choose your layout for this desktop utility dialog controls does not adapt resize settings. Test Environment: OS Version: 20221.1000 App Name: Power To...
0
(sorry if this is a dup, hard to narrow down the search of open issues -- a bunch of ENOENT cases) If I want to create a new file with the atom helper, an exception is thrown: ~/Work/iojs-build ±master $ atom mynewfile ..throws: events.js:141 Hide Stack Trace Error: ENOENT: no ...
[Enter steps to reproduce below:] 1. Invoke atom for non-existent file: `atom Dockerfile` **Atom Version** : 0.190.0 **System** : Mac OS X 10.9.5 **Thrown From** : Atom Core ### Stack Trace Uncaught Error: ENOENT: no such file or directory, open '/Users/arve/Projects/gradlehub/Dockerfile' At ...
1
Create a Form Element https://www.freecodecamp.com/challenges/create-a-form- element#?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%7...
Throughout my progressions of the HTML5 & CSS challenges, each time I am asked to add/edit any code within the code editor the cursor within the editor does not show up where intended. I have to begin typing or editing the code via keyboard before the cursor will fix itself and allow me to select the desired location...
0
I wanted to wrap the OpenGL API to create a safer interface. Like many other APIs the OpenGL API gives away integer tokens representing created objects. For example, the call glCreateProgram creates a GLuint token representing a shader program object. These tokens in the OpenGL API (and other similar APIs) are basica...
**UPDATE:** Updating this issue to reflect current thinking, which is that inference should issue a warning when a lifetime parameter is inferred to be bivariant (which implies that the parameter is unused). **ORIGINAL:** It's sometimes necessary to specify a lifetime on an object that _doesn't_ contain borrowed poi...
1
I see that it was previously possible to pass-in a prettier configuration file, but it seems that it's no longer possible. Is there a way to change: * Indent size * Quotes style * Semicolons
Tracking issue for flags that were removed in #3820, but are useful: > @nayeemrmn @ry there are two flags that are not present in this PR that are > pretty useful: --stdout and --ignore-path=<FILE...>. Let's do them in follow > up PR. So probably we'd want to bring back 3 flags in total: * ~~`--stdout` print for...
1
I'm using Kube 1.4.5, and AWS storage. When I try to attach multiple volumes using PVC's, one of the volumes consistently gets stuck in the attaching state whilst the other is successful. Below are the definitions that I used. _sonar-persistence.yml_ --- apiVersion: v1 kind: PersistentVolume...
**Kubernetes version** : `Server Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.6+coreos.0", GitCommit:"f6f0055b8e503cbe5fb7b6f1a2ee37d0f160c1cd", GitTreeState:"clean", BuildDate:"2016-08-29T17:01:01Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"}` **Environment** : * **Cloud provide...
1
### Bug report **Bug summary** TkAgg backend plots an empty figure with matplotlib=3.1.1 (python=3.7.3) installed within conda environment on MacOS=10.14.6. **Code for reproduction** The following lines return an empty (blank) figure in python shell import matplotlib as mpl mpl.use('TkAgg') ...
### Bug report **Bug summary** When using the latest stable version of matplotlib (v2.2.3), running plt.plot() only displays a blank figure, regardless of chosen backend. However, the .savefig() method correctly stores an image of the plot. Switching to an older version (2.0.2) resolves the issue. **Code for repr...
1
### Describe the bug When trying to compute AgglomerativeClustering with affinity='precomputed', linkage='ward' I get the following error: `ValueError: precomputed was provided as affinity. Ward can only work with euclidean distances.` I think this is intended. What is the reason behind it? ### Steps/Code to Rep...
#### Description Precomputed distances are treated as "unsupported" by AgglomerativeClustering, regardless of the provenance. (e.g. sklearn.metrics.euclidean_distances) This restriction makes it impossible to pass a off-memory (e.g. memory mapped) precomputed distance matrix, even if it is valid Euclidean distance....
1
Halp ticket: * support/99c4b424c63611e397d244a7153df9be > Soft wrap is very buggy. Often, the cursor will stop displaying in the right > position. Seems to happen more after doing a find and replace. It'll show up > about 4 characters away from where it's actually inserted. And some > characters will be impossibl...
(discovered in Atom 0.110.0) I'm on a **german keyboard** on **windows** right now, and i can't type characters that would involve the right Alt-Key (Labelled AltGr). The key is detected as Ctrl+Alt which is (as far as i know) more or less correct. This key is involved in these characters and triggers the following ...
0
**William Gorder** opened **SPR-9206** and commented Having to define every annotated class with <oxm:class-to-be-bound is tedious. Would it be possible to add something like the following as part of the framework? http://springinpractice.com/2011/12/29/its-back-the- classpathscanningjaxb2marshaller/ http://w...
**Tomas Johansson** opened **SPR-6788** and commented For example, if you use these two strings: "text/html; q=0.7; charset=iso-8859-1" "text/html; q=0.7" then the compareTo method will return zero but equals will return false. I suggest that a consistent implementation should either be fixed, or otherwise (i...
0
### Bug summary When using plt.savefig() or plt.gcf().savefig() to save an active figure in EPS format, the resulting file is blank. The same commands produce the correct image when saving to PNG format. Error occurs in both Spyder and Jupyter Notebooks. ### Code for reproduction import numpy as np ...
### Bug summary Setting 'figure.autolayout' to 'True' removes most of the EPS savefig. ### Code for reproduction import matplotlib.pyplot as plt plt.rcParams['figure.autolayout'] = 'True' plt.plot([1, 2, 3], [1, 2, 3], 'o-') plt.title(r'$\sum_{i=0}^{\infty} x_i$ just a test') ...
1
## Hi there, I am new to python and machine learning. I am facing the problem for the following code. Can anybody suggest me what should be done to remove the error. Thanks in advance . Seaborn version:0.9.0 Python: 3.6.0 Code: ## sns.distplot(d_p,color="skyblue", label="Distribution of neighbour image dista...
'LinAlgError: singular matrix' error pops up when trying to call the pairplot() function.
1
When the user tries to access a route needing an user authentication using the Anonymous account, a HTTP 500 error is rose. Why not a 403? Is there any way to rise a 403?
ChoiceType should support the options "allow_add" and "allow_delete" in the same fashion as CollectionType does.
0
This is a request to add a model viewer example. I think it's a very common need to display a model, pan, rotate and zoom. Features: * Load models of different formats with plugable loaders. It can help unify the loaders API if needed. * Auto zoom the model to a reasonable initial value. Allow zoom in/out. ...
`r100` has been mentioned as the target release for removing support for rendering `THREE.Geometry`. That means you can instantiate an instance of `THREE.Geometry`, but you will have to convert it to `THREE.BufferGeometry` prior to adding it to the scene. ~~By my notes, the remaining examples where`Geometry` is ren...
0
### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior Hi there! I going to migrate my monorepo from lerna to npm 7 and faced with the next issue: when I doing npm --workspaces version pach - my packages updated as expected, but dependency in "package-a" still hav...
### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior The `npm --no-git-tag-version --workspaces version <version>` command doesn't update package devDependencies or dependencies with the new version. I'd expect that workspace dependencies would be updated to match t...
1
### Images & references \--> http://www.material-ui.com/#/components/text-field ### Versions * Material-UI: 0.16.0 * Browser: Sadari 10.0
### Problem description A thin border surrounds every input ![screen shot 2016-10-17 at 14 59 37](https://cloud.githubusercontent.com/assets/6162068/19436814/f1f3b356-947a-11e6-9816-7f00c77aa29f.png) ![screen shot 2016-10-17 at 14 59 17](https://cloud.githubusercontent.com/assets/6162068/19436811/f1efb3c8-947a-11e...
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.3 * Operating System version: Mac * Java version: 1.8 * Dubbo-admin version: 0.2.0 ### Step...
* 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: win/linux * Java version: 1.8 ### Steps to reproduce this issu...
0
obj a() { } let b = obj() { with a() }; rt: 4d8e:main:main: upcall fail 'Assertion !cx.terminated failed', ../src/comp/middle/trans_build.rs:34 rt: 4d8e:main: domain main @0x8999640 root task failed As opposed to this: ...
Right now, you can get errors like "a type named `Primitive` has already been imported in this module", which isn't very helpful. The error message would be much more helpful if it would tell you which line the other `Primitive` type was imported on.
0
Leaving aside all arguments about whether a Byte Order Marker is a good thing or a bad thing (I don't much care) there are situations in which software which will be reading the files produced by atom require it to be there. This should be an option in the encodings menu. Further if a Byte Order Mark is present in a...
Variants of common Unicode encodings aren't supported, namely, UTF-8 w/ BOM, UTF-16 w/ BOM, etc. I feel like Atom should natively support all Unicode encodings, even the most esoteric ones (e.g. UTF-32)
1
## Problem When executing the following snippet of code on matplolib 1.3.1, the month name November will show up twice on plot_date using a timezone with daylight saving time (meaning the second november tick is november 30, 23:00, almost december, but not quite). This is misleading and annoying when interpreting th...
### Problem To implement scale change on an y-axis I use the axis itself as a button via `ax.yaxis.set_picker(true)`. Now, unexpectantly, it turns out that both yaxis's are responsive (and not only the left yaxis that seems the active one because of the labels and ticks). Also there seems to be no handle for disti...
0
Perhaps this is a right click option within the console itself, or a setting to save and export on exit/closing tab. But the option to save/export the console output and input into a txt file
# Environment Windows build number: Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): Version: 0.4.2382.0 Any other software? # Steps to reproduce 1. Highlight text in Windows PowerShell, in Windows Terminal. 2. Press CTRL+C and watch as a new line is g...
0
I am still experiencing issue #7318. This is using the latest Firefox, v22. I do not experience the issue with the latest Chrome. Bootstrap is version 2.3.1.
I posted this issue earlier, but the example that was posted was not fully representative what I was trying to do and I couldn't recreate the error. So I created my own JSBin and I have recreated the error where the textarea is not passing via AJAX because there must be some conflict somewhere with vanilla JS, JQUER...
0
Bringing up a cluster using the new Multiple-AZ Support fails on AWS. The first part of the cluster comes up but we fail on bringing up the second set of nodes. Below is the config to start up: # this part succeeds export KUBERNETES_PROVIDER=aws KUBE_AWS_ZONE=us-west-2a kube-up.sh # th...
The Kubernetes 1.3 release tarball is 1.4G. That is insane. While we know that much of this is due to the fact that we include all architectures, it make kubernetes feel heavier than it is. Much of the space is the fact that 4 server platforms are now created and packaged with everything else. Each target is a ~325M...
0
A number of examples spread across various documentation pages still speak of replication controllers where they should instead say replica sets. Many of these are of an introductory nature and thus tend to confuse Kubernetes newcomers in particular (as determined anecdotally by the number of Slack questions I person...
After creating a simple pod on an empty cluster I wan't able to delete it. Way to reproduce: kubectl run example --image=nginx kubectl get rc # empty kubectl get pods NAME READY STATUS RESTARTS AGE example-1934187764-swmqv 1/1 Running 0 ...
1
GET request to an API returned a response with broken encoding. More specifically, the response body was encoded in ASCII even though the data sent via API is encoded in UTF-8. The result is escaped non-ASCII characters in the response body. This behaviour can be observed on r.content, r.text, and r.json(). Fo...
The location header in a 302 redirect response is not being parsed correctly when it has special characters in it. `/Login.aspx?ReturnUrl=%2f` becomes `/Login.aspx%3FReturnUrl%3D/` When followed, this results in a 404 because it's not correct. >>> import requests >>> r = requests.get('http://affi...
0
`Intl.Segmenter` is available at runtime, but usage creates a compiler error in Deno v`1.20.4`: `example.ts`: const segmenter = new Intl.Segmenter("en", { granularity: "grapheme" }); console.log({ denoVersion: Deno.version.deno, segmenter }); $ deno run example.ts Check file...
What are the interactions between these methods: Process#close() Process#kill(signal) Process#status() The existing docs or a quick read of the source say that: 1. calling `status()` after `Process#kill(signal)` should still be ok (and is). 2. calling `status()` after `Process#close...
0
see discussion here: https://groups.google.com/group/symfony- devs/browse_thread/thread/92ae24eafd13e29e?hl=en
Is there a reason why Request class doesn't have a setUrl method? I really wish to do this: $request = Request::createFromGlobals(); $request->setUrl("http://www.yahoo.com"); but I can't without creating another instance of Request and copying all of its data minus the URL into the new.
0
I'm on Arch Linux x86_64, I configured the compiler with plain `./configure`, on commit `6d8342f5e9f7093694548e761ee7df4f55243f3f`. While the build is on this step: rustc: x86_64-unknown-linux-gnu/stage0/lib/rustlib/x86_64-unknown-linux-gnu/bin/rustc I get this error: error: intern...
Compiling libcore with -g leads to the following error: error: internal compiler error: Type metadata for ty::t '&[core::fmt::rt::Piece<>]' is already in the TypeMap! This is due to the vec slice in question occurring multiple times along a type reference chain and the code path for vec slices do...
1
The drawer doesn't slide back into its original position when closed, it just disappears (unmounts?) instead * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The drawer should slide back into the hidden position ## Current Behavior The slider just u...
To reproduce: * Open your browser to full width. This is to cause the responsive styling to leave the left nav panel open after clicking on something. * Open https://material-ui.com/. * Click on hamburger at top left. * Click on "Component Demos". * Scroll to bottom. * Click on (Component Demos/) "To...
0
# Checklist * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was alrea...
Dispatch the same task many times from multiple processes and have 1 celery worker. The messages to ack upon completion are tracked using the `delivery_tag` attribute in the `properties` section of a celery message. Per the API section of the docs the delivery tag is an integer and is described as: Not...
0
In type.less, I've found it would be useful for the **unstyled** and **inline** to be mixins, rather than developers having to reimplement such things when using LESS. For example, I'm styling a horizontal navigation bar but I have to reimplement the stylings of **ul.inline** from _type.less_ into my LESS file, whic...
I originally opened this as a question on SO, but I've since found several other instance in the wild where this happens, so it's not specific to my site. Wondering if it's a bug in Bootstrap, though interestingly I can't replicate this on the carousel example on getbootstrap.com. From the SO post: > We're doing so...
0
##### Description of the problem Currently, ObjectLoader doesn't load the specified background texture or environment of a scene's JSON object. I've outlined a solution below that would import a CubeTexture or Texture for the scene background, and a CubeTexture for environment (since that's the only type of texture...
##### Description of the problem When loading a scene, the background of the editor is not set to the background of the scene. This causes an issue when exporting because the scene's background will be overwritten to the Editor's default gray. ##### Three.js version * Dev * r103 ##### Browser * All of them...
1
**Steps to recreate** 1. Run Android emulator with app open 2. In Android Studio open `Flutter Inspector` 3. Click `Toggle Platform Mode` twice **Error message** I/flutter (15306): The following assertion was thrown building _CupertinoBackGestureDetector<dynamic>(state: I/flutter (15306): _...
I am able to trigger a reproducible assertion when adding (or removing) a `padding` argument to a `Container` and doing a hot-reload. Note that the assertion happens only during a hot-reload, not during a hot-restart nor when doing the initial `flutter run`. I've tried to distill the reproduction case to be as small...
1
I'm not sure this is a bug because the error message seems to be arising at the conditional neo4j/community/record-storage- engine/src/main/java/org/neo4j/internal/batchimport/RelationshipGroupCache.java Line 201 in 4fe5e8b | "Tried to put multiple groups with same type " \+ type \+ " for node " \+ owningNodeId )...
We have upgraded our Neo4j instances from 4.1.3 to 4.2.2 and since then MERGE no longer prevents duplication of Nodes while concurrent queries are being executed. It is as if the MERGE operation can no longer hold a write lock with the specified condition. Example query that trigger the problem: MERGE...
0
## 📝 Target only a specific keyboard-model with the remappings. _Use case I have not been able to find a keyboard with a Windows keyboard-layout having the same (or better) mechanical feel as the Apple keyboard (USB with numeric keys) , hence I thought I could "just" remap the keys and re-label the Apple keyboard...
# Environment Windows build number: [Version 10.0.18363.778] PowerToys version: 0.17.0 PowerToy module for which you are reporting the bug (if applicable): Fancy Zones # Steps to reproduce There's no specific trigger for this issue. Fancy Zones will work as intended and I will randomly m...
0
### System info * Playwright Version: [1.26] * Operating System: [Ubuntu 20] * Browser: [Firefox] * Other info: * Also with latest version of browser and playwright, also in another machine with the same settings ### Source code * I provided exact source code that allows reproducing the issue locally. ...
Checked for duplicate but all other issues with this error have been closed with no resolution. Whenever I attempt to run a test using "npx playwright test .\practiceTests\FirstTest.js" an error is given that no tests are found. The test directory and file location have been verified and is correct. The file does...
0
When using `tf.identity()` it seems like a proper implementation to pass through the input tensor without copying. However, when the input is the value of a variable it might change later, leading to surprising behavior: var = tf.Variable(1) old = tf.identity(var.value()) with tf.control_depend...
I'm running Tensorflow 0.10. The following code import tensorflow as tf x = tf.Variable(0, dtype=tf.int32) old_val = tf.identity(x) with tf.control_dependencies([old_val]): new_val = tf.assign(x, x + 1) with tf.Session() as sess: sess.run(tf.initialize_al...
1
### Vue.js version 2.1.6 ### Reproduction Link https://jsfiddle.net/xzhwbb1o/2/ ### What is Expected? I want to get the component `item` up component `choice`, but when `functional ` , the parent is the `#app`, remove the `functional` is `choice`, is the default of this? I have read the document render, but did ...
Let's say I have the following template: <div id="app"> <parent-component> <functional-child-component /> <normal-child-component /> </ parent-component> </div> If I use `this.$parent` inside the `normal-child-component` I get access to the `parent-compo...
1
Ok, this is a new one as not sure I've seen it in another product but it is a good alternative to just pure scoring and pushing docs to the top. When searching, I should be able to ask that I get back a "variety" of results by type, or a field value and a min/max count of each. So for example, I get the best ranked ...
Ability to collapse on a field. For example, I want the most relevant result from all different report types. Or similarly, the most recent result of each report type. Or maybe, I want to de-dup on headline. So, the sort order would dictate which one from the group is returned. Similar to what is discussed here: h...
1
## 🐛 Bug Our autodiff infrastructure have bugs on double backward for early expiration of grad_accumulator for some formulas (i.e. layer_norm, linear). It gives error like below File "test/test_jit.py", line 659, in checkTrace grads2_ge = torch.autograd.grad(l2_ge, flattened_recording_inpu...
## 🚀 Feature Hello, This feature is related to a thread from discuss forum I would like to propose mechanism of saving `_forward_pre_hooks` and `_forward_hooks` while model is preparing for quantization. ## Motivation There are cases that depend on such functionality. Here I duplicate what I said about it in th...
0
This is using a up-to-date master as of now. Output from running via Atom: flutter run --no-checked --debug-port=16204 --start-paused --device-id b0f7081e6f02d7e3b573bf6afcb64e61ed8b86bb • flutter logs map/ • debug Running 'pub get' in map... -�\�|�/�-�\�|�/�-�\�|�/�...
Unfortunately, it's not clear what action I can take, as a developer. Can we give more guidance about what I should do now? I'm trying to run the gallery app on my iPad, and I got this: ~/Code/flutter/examples/material_gallery[master*] $ flutter -d ipad run Running 'pub get' in /Users/sethladd/Cod...
1
# Environment Windows Version: Windows 10 Education 1903 OS Build: 18362.10005 Windows Terminal version: 0.3.2142.0 Any other software? # Steps to reproduce Opening more than certain tabs breaks the tab management. There are several issues faced: * Multiple tabs become h...
# Description of the new feature/enhancement When watching logs, or build processes, similar lines being shown repeatedly can often make it hard to determine if anythings happening (as each new page of data looks the same as the previous one) Smooth scrolling would help this.
0
**Apache Airflow version** : 1.10.12 **Environment** : * **Cloud provider or hardware configuration** : Google Cloud Composer (tweaked environment running Airflow RBAC UI) **What happened** : In Airflow RBAC UI, when switching between pages, 'Access is Denied' error message actually indicates missing permissio...
**Apache Airflow version** : 2.0.1 **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): 1.19 **Environment** : Kubernetes Executor, Okta OIDC * **Cloud provider or hardware configuration** : EKS 1.19, RDS Postrgres DB * **OS** (e.g. from /etc/os-release): Centos inside docker * **Ke...
1
org.springframework.transaction.TransactionSystemException: Could not commit JDBC transaction; nested exception is java.sql.SQLException at org.springframework.jdbc.datasource.DataSourceTransactionManager.doCommit(DataSourceTransactionManager.java:270) ~[spring-jdbc-3.2.0.RELEASE.jar:3.2.0.RELEASE] at org.springframe...
Cause: java.sql.SQLException: Invalid argument value: java.io.NotSerializableException ; SQL []; Invalid argument value: java.io.NotSerializableException; nested exception is java.sql.SQLException: Invalid argument value: java.io.NotSerializableException at org.springframework.jdbc.support.SQLSt...
0
It is my first application with Next.js and I am facing problems to deploy the project to Heroku. I am using Express server and a external .babelrc file. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior No errors building/running project in Heroku. ...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The expected behavior is that of the online demo. ## Current Behavior Unfortunately, when you clone the repo, npm install and run it gives an error when you navigate client-side to the Home: _Typ...
0
# Non-nullable types (#7140) ## Question marks on types Let's start the bike-shedding! What does `T?` mean? function foo(x?: string) { // x: string | undefined } function foo(x: string?) { // ????? } function foo(x?: string?) { // x: string | undefine...
The following TypeScript with async/await... public async get(from: number, to: number): Promise<Array<M>> { let models: Array<M> = await this.persistant_repo.get(from, to); produces the following JavaScript with a yield outside of a generator... ModelsRepoDecorator.prototype.get ...
0
I have an app with a framework very similar to Om where I always render from the top component. There is no Flux store with components listening to a single Flux store event, just a single global json state managed outside of React. I ask this question as a follow-up to this issue, as I just noticed that React.ren...
React version: 17.0.1 ## Steps To Reproduce 1. Use latest react and check chrome console ## Issue [Deprecation] SharedArrayBuffer will require cross-origin isolation as of M91, around May 2021. See https://developer.chrome.com/blog/enabling-shared-array- buffer/ for more details. scheduler.develo...
0
It should be possible to pull down from the top of the persistent bottom sheet to make it disappear, but it seems to have a very small hitbox to make that happen? ![hard_dismiss mov](https://cloud.githubusercontent.com/assets/11857803/23090740/1c87b528-f55a-11e6-9f78-dfec46c46f26.gif)
Trying to figure out why this is occurring but currently no idea. I just came across the issue in the console. flutter: When the exception was thrown, this was the stack: flutter: #2 MultiChildRenderObjectElement.forgetChild (package:flutter/src/widgets/framework.dart) flutter: #3 Ele...
0
Hello, I am using the latest version of google chrome (29.0.1547.57 m) on Windows 8. I am reproducing the same bug on the 28 version. Open the Justified nav example in large size. http://getbootstrap.com/examples/justified-nav/ Reduce the window to the XS size and re-extend it to the large size. Nav bar menu...
The justified nav example (http://getbootstrap.com/examples/justified-nav) collapses perfectly when the screen is narrowed, but when the screen is expanded it get wonky. ![justified nav](https://camo.githubusercontent.com/db69ca8e316e013e7709351d88ecf7d585b87ae58bdeb880ad477c8bc93e6608/68747470733a2f2f662e636c6f756...
1
Currently the file is only used to detect the virtual project. Now that we have tsconfig.json support we can use the language service bound to a tsconfig.json file to find navto items. I would propose the following handling in case of the absense of a file: * no tsconfig project. Command return no content message ...
Example: function f(T:{new (...args:any[]):any}) { return class extends T {} } Error: src/test.ts(2,23): error TS2509: Base constructor return type 'any' is not a class or interface type. Seemingly arbitrary fix: interface I {} function f(T:{new (......
0
### Version 2.6.6 ### Reproduction link https://jsfiddle.net/azg65dsv/3/ ### Steps to reproduce Click the "Push" button and you will see that the focus of the window is now on the top input. Wait a few seconds, and should now see that the focus has been lost from the input. ### What is expected? The first inpu...
### Version 2.6.10 ### Reproduction link https://codepen.io/timbenniks/pen/yPOLej ### Steps to reproduce * Add a _noscript_ tag inside the DOM node that is given to the Vue constructor. * In that _noscript_ tag, add an image tag. * Open the network tab of the developer tools. * Load the page. ### What i...
0