text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
The waypoint throws an error asking you to make sure your li element has a closing tag even though all of them do. The reason for this error is really the fact that the element has a class assigned to it. I read the waypoint instructions as saying to replace the elements with * elements but keep the class. Maybe co...
![screen shot 2015-08-27 at 23 07 53](https://cloud.githubusercontent.com/assets/13215331/9533172/92f6c0f8-4d10-11e5-9d5f-42d2c99f1ba3.png) Challenge http://freecodecamp.com/challenges/waypoint-create-a-bulleted- unordered-list has an issue. Please describe how to reproduce it, and include links to screenshots if po...
1
_Please make sure that this is a build/installation issue. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template_ **System information** * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): MacOS 10.13 * Te...
I tried the tensorflow demo for android and it looks really promising, but there is a big problem, every time I completely cover the camera my cellphone will horribly crash and reboot, which has never happened to me, I have never encountered an error in an application that will reboot my phone completely, so in order...
0
Challenge http://www.freecodecamp.com/challenges/waypoint-bring-your- javascript-slot-machine-to-life has an issue. When entering the three lines required for the code to execute: $($(".slot")[0]).html(slotOne); $($(".slot")[1]).html(slotTwo); $($(".slot")[2]).html(slotThree); ...
![](https://camo.githubusercontent.com/6ff9592d9504972d8aa6038ff3abe50cda5bdcb50736577f6d95f1a6b2a5bf2a/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f41723859493051787339704c4c34454f7852445f6b562d734649467161475a56494967422f696d6167652e706e67)
0
i have it set to false but format replaces tabs with spaces and there is no tabify command to repair it? thanks
_From@TJSoftware on January 29, 2016 17:35_ ##### Summary I am unable to format code for `xml` and `c#`. `json` and `javascript` do not have any issues. ##### What I have done Originally I modified my `editor.tabSize` to be 2 (in workspace). I removed this override and just left in the defaults. I also overwrote...
1
This is a feature request. Can we have variable-sized (non-square) GridView widgets? E.g. the example from https://docs.flutter.io/flutter/widgets/GridView-class.html: new GridView.count( primary: false, padding: const EdgeInsets.all(20.0), crossAxisSpacing: 10.0, crossAxisCou...
We should consider adding a sliver wrap widget. This widget would function like the Wrap widget, but support scrolling. SliverGrid currently relies on users specifying a fixed cross axis count, or a max extent for the cross axis. Further, the only layout we support (SliverGridRegularTileLayout) assumes that the item...
1
I have a form type that incorporates another form type. I've added an event-listener to the sub-form but the listener is never executed. The first Form Type : class AFormType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $buil...
Hi @bschussek I'm having an issue since I've updated my code to Symfony v2.3.1, I have an embed form defined as virtual and neither `FormEvents::PRE_SET_DATA` event nor `setData` method are called anymore. I wrote a test to be more explicit on the problem I have: https://gist.github.com/jeremyb/5764427. I ran this ...
1
Hello everyone. I have some issues that i can't find in the internet. I have two screen on the extends mode and i want to change it in the electron on duplicate mode in time. Does electron has this properties.
I do not know whether this is a bug or just not installed dependencies. Code: home/gs/Рабочий стол/PROECT/image_editor/node_modules/electron/dist/electron: /lib/i386-linux-gnu/libdbus-1.so.3: no version information available (required by /home/gs/Рабочий стол/PROECT/image_editor/node_modules/electron/dist/electron)...
0
For example, we have interface interface A { a: string; b: number; c: string; d: number; //etc } and we want interface which contains all members except `{c: string}` and includes { f: number; } Ofcource we can split interface A, but, ...
Another type-safety measure. Sometimes it's desired to limit what developers can do with a value. Not allowing them to get to certain properties of it looks sufficient. Example: We render HTML elements to PDF on the client side. In order to do so we need to run `element.getBoundingClientRect` to get a bounding box i...
1
I noticed this problem on my machine. I think it may be a bug as another person was able to reproduce it on their machine. The problem is that julia crashes when I use the `dot` function from `LinearAlgebra.jl` on arrays of complex numbers that are longer than 10^4. If the arrays of complex numbers have of length 10...
To reproduce x = zeros(ComplexF64, 10001) x' * x The error message is Please submit a bug report with steps to reproduce this fault, and any error messages that follow (in their entirety). Thanks. Exception: EXCEPTION_ACCESS_VIOLATION with steps to reproduce this fault, and any...
1
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME core ##### ANSIBLE VERSION ansible 2.2.0.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION This bug is related to tripleo-quickstart, an Ansible based project for...
From @naslanidis on 2016-03-07T01:20:17Z ##### Issue Type: * Feature Idea ##### Component Name: * ec2_vpc.py ##### Ansible Version: ansible 2.0.0.2 config file = /home/naslanidis/code/ag-vpc-management/ansible.cfg configured module search path = /usr/share/ansible/modules ##### Ansible Configuration: ...
0
##### ISSUE TYPE * Bug Report * Documentation Report ##### COMPONENT NAME eos_config (any of the eos_ modules) ##### ANSIBLE VERSION ansible-playbook 2.3.1.0 config file = configured module search path = Default w/o overrides python version = 2.7.13 (default, Dec 18 2016, 0...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME networking eos-config ##### ANSIBLE VERSION ansible 2.3.1.0 config file = /Users/sean/src/ansibledemos/ansible/ansible.cfg configured module search path = Default w/o overrides python version = 2.7.6 (v2.7.6:3a1db0d2747e, Nov ...
1
In reviewing #951, it came to my attention that we have no validation or formal spec on what character restrictions we impose on label keys and values. This is bad if we plan to support a more formal complex selector grammar which may require escaping rules. We need to define a valid schema and enforce it via validat...
The order that conversion functions are added to the scheme depends on the package initialization order in Go. The name of a conversion function is used in other generated functions (for performance), but because the order of packages is not guaranteed stable any change in build order can result in conversions being ...
0
// Supported beast features interface Beast { wings?: boolean; legs?: number } interface Legged { legs: number; } interface Winged { wings: boolean; } // Beast feature detection via user-defined type guards function hasLegs(x: Beast): x is Legged { return x && typeof x....
**TypeScript Version:** 1.8.10 **Code** // two interfaces interface A { a: string; } interface B { b: string; } // a type guard for B function isB(toTest: any): toTest is B { return toTest && toTest.b; } // a function that turns an A i...
1
# Environment Windows build number: [Version 10.0.18362.175] Windows Terminal version (if applicable): 0.2.1715.0 # Steps to reproduce * Open the Windows Terminal * Open the Setting menu, either by pressing Ctrl + , or clicking on the Settings button in the dropdown menu next to the new ...
When I press the settings on the Windows Terminal, it asks me how I want to open the .json file. So the settings won't open. Please help me
1
Hi, When try to make a multiline database query, the syntax colouration is bad... $newUser = $db->prepare("INSERT INTO users". "(id, realname, pseudo, email, pwd, isfirstvisit)". "VALUES (:id,:realname,:pseudo,:email,:pwd,1)"); (just like markdown ...
Tab spacing should be absolute, independent of any text on a given line. Currently, tab spacing is relative to the last 'word'. This makes it a little ridiculous to line up lines of text. As you can see, the tabs just don't like up at all. ![buggy_tabs](https://cloud.githubusercontent.com/assets/3362733/2905313/02...
0
Kind of an edge case I would say, but still it would be nice to get an error or have an automatic renaming of the columns. If a simple error is acceptable as a first step I could definitely put together a PR. The following snippet shows that when you concatenate a column of zeros and a column of ones the resulting d...
### Code Sample, a copy-pastable example if possible # Note: This is not real Python code. I can't reproduce these problems with toy data, but they # show up consistently with certain sets of real data. from pandas import Series vocabulary = Series(data = <a few thousand integers>, i...
0
For example, now I have a parameter 'D' in the model. Now I want to replace the 'D' with 'C', where 'C = a+b'
For example, now I have a parameter 'D' in the model. Now I want to replace the 'D' with 'C', where 'C = a+b'. Is there anyway in pytorch that can achieve that replacement while keeping the backpropagation between 'C' and 'a+b'. (e.g., training the model will update the value of 'a' and 'b'. I've tried D.data = C, ...
1
I want SerialPort communication on my application, but WebSerial is not implemented, so I thought I'd use the device file provided by the platform instead. That's where the problem came... I'm having trouble finding a way to abort reading a device file that never closes infinitely like this. Even if you forcibly...
This will improve performance
0
##### Description of the problem 1. The camera has a parent. 2. The parent sets the position. * OrbitControls-example (latest release branch) ##### Three.js version * Dev * r114 * ... ##### Browser * All of them * Chrome * Firefox * Internet Explorer ##### OS * All of them * Windows ...
##### Description of the problem `OrbitControls` (and `TrackballControls`) break if the camera's parent is moving. movingObject.add(camera); controls = new THREE.OrbitControls(camera); The expected behaviour: jsfiddle The actual behaviour: jsfiddle The problem is that `OrbitControls` op...
1
The new version of Sinon is throwing webpack for a loop again. This code: function makePublicAPI(require, exports, module) { module.exports = sinon; sinon.spy = require("./sinon/spy"); sinon.spyCall = require("./sinon/call"); sinon.behavior = require(...
**I'm submitting a bug report** **Webpack version:** 1.13.1 **Please tell us about your environment:** Linux **Current behavior:** Trying to get code split between multiple entry points, with each entry point split into own code and vendor bundle, then commons extracted for both own code and vendor bundles....
0
Not sure how this could be done but for our application we could run the same container 10 times on the same minion quite happily using different ports as it is lightweight. To load balance though we would need to map the ports back to appear as one service port. To allow other machines to talk to it easily. May be ...
IIUC, host port numbers in each pods are not important for replicated services in Kubernetes. From the perspective of orchestration, the important thing is port of service, but not port of pod. Also manual assignment of host port can be troublesome because spawn of container just fails if the container manifest sp...
1
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Cus...
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): no...
1
The latest stable release of Next is 4.2.3, but 3.2.3 is listed as the latest release in https://github.com/zeit/next.js/releases * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The latest release on the releases page should be 4.2.3 ## Current Beha...
Following the instructions in README to listen to route events doesn't work * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior It should be called and I should see the console logs ## Current Behavior Nothing ## Steps to Reproduce (for bugs) 1. Ad...
0
1: go version go1.5.1 darwin/amd64 2: OSX 10.11 MacPro6,1Quad-Core Intel Xeon E5 3: Minimal program to create an invalid go binary on OSX using codesign tool. package main import "C" // Delete this line and codesign'd binary works. func main() { println("Hello OSX.") ...
Using the Go 1.5 compiler toolchain and compiling a binary that uses CGO and then `codesign`ing that binary, upon attempting to execute the program it will be killed immediately by the system. Codesigning a non-cgo binary works just fine, as expected. Given the following small program: package main ...
1
Why Typescript has not the static classes like in Java, while Javascript has supported this. If I wrote in JS: var ParentClass = (function () { function ParentClass() { } ParentClass.prototype.someMethod = function () { }; ...
# Introduction Currently, in TypeScript, we support only one of the two styles of creating classes in ES6 - that of class declarations. This proposal adds support for the other style, class expressions. This will fill our support for classes in ES6 and help bring us in alignment with both styles. # Class Expression...
1
Please: * Check for duplicate requests. * Describe your goal, and if possible provide a code snippet with a motivating example. This grew oddly specific, but really I just want to make a generalized function benchmark, we give it data and functions and a maximum timeout, it gives us the grid of results = functi...
Please: * Check for duplicate requests. * Describe your goal, and if possible provide a code snippet with a motivating example. Support complete `numpy` functions and some `SciPy` functions
0
While porting an Android app to Flutter, here is my drawable-xxhdpi folder on android ![screenshot 2017-06-03 21 53 42](https://cloud.githubusercontent.com/assets/253700/26758268/4090880a-48a7-11e7-8732-4ec1632e09e0.png) Declaring all these assets in the pubspec is going to be a pain, I should be able to just poin...
I'd like to be able to add an entire folder of assets without having to enumerate each one in my flutter.yaml.
1
i connect apache-shardingsphere-5.0.0-alpha-shardingsphere-proxy by mysql client (8.0.25) ,when i executed some command ,a error was reported: as follows mysql -uroot -proot -h10.0.0.1 -P 3307 root@10.1.1.1(sharding_db) 14:45>show tables; ERROR 2027 (HY000): Malformed packet No connection. Trying to reconnect....
## Bug Report ## num #instances #bytes class name 1: 723701 1723060848 [C 2: 23438021 562512504 java.util.LinkedList$Node 3: 22989567 551749608 org.apache.shardingsphere.sql.parser.sql.segment.dml.expr.simple.ParameterMarkerExpressionSegment 4: 19796 24885584 [B 5: 720560 17293440 java.lang.String 6: 3485...
0
**Context:** * Playwright Version: 1.29.2 * Operating System: macOS Ventura 13.1 * Node.js version: v18.13 (but tested 16.19 as well) * Browser: Chromium * Extra: * Does happen for both M1 and Intel chips * We use the mcr.microsoft.com/playwright:v1.29.2-focal docker image in CI, the difference i...
**Context:** * Playwright Version: 1.27.1 * Operating System: MacOS 13.0 * Node.js version: 16.15.0 * Browser: All * Extra: Also CI using MacOS 12 (Github Actions) **Describe the bug** Subsequent screenshots (on different test runs) of the same page are coming out with different heights. This is mainly d...
1
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** technologies --- react router dom material-ui hooks and functional components context API and providers when i want to navigate between routes , i get this error : at invariant (webpack-i...
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** I have a component which listens for resize events (via a BlueprintJS ResizeSensor). When loading a component dynamically with `lazy` / `Suspense`, an exception occurs as the resize sensor appears to be unmounted: ...
1
Similar to http://www.haskell.org/hoogle/, it'd be great to search based on types, not just names.
One of hoogle's most useful features is the ability to search by type signatures. It makes finding functions whose behavior you know but whose names you don't know much easier. We should add this ability to the search feature in the rust docs.
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Autocomplete works for all locations, also the top-level locations, like countries, continents ## Current Behavior Autocomplete breaks, when the rows include top-level locations, like a single country,...
When I try to print my page with Grid responsive layout, it seems to use xs breakpoint on Chrome v. 62.0.3202.75 even if higher breakpoint is also set * [ x] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior I have grid layout with multiple elements ...
0
**Steps** * Set "SELENIUM_REMOTE_CAPABILITIES" as documented here * Selenium Grid connection is starting up * Selenium Grid reports request to use custom capabilities * Capabilities passed in are not what the Selenium connection reports to be using **Expected** Expected the Documentation on this to be ...
### System info * Playwright Version: [v1.XX] * Operating System: [Windows 11] * Browser: [All, Chromium] * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. **Link to the GitHub repository with the repro** [https://github.com/your_profile/playwright_...
0
#### Code Sample, a copy-pastable example if possible # Your code here In [8]: pd.to_timedelta('1', unit='h') Out[8]: Timedelta('0 days 00:00:00.000000') #### Problem description I would expect all the following to return Timedelta('0 days 01:00:00'). pd.to_timedelta(1, unit='h') does no...
So, I don't know if this is by design, but it sure confused me. `to_timedelta()` operates differently on the number `1000` compared to the string `'1000'`: In[3]: pd.to_timedelta(1000, unit='ms') Out[3]: Timedelta('0 days 00:00:01') In[4]: pd.to_timedelta(1000.0, unit='ms') Out[4]: Timedelt...
1
This is a weird bug that I have not been able to test, due to the unusual circumstances it appears. I also haven't been able to find mention of it elsewhere, so I'm stuck reporting it. I was teaching a class where the projector screen was being used as a second monitor, and not duplicating the laptop screen. When I ...
### Bug report **Bug summary** A figure created on Mac with the MacOSX backend on one screen gets blank when the figure window is dragged to another screen attached to the same computer. **Code for reproduction** import matplotlib as mpl mpl.rcParams["backend"] = "MacOSX" from matplotlib imp...
1
Lenovo G550. 4gb ram. Intel graphics. Atom 0.999. Opening small html 41kb. On opening html editor freeze for for few minutes and showing one popup() ![error](https://cloud.githubusercontent.com/assets/6039696/7669052/b1b4188c-fc7b-11e4-88e6-cf2e8f156344.png)
May be a known issue, but files with large embedded images such as github's public/enterprise/maintenance.html will often cause Atom to freeze (MacVim actually struggles as well). Seems some of them (github's public/maintenance.html for instance) work fine when in soft wrap mode, or until you move your cursor to the...
1
**Stuart Gunter** opened **SPR-9226** and commented In certain circumstances, the response is committed before the Interceptor postHandle method is invoked. This appears to be caused when the HandlerMethod is annotated with `@ResponseBody`. Steps to reproduce: 1. Create a Controller method annotated with `@Resp...
**Guillaume Bilodeau** opened **SPR-3817** and commented As discussed here: http://forum.springframework.org/showthread.php?p=139502 Given the following context: . an application built with compile-time weaving using AspectJ 1.5.x, . use of Spring 2.0.x . a class annotated with `@Transactional` \- not its met...
0
It looks like Angular 2 tries to load files in a path called `'rxjs/operators/*'` (like here). But it seems the path should be called `'rxjs/operator/*'` (without `s`). Webpack error: ERROR in ./~/angular2/src/facade/async.js Module not found: Error: Cannot resolve module 'rxjs/operators/toPromise...
In `angular2@2.0.0-alpha.48`: `facade/async.js` line 19 calls `require('rxjs/operators/toPromise');` As of `rxjs@5.0.0-alpha.12` this folder was renamed to `operator/toPromise.js`. The result is that a jspm install of angular 2 without bundling gets the following error: GET http://localhost:8080/jsp...
1
It showed, that more reasonable for oVirt VMs `state` present is to don't start them. Better solution is just to create them if it don't exist and don't touch the state of the VM. ##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ovirt_vms ##### ANSIBLE VERSION 2.4.0 ##### CONFIGURATION ...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME /usr/lib/python2.7/site-packages/ansible/modules/system/pamd.py ##### ANSIBLE VERSION ansible 2.3.0.0 config file = /var/lib/ansible/local/ansible.cfg configured module search path = Default w/o overrides python version = 2.7.5 ...
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: v2.7.1 * Operating System version: OSX 10.14.4 * Java version: 1.8.0_202 ### Steps to reproduce ...
* 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.7 * Operating System version:windows 7 * Java version: 1.8 ### Steps to reproduce this issue...
0
Neo4j version: 4.4.2 OS: Ubuntu 20.04 When running `neo4j-admin import` the `:ID` fields are not being imported correctly. A handful of them seem to become duplicated for some reason. Here's the CSV file: hash:ID,height:INT,version:INT,prevblock:STRING 000000000019d6689c085ae165831e934ff763ae46...
It will be great if there will be ability to fast edit nodes and relationships properties on the fly from browser interface.
0
Dear dev, I like combining box and strip plots, I also like making optimal use of seaborn categorical plotting features, i.e. like this: sns.catplot(kind='point', data=alldata_long, x='gene_id', y='TPM', hue='Exp condition', row='Lib prep', height=3, aspect=4) I would like to be able to combine ...
With recent shift in the docs to emphasize the figure-level plots, it raises the challenge that layering multiple plots (i.e. a swarmplot on top of a violinplot) this way is not obvious. For a single axes grid, you can plot directly onto it using the axes-level function you want. For multi-plot grids, you can use `.m...
1
I downloaded Julia 0.3.9 Windows self-extracting archive latest release (2015-05-30 11:24UTC) onto my Windows 8.1 64-bit Lenovo Thinkpad, and it didn't run. It gave me the splash screen and then hung for 5 minutes (no prompt) until I killed it. Can anyone replicate this?
I have noticed that Julia 0.3.3 REPL sometimes hangs at startup on windows se: ![image](https://cloud.githubusercontent.com/assets/7973946/5286150/3294c7ca-7b22-11e4-8fa0-f6d7ae6886a2.png) I have seen this on my own computer and some of my colleagues.
1
I get the following error julia> x=[1,2] 2-element Array{Int64,1}: Evaluation succeeded, but an error occurred while showing value of type Array{Int64,1}: ERROR: premature end of integer: "24" in error at error.jl:21 in parseint_nocheck at string.jl:1486 in parseint_nocheck a...
julia> versioninfo() Julia Version 0.3.0-prerelease+1358 Commit cb26338* (2014-02-01 14:56 UTC) Platform Info: System: Windows (i686-w64-mingw32) CPU: Intel(R) Core(TM)2 Duo CPU T9300 @ 2.50GHz WORD_SIZE: 32 BLAS: libopenblas (DYNAMIC_ARCH NO_AFFINITY) LAPAC...
1
#### Code Sample, a copy-pastable example if possible import pandas as pd df = pd.DataFrame({'y': [3.5, 4.5, 6.5]}, index=[2.5, 1.5, 3.5]) df.plot(style='o') ![actual](https://user- images.githubusercontent.com/6169306/31855630-2861406e-b6af-11e7-9205-995e580e7e4e.png) #### Problem descriptio...
Compare these 2 plots below, this is not expected behavior: import pandas as pd from numpy.random import rand testarr1=rand(100) testarr2=rand(100) pd.DataFrame(testarr2,index=testarr1).plot(style='.') pd.DataFrame(testarr2,index=testarr1).sort().plot(style='.')
1
When installing some git dependencies using the Docker image node:10-alpine via `npm ci`, attempts to `npm prune --production` result in an error like: npm ERR! code 128 npm ERR! Command failed: git clone --mirror -q https://github.com/nodecraft/ampify.git /root/.npm/_cacache/tmp/git-clone-6573274f...
# What / Why This bug is related to #476 (comment) and #514 ## When `npm install` packages from git in docker ## Where * packages from public git repositories ## How ### Current Behavior # npm i npm ERR! code 128 npm ERR! Command failed: git clone --depth=1 -q -b v2.0.5 git://github.co...
1
Hey, Recently I've been putting together a page that has a lot of data. I'd like to consolidate this more by adding a scrollable feature to my table, however, overflowing the table in y with a max height causes the header to scroll. I've tried several CSS tricks and looked all over the internet for a solution. Most ...
Please consider adding a class named table-fixedheader that can be applied to a table so that the body scrolls under fixed headers. See this JSFiddle for a working demo: http://jsfiddle.net/drueter/yqgB5/3/ All that is needed: table.table-fixedheader>tbody { display: block; } tab...
1
This is a follow up to #12601. Basically, I'd like to find a way to have a flattened view of router params available to components so that each components need not know about how the router tree has been configured. See #12601 for an implementation idea. **I'm submitting a ...** (check one with "x") [...
**I'm submitting a ...** (check one with "x") [ ] bug report => search github for a similar issue or PR before submitting [x] feature request [x] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
1
* I tried using the `@types/node` and `@types/react-native` package and had problems. * I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript * I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there). * Mention the authors (see ...
I am unable to get Type script definition through nuget & package mangers shows error message saying `Unable to resolve dependencies. 'bootstrap 3.0.0' is not compatible with 'Twitter.Bootstrap 3.0.1.1 constraint: bootstrap (≥ 3.0.1)'.` `At line:1 char:1` `+ Install-Package office-js.TypeScript.DefinitelyTyped` ...
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.5-SNAPSHOT * Dubbo branch: master * Operating System version: macOS Catalina * Java...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.5 * Operating System version: CentOS7 * Java version: JDK8 ### Steps to reproduce this issue...
0
Feature request: I would like an option to tell Text that it should never overflow its container (in either direction) or edge of the screen. If it does detect such an overflow, I would like it to replace as many characters as necessary with an ellipsis so that there is no overflow.
This is a feature request to have text optionally end with ellipsis when overflowing its container. (regardless of multi-line or not) @abarth
1
* I have searched the issues of this repository and believe that this is not a duplicate, although #8580 is certainly related and could be the same root cause. ## Expected Behavior Am able to use withTheme in my React 16 application ## Current Behavior When using withTheme from material-ui@1.0.0-beta.16 with Re...
Adding an errorText dynamically makes all the following content jump unpleasantly. Perhaps the space for the error text could be reserved in advance, or it could animate the vertical motion instead? ![2](https://cloud.githubusercontent.com/assets/113721/11031187/54dcdb68-86db-11e5-8284-6543c4bc2ff1.gif)
0
After the 0.19.0 update, there is an issue with the alignment of FancyZones when there is a change in multiple monitor setup (either connecting/disconnecting my Surface Pro to/from the second monitor). My taskbar positioning is at the top and it seems like the FancyZones thinks that the Taskbar is at the bottom and d...
I think a big enhancement to FancyZones would be if it could remember the original Window size before being put into a Zone and when dragging the Window outside of the Zone it could restore the original Window Size.
0
Assume we have a file `main.rs` which defines a module `foo` residing in `foo.rs`. When the package has previously been built, `rustpkg build …` only checks the timestamp of `main.rs`, but not that of `foo.rs`, ignoring changes done there. This also applies to `rustpkg test` with `test.rs`.
When I go to build something with rustpkg after modifying any file other than main.rs, despite main.rs having `mod foo;` where the file I'm editing is foo.rs, it doesn't check if that file has been updated when I build. $ rustpkg --version WARNING: The Rust package manager is experimental and may b...
1
When enabling log scale for the bar plot, the bars are not plotted properly and the plot is empty. See also this bug report #163 and the corresponding fix #2147. Commit `dda42ab` changed the default value of `nonpos` parameter from `clip` to `mask` which introduced the issue. I cannot tell whether `clip` should be ...
### Bug report **Bug summary** Setting a logarithmic y-axis with `ax.set_yscale('log')` causes histograms to disappear from the axis. This occurs in 2.1.0 but not in 2.0.2. **Code for reproduction** import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as plt import numpy as n...
1
[Enter steps to reproduce below:] 1. Try to open /Applications/Atom.app/Contents/Resources/app.asar **Atom Version** : 0.194.0 **System** : Mac OS X 10.10.3 **Thrown From** : Atom Core ### Stack Trace Uncaught Error: ENOENT, not found in /Applications/Atom.app/Contents/Resources/app.asar At /...
This one is easy to reproduce in my environment. /opt/atom is where I have atom installed $ pwd /opt/atom/share/atom/resources $ ls -lsn total 116 4 drwxrwxr-x. 15 1000 1000 4096 Mar 27 01:22 app 112 -rw-rw-r--. 1 1000 1000 112711 Mar 27 01:22 atom.asar [Enter steps to reproduce below:] 1. cd /opt/at...
1
# Bug report **What is the current behavior?** **If the current behavior is a bug, please provide the steps to reproduce.** **What is the expected behavior?** **Other relevant information:** webpack version: "webpack": "^5.74.0", "webpack-cli": "^4.10.0", "webpack-dev-middleware": "3.7.3", "webpack-hot-...
# The fix Clean your `dist` folder before building (suggestion: use the `clean-webpack- plugin`) # Bug report **What is the current behavior?** For some reason, having a large number of old builds/files in the `dist` folder will cause webpack to run out of memory and die during compilation. I don't understand why...
0
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** When using `useState()` hook in a functional component, I get the following error: > Hooks can only be called inside the body of a function component **If the current behavior is a bug, please provide the steps to ...
Currently, `createElement` throws the warning: > Warning: React.createElement: type should not be null, undefined, boolean, > or number. It should be a string (for DOM elements) or a ReactClass (for > composite components). It would be more helpful if the warning actually said what value was passed, e.g.: > Warnin...
0
* Electron version: 1.8.2 * Operating system: OSX, Windows Issue: Whenever `gulp = require("gulp");` is invoked, Electron 1.8.2 application crashes with "DevTools was disconnected from the page" message. Everything works fine with Electron 1.7.11.
* Electron version: Anything over 1.7.8, until the latest 1.8.2-beta.1 * Node: 8.8.0 * Operating system: high sierra Going over 1.7.8 seems to break Electron for one of our projects. It's hard to track down what's going on but here's the output: ❯ yarn run electron yarn run v1.2.1 $ elec...
1
The following code should be disallowed in strict mode and ES5: "\5"; "\05"; "\55"; "\055"; This is disallowed by Annex B.1.2 of the EcmaScript 5 spec.
When setting up a default `tsconfig.json` file, we had initially put `noEmit: true`, so that people could run tsc to typecheck without generating a file (useful for some people's IDE configs and development styles). It would be nice to be able to still use `--out` (or perhaps some other keyword if `noEmit` is meant ...
0
In rustc 1.3.0 stable the following code triggers an ICE: struct FooBar<'a> { func: &'a Fn(&mut u32), } const FOO: FooBar<'static> = FooBar { func: &|bar: &mut u32| { println!("{}", *bar); // This statement results in an ICE. let inner = ...
I tried this code: const X: u8 = || -> u8 { 5 }(); I expected to see this happen: Either a compilation error, or to be equivalent to const X: u8 = 5. Instead, this happened: Internal compiler error ## Meta `rustc --version --verbose`: rustc 1.4.0-nightly (20a8412e0 2015-08-28) ...
1
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 0.209.0 **System** : Mac OS X 10.10.3 **Thrown From** : Atom Core ### Stack Trace Uncaught Error: EIO: i/o error, open '/Volumes/bifrost.melted.pw/var/www/steelbea.ms/index.html' At /Applications/Atom.app/Contents/Resources/...
[Enter steps to reproduce below:] 1. have SFTP Net Drive (Free version) map a remote location to drive 2. opened this drive with Atom 3. wrote to a file on local machine without issue 4. changed permissions remotely so i could execute this file 5. atom gives me the jarring red window of erroneous doom 6....
1
When you execute a subprocess there's no guarantees of what it can do - all security bets are off. `--allow-run` masks this and is an extra command line flag. Therefore I suggest removing it entirely and requiring users to supply `--allow-all`.
Both of the tests below have the same async function. They should both fail for leaking async ops. The first creates 2 timeouts, but the failure shows there is only 1 more dispatched than completed async ops. When the next test starts, it starts with there being one more dispatched op than completed ops. The setTimeo...
0
I'm trying to use Next.js to render part of my app, but I keep getting ReferenceError: document is not defined at Object.<anonymous> (/Users/patricklu/Q5/lunyr/Lunyr-Frontend/node_modules/domkit/builtinStyle.js:3:18) at Module._compile (module.js:569:30) at Object.Module._extens...
Hi there, I'm trying to find a way to know if i'm coming through browser history. The page gets its initial data through custom routing, eventually fetching it on its own if the variable is empty. class Index extends Component { static async getInitialProps ({ query, store }) { co...
0
If you do `write!(w, ..)` instead of `write!(&mut w, ..)`. task 'rustc' panicked at 'index out of bounds: the len is 6 but the index is 6', /home/rustbuild/src/rust-buildbot/slave/nightly-linux/build/src/libsyntax/lib.rs:1 stack backtrace: 1: 0x7fabba9c69c0 - rt::backtrace::imp::wri...
## _Believed_ current test case (pnkfelix says: "if you are looking at this bug, please try to keep this test up-to-date ... potentially by checking the newest linked dupes in the comment feed below.") // Very // sensitive pub struct BytePos(pub u32); // to particular //...
1
A playbook used for testing: --- - hosts: all remote_user: root tasks: - debug: msg="First task" - debug: msg="Second task" Whe...
Trivial playbook: --- - hosts: somelist user: root tasks: - name: test echo command: echo {{ item }} with_items: - foo - bar with 1.3.3 both implicit `setup` and `command` tasks are run as _root_. With devel (`afa781d` at th...
1
## Steps to Reproduce 1. Create a `TextField` with `onSubmitted` function 2. Run app in Android simulator 3. Press enter on keyboard 4. `onSubmitted` is not called ## Logs Whenever you press Enter these come up in the error log: W/IInputConnectionWrapper( 8999): getCursorCapsMode on inactive...
Enter key blurs the field, which is unexpected. It essentially maps to the "done" key on the android keyboard which hides the keyboard, but that seems wrong when using a physical keyboard. We should seek UX guidance on what the right behavior is here.
1
Hi, My masters thesis is on making neural nets use less memory. One technique I am looking at is memory checkpointing. I can solve for the optimal policy (including multiple recomputations), given the memory budget and per-operator compute/memory costs. I am attempting to implement memory checkpointing as done in `...
It looks like THPVariable_invert should be implemented in C++ to avoid duplicate work from a JIT team. For more details, please, see PR comments.
0
### System Information System: macOS Monterery 12.6(21G115) mac Mini opencv branch master cmake version 3.25.0-rc2 Python 3.9.7 ![截屏2022-10-26 00 06 28](https://user- images.githubusercontent.com/7733842/197825150-746dff49-067e-4e9a-8d31-0a682ca111fe.png) ### Detailed description **I want to cross build op...
** BUILD FAILED ** The following build commands failed: EmitSwiftModule normal x86_64 (in target 'opencv2' from project 'opencv2') CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/objd...
1
Debugging a Node program that uses util.inspect hangs the underlying node process. I stumbled across this while working on an app that depends on the Azure Storage SDK for Node (it uses util.inspect). I don't have a workaround for debugging right now, but the app works fine when running directly from the command lin...
launch this snippet `test.js`: var obj = {}; console.log(obj); console.log(obj); with `node --debug-brk test.js` and attach a debugger, e.g. node-inspector or VSCode. The first _step_ command works fine, the second _step_ crashes node on all platforms.
1
Challenge Waypoint: Add Placeholder Text to a Text Field has an issue. User Agent is: `Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <li...
Challenge Make a Person has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.21 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. So, the problem is, the Class keyword is supported ...
0
#6656 This might be a larger problem with the peek feature. ![image](https://cloud.githubusercontent.com/assets/2193314/15515142/81d8f884-21a1-11e6-87e1-7c14e2c946b0.png)
I have several issues with it: 1. it appears that it at least partially ignores the configuration of the named task in the `tasks.json`. For example, if I have a task `watch:scss` with `"showOutput": "never"` there - running it manually doesn't invoke new tab with output, but if I also add it to `launch.json` via ...
0
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 1.0.0 **System** : Windows 7 64bit **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at F...
I right-clicked on a folder in the tree view **Atom Version** : 0.194.0 **System** : Windows 7 Entreprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Fu...
1
var a: Greeter = new Greeter(); alert(typeof(a)); why is "Object" , rather than "Greeter" ? **TypeScript Version:** 1.7.5 / 1.8.0-beta / nightly (1.9.0-dev.20160217) **Code** // A self-contained demonstration of the problem follows... **Expected behavior:** **Actual behavior:**
There are a few issues when using `Ctrl+,` functionality. ### Massive duplicated results: It happens in .ts and .tsx files for any kind of symbol (class, variable, method,...) ![image](https://cloud.githubusercontent.com/assets/720953/12866146/4094762e-ccc3-11e5-898b-535262da0af2.png) ### Imported Symbols Import...
0
Following a discussion with @NelleV I suggest to decrease the number of CI builds to help easing the backlog. * drop USE_PYTEST (now useless) On Travis, e.g.: * py2.7 mock numpy=1.7 pandas docs * py3.4 * py3.6 pandas docs pep8 delete-font-cache * osx (=2.7) mock Note that we really should build the docs...
**Report** **Summary** I was trying to use networkx to draw some graphs but matplotlib fails. So I tested some actual matplotlib examples without including networkx related code and I reproduced the same error. I suspect it may be related to Qt but cannot be sure. The error states as: > AttributeError: 'QPixmap'...
0
(gdb) bt #0 0x00007ffff7727630 in rust_fail () from /usr/bin/../lib/libstd-966edb7e-0.10-pre.so #1 0x00007ffff75cbd39 in rt::unwind::Unwinder::begin_unwind::h3b1cb9a3eb8d991bXOaD::v0.10.pre () from /usr/bin/../lib/libstd-966edb7e-0.10-pre.so #2 0x00007ffff2dd6aa8 in rt::unwind::begi...
## Updated Bug Report We do not provide enough user feedback explaining why a type is non-copyable. The error messages just say "error: copying a value of non-copyable type `Type`" Things have gotten a bit better since this bug was filed, in part because our story has changed somewhat (we no longer implicitly copy ...
0
Loving Vue JS - great job! I have a weird problem though with FastClick when being used with it. Events are firing, I';m listening for "click" accurately, Vue JS is not bothered by it, until I try and set the data from the event to an object that is data- bound. It's almost like it doesn't update the rendering of th...
### Version 2.2.6 ### Reproduction link http://codepen.io/anon/pen/WGyrdz ### Steps to reproduce Open the codepen with MS Edge devtools open ### What is expected? No warning. When you execute `el.outerHTML` within vuejs while the element is being mounted, you will see that the class attribute is duplicated. #...
0
body.modal-open, .modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom { margin-right: 15px; margin-right: 0: // fix } In my individual use case, and over on the (getbootstrap.com)[http://getbootstrap.com/javascript/#modals] docs, the above CSS is causing an un...
When launching the modal component (http://getbootstrap.com/javascript/#modals) the entire content will slightly move to the left on mac OS (haven't tried it on windows yet). With the active modal the scrollbar seem to disappear, while the content width still changes. You can observer the problem on the bootstrap pa...
1
### System Info transformers version: 4.17.0 Python version: 3.7.0 torch version: 1.10.1 ### Who can help? _No response_ ### Information * The official example scripts * My own modified scripts ### Tasks * An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...) * My own task...
### System Info * `transformers` version: 4.27.0.dev0 * Platform: Windows-10-10.0.19044-SP0 * Python version: 3.10.4 * Huggingface_hub version: 0.12.0 * PyTorch version (GPU?): 1.13.1+cpu (False) * Tensorflow version (GPU?): not installed (NA) * Flax version (CPU?/GPU?/TPU?): not installed (NA) * Jax...
0
* I have searched the issues of this repository and believe that this is not a duplicate. These seem related maybe? * #2499 * #2197 ## Expected Behavior I should be able to add a `.babelrc` with a custom plugin and the `next/babel` preset and everything should work without having to include the `env` preset...
I am developing a nextjs app that runs on google cloud functions. Cloud functions requires node v.6.14.0 and the local function emulator needs v.6.14.0 as well. Since I upgraded to next 6, I am getting the following error when running the next dev server: /project/node_modules/update-check/index.js:18 ...
0
Hi, **Version** : VS 2015 / TS 1.5.4 To reproduce: * Set `"Redirect JavaScript output to directory"` to say `bin`. * Set `"Generate declarations files"`. * Set `"Compile on save"`. * Add file `_references.ts` to the project, with content /// <reference path='../../foo/bar1/bin/bar1.d.ts...
As reported by @licinioamendes in #2152 (comment): > Would be nice allow VS macros for build commands. > > The result would be something like `$(ProjectDir)outputDirectoryPath` on > textbox. Also note that this is working in VS2013 but not in VS2015.
1
I have a login page, after login web route to page index with `Router.push('/')`. In index page I have dynamic import some component depend on `query.page` import * as React from 'react' import * as withRedux from 'next-redux-wrapper' import dynamic from 'next/dynamic' import Layout fr...
When I use `injectGlobal` to inject global styles using styled-components in e.g. the `_documents.js` the resulting `<style>` tag for global styles will be generated _below_ the component's `<style>` tag. Therefore global styles will override component styles. This should be turned around since global styles like...
0
**Migrated issue, originally created by Ye Wang (@ye)** I am running into two issues with Union today using SQLAlchemy with MySQL. Here is the iPython session output. In [1]: from models.schedules import * In [2]: from models.products import * In [3]: from models.users import * ...
**Migrated issue, originally created by Anonymous** The problem doesn't occurs using pymsqldb, but, pymssqldb has many problems with unicode :( When Lazy=True the problem doesn't occurs too ! * * * Attachments: mssql-orderby.patch | test_orderby.py | monkeypatch_orderby.py
0
Hi I am having the following issue when applying the variable set below: ec2_security_groups_test: - sg_name: test-grup sg_description: test-group vpc_id: "vpc-XXXXXX" region: "{{ region }}" sg_rules: - proto: 50 from_port: -1 ...
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION ansible 2.1.1.0 config file = configured module search path = Default w/o overrides ##### CONFIGURATION ##### OS / ENVIRONMENT Amazon Linux 4.4.11-23.53.amzn1.x86_64 ##### SUMMARY In v2.1.1.0, the add_host module will no long...
0
**Describe the bug** In version 131, fbx files are loaded without textures. **To Reproduce** Steps to reproduce the behavior: 1. extract attached file 2. run index.html reproduce file is below _**Code**_ let character = await new Promise((res,rej)=>{ new FBXLoader().load('ArcherRi01.F...
FBXLoader doesn't load textures, I tried swapping out the threejs lib in the node modules to an older one (a month old) and it works, so some update happened which either broke it or changed the way it works? Import: `import { FBXLoader } from "three/examples/jsm/loaders/FBXLoader";` Code: lo...
1
## Problem My team is maintaining a large front end application with the same file hierarchy as:- * component * pages but we don't like it. We usually have multiple component that is only used by a single page resulting whenever we found bugs or wanted to modify a page, we have to navigate though component to ...
Hey Zeit / team! First of all, thanks for all of the hard work on NextJS / Now it's a match made and heaven and I'm insanely excited to be able to migrate a large production app over to the platform. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Bu...
0
**Migrated issue, originally created by Alex Rothberg** Right now `startswith` uses `LIKE`. It would be good if there were a flag it took that would use `ILIKE`. The same would be good of the `contains` operator.
**Migrated issue, originally created by jvanasco (@jvanasco)** discussed previously in * https://groups.google.com/forum/#!searchin/sqlalchemy/icontains/sqlalchemy/MUyt8zYaP0c/ht4fGR9q9w8J * https://groups.google.com/forum/#!searchin/sqlalchemy/icontains/sqlalchemy/331XoToT4lk/RPjIYNTkSEIJ I tried doing this ...
1
I know this is out of spec, but it would be very nice to add support for Elvis operator in playground. object?.property // object && object.property foo?() // foo && foo()
Making an issue here to track the work that needs to be done for the new @babel/eslint-* packages for the v8 release. #### `@babel/eslint-parser` (taken from https://github.com/babel/babel- eslint/milestone/1): * ~~add support for preset& plugins in babelOptions~~ We can add this in a later minor version if need ...
0
I create a table like Table wich contains `CheckBox Name LastName`. When I translate from one page to another I find that the headers `Name` and `LastName` translate from one page to another due to the length of their strings. I added a style for TableCell : width: 40% But this doesn't solve the...
### For Fixing table Head in material 1.0.0 11 alpha I have a table with scrolling rows but I am not able to fix the header. Is there a property to do so as fixedHeader was in material 0.15 and up but there doesnt seem to be something similar in 1.0.0 version ### Versions * Material-UI: 1.0.0-alpha 11 * ...
1
* [ x] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Clarify the section in the docs explaining the static folder convention and how it is handled by next. The docs should emphasize that static assets _must_ be put in the static dir. ## Current Behavi...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Following the `custom-server-hapi` example with hapi's latest release should work. ## Current Behavior I came across two issues when trying to implement a custom hapi 17 server. 1. The `server.conne...
0
My apologies if this is the wrong venue. It wasn't clear from the contributors guidelines whether issues are a suitable place for questions/feature-requests, and when I asked via the community chat room and the usual places I didn't get much engagement. Does Deno have a supported-or-experimental way to track the...
Hey, One of the features Node uses from V8 is promise hooks and in particular Node's async_hooks lets users keep context enabling a lot of use cases (like APMs). I saw the last issue but it doesn't look like there was a lot of discussion there. As far as I'm aware there is no analogy in the DOM/browser world for th...
1
A video decoder would make it much easier to work with video. For instance, something like tf.image.decode_jpeg, but for mp4 videos (or some other format perhaps).
Currently, there is support for audio decoding using FFMmpeg through tf.contrib.ffmpeg.decode_audio(). Would it be possible to add something similar for decoding video files? Thanks!
1
**Florian Rampp** opened **SPR-7288** and commented In the given forum entry, I outline a use case for splitting the handling of a REST resource between several controllers. While, e.g. the methods PUT and DELETE on a resource describe the setup and teardown of some kind of bucket, the POST to the same URL creates ...
**Mark Hopkins** opened **SPR-6822** and commented Given the following: @Controller public class Controller1 { @RequestMapping(value="/someurl", method=GET) public String doGet() { return "view"; } } @Controller public class Controller2 { ...
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): Linux Ubuntu 16.04, nvcr.io/nvidia/tensorrt:19.02-py3 * Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue ...
**System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Yes * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): nvidia-docker `tensor:19.02-py3` (Ubuntu 16.04) * TensorFlow installed from (source or binary): Source * TensorFlow version (...
1
Example use case: I allocate a buffer, and put multiple things using `out=` into the buffer (with views). Naturally I don't want any one of them to resize storage. But currently it's hard to make sure. cc @colesbury @ezyang
I want to implement linear regression in Pytorch with sparse connections. To build such a network I cannot use nn.Linear because it is a densely connected layer. I have first tried to make a binary matrix with 0 and 1 to indicate the presence and absence of connections. But it won't work in my case because it is not ...
0
This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitLab, GitHub, and Bitbucket that enables Dev-Environments-As- Code. This makes it easy for anyone to get a ready-to-code workspace for any branch, issue or pull request almost instantly with a single click. Thanks f...
Remove all my api’s and reset all my accounts and balance to zero. Since, I was bugged and hacked. Thank you I really appreciate all the hard work and effort.
1
Hi guys, Thank you very much for all your work on babel, I believe front-end development wouldn't be where it is today without it. So, currently babel transpiles es2015 default parameters by making use of the ` arguments` variable, which has performance drawbacks. ### Input Code REPL link available :) ...
Hi guys, Thank you very much for all your work on babel, I believe front-end development wouldn't be where it is today without it. So, currently babel transpiles es2015 default parameters by making use of the ` arguments` variable, which has performance drawbacks. ### Input Code REPL link available :) ...
1
If you know how to fix the issue, make a pull request instead. * I tried using the `@types/pino` package and had problems. * I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript * I have a question that is inappropriate for StackOverflow. (Please ask any appropriate question...
* Using the `@types/react` package and had problems. * Using the latest stable version of `tsc@3.2.2`. After patch upgrade from `16.7.18` to `16.7.19`, `tsc` command in my project is failing with the following error: node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(2667,14): erro...
0
## 🐛 Bug Failed to run 'bash ../tools/build_pytorch_libs.sh --use-nnpack --use-qnnpack caffe2' ## To Reproduce Steps to reproduce the behavior: 1. Get Pytorch 1.0.1 from the official GIT repository sudo git clone --recursive https://github.com/pytorch/pytorch --branch=v1.0.1 2. Set up en...
>>> torch.norm_except_dim <built-in method norm_except_dim of type object at 0x115b20ad0>
0
when i pin windows terminal to taskbar, i would like to have access to adminstrator mode. please add run as aminstrator in right click on icon in taskbar ![Annotation 2019-10-11 145506](https://user- images.githubusercontent.com/20259070/66647956-29ca7000-ec37-11e9-841f-9e604c2d98ee.png)
# Environment Hi, Recently I installed to PL/1 compiler from Iron-Spring http://www.iron- spring.com/index.html for Linux in the New Windows Terminal under WSL(Windows Subsystem for Linux), But I heard from certain online forums that the WSL of Windows will support only 64-bit executables and no 32-bit executables, ...
0