text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
const [errors, emitted] = await Deno.compile("./app.ts", undefined, { lib: ["es6","dom", "esnext", "deno.ns","scripthost","dom.iterable"], // include "deno.ns" for deno namespace outDir: "./", }); if (errors) { console.log("There was an error:"); console.log(errors); } else { console.log(emitted); // n...
The deno standard lib declaration of `URL` accepts `string | URL` as input: deno/cli/js/lib.deno.shared_globals.d.ts Line 1149 in a08a4ab | new (url: string | URL, base?: string | URL): URL; ---|--- However the TypeScript dom library declaration only accepts `string`: https://github.com/microsoft/TypeScr...
1
Hello As presented here: http://stackoverflow.com/questions/38454893/error-in-scipy-wilcoxon-signed- rank-test-for-equal-series?noredirect=1#comment64315624_38454893 (without no answer to disprove it as a mistake from me), I wish to report that maybe there is a problem with the results of scipy.wilcoxon signe...
Hello As presented here: http://stackoverflow.com/questions/38454893/error-in-scipy-wilcoxon-signed- rank-test-for-equal-series?noredirect=1#comment64315624_38454893 (without no answer to disprove it as a mistake from me), I wish to report that maybe there is a problem with the results of scipy.wilcoxon signe...
1
Hi. I have a big structure data whose content changes dynamicaly, and in which I want to observe tiny variables. For simplicity I made a code that is triggered on a click, code that call a timeout in order to be sure that all pending works (jquery, vue, and any others) are finished. In this timeout I change a bool...
### Vue.js version 2.0.1 / 2.0.2 ### Reproduction Link https://codepen.io/toxic-johann/pen/yajwRO ### Steps to reproduce use a v-for to render component in component, you have to write a v-for with template in it but not wrapped with a root element open console, and run test() function ### What is Expected?...
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 ...
**I'm submitting a ...** (check one with "x") [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
1
**TypeScript Version:** Version 1.8.9 The documentation here: http://www.typescriptlang.org/docs/handbook/compiler-options.html Lists `--traceResolution` as a compiler option to which I intended to use to help diagnose errors; however, it appears this was removed or changed names. **Code** tsc ...
I am using 1.8 beta. I am also using aurelia framework inside an aspnet5 project. I have configured the module loader, SystemJS, to transpile my TS files. I do * _not *_ want VS to build the TS files. I control this by using a tsconfig.json in the root of the aspnet5 project, which excludes "wwwroot" (along with node...
0
### System info * Playwright Version: `1.35.1` * Operating System: GitHub Actions runner Ubuntu 22.04 * Browser: Chromium `115.0.5790.24` (playwright build `v1067`) * Other info: * Mantine: `6.0.14` ### Source code * I provided exact source code that allows reproducing the issue locally. **Config f...
Hi, in _browser_patches/firefox/juggler/protocol/Protocol.js_ there is a duplicate of the property "value". ![image](https://user- images.githubusercontent.com/22259701/84069718-a59dd780-a9d3-11ea-8b32-a832ddfd87c1.png) I believe that is redundant, is it correct? Thanks!
0
## Bug Report * I would like to work on a fix! **Current Behavior** A clear and concise description of the behavior. test fails because of syntaxError FAIL **tests** /App.test.js ● Test suite failed to run SyntaxError: /Users/Jostein/Documents/jobb_Ovitas/projects/hunnor/node_modules/react-...
## Bug Report **Current Behavior** There are duplicated calls to the `assertThisInitialized` helper. let Foo = /*#__PURE__*/ function (_Bar) { _inheritsLoose(Foo, _Bar); function Foo() { var _this; _this = _Bar.call(this) || this; something(_asser...
0
When using `--emit=dep-info` in a makefile, a missing file (due to being renamed or re-factored away) will cause make to terminate the build instantly. GCC/Clang mitigate this by using the `-MP` flag when creating dependencies, which emits extra rules of the form `dependency:` to tell make to ignore the files if the...
Running something like: rustc --emit dep-info -o x.o lib.rs will produce a depfile containing a rule like: x.o: /path/to/lib.rs /path/to/a.rs /path/to/b.rs This output has a problem: if `a.rs` is deleted from the filesystem and dependencies on it erased from `lib.rs`, then `m...
1
##### ISSUE TYPE Feature Idea ##### COMPONENT NAME lib/ansible/playbook ##### ANSIBLE VERSION N/A ##### SUMMARY This feature request is quite simple : with so many issues linked to the crucial "any_errors_fatal" property on plays (even in Ansible 2.4), please add an option so that in extreme conditions a progr...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME task ##### ANSIBLE VERSION 2.2.1.0 ##### CONFIGURATION [defaults] host_key_checking = False host_key_checking = False record_host_keys = False remote_user = "ubuntu" timeout = 600 no...
0
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No. This is on a clean checkout of tensorflow. * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : OSX Sierra * **TensorFlow installed from (source or binary)** : source *...
### 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)** : OSX 10.13.2 * **TensorFlow installed from (source or binary)** : Source * **TensorFlow version (use command below)**...
1
it would be nice to have Deno catch any unhandled errors e.g. `Deno.catch(e) { console.error(e); }`
I was looking for an equivalent to the Node.js "unhandledrejection" event in Deno, but it appears there isn't one on `globalThis`. There does appear to be an `onunhandledrejection` event handler defined on workers, though. Is there an equivalent event outside of workers, and if not, could there be? 😄
1
### Describe the bug Since the switch from `LegacyRow` to `Row` in 2.0.0, deserialization is no longer possible between sessions (it IS possible if you don't restart the kernel). ### Optional link from https://docs.sqlalchemy.org which documents the behavior that is expected _No response_ ### SQLAlchemy Version i...
**Migrated issue, originally created by Anonymous** The (attached, also partially quoted below) test case results in: RuntimeError: maximum recursion depth exceeded This appears to have something to do with filtering a query using .in() when what is being tested is a mapped property. I'm not su...
0
#3662 is about merging a single-level index with a mi This is is about a multi-multi merge # example described there: In [11]: df = pd.DataFrame(np.random.randn(10,5)) ...: df1 = df[range(0, 3)].set_index([0, 2]) ...: df2 = df[range(2, 5)].set_index([2, 4]) ...: res = df1.j...
from io import StringIO csv = r"""Physical\Flows.Solve,9,1,4,0,0,0,0,0,0 1,2,3,4,5,6,7,8,9,10 """ csv = StringIO(csv) pd.read_csv(csv, engine='python') Results in: ![image](https://user- images.githubusercontent.com/881019/35954774-5cd523e6-0cd7-11e8-80b2-9a15efed3a73.png) #### Pr...
0
Previous problem #13258 seems to have gone away. The new one is: /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/resize_nodes.go:546 Expected error: <*errors.errorString | 0xc208128130>: { s: "timed out waiting for the condition", } timed out waiting for the condition not...
Nodes Network when a minion node becomes unreachable [replication controller] recreates pods scheduled on the unreachable minion node AND allows scheduling of pods on a minion after it rejoins the cluster(Failed 17 times in the last 30 runs. Stability: 43 %)Failed with 0 retries
1
Hi, I am giving the function cv2.solveP3P 3 3D ref points (matrix of size 3x3 type float32) and 2 2D points (matrix of size 3x2 and type float32) camera matrix (3x3) distCoeffs(5,) and the flags= cv2.SOLVEPNP_AP3P. But I am getting the error cv2.error: OpenCV(4.1.0) /io/opencv/modules/calib3d/src/undistort.cpp:38...
There may be a bug in `solvePnPRansac` when less than 6 points are provided. In the sample code below, I'm feeding `solvePnPRansac` with 6 points in the form of a Nx2 and Nx3 matrices. Everything goes well. This is consistent with the documentation (https://docs.opencv.org/3.3.1/d9/d0c/group__calib3d.html#ga50620f0e...
1
### System info * Playwright Version: [v1.32.3] * Operating System: [macOS 13.2.1] * Browser: [Chromium] * Command: docker run --ipc=host --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.32.3-focal /bin/bash & npx playwright test **Config file** // playwright...
### System info * Playwright Version: "@playwright/test": "^1.31.2" * Operating System: [Windows 10.] * Browser: [WebKit] ### Source code * [X ] I provided exact source code that allows reproducing the issue locally. **Config file** // browser.test.ts import { test } from "@playwright/t...
0
requests 2.14+ centos7 py27 omeroweb_1 | Running setup.py egg_info for package requests omeroweb_1 | error in requests setup command: Invalid environment marker: platform_system == "Windows" and python_version<"3.3" omeroweb_1 | Complete output from command python setup.py egg_info...
Example with pip 6.1.1 (but same with pip 8.1.1): > pip install requests You are using pip version 6.1.1, however version 9.0.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command. Collecting requests Using cached requests-2.14.0-py2.py3-none-any.wh...
1
This is what came to my screen: Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.18362.0 IntPtr Length: 8 x64: True Date: 08/02/2020 18:39:34 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boolean value) at Sy...
Popup tells me to give y'all this. 2020-07-31.txt Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 07/31/2020 17:29:59 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boo...
1
From @kuza55 on 2016-06-30T17:33:27Z ##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ec2 module ##### ANSIBLE VERSION $ ansible --version ansible 2.1.0.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ##### OS / ENVIRONMENT Ubuntu on Windows 10 ##### S...
##### Issue Type: Feature Idea ##### Component Name: ec2 module ##### Ansible Version: ansible 1.8.1 ##### Environment: N/A ##### Summary: I did not find a way to change EC2 Security Groups on an existing instance. It is possible to define the groups when creating a new instance with the "ec2" module, but nt...
1
Original report : http://stackoverflow.com/questions/28844917/typescript-cant- find-external-module-when-referenced-by-two-different-files Given the structure : ./first/shared.ts ./first/second/class_a.ts ./first/second/class_b.ts ./third/class_c.ts and files : shared....
(Also posted on StackOverflow: https://stackoverflow.com/questions/28844917/typescript-cant-find-external- module-when-referenced-by-two-different-files) I may be missing something obvious, but Typescript's module resolver for commonjs isn't working as expected. Given the following directory structure and files: ...
1
##### Issue Type: Bug Report ##### Ansible Version: ansible 1.6 ##### Environment: Ubuntu 13.10 ##### Summary: The module does not handle hosts file like this: 10.0.3.204 ansible_ssh_user=ubuntu ##### Steps To Reproduce: * Install Ansible from the devel branch of the repository. * Upd...
##### Issue Type: Bug Report ##### Ansible Version: ansible 1.6 ##### Environment: Ubuntu 13.10 amd64 ##### Summary: Ansible is unable to handle aliases that are not "real" hostnames: cloudncode-ansible-0 ansible_ssh_host=10.0.3.204 ansible_ssh_user=ubuntu ##### Steps To Reproduce: * In...
1
I recently tried `babel@7.0.0-beta.35` and I noticed that there's a regression. My dependency chain is: (my project) <\-- `@babel/preset-stage-0` <\-- `@babel/preset-stage-1` <\-- `@babel/plugin-proposal-decorators` It looks like the pre-beta.35 version of the plugin did opt out because of this code: babel/packa...
Choose one: * bug * feature Repro repository. ### Input Code global.foo = f() ### Babel/Babylon Configuration (.babelrc, package.json, cli command) { "plugins": [ "@babel/plugin-proposal-decorators" ] } ### Expected Behavior It should compile the cod...
1
#### Challenge Name https://www.freecodecamp.com/challenges/line-up-form-elements-responsively- with-bootstrap #### Issue Description The final product of the kitten picture tasks is quite ugly (at least on firefox). The "Loving" choice in personality section drops down a line instead of staying on the row. An...
Forewarning, this _may_ be bike-shedding worthy.... ### Workspace User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36`. (Chrome on Windows 7) ### Setting The CatPhoto is where you make an web page and one component is adding three buttons l...
1
Challenge target-the-children-of-an-element-using-jquery has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0`. Please describe how to reproduce this issue, and include links to screenshots if possible. <script> $(document).ready(function() { ...
Challenge target-the-children-of-an-element-using-jquery has an issue. User Agent is: `Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:48.0) Gecko/20100101 Firefox/48.0`. Please describe how to reproduce this issue, and include links to screenshots if possible. <script> $(document).ready(function() ...
1
React version: 17.0.2 ## Steps To Reproduce I've spend hours on this thing suspecting my code being the bad actor because it was quite complex, but I nailed it down with a help of my friend and it seems like in some cases the `key` prop in array _must_ be first, otherwise `props.children` become `[undefined, false,...
**Do you want to request a _feature_ or report a _bug_?** _bug_ **What is the current behavior?** The `dispatchEvent` method has no effect on input/textarea elements. **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem viahttps://jsfiddle.net ...
0
I have a YML file that I parse, which has the following syntax for an empty array: `some_field: [ ]` Upon dumping the same YML file, and not adjusting `some_field`, the value is dumped as: `some_field: { }` My understanding is that the `{ }` syntax is intended for objects, not arrays. As such, I isolated the code...
Right now YAML component dumps an empty array like this: `$dump = array('test' => array());` as `test: { }`. In some applications that use the YAML it needs to be `test: [ ]` a list instead of a hash. In the symfony codebase on this line (https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Yaml/Inli...
1
When I quit Atom and reopen, the tabs that I had used disappeared. Can we have Atom remember the last tabs that were open before quitting?
A feature I love about ST2 and iA Writer, which I'm missing in Atom, is when you quit the app with open windows (including unsaved documents), they all appear again when you reopen. This has saved me countless times in my workflow to handle having to do a system restart for software update, etc and not have to take ...
1
# Summary of the new feature/enhancement # Proposed technical implementation details (optional)
# Summary of the new feature/enhancement Support running commands, utilities with parameters. The older run box supports commands and parameters to be used in cases like this: * cmd /k [your command here] * ssh username@server.local * runas.exe ....... * wt (Launch Windows Terminal) * ping [server_addres...
1
The `pyfragments.swg` file which is shipped with numpy contains a memory leak in the redefinition of `SWIG_CanCastAsInteger` for `long` and `unsigned long`. The `PyArray_Desc` pointer which is created near the top of the function is not `DECREF`ed when the function returns. Furthermore, the pointer is created very fa...
I think I found a memory leak in pyfragments.swg. In both `SWIG_AsVal_dec` fragments, `PyArray_DescrNewFromType` is called but its return value may not get deallocated. I moved the calls to `PyArray_DescrNewFromType` to right before their value is used (the calls to `PyArray_CastScalarToCtype`) and added a call to `...
1
In WebVR one could simply use `camera.getWorldDirection()` to find the direction in which the camera is pointed in VR. As of r113, in WebXR this same call returns information about the parent rig of the camera, rather than the camera, at least in Oculus browser on both Quest and Go. The culprit is the line `this.upd...
##### Description of the problem If an object has an onBeforeRender function which calls getWorldPosition on the `camera` argument, and the user is in VR, then that object (and any rendered after it) will stick to the user's face, as though the VR camera jumped to the origin mid-render. Example: https://ravenworks....
1
I am constructing this in my main menu structure: { label: 'Delete', accelerator: 'Backspace', click: function () { var focusedWindow = BrowserWindow.getFocusedWindow(); focusedWindow...
I am constructing this in my main menu structure: { label: 'Delete', accelerator: 'Backspace', click: function () { var focusedWindow = BrowserWindow.getFocusedWindow(); focusedWindow...
1
**I'm submitting a ...** (check one with "x") [x ] bug report => search github for a similar issue or PR before submitting **Current behavior** A template that refers to a static property of the component class from formGroup as below fails with "formGroup expects a FormGroup instance. Please pass one in" in Ang...
[ ] bug report [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question **Current behavior** you need to use `constructor` **Expected/desired behavior** perhaps `$class` **...
1
##### Issue Type: Feature Idea ##### Ansible Version: 1.6.2 ##### Environment: Ubuntu 12.04 ##### Summary: I would like the ability to have a dependent role's status re-evaluated each time it is called. That way, if a dependent role is called multiple times (e.g by different dependent roles), it won't get skipped...
##### ISSUE TYPE * Feature Idea ##### COMPONENT NAME `vmware` ##### ANSIBLE VERSION `ansible 2.5.0 (devel 466e1b289b) last updated 2018/01/26 10:22:19 (GMT +200)` ##### SUMMARY There is currently a module called `vmware_resource_pool` to create a new VMware resource pool. A VM can subsequently be assigned to...
0
Copied from https://stackoverflow.com/q/48088189/1531708 because I experience the same: After updating the NDK to v16, the previously working x86 build now fails with hundreds of messages like: > C:/Android/sdk/ndk- > bundle/toolchains/x86-4.9/prebuilt/windows-x86_64/lib/gcc/i686-linux- > android/4.9.x/../../../../...
##### System information (version) * OpenCV => :2.4.9: * Operating System / Platform => :Windows 64 Bit * Compiler => :Visual Studio 2015 Professional ##### Detailed description ![image](https://user- images.githubusercontent.com/20737540/47890106-55ba6e80-de88-11e8-9240-cd2160a1826e.png) Call Stack show: ...
0
Hi! I found slider, but I did not see how to make a from-to value selection. Does the material-ui support this behavior? Thanks for the excellent library!
When an Avatar is used with a Chip component, it's rendered position is not the same as the chip. See screenshot for clarification. My CSS is a little weak, but I think the correct solution is to remove position: 'relative' from the Avatar root class? Can the default 'relative' position be removed from the Avatar roo...
0
The following reliably segfaults on my machines (other type combinations of BadStruct fields segfault less reliably or not at all): using Random, Serialization println(versioninfo()) data_path=randstring() mkdir(data_path) struct BadStruct nm::String s...
Following the instructions in Segfaults when running a script: Here is a Gist containing versioninfo, backtrace and valgrind output. This crash occurs in Julia 1.4.1 and 1.4.0, but not 1.3.1. I'm not experienced in this kind of debugging, so not sure what further information would be useful. Happy to dialogue abou...
1
Dear all, We met this kind of issue when do "KUBERNETES_PROVIDER=ubuntu ./kube-up.sh". the issue came at the below step, * /root/kube/reconfDocker.sh i docker stop/waiting docker start/running, process 4601 Connection to 192.168.132.4 closed. Validating master Validating root@192.168.132.2 Validati...
**Is this a request for help?** (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.): I tried slack, someone else ran in to my issue as well and just used separate CAs **What keywords did you search in Kubernetes issues before filing th...
0
After having played with Flutter a bit from my home computer, I have decided that it is a great tool for developing Enterprise mobile apps for a client. The client has all its users behind a firewall, and they use a self-signed certificate on the inside of said firewall. This means flutter doesn't work. You get the ...
After having played with Flutter a bit from my home computer, I have decided that it is a great tool for developing Enterprise mobile apps for a client. The client has all its users behind a firewall, and they use a self-signed certificate on the inside of said firewall. This means flutter doesn't work. You get the ...
1
### Which version of Sharding-Sphere do you using? sharding-jdbc 3.0.0.M1 ### Expected behavior shardingConditions.getShardingConditions() should only one ### Actual behavior I get multiple of the same conditions ### Steps to reproduce the behavior sql:select * from table1 where shardingcolumn = *** and ( fiel...
Excuse me, if you use broadcastTables to implement a broadcast table, is it possible to implement a global broadcast? Is the broadcast table set up * or what? Directly realize that all tables are broadcast. Because I mainly want to realize the function of a redundant data, there are almost hundreds of tables, it se...
0
Elasticsearch 5 introduced better handling of default settings, that has no reference doc. I wonder if "dealing with defaults" could be linked from cluster settings, index settings, etc. #Show defaults GET /_cluster/settings?include_defaults #Return me to default PUT /_cluster/setting...
Hiya I'm starting 3 nodes, then creating a mapping, then creating a duplicate (with ignoreDuplicate=false). It is sufficient to throw the whole cluster out. It doesn't seem to recover. Run this script a few times, and watch the server logs: #!/bin/bash curl -XGET 'http://127.0.0.1:9200/_cluster/...
0
Describe what you were doing when the bug occurred: 1. 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.8.2-fed4ae024 Call stack: at updateTree (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:17786:17) at getCommitTree (chrome- extension://fmkadmapgofado...
### Describe what you were doing when the bug occurred: 1. I did profiling on a list, that gets updated on each pagination api call. 2. Once the profiling was done, I moved around in the Profiler to view the Flamegraph 3. Moving to second capture, the Profiler crashed. **DevTools version** : 4.6.0-6cceaeb67 ...
1
### What version of Go are you using (`go version`)? Go Playground ### What operating system and processor architecture are you using (`go env`)? Go Playground ### What did you do? See https://play.golang.org/p/beWgN_LRyJ \-- it fails to compile with `internal compiler error: large ONEW with EscNone: new()`. The...
Go version: +2e4b659 15/07/2015, OS: Debian Jessie AMD64 The following program fails to compile: package main type X struct { Array [1 << 16]byte } func main() { _ = &X{} } with the message ./test.go:8: internal compiler error: large ONEW with ...
1
### 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)** : Arch Linux 4.15.8 * **TensorFlow installed from (source or binary)** : Binary wheel (`pip install tensorflow`) * **T...
As announced in release notes, TensorFlow release binaries version 1.6 and higher are prebuilt with AVX instruction sets. This means on any CPU that do not have these instruction sets either CPU or GPU version of TF will fail to load with any of the following errors: * `ImportError: DLL load failed:` * A crash w...
1
Challenge http://www.freecodecamp.com/challenges/waypoint-generate-random- whole-numbers-with-javascript has an issue. Typo - "You should have multiplied the result of Math.random but 10 to make it a number that's greater then zero');" Correction - "You should have multiplied the result of Math.random by 10 to make...
Challenge http://freecodecamp.com/challenges/waypoint-generate-random-whole- numbers-with-javascript has an issue. "You should have multiplied the result of Math.random **but** 10 to make it a number that's greater then zero" But I believe is a typo for 'by' ![image](https://cloud.githubusercontent.com/assets/1383...
1
## Steps to Reproduce Run this: import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); } class _MyAppState extends State<MyApp> { @override ...
I create a plugin by following the documentation : flutter create --org com.example --template=plugin hello cd hello/example; flutter build ios --no-codesign open ios/Runner.xcworkspace The documentation says that the development files can be found under this folder in the Xcode project naviga...
0
Currently `PriorityQueue` defaults to a max-heap and if you want to use it as a min-heap you need to overload `Ord` and change the comparison. But you should be able to use the default ordering and simply specify that you want a min-heap, so we can use it for types like `(uint, &str)` for example. The simple idea w...
When documenting traits, rustdoc lists known implementations. From there it links to both the trait and the type it’s implemented on, which both (usually) have an [src] link. However, the source code of an `impl` is not always next to either of them. Could each `impl` have an [src] link as well? For example, it’s h...
0
Attaching events in template throws error. e.g the following template works fine <input #testname value="Test" /> <p> {{ testname.value }}</p> but the following one throws error, the moment I add the event <input #testname value="Test" (keyup)/> <p> {{ testname.value }}</...
Related: #3664 (should be fixed together) I have a template with the following element: <input type="file" id="picture" accept="image/*" (change)="onFileSelected(f, $event)" (fileread)> On alpha 33 it worked great. On alpha35 it produces...
1
I've just updated the definitions from the version 0.0.33 to the latest version 0.0.36 and my build is failing with the following error (but that error occurs also in 0.0.34 and 0.0.35): .../node_modules/@types/google-apps-script/google-apps-script.base.d.ts Type error: Subsequent variable declarat...
In the node declarations, it seems like the EventEmitter interface and EventEmitter class have become out of sync so that typescript code which should compile clean generates error TS2352: repro case:: /// <reference path="typings/index.d.ts" /> import {EventEmitter} from 'events'; const pe = ...
0
Found from a CI run: Running from numpy source directory. c:\hostedtoolcache\windows\python\3.6.8\x64\lib\distutils\dist.py:261: UserWarning: Unknown distribution option: 'define_macros' warnings.warn(msg) Traceback (most recent call last): File "c:\hostedtoolcache\windows...
### Reproducing code example: >>> import numpy as np >>> a = np.ndarray((5,6,7)) >>> a.shape (5, 6, 7) >>> a[[[0,1]],[[0],[1],[2]],:].shape (3, 2, 7) >>> a[:,[[0,1]],[[0],[1],[2]]].shape (5, 3, 2) >>> a[[[0,1]],:,[[0],[1],[2]]].shape (3, 2, 6) I think the outcome of...
0
This is a small new feature/improvement. If you have in parameters.yml a parameter as Array : database: blog: host: blog-host name: blog-name store: host: store-host name: store-name You can retrieve the parameter from a container ...
Currently an optional variable (that has a default and can be left out from matching and generating URLs) can only be specified without any text suffix, i.e. at the end of the pattern. This is quite limiting. @laszlokorte and I propose to add the possibility to mark the optional parts with parentheses/curly brackets...
0
I tried to add jest to my nextjs app. To do this, I simply added a babelrc file to my project root (see content below). The tests run now but my app won't start anymore. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior * `npm run dev` should start t...
> Note: React-components outside of > > will not be initialised by the browser. If you need shared components in all > your pages (like a menu or a toolbar), do not add application logic here, > but take a look at this example. > https://github.com/zeit/next.js/tree/master/examples/layout-component OK. But it very u...
0
Repro: 1. Start up a kube cluster. 2. Make some API calls that result in 404 (e.g. http://apiserver/aaa or http://apiserver/api/v1/pods/aaa) or 503 (kill etcd and make some API calls). 3. Visit http://apiserver/metrics. Expected behavior: The metrics that have a "code" tag (e.g. apiserver_request_count and re...
When looking into those metrics, the code is always 200. I explicitly send a bad request: wojtekt@wojtekt-work:~/go/src/k8s.io/kubernetes/pkg/labels$ curl localhost:8080/api/v1/pods?timeoutSeconds=xxx { "kind": "Status", "apiVersion": "v1", "metadata": {}, "status": "Failure", "message": "strconv.Parse...
1
I have to use the device_attributes.pb.h and I don't know where it is. Thank you !
I want to use the sparse tensor in C++ API(https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/add-sparse-to- tensors-map). But when I search in "https://github.com/tensorflow/tensorflow", there is no "tensorflow/cc/ops/sparse_ops.h" Does anyone know how to use the sparse tensor in C++?
1
Like it says in the title, an example in the Grid System -> Offset Columns section of the docs shows the class "col-lg-offset-3" being used, but this class (and others like it) doesn't seem to be defined anywhere.
adding the col-lg-offset-2 or any other number doesn't work. upon searching i can't find any such class in the bootstrap.css file.
1
Right now if there is an error such as `Unexpected identifier`` it goes to STDOUT, it should go to STDERR and the process should exit with an error code so that CI , npm test, ... can detect something went wrong.
Hi, I'd like to know when a build failed using the webpack client (because of a module not found for example). Right now, it seems that the client is outputting the error to the console but the status code of the webpack client process is 0 (success). Is it the normal behavior? I can imagine that when using the wat...
1
## Steps to Reproduce 1. Make a change in the project's AppDelegate.m that results in a compiler warning. e.g. mark the AppDelegate class as `+__attribute__((deprecated("foo")))` in AppDelegate.h 2. flutter build ios The compiler warnings should be emitted to the stderr, but today are not displayed.
## Steps to Reproduce 1. Create an app using Firestore (`cloud_firestore` in dependencies). For example, the official Firebase for Flutter codelab. 2. Neglect to set up the iOS project with `GoogleService-Info.plist`. 3. `flutter run` the app on iOS. ## Logs This is what `flutter run` shows, in its entirety:...
1
React introduces a new JSX transform that is supported in TypeScript 4.1: https://devblogs.microsoft.com/typescript/announcing-typescript-4-1-beta/#jsx- factories We should consider the impact of this on Deno and specifically `--no-check`.
React 17 introduced new JSX transforms and they are available in TypeScript 4.1. There are two new options for `"jsx"` in TypeScript: * `"react-jsx"` * `"react-jsxdev"` Currently with _check_ these should be supported without any further changes, but are unsupported in `--no-check` and `deno bundle`. We need s...
1
While reading the CRNN model from meijieru in OpenCV, I got the following error import cv2 net = cv2.dnn.readNetFromTorch("crnn.pth") error: OpenCV(4.2.0) C:\projects\opencv-python\opencv\modules\dnn\src\torch\torch_importer.cpp:1022: error: (-213:The function/feature is not im...
Is there any plan to add DepthwiseConvolution layer of caffeImporter into opencv?
0
If you index the same percolator query twice without a `refresh` in between, then it will show up twice in the percolator results. Also, the percolator count API will return the wrong number of results (will return 2). Here is a test case showing the issue (uses the Elasticsearch Ruby gem): https://gist.github.com...
Some of the nodenames in names.txt are not very name-like. General problems: * Weird capitalization conventions * Lastname, Firstname formatting * Duplicates * General weirdness: "Cody Mushumanski gun Man aka: the hunter"
0
It would be cool to be able to define a profile containing other different profiles that open up in a single tab an there in multiple panes (right / left etc.) ![image](https://user- images.githubusercontent.com/53915293/62897211-14c68300-bd53-11e9-8113-d4b52cea02d1.png)
Would it be possible to release preview/Insider builds of Terminal in the Microsoft Store? Having to install 30 GB of C++/UWP tooling, followed by a compilation that takes up another 20 GB of storage, seems pretty excessive just to try out the terminal. Or at a minimum, maybe release the binaries on GitHub with a Po...
0
Often you have files with the same names when searching, and you can easily see if you have the correct one based on the content, quicker than looking at the file path. I suggest that the file is shown beneath the file quick picker.
Support sublime-like preview mode when opening files from the tree view, fuzzy finder, find and replace, etc. The main issue being tracked is here: atom/tree-view#3
1
I'm reporting here since f2py is part of numpy, but this is ONLY f2py-related! As reported in GeoscienceAustralia/hiperseis#121 f2py fails on https://github.com/GeoscienceAustralia/ellip- corr/blob/master/ellip/ellipcorr.f Reading fortran codes... Reading file 'ellip-corr/ellip/ellipcorr.f' (fo...
in current devel version when a character variable is defined using the asterisk form character*8 name and I then use common name(12) I get an error message from f2py like analyzevars: character array "character*8 name(12)" is considered as "character name(12,...
1
A little background of what is happening: Inventory: [chroot] /tmp/tmpZhhROE/build ansible_connection=chroot Playbook: hosts: chroot tasks: - name: Copy image files to destination synchronize: src={{ app_image }}/ dest=/ Error: TASK: [...
##### ISSUE TYPE * Feature Idea ##### COMPONENT NAME feature ##### ANSIBLE VERSION ansible --version git:aws ansible 2.3.1.0 config file = configured modul...
0
If one tries to use the string index syntax of the r_ object, and it crashes due to an error, it seems like it retains it internal state, making it behave inconsistently. It can be made consistent again by simply resetting the internal state. my version of numpy is `1.11.1`. python is the version 3.4.3+ runnin...
Consider the following code: from __future__ import print_function import numpy as np a = np.ones((3, 3, 3)) b = np.zeros((3, 3)) # Uncommenting this will make the below call to `np.r_` work. # try: # np.r_['2,3', a, b] # except ValueError: # print('fail...
1
here is the backtrace: FAIL: Doctest: scikits.learn.datasets.base.load_sample_image ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/fabian/lib/python2.7/doctest.py", line 2153, in runTest raise self.failureExcep...
#### Description Calculating recall using micro-averaging needs to be optimized for large scale dense arrays. #### Steps/Code to Reproduce from sklearn.metrics import recall_score recall = recall_score(actual, predictions, average='micro') #### Versions Darwin-15.5.0-x86_64-i386-64bit...
0
Listening to @nycdotnet has me fired up to tackle this one. Thanks, Steve. (btw, you can check out his good interview here: http://www.dotnetrocks.com/default.aspx?showNum=1149) The proposal here was first started in times prehistoric (even before #11), when dinosaurs walked the scorched earth. While nothing in this...
Given the following code: var nums: number[] = []; class Class { invoke(s: string) { } } interface Invokable<T> { invoke(arg: T): void; } function fn<T>(arrayFn: () => T[], inv: Invokable<T>) { } fn(()...
0
Axios shows err_empty_response at 2:01 min. I used the timeout. But it's not working. **This is my axios code.** export const createNetwork = networkData => dispatch => { axios({ method: "post", url: "/createNetworks", timeout: 1000 * 3 * 60, // Wait for 5 seconds headers: { "Content-Type": "application...
#### Instructions Please read and follow the instructions before submitting an issue: * Read all our documentation, especially the README. It may contain information that helps you solve your issue. * Ensure your issue isn't already reported. * If you aren't sure that the issue is caused by axios or you just ...
1
The location of apiserver auth certs and keys and the kube-apiserver SSH keys are inconsistent between Debian and GCI. This means that master upgrades from Debian to GCI are broken. In Debian, Salt puts these files in `master-pd/srv/kubernetes` (via `/srv/salt-overlay/salt/kube-apiserver/basic_auth.csv` and `/srv/ku...
$ kubectl run -it --image=busybox --restart=Never false /bin/false I expect this to run the /bin/false once. Instead a job is created which restarts `/bin/false` until it succeeds (which it never does). This way it is impossible to create real one-off tasks with `kubectl run`.
0
### Which version of ShardingSphere did you use? v4.1.1 ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? jdbc ### Expected behavior ### Actual behavior throws exception ### Reason analyze (If you can) ### Steps to reproduce the behavior, such as: SQL to execute, sharding rule config...
## Feature Request ### Describe the feature you would like. Handle Transaction Failed. ### Is your feature request related to a problem? I was testing PostgreSQL Proxy with sysbench. FATAL occurred and the JDBC connection became unavailable because transaction failed and `autosave` was the default value `never`. ...
0
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gci-gke-reboot-release-1.4/850/\n\nFailed: [k8s.io] Reboot [Disruptive] [Feature:Reboot] each node by ordering\nunclean reboot and ensure they function upon restart {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:134\n Oct 21 08:36:33.173: Couldn't delete ns: \"e2e-tests-reboot-h3vjy\": an error on the server (\"Internal Server Error: \\\"/api\\\"\") has prevented the request from succeeding (&errors.StatusError{ErrStatus:unversioned.Status{TypeMeta:unversioned.TypeMeta{Kind:\"\", APIVersion:\"\"}, ListMeta:unversioned.ListMeta{SelfLink:\"\", ResourceVersion:\"\"}, Status:\"Failure\", Message:\"an error on the server (\\\"Internal Server Error: \\\\\\\"/api\\\\\\\"\\\") has prevented the request from succeeding\", Reason:\"InternalError\", Details:(*unversioned.StatusDetails)(0xc820cce000), Code:500}})\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:338\n \n\n"
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gci-gke-reboot-release-1.4/356/\n\nFailed: [k8s.io] Reboot [Disruptive] [Feature:Reboot] each node by ordering\nunclean reboot and ensure they function upon restart {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/reboot.go:98\n Oct 1 04:43:30.313: Test failed; at least one node failed to reboot in the time given.\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/reboot.go:158\n \n\n"
1
I'm trying to have `std` imported conditionally for testing only, as I use `core` in my OS kernel, and found this issue. This code: #![feature(core)] #![feature(no_std)] #![no_std] extern crate std; extern crate core; #[derive(Copy)] pub enum Kind { None =...
In #4789 discussion was started about redesigning the traits related to numbers and I think the first step is to design and document the traits we think are required and why. We probably also depend on #4183 and some other bugs for the actual implementation? (I have an initial sketch/RFC here, based on the work in ...
0
Soft wrapping breaks apart completely and creates a big mess if a certain sequence of actions is performed. I'm on OSX 10.8.4 and Atom 17.0. To reproduce: 1. Start Atom, open a blank new file, and turn on soft wrapping 2. Enter text until it wraps to the other line: ![screen shot 2013-08-07 at 3 27 54 pm](htt...
Sometimes you have several files open in a window and two or more of the tabs share the same file name (e.g., subfolders of examples with many index.html files). Just like Chrome and Sublime (and perhaps other OS X apps?), when you hover of the tab for a couple seconds, we should show additional context. In this case...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.3 & 2.5.10 * Operating System version: mac * Java version: JDk 1.8 ### Steps to reproduce th...
1
As stated in #677 currently you have to wrap a v-for with an if to catch if an array is empty. I'd love a tag like `v-empty` to do that. It would work like `v-else` and you put it right after a `v-for` (maybe also `v-else` could also be reused for that?). The `v-empty` block triggeres if the `v-for` list is empty. ...
### Version 2.5.13 ### Reproduction link https://jsfiddle.net/jbwxeunb/1/ ### Steps to reproduce 1. open console 2. click counter ### What is expected? Show warning when mutating object prop ### What is actually happening? Warning only shows up when mutating primitive props
0
## Bug Using libtorch causes memory leaks. but i think that it is very strange. because i only define `torch::DeiviceType` , then got **bug1** ### bug1 still reachable: 884,654 bytes in 13,927 blocks of which reachable via heuristic: stdstring :436062 bytes in 5832 blocks ### bug2 ...
When compiling PyTorch from sources (`a80a46a`) with the flag NO_DISTRIBUTED=1 it ends up with the Following error : `couldn't find libcudart. Make sure CUDA libraries are installed in adefault location, or that they're in LD_LIBRARY_PATH` comming from there : https://github.com/pytorch/pytorch/blob/master/torch/cud...
0
Although there's an option to Rename, it does nothing when clicked. Related to: #897 ![image](https://cloud.githubusercontent.com/assets/497926/4503462/2c37e88c-4ad8-11e4-98e9-7c2a45bdbf9c.png)
tree-view can currently not rename the opened root folder. When I click the root folder in the tree view and press `F2` or select `right-click` \- `Rename` nothing happens.
1
$ ./cluster/kubectl.sh create -f examples/extensions/deployment.yaml --v 8 I0104 15:17:42.816603 1813 loader.go:229] Config loaded from file /home/mkargaki/.kube/config I0104 15:17:42.818053 1813 loader.go:229] Config loaded from file /home/mkargaki/.kube/config I0104 15:17:42.947358 ...
Kubernetes API Server is reporting the wrong status for a running pod. I have a single container pod scheduled, and as far as I can see it is running on the minion, but kubernetes is very confused about its state. It shows as 'Pending': [stef@falcon cockpit]$ kubectl get pods NAME ...
0
Challenge Taste the Bootstrap Button Color Rainbow has an issue. User Agent is: `Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <link href="https://fonts.googleapis.c...
Challenge Show the Local Weather has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/601.7.8`. Please describe how to reproduce this issue, and include links to screenshots if possible. If you are using a secure connection (ht...
0
Getting an error when trying to duplicate a virtual dataset (feature in this PR: #20309) #### How to reproduce the bug 1. Visit the Datasets page 2. On the Actions column of a Virtual dataset, click the duplicate icon 3. Enter a dataset name and click "Duplicate" ### Expected results Virtual dataset gets co...
A clear and concise description of what the bug is. #### How to reproduce the bug 1. Setup a postgres table with a timestamp with time zone (timstamptz) column 2. Query that column using sql editor or consume that column in a chart 3. See error ### Expected results Be able to see the column ### Actual resu...
0
ERROR: type should be string, got "\n\nhttps://codelabs.developers.google.com/codelabs/first-flutter-app-pt2/#0 has\nlots of `new` keyword. It can be removed since newer Dart versions don't\nrequire it :)\n\n"
I have a Flutter/Firebase application that works on an Android emulator, but not on a real device (HTC 10 with Android 8.0). It fails with a NullPointerException from inside the Firebase auth code, but the stack trace doesn't include the location in my app's code where the call originated from. Lau...
0
#### Copy-pastable examples: import pandas as pd fileName = 'temp/df.h5' #### Example 1 t = pd.DataFrame(data={'k':['A','B','C'], 'x':[ 1., 2., 3.]}) t.set_index(['k'], inplace=True) t.sort_index(inplace=True) t.to_hdf(fileName, 't', for...
from SO In [1]: df = pd.DataFrame.from_dict({'A':[1,2],'B':[100,200], 'C':[42,11]}) In [2]: df_a = df.set_index('A') In [3]: df_a Out[3]: B C A 1 100 42 2 200 11 In [4]: store = pd.HDFStore('foo.h5','w') In [5]: store.put('bar', df_a, format...
1
##### System information (version) * OpenCV => 3.1.0 * Operating System / Platform => Windows 7 64 Bit * Compiler => Visual Studio 2013 ##### Detailed description ##### Steps to reproduce
When i try to import tensorflow frozen model of faster_rcnn_nas_coco using cv.dnn.readNetFromTensorflow it is giving me the following error. cv2.error: /io/opencv/modules/dnn/src/tensorflow/tf_importer.cpp:553: error: (-2) Input layer not found: BoxPredictor_0/ClassPredictor/BiasAdd in function connect * OpenCV =...
0
**Do you want to request a _feature_ or report a _bug_?** feature **What is the current behavior?** There is no warning if two or more instances of the same plugin are applied. **If the current behavior is a bug, please provide the steps to reproduce.** n/a **What is the expected behavior?** A warning shou...
**I'm submitting a feature request** (or a _won't fix_ bug but helpful warnings would be nice if you will) **Webpack version:** 1.13.2 **Please tell us about your environment:** Linux **Current behavior:** When loading (e.g.) React¹ as an external dependency while loading an npm package [e.g. `material-ui`]...
0
### System info * Playwright Version: [v1.35.1] * Operating System: [Ubuntu 20] * Browser: [WebKit] * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. I have not provided a sample repro for this as it's not something I can reproduce easily. It would p...
### System info * Playwright Version: 1.32.3-beta-1681174265000 * Operating System: Windows 11 * Browser: [All, Chromium, Firefox, WebKit] * Other info: **Config file** // playwright.config.ts import { defineConfig, devices } from '@playwright/test'; export default defineConfig({...
0
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME docker_container ##### ANSIBLE VERSION ansible --version ansible 2.2.1.0 config file = /Users/alebedev/projects/ansible/ansible.cfg configured module search path = Default w/o overrides ##### OS / ENVIRONMENT N/A ##### SUM...
##### Issue Type: * Feature Idea ##### Ansible Version: 2.0.0.1 ##### Summary: This isn't an issue for sure, maybe a feature idea. I want to lint a playbook to detect following few among many other possibilities: 1. Undefined variable 2. Unused variable 3. See if vars defined, when ca...
0
[Bootstrap 3.0.3] My html (cut through the body) <body> <nav class="navbar navbar-fixed-top navbar-inverse" role="navigation"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar...
The navbar right padding is broken when using navbar-fixed-top with Bootstrap 3.0.3. Was working fine with Bootstrap 3.0.2. navbar-static-top and navbar-fixed-bottom are probably impacted too. Live example: http://plnkr.co/edit/zn1Pc0?p=preview With navbar-fixed-top: ![With navbar-fixed- top](https://camo.gith...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior TextField Underline should be hidden when I mention `underlineStyle={{display: 'none'}}` ## Current Behavior Nothing changes for the TextField UnderLine ## Steps to Reproduce (for bugs) ...
Like Select does, It'd be useful to allow TextField to receive a custom Input component. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Passing a custom Input element via the `input` prop. <TextField label="Name" input...
0
Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 08/06/2020 05:42:51 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boolean value) at System.Timers.Timer.Start() a...
Popup tells me to give y'all this. 2020-07-31.txt Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 07/31/2020 17:29:59 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boo...
1
from celery import Celeryapp = Celery()app.conf.update ( enable_utc=True, timezone='UTC')app.conf.beat_schedule = { 'test': { 'task': 'test', 'schedule': 5, }}@app.task(bind=True, name='test')def test(self): if self.app.finalized: raise ValueError("APP finalized.") # Checklist * I have read the relevant section i...
# 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...
0
### Description `RMSPropOptimizer` does not work with models utilizing embedding layers, which appears to be a consequence of it not implementing `_apply_sparse`. The other optimizers all implement `_apply_sparse`, so I assume this is an oversight. ### Environment info Operating System: Ubuntu 14.04 LTS Installe...
It seems that tf.nce_loss is not compatible with the optimizers RMSProp, ADAGRAD and Momentum. (while SGD, ADAM and FTRL works fine). When using rmsprop, I get this error: optimizer = tf.train.RMSPropOptimizer(learning_rate = learning_rate, decay = rms_prop_decay).minimize(nce_loss) File "/u...
1
I wanted to make a small script that picks a random file, ask some questions about it and then go to the next file. I don't really need a full-fledged Command, would it be possible to move helpers like Question helper to their own component? (1) Right now i would have to use the Command component and set a default co...
Q | A ---|--- Bug report? | no Feature request? | yes BC Break report? | no RFC? | yes Symfony version | latest `Workflow\Registry` accepts only instances of `Worflow\Workflow` which makes decorating workflows awkward. It would allow for more flexibility if an interface was introduced here.
0
Just like `isequal(x)` returns a function which compares to `x`, it would be nice that `isa(T)` returned a function which can be used to test if a value is of type `T`, that is: isa(::Type{T}) where {T} = x -> isa(x, T) (A user cannot define this method since `isa` is a built-in function).
It would be nice to have a single argument `isa` for cleaner filtering code. filter(x -> !isa(x, AbstractFloat), [1, 2.0]) # could become filter(!isa(AbstractFloat), [1, 2.0]) This would provide some consistency with other functions, such as `isequal`, but since `isa` is a builtin function, de...
1
##### System information (version) * OpenCV => 4.0.0-pre * Operating System / Platform => Windows 64 Bit * Compiler => MinGW g++ (tdm-1) 5.1.0 from codeblocks ##### Detailed description I built OpenCV from source using MinGW which was shipped along with codeblocks. My build and install was successful. ht...
##### System information (version) * OpenCV => :4.1 * Operating System / Platform => :Ubuntu 18.04 x64 * Compiler => GCC 7.4, NVCC 10.1 ##### Detailed description problem when loading opencv library, error says realloc(): invalid old size, this happened for opencv_videoio library when either ffmpeg or gstrea...
0
# Environment Windows build number: 10.0.18362 Windows Terminal version (if applicable): 0.6.2951.0 Powershell Version: 5.1.18362.145 # Steps to reproduce Enter a PS Session, run some command that will cause the output to scroll past the bottom of the terminal window (for example, Get-Process), exit the PS Ses...
# Environment Windows build number: Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.5.2762.0 # Steps to reproduce # open Terminal with powershell # open git repo with more than 100 commits git log -100 # to fill in the entire screen with te...
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.): * * ...
The link here points to broken link getting 404 https://github.com/kubernetes/kubernetes/blob/master/docs/getting-started- guides/docker.md **Is this a request for help?** (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.): no **Wha...
0
Make sure these boxes are checked before submitting your issue - thank you! * I have checked the superset logs for python stacktraces and included it here as text if any * I have reproduced the issue with at least the latest released version of superset * I have checked the issue tracker for the same issue and...
I'm running Superset within a Docker container (tylerfowler version) and on startup I get the message in the subject line, and as per the message I cannot upload a CSV. Here are the container logs. Any thoughts? Checking for existing Superset config... No Superset config found, creating from enviro...
0
related #4363 closes #3374 Here is a minimal example: In [21]: df = pd.DataFrame({'A': range(5), 'B': rand(5)}) In [22]: df Out[22]: A B 0 0 0.402616 1 1 0.880696 2 2 0.184491 3 3 0.832732 4 4 0.393917 [5 rows x 2 columns] ...
While trying to get handle on duplicated records I stumble upon this which lead to conclusion that `.duplicated(take_last=True)` seem to be taking the first of duplicate rows and `.duplicate(take_last=False)` takes the last rows. Here is an illustration: import pandas as pd data = { 'key1':[1,2,3...
0
Steps to reproduce: $ kubectl --context=federation delete rs k8shserver replicaset "k8shserver" deleted $ kubectl --context=federation create -f rs/k8shserver.yaml Error from server: error when creating "rs/k8shserver.yaml": object is being deleted: replicasets "k8shserver" already exists ...
0
# Environment Windows build number: Microsoft Windows [Version 10.0.18363.900] PowerToys version: v0.19.0 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run # Steps to reproduce Inconstant behavior, periodically starts and stops with no clear trigger. # E...
I find myself wanting to switch layouts quickly, especially if I'm collaborating with someone, virtually. (Oh, I need to take some notes, let's stop using focused grid 3 and start using standard grid 2.) One idea of how to implement this would be a way to assign a half-dozen hotkeys so that the user could hit, say, ...
0
##### ISSUE TYPE * Feature Idea ##### ANSIBLE VERSION ansible 1.9.4 ##### CONFIGURATION N/A ##### OS / ENVIRONMENT N/A ##### SUMMARY The current version of etcd (2.x) does not support the deprecated v1 api. The v1 api is the only one supported by the etcd ansible lookup plugin. ##### ST...
Hi, I cant get values from etcd using lookup. It looks like the API version is hardcoded in etcd.py (self.baseurl = '%s/v1/keys'). Thanks, Moshe
1