text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
Replicating example In [1]: df = pd.DataFrame([[1,2],[3,4]],columns=pd.CategoricalIndex(list('AB'))) In [2]: df.describe() AttributeError: 'DataFrame' object has no attribute 'value_counts' The behaviour in this notebook seems like a bug to me. This is pandas 0.17.0. In it, `g` and ...
Hard to reprod. Select from a duplicate indexed axis in a frame with ix where part of the selection set is missing In [22]: df = DataFrame(np.random.randn(5,5),columns=['A.1','B.1','B.2','B.3','A.2'],index=date_range('20130101',periods=5)) In [23]: df2 = df.rename(columns=lambda x: x.split(...
0
The HeroDetailComponent (code not shown) presents facts about a particular hero, the hero that the user selects from the list presented by the the HeroListComponent. The HeroDetailComponent is a child of the the HeroListComponent. Search for the two 'the the' in the text.
After upgrading to 2.2.0 ( and router 3.2.0) I am getting a runtime error on navigation with queryParams. `EXCEPTION: Cannot read property 'appendChild' of null` The weird thing is that the error does not occur while in development mode, nor does the AoT compiler throw any error. Angular: 2.2.0 Angular router: 3...
0
_Original tickethttp://projects.scipy.org/numpy/ticket/1208 on 2009-08-26 by @stefanv, assigned to unknown._ Considering x = np.array([np.array(3+1j), np.array(4+1j)], dtype=object) both In [4]: x.real Out[4]: array([(3+1j), (4+1j)], dtype=object) and In...
_Original tickethttp://projects.scipy.org/numpy/ticket/1142 on 2009-06-19 by @inducer, assigned to unknown._ numpy could really do a better job here by propagating the .real to the elements of the object array: Python 2.5.4 (r254:67916, Feb 18 2009, 03:00:47) [GCC 4.3.3] on linux2 Type "help...
1
## Steps to Reproduce After we write one page with flutter and release it with traffic control. We found two kind of crash report related to SkMemory_malloc.cpp:21. ![image](https://user- images.githubusercontent.com/817851/39164329-8a2e9d76-47b1-11e8-9a84-1b9f367dd393.png) One symbolicated callback stacktrace i...
## Steps to Reproduce In our application,one detail page is written in flutter while the others use java. However, in our test, we noticed that after my detail page crashes one time, it will continuously crash when entering any detail page again after relaunching. The Crash log is given below: 01-12 ...
1
Currently, TypeScript requires that the `get` and the `set` types of properties match. However, there are scenarios where, I think, it would be very useful to have a `set` that is more accepting than the get. For example: imagine you have a property of `Array<Array<string>>` type. Today, this means that both the get...
Namespaces are objects that can hold types, but cannot be passed around because don't have a type themselves. Objects are mostly namespaces which can be passed around because they are typed, but cannot hold types in them. Looks like this difference is a made up thing. **Consider unifying objects and namespaces.**...
0
Given a kubernetes cluster that is running some number of pods, services, deployments, etc, I would like to generate one or more files ( yml format preferred) that would re-produce the current configuration, when applied to a new cluster. My use case is a promotion system. I have my 'stack files' as yml files in a g...
**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 **What keywords did you search in Kubernetes issues before filing this one?** (If you have found any duplicates, you should instead reply there.): zs...
0
**Describe the bug** i have orbitcontroller.update() in the animate loop for damping and after doing orbitcontroller.enabled=false , i still cant tilt the camera, my guess is , the update logic to prevent the camera from tilting /going upside down is still running **Expected behavior** maybe in the update ...
##### Description of the problem I was trying to manually set camera to a position and lookat target and disable control. However the disable does not seem to really shut down control from meddleing with the camera, unless I also set the control's target to be the same as the new camera's lookat target, it will upda...
1
### Reproducing code example: import numpy numpy.unique(numpy.empty((0, 2)), axis=0) ### Error message: Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<__array_function__ internals>", line 5, in unique File "/opt/python/3.8.2.1/lib/pyt...
Using `np.unique` with the `axis` argument on a multidimensional array with zero in one or more of the dimensions hits `ValueError` failures, seemingly due to sizes/reshaping. When `axis` is one of the zero dimensions (that is, `shape[axis] == 0`), it throws `ValueError: cannot reshape array of size 0 into shape (0,...
1
**Migrated issue, originally created by Anonymous** I'm not sure about other DB backends, but postgres supports also unique/check constraints to be inspected on db. Any change to get this into SA?
**Migrated issue, originally created by Brendan Abel (@babel)** This is using sqlalchemy 0.9.8 Assuming a declarative class called "MyClass" with an association proxy field call "my_field" >>> ap = MyClass.__mapper__.all_orm_descriptors['my_field'] >>> ap.owning_class None >>> ap = ...
0
rust-lang/rfcs#840
Take this code: trait Foo { type Value: 'static; } fn require_static<T: 'static>() {} fn takes_foo<F: Foo>() { require_static::<F::Value>() } Since `Foo::Value` is bounded with `'static`, we would expect this to compile, but instead we get this error message: ...
0
### Documentation Link https://matplotlib.org/devdocs/gallery/widgets/span_selector.html ### Problem I've noticed this in a couple instances, but was requested via twitter to report this one. I think a visitor would expect the spanselector example to be a dynamic, working version. When I go to the stable or dev li...
### Problem It can be hard to discern what a widget example does as for many of them there are no images that show up in the docs. For example the Lasso Selector Demo has no image and the Lasso Demo only has a static image. ### Suggested Improvement Manually generate GIFS of the usage and embed them onto the examp...
1
**I'm submitting a ...** (check one with "x") [ ] 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 With the current injectior options you can't redefine a s...
## I'm submitting a... [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report [x] Feature request [ ] Documentation issue or request [ ] Support request => Please do not submit support request here, instead see https://github.com/angular/angu...
1
## Bug ### Input Code REPL LINK function delay(time) { return new Promise((resolve, reject)=>{ setTimeout(()=>resolve(), time); }); } [1000,2000,3000,4000].forEach(async (time) => { await delay(time); console.log(time); }) console.log([100000]...
## Bug Report **Current Behavior** using decorators with stage-0 doesn't work as before; no mix of syntax- decorators and decoratorsBefore or legacy works; throws mix of errors like legacy true and/or decoratorsBeforeExport true/false required see duplicate code throughout babel handling decorators, all start ...
0
ElasticSearch 1.7.0, 5 nodes, each running in a docker container. Got the following exception during a bulk index operation [2015-07-30 13:29:05,558][WARN ][action.bulk ] [duvel-elasticsearch_3] unexpected error during the primary phase for action [indices:data/write/bulk[s]] java.lan...
I have an Elasticsearch engine running on my Macbook and it is crashing randomly, even when in idle mode. Below please find the error log. (This is my first time posting here so apologies if I included more/less info than required) A fatal error has been detected by the Java Runtime Environment: ...
0
I was wondering if something like the following is possible. Given the data structure: * docs * doc1.json * doc2.json And the following code: function loadDoc(name, cb) { require.ensure([], function (require) { cb(require("./docs/" + name)); }); } If I un...
**What is the current behavior?** When I use anything else besides an external source map file option as a value in the dev option (for example "source-map"), https://webpack.js.org/configuration/devtool/#development , when I modify a CSS property in my Chrome dev tools inspector, something weird happens: Chrome s...
0
## 📝 Provide a description of the new feature _What is the expected behavior of the proposed feature? What is the scenario this would be used?_ currently there's no shortcut that windows support to navigate between the open windows of same application. Like I might have opened two firefox windows. If I Have to go ...
I couldn't find it in the documentation, so I guess this is a feature request: I would like to be able to switch focus between windows on a specific desktop, by cycling the focus of each window. This is a little different from `ALT + TAB` because in `ALT + TAB` the focus isn't switched until you leave the keys, an...
1
By default, Ctrl + Alt + ] Keybinding is : fold_current_now. With azerty (french keyboard) Ctrl + Alt (AltGr) + ] is used to write "]". So, it's impossible to write "]" char if you are inside a function.
Original issue: atom/atom#1625 * * * Use https://atom.io/packages/keyboard-localization until this issue gets fixed (should be in the Blink upstream).
1
Source : tensorflow for poets Anujs-iMac:tensorflow-for-poets-2 anujchampjain$ python -m scripts.label_image --graph=tf_files/retrained_graph.pb --image=tf_files/flower_photos/daisy/21652746_cc379e0eea_m.jpg 2017-09-05 12:48:36.936100: W tensorflow/core/platform/cpu_feature_guard.cc:45] Th...
Please go to Stack Overflow for help and support: https://stackoverflow.com/questions/tagged/tensorflow If you open a GitHub issue, here is our policy: 1. It must be a bug or a feature request. 2. The form below must be filled out. 3. It shouldn't be a TensorBoard issue. Those go here. **Here's why we have ...
1
In Go 1.5, the CA root certificate store search order was changed for BSD systems: * Go 1.4 programs would look for `/etc/ssl/cert.pem` before trying `/usr/local/share/certs/ca-root-nss.crt`. (source) * Go 1.5 programs will try `/usr/local/share/certs/ca-root-nss.crt` first, before looking for `/etc/ssl/cert.pem...
by **atctex** : Reproducing the problem: Compile and execute main.go (example.html in same directory): main.go: package main import ( "fmt" "os" "html" "io" ) func main() { file, _ := os.Open("example.html") tokenizer := html.NewTokenizer(fil...
0
requests/setup.cfg Lines 6 to 10 in 1e62a3e | requires-dist = ---|--- | certifi>=2017.4.17 | charset_normalizer>=2,<4 | idna>=2.5,<4 | urllib3>=1.21.1,<1.27
## Problem statement Current documentation only specifies the most common case of post data - a dictionary. The code in fact supports other forms of post data which is not documented. Propose to enhance the quick start section that deals with post data to include examples of other uses. Section of text in the c...
0
# Bug report ## Describe the bug Received this error without creating any viewport meta tag. And also no duplicate meta tag at client side. `Found conflicting amp tag "meta" with conflicting prop name="viewport". https://err.sh/next.js/conflicting-amp-tag` ## To Reproduce 1. start a new Next.js project 2....
* I have searched the issues of this repository and believe that this is not a duplicate. There is about 47% desktop browsers and about 45% mobile browsers run ES2015 without any problem. By https://www.netmarketshare.com There is new simplest solution yet how to deploy separate javascript to modern browsers and t...
0
### Is there an existing issue for this? * I have searched the existing issues ### This issue exists in the latest npm version * I am using the latest npm ### Current Behavior We have a number of node14 projects that we are in the process of upgrading to 16 (and if we aren't careful, the LTS train will have ...
### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior After upgrading from npm 6 to npm 8.1.1, `npm install` started failing. This happens with npm 7.24.2 as well. I used `--loglevel verbose` and found the following: npm timing command:install Complete...
0
I created a self-signed certificate with OpenSSL and started a TLS server with Deno. I was able to start the server without problems, but when sending a request from the browser the server crashed. I received two different error messages from Firefox and Chrome. It is clear that a self-signed certificate is not suita...
Here's a quick reproducer, given: import ajv from "https://cdn.skypack.dev/ajv@v8.6.3?dts"; `deno` (`eval`, `run`, `cache`, etc.) will hang forever, with 100% CPU usage: docker run -it --rm denoland/deno:1.15.3 deno eval 'import ajv from "https://cdn.skypack.dev/ajv@v8.6.3?dts"' This...
0
Hi, we are seeing this error ![screenshot_20170919_161441](https://user- images.githubusercontent.com/378859/30689628-d46232a2-9ec1-11e7-8fbf-5b81c3b3bcc0.jpeg) but the React Developer Tools is saying this ![reach_notification](https://user- images.githubusercontent.com/378859/30689654-ebe05864-9ec1-11e7-8000-9fe1...
**Do you want to request a _feature_ or report a _bug_?** _bug_ (I think) **What is the current behavior?** Here's a codesandbox. Or just plop this in an `index.html`: <body> <div id="root"></div> <script src="https://unpkg.com/react@16.0.0/umd/react.development.js"></script> <script ...
0
Request header keys are being encoded and then checked for later. In python 3 this is causing issues. In an example use case, if `Content-Type` is explicitly set, when making a post request, you end up getting both the user-set type and the default type, eg: `application/x-www-form-urlencoded`. https://github.com/k...
## Summary Started getting SSLError when invoking API using requests module. SSLError: HTTPSConnectionPool(host=', port=443): Max retries exceeded with url: /oauth/token (Caused by SSLError(SSLError(1, u'[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)'),)) Just to add that this is on RHEL ...
0
I have a Vim workflow that I am having trouble recreating in Atom. Most of my tabs consist of a split, for a file and its tests: ![srt_imports rb _github_talks_app_concerns_talk - vim](https://camo.githubusercontent.com/d39f891b97086db324b1fd6c2cc6f25dcc267e7aba205b085d40af5b4423cff1/68747470733a2f2f662e636c6f75642e...
Halp ticket: * support/7866493ac7c811e394e434282a9ab820 > If an untitled document is dragged from one atom window to another, a > "save/don't save" window pops up in the source window. In addition to that, > the duplicates title is 'undefined' instead of 'untitled'. I can't reproduce this exact error (strange, b...
0
* VSCode Version: 0.10.11 * OS Version: Ubuntu 15.10 (64-bit) Steps to Reproduce: 1. Enter `asm("movw $0x38, %ax; ltr %ax");` Example: ![screenshot from 2016-03-20 21-08-40](https://cloud.githubusercontent.com/assets/12996728/13906801/fa879c4e-eedf-11e5-8a39-7c23dc8ba57f.png)
* VSCode Version: 0.10.11 * OS Version: Windows 7 ## Issue 1: In the following code (using C++ syntax highlighting), the string literal(s) are not highlighted at all. This issue is exclusive to C++ syntax highlighting and does not occur with C syntax highlighting. #### Code: int main() { ...
1
Hi, after customizing my layout the download give the following error.txt: {"type":"Parse","message":"Syntax Error on line 810","index":25572,"filename":"bootstrap.css","line":810,"column":11,"extract":[" *margin: -5px 0 5px;"," ove rflow: hidden;"," background-color: @top;"]} I dont know whats wrong?
I'm trying to get Bootsrap through Customize, but every time I get a blank boostrap.css and file error.txt with the error: > A less error occured trying to build your bundle. > You've likely entered an invalid input into the less variable field. Check > your syntax and try again! > thanks! > > {"type": "Parse"...
1
I am using Angular 2.0.0-beta.12 & D3, i am injecting D3 barchart after viewInit, and inject css in component by adding attribute "styles", element injected and display on browser, but css is not apply on dynamic elements which are created by D3, found an issue, after component initialization css embed in document he...
currently there are several layers in our build system that log and rethrow exceptions, we need to unify these and suppress errors (or stack traces for errors) so that the output is easy to understand and doesn't contain duplicate messages or useless stack traces. Sources of exceptions/exception logging: * brocco...
0
## Table header horizontal line The horizontal line in the header table component doesn't behave correctly. It doesn't move when the whole table moves. For example, http://www.material- ui.com/#/components/table ## Versions * Material-UI: 0.14.4, 0.15.0 * React: * Browser: Chrome
Hello, I noticed the border-bottom width does not resize when resizing window. To repeat this create simple table and then open browser window as default with small size and put it to fullscreen. -XDVarpunen
1
Build: https://github.visualstudio.com/electron/_build/results?buildId=14677&view=logs Patch: #15056 We should fix this properly instead of patching out the `sys.exit`
* Electron version: 0.36.9 * Operating system: Mac OSX 10.11.14 When I click on a link that triggers a file download, it emits a `did-fail- load` event with an error code `-3`. The download works and is saved as expected though. As a side note, I was calling `loadURL` in the `did-fail-load` handler which caused...
0
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Windows 10 * **TensorFlow installed from (source or binary)** : source * **TensorFlow version (use command ...
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Windows 10 * **TensorFlow installed from (source or binary)** : Source * **TensorFlow version (use command ...
1
* I have searched the issues of this repository and believe that this is not a duplicate. Hi there, I want to setup this node_module https://react- styleguidist.js.org/docs/webpack#create-react-app-typescript and in order for it to work, it needs to access the webpack.config, how do I go about exposing that to t...
* I have searched the issues of this repository and believe that this is not a duplicate. I built my Next app and deployed it as I usually do, but when loading the page, I got the following on the browser: `Uncaught ReferenceError: webpackJsonp is not defined` in main.js 1:1 Also, all JS interactivity was broken...
0
Hi! I'm trying to prepare dataset splits for a problem I'm working on, and would ultimately like a hybrid of Stratified K-Fold and Grouped K-Fold. Is there a way to accomplish this using logic already built into sklearn? If not, where would be the right place for me to add it/do you have any suggestions for how to g...
#### Description Currently sklearn does not have a stratified group kfold feature. Either we can use stratification or we can use group kfold. However, it would be good to have both. I would like to implement it, if we decide to have it.
1
##### System information (version) * OpenCV => 3.4.6 * Operating System / Platform => centos6.3 * Compiler => 4.8.2 ##### Detailed description I try to build opencv3.4.6 but the below errors occurs: [ 57%] Built target opencv_imgcodecs [ 57%] Building CXX object modules/videoio/CMakeFiles/opencv_videoio.d...
##### System information (version) * OpenCV => 3.4.7 * Operating System / Platform => ubuntu18.04 x86_64 ##### Detailed description When I try to run my program which can be compiled without error, it said: error while loading shared libraries: libopencv_world.so.3.4: cannot open shared object f...
0
Just now i download the Bootstrap Customized version and extract the file, in css folder contains only the two error.txt files. In that error.txt file contain:- A less error occured trying to build your bundle. You've likely entered an invalid input into the less variable field. Check your syntax and try again! t...
when the user try to download a custom version only without the responsive 1200, the navbar, and the hero unit, the download get an error > ![captura de pantalla 2013-05-18 a la s 10 42 15](https://camo.githubusercontent.com/a833b492623744c08cac234ce7e1fb244d8d916418ddc35e8cde0d02b55c225a/68747470733a2f2f662e636c6f...
1
Tried this code and it works flawless with files < 2GB but as soon as I'm using files > 2GB it gives me an error. e = MultipartEncoder(fields=dict( file=(rfbase, open(filename, 'rb'), 'text/plain') )) m = MultipartEncoderMonitor(e, my_callback) uploadInfo = requests...
Using Python 3.4.0 and Requests 2.6.0 content = MultipartEncoder(fields=[('metadata', ("", json.dumps(metadata))), ('content', (file_name, open(file_path, 'rb'), mime_type))]) Then, I call requests.post and get this error. File "/home/xxxx/upload.py", line 222, in upload r =...
1
**Migrated issue, originally created by Denis Otkidach (@ods)** The list of tables is the only list of mapped data that automatically collected in `MetaData` object. So it's the simplest way to construct session with multiple connections where separate connection is used for each metadata. `Session.get_bind()` does...
**Migrated issue, originally created by Michael Bayer (@zzzeek)** right now session.__binds uses mappers completely. This makes it impossible to feed in abstract classes and also because it links to base_mapper it's not possible to change the bind along a class hierarchy either (like a concrete hierarchy). propose...
1
I just installed the latest version of Atom yesterday, and have been trying it out. I had an unsaved file open and noticed that soft wrap was not on. I went into the preferences panel, turned it on, and went back to my open file (not saved yet) and soft wrap still wasn't applied. Instead, I copied the text, and past...
Moved over from atom/settings-view#47
1
**Mike Zupper** opened **SPR-794** and commented Here is the scenerio: * MyAccountForm extends SimpleFormController * MyAccountValidator implements Validator Within MyAccountForm I override the following method: protected ModelAndView onSubmit(HttpServletRequest request, HttpServletResponse response, Obj...
**Kristian Rosenvold** opened **SPR-5863** and commented #### Status Quo Newer versions of JUnit support concurrent test execution; however, the _Spring TestContext Framework_ is not designed for concurrency. #### Proposed Solution The enclosed fixes sharpen focus on concurrency (including making mutable state mu...
0
Challenge Waypoint: Use Hex Code for Specific Colors has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: ...
I've done what was expected but still can't move on. The code is correct since it was simply changing the color black to its hex code. Please help.
1
5l seems to explode on the TST instruction TST $3, R0 5a is quite happy to assemble this, but 5l then produces main.tst: illegal combination TST C_RCON C_REG C_NONE, 8 1 (3) TST $3,R0, main.tst: illegal combination TST C_RCON C_REG C_NONE, 8 1 (3) TST $3,R0,...
The following go function func ss(u, q uint32) uint32 { if u & q == 0 { return 2 } if u + q == 0 { return 3 } if q ^ u == 0 { return 9 } return 1 } ...
1
### Apache Airflow Provider(s) google ### Versions of Apache Airflow Providers apache-airflow-providers-amazon==6.2.0 apache-airflow-providers-celery==3.1.0 apache-airflow-providers-cncf-kubernetes==5.0.0 apache-airflow-providers-common-sql==1.3.1 apache-airflow-providers-databricks==3.3.0 apache-airflow...
This test is flaky and fails sometimes ____________ TestLocalTaskJob.test_task_sigkill_works_with_retries _____________ self = <tests.jobs.test_local_task_job.TestLocalTaskJob object at 0x7f3a8ec6c6a0> dag_maker = <tests.conftest.dag_maker.<locals>.DagFactory object at 0x7f3aa14900...
0
Compiling this small snippet enum Expression { Symbol(~str), Compound(~str, ~[Expression]) } fn standard_form(expr: &Expression) -> ~str { match (*expr) { Compound(~"List", ref items) => ~"list", Compound(~"Blank", []) => ~"_", ...
If you try to compile `tag list<T> { nil; cons(int, list<T>); }` (note "list" instead of "@list" in the recursive constructor), then the compiler crashes with `rt: e2b5:0x00000000: Out of stack space, sorry`. It would be nice to detect this condition and provide a more useful error message instead. The bottom of th...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.6.2 and lower * Operating System version: all version * Java version: all version ### Step to ...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: master branch * Operating System version: all * Java version: all ### Steps to reproduce this is...
0
While refactoring some code I tripped over this one. As most of the program has changed, I'm not sure what the actual cause is. Posting here in case someone can help me fathom what it is. Looks superficially similar to #23888 but it's not clear that my changes have introduced an == on "fat raw pointers". src/geomet...
Imagine a tail call `{ be foo() as int }` where `foo()` returns an `i32` and on the current arch it is known that integers are 32 bit wide. In this case, it should be ok to drop the cast and tail-call `foo()`. The idea for this came up when rewriting `std::math`, cf https://github.com/boggle/rust/blob/libmath/src/...
0
Ok this is an odd one: If you have a matplotlib figure with multiple subplots and try to plot a regplot inside one of the the axes, regplot will update the axes limits of the last axes of the subplot. The cause for this is pretty simple. in this line the regplot function calls `plt.plot` instead of `ax.plot`. Hence...
When using `regplot()` on a figure with multiple axes, the x and y limits on the last subplot are partially determined by data plotted in the other axes. For example, the following code will produce a figure where the range of x values is way too large on the second subplot: import seaborn import ...
1
While editing a JS file, I noticed some problem that only happens with Light+ theme: ![themebug](https://cloud.githubusercontent.com/assets/199648/13003588/af167ac2-d176-11e5-875c-cd2c44bef945.jpg)
Ported from microsoft/TypeScript-Sublime-Plugin#285 Related to microsoft/TypeScript-Sublime-Plugin#265. Issue: ![image](https://cloud.githubusercontent.com/assets/1707813/8627292/da8f8be4-26fe-11e5-97ce-2b2a8b257afa.png) Correct: ![image](https://cloud.githubusercontent.com/assets/1707813/8627340/3e27dbf2-26ff...
1
Sorry if it's duplicate, but i wasn't able to find similar question, but: how to disable 'Save Password' popup which appear then you enter some creds on launching persistent context? ![image](https://user- images.githubusercontent.com/7087798/211773620-bc4fca3f-3752-487a-bf12-4d016651a2c9.png) If I remember it's 'c...
### System info * Playwright Version: 1.36.1 * Operating System: macOS 13.4.1 (22F82) * Browser: All * Other info: Mac is an M1 Max Mac Studio, in case the architecture is relevant. I installed the browsers when I installed Playwright a couple of minutes before running `npx playwright test --ui`, so I'm not...
0
Hi! when i create a new Bundle it suggests to create the target path in the app/cache folder since Version 2.4.5
In 2.3.14, 2.3.15, and 2.4.5, when I run `php app/console generate:bundle` I get the following prompt: Target directory [/home/intrepion/path/app/cache/dev/../src]: But when I revert back to 2.3.13 or 2.4.4, I get exactly what I expect: Target directory [/home/intrepion/path/src]: ...
1
The type of traceback is always string, and children is list. And An error occurred when decode it. It tried to set serializer to json or pickle, and Their results are the same. Thanks. $ celery --version 5.0.2 (singularity) * * * Related Issues and Possible Duplicates #6364 > File "msgpack_unpacker.pyx...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussions forum first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports...
0
## Bug Report I followed this article https://my.oschina.net/u/3867294/blog/3089014 to encry my data. When I'm using the following configuration, the program insert data successfully,but throw an exception when querying it. I found out the program trys to decrypt `user_name`, while `user_name` is not encrypted , y...
The current example is not good enough. It is difficult to understand, which users can not find their desired example codes quickly, the disadvantages are: 1. The categories of examples are not in same abstract level, they are not show the overview of ShardingSphere features and structure clearly; 2. The `exampl...
0
# Mergable Zones on Drag. ### See the two examples for clearance: **A** : Merge Columns **B** : Merge Rows Grid of 3x2 v 3 Columns --- --- --- | | | | < 2 Rows --- --- --- | | | | --- --- --- v A: Drag to here to merge columns --- --- --- ...
Generated issue from Watson Watson Link: https://watsonportal.microsoft.com/Failure?FailureSearchText=7ee1d5de-38db-4c13-f82a-a993a6ae8960 ADO Link: https://microsoft.visualstudio.com/DefaultCollection/OS/_workitems#id=29029627&triage=true&fullScreen=true&_a=edit Process: powerlauncher.exe, Module: system.dat...
0
Hi, I just tried the latest beta. It is confusing to me and others I've spoken with why template variable binding to ngControl would - as visually written in the template - be binding to ngForm instead? (The current beta is requiring this according to documentation.) I believe one of the design goals of Angular was ...
Something I'd like to discuss first. It turns out, that `ngControl`/`NgControlName` is exported as `ngForm`. This is quite unintuitive when instances of `ngControl`are referenced. Say I want to display an error message when a control is invalid. I'd need an instance of that control to check it's validity: ...
1
(Hopefully I did not find this issue in the list, because there was none...) I have experienced the following issue for a while (wonder if it ever worked actually): I create a Series or a DataFrame with well-defined, floating-point indices. Then I try to slice some rows using a list. For some valid index values I ge...
When trying to intersect two Index objects containing floats I get the following unexpected behavior: >>> new_index = pd.Index(np.arange(0.0,1.0,0.1),dtype='float64') >>> new_index2 = pd.Index(np.arange(0.5,1.0,0.1),dtype='float64') >>> intersection = new_index.intersection(new_index2) Floa...
1
* VSCode Version: 1.1.1 * OS Version: Windows 10 Pro In Visual Studio (full version), I tend to turn off the Ctrl+LeftMouseClick go to definition feature. I personally prefer to have Ctrl+LeftMouseClick select the entire word under my mouse cursor. From what I can see, mouse events are not configurable at the m...
Some users would like to be able to customize not just pure keyboard shortcuts but also mouse + modifier ones. These are currently hard coded, for example `alt`+click to add a selection. See #3091 for some more context.
1
For now, the build result always comes into `dist/`. It would be nice if the build path can be configured.
$ bower install bootstrap bower bootstrap#* cached git://github.com/twbs/bootstrap.git#3.1.1 bower bootstrap#* validate 3.1.1 against git://github.com/twbs/bootstrap.git#* bower bootstrap#* new version for git://github.com/twbs/bootstrap.git#* bo...
1
Summary. Since off the grid I manually installed IDNA 2.8 as a dependant. When installing requests via the .whl file v2.20.1 version. It manually tried to download the IDNA 2.7 version. I manually installed IDNA 2.7 and the install completed correctly. What you expected. To install correctly with IDNA 2.8 What ha...
This error appears since last version (my code works with 2.11, 2.9 etc...) File "C:\Users\vqmg0203\Desktop\app\core\models\database.py", line 211, in update_infos r = self.request_get(self.user_url) File "C:\Users\vqmg0203\Desktop\app\core\handlers\http.py", line 30, in wrapped ret...
0
#### Description I've been unable to perform a grid-search on a pipeline that changes sample numbers. The pipeline itself works fine, since I use a FunctionTransformer() that feeds into the classifier with the fewer number of samples. The idea here is that I need to train a topic model embedding of a large corpus, ...
Some data transformations -- including over/under-sampling (#1454), outlier removal, instance reduction, and other forms of dataset compression, like that used in BIRCH (#3802) -- entail altering a dataset at training time, but leaving it unaltered at prediction time. (In some cases, such as outlier removal, it makes...
1
* VSCode Version: 1.1.1 * OS Version: win 10 pro, version 1511, os build 10586.318 Steps to Reproduce: 1. Start visual studio 2. open folder 3. wait Get an error msg, window has crashed We are sorry..... You can reopen...
* VSCode Version: 1.0.0 * OS Version: Windows 10 Pro Hi, I want to post an issues about git extension performance. I suspect git extension in the sidebar is blocking the memory that VS Code using. I experience some lag when I try to type my code. This is occur when git refresh it status because it become lag...
1
I've used the 15.4.1 version of the react and react-dom together. I get the following errors: ![image](https://cloud.githubusercontent.com/assets/12233474/21084429/0ee3ab0a-bfc9-11e6-9aa9-2edd7b8bf4ff.png) ![image](https://cloud.githubusercontent.com/assets/12233474/21084427/048eda9e-bfc9-11e6-9fae-873d93762d1a.png...
I use `react-with-addons` in a RequireJS enviroment. If I try to use `React.addons.Perf`, I get a `ReferenceError: ReactDOM is not defined` from https://github.com/facebook/react/blob/15-dev/src/umd/shims/ReactAddonsDOMDependenciesUMDShim.js#L26. This is a regression from 15.3.x.
1
The separation of string to text and keyword is awesome. The only remaining item in my opinion is the not-tokenized-but-lowercased case - it is common enough but will still require some rigorous configuration. It probably makes sense now to allow specifying "token-filters" to execute on "keyword" fields directly in t...
Sometimes you want to analyze text to make it consistent when running aggregations on top of it. For example, let's say I have a `city` field mapped as a `keyword`. This field can contain `San Francisco`, `SAN FRANCISCO`, `San francisco`... If I build a terms aggregation on top of it, I will end up with ...
1
When running `deno compile --allow-read --allow-env --allow-sys .src/feces- cli.ts` I can provide config files upon request. Compile file:///home/akpi/git/feces-cli/src/feces-cli.ts to feces-cli ============================================================ Deno has panicked. This is a bug...
Deno 1.34 has been released and deno compile now supports npm packages. Deno 1.34 Updates I am doing the following based on the example in this document. $ cat main.ts import { say } from "npm:cowsay@1.5.0"; console.log(say({ text: "Hello from Deno!" })); $ deno compile --allow-read m...
1
# Summary of the new feature/enhancement My laptop vendor didn't included simple media keys on keyboard. I use PT to create shortcuts to virtual keys like Media Play/Pause, Volume Up/Down. In Keyboard Manager there are two options: Remap Keyboard (key to key) and Remap Shortcuts (key combination to key combination)...
# Summary of the new feature/enhancement Ability to remap a single key (² for example, sleeping in the top left corner of my KB), and assign it for example to alt+space, in order to open powertoys run, or to "open a new terminal", or whatever
1
##### Description of the problem Assigning `.skinning = true` doesn't work when the material is assigned to `scene.overrideMaterial`: `scene.overrideMaterial = new THREE.MeshPhysicalMaterial({skinning: true})` The material and rendered image behave identically to as if `.skinning === false`. ##### Three.js versio...
When setting the override material for a scene the maps and other settings on the original material are not used -- this applies to animations, mesh instances, and other uniforms and defines, as well. This jsfiddle shows that the normal map is not applied when rendering the scene with a `MeshNormalMaterial` applied: ...
1
Just out of curiosity, is TypeScript going to have a conditional member access operator similar to C#'s `?.`? Instead of writing foo && foo.bar && foo.bar.baz(); We can write: foo?.bar?.baz(); Or is something like this already possible?
# Current Status * The TC39 proposal is now at stage 3 (🎉🎉🎉🎉🎉) * Implementation is in progress * You can expect this feature in TypeScript 3.7 * We'll update here when it's available in a nightly build * Holding off on Optional Call until its semantics are clarified at committee Open questions * W...
1
I want to use Hierarchical Navigable Small Worlds (HNSW) and LSH for data classification. How can I modify their fit and train functions??? For example if you want to use them like ball tree or kd tree from the scikit learn library for classifying data.
There have been some discussion about adding a balanced accuracy metrics (see this article for the definition) on the mailing list. This is a good opportunity for a first contribution. This implies coding the function, checking correctness through tests and highlight your work with documentations. In order to be eas...
0
![image](https://cloud.githubusercontent.com/assets/172399/13945230/ec5e3b0a-f00b-11e5-853c-676856fed4d5.png) Remove * locale (VS only currently) * diagnostics (only for down-level compiling) * maproot (only used for down-level compiling, and if we add maproot then we would have to add sourceMap, inlineSource...
Would be nice to have portable version of VS Code like sublime. I always don't have install permissions.
0
### Describe the bug KeyError when two classes contain inner classes with the same name. If i rename one of the inner classes, app runs good. ### To Reproduce Steps to reproduce the behavior with a minimum self-contained file. Replace each part with your own scenario: 1. Create a file with: from...
### First Check * I added a very descriptive title to this issue. * I used the GitHub search to find a similar issue and didn't find it. * I searched the FastAPI documentation, with the integrated search. * I already searched in Google "How to X in FastAPI" and didn't find any information. * I already read...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.6.2 * Operating System version: linux * Java version: 1.8 ### Steps to reproduce this issue ...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.7 * Operating System version: xxx * Java version: xxx ### Steps to reproduce this issue 1...
0
There're some discussions about dependency management. I think when we people started to use deno to build complex programs, a dependency manager is desired. Removing node_modules from the project folder is a brilliant revolutionary design, but I'm not sure whether the package.json file also should be deprecated. Cur...
Import from url is very hard to use. I think is not a good idea. If so, 1. We must manage more js files not our own development. 2. Heavily dependent on the network, because the third package also can import another packages. Like C#\Java, the nuget and maven is good for use. Maybe use that mode can help us m...
1
Hi, **TypeScript Version:** 1.8.5 **Visual Studio** 2013 interface Foo { a: string } interface Bar { b: string } getData<T>(): T { return null; } var funcArray = [this.getData<Foo>(), this.getData<Bar>()]; //Inferred as (Foo | Bar)[] Shouldn't this be inferred as `...
I have been looking at dependency injection and a few issues with refactoring in regards to `_.pluck`. One of the primary things I run into is that I want these things to enforce the interface for refactoring. A few examples Interface used as a symbol for dependency injection interface IExampleInterf...
0
### Bug summary When using logarithmic scaling of the data with 2D plots, the ticks for the colorbar are not written in scientific notation. Prior to Matplotlib 3.5.0 (e.g. 3.4.3), scientific notation was used, as one would expect. The problem persists in 3.6. ### Code for reproduction # Sample code ...
### Bug summary The colour bar ticks are weirdly formatted when using a logarithmic scale when using version 3.5.0 or later. ### Code for reproduction Taken from https://matplotlib.org/stable/gallery/images_contours_and_fields/contourf_log.html import matplotlib.pyplot as plt import...
1
It's duplicated at both: flutter.io codelabs ..and at: google developers codelabs Perhaps best to reference same source.
1. git clone the plugins repo 2. open `packages/google_maps_flutter/example` in editor 3. create a new maps API key 4. add key in `AndroidManifest.xml` 5. run app => map appears with no content in it It was working a few days ago, but doesn't seem to work anymore
0
From https://github.com/flutter/tools/issues/157: The run_mojo command takes a flag --app to specify a filepath to run a flutter app from. This should also allow a URL. /cc @alhaad @jamesr
Now. i can run the project in ios platform . ![381769910918220178](https://user- images.githubusercontent.com/32920112/37582296-48613d4a-2b87-11e8-99dd-050b91cf5b6e.jpg) when i change the url to m3u8 the player no thing to see...... ![244668706005149902](https://user- images.githubusercontent.com/32920112/375823...
0
Hello, Would be interested to port `RectifiedAdam` from **tensorflow/addon** with addding exclude_from_weight_decay extension? For more details tensorflow/addons#2681 Thanks a lot. Have a nice day.
I'm trying to learn a regression problem. The data is mostly one-hot encoded categorical variables, one continuous. The target output is a probability (0-1). Here is the code: def read_lines(filename): lines = [] with open(filename) as file: for line in file: line = line.str...
0
I know that there are several previously created issues regarding this. However, I still don't understand why warm_start is not supported for liblinear solver? Whether this feature is going to be added in future? Based on my experience (of liblinear in C++), using warm_start can speedup training 2-4x times.
NCA checks its parameters to have a specific type, which can easily fail in a GridSearch due to how param grid is made. Here is an example: import numpy as np from sklearn.pipeline import Pipeline from sklearn.model_selection import GridSearchCV from sklearn.neighbors import Neighborh...
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 ...
The current DI system, when compared to something like Guice, has some limitations that large internal clients are finding lacking. Below, when I use the term `module`, I mean, for Dart at least, a `const` `List` of `<Binding | Type | List<...>>` Requests from internal clients: * If two or more modules would reso...
0
**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)** :Ubuntu 16.04 * **TensorFlow installed from (source or binary)** :Source * **TensorFlow version (use command below)** ...
**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)** :Ubuntu 16.04 * **TensorFlow installed from (source or binary)** :Source * **TensorFlow version (use command below)** ...
1
The following code snippet takes coordinates for a hand, and clips it to a rectangular window. Of the returned polygon, the endpoints are duplicated. from matplotlib import path, transforms import matplotlib.pyplot as plt import numpy as np hand = np.array( [[ 1.64516129, 1.16...
### Problem Trying to combine subplot_mosaic with axes using various different projections (e.g. one rectilinear axes and one polar axes and one 3d axes) has been requested a few times (once in the original subplot_mosaic thread IIRC, and in #20392 too), and it's something I would recently have been happy to have, t...
0
Hello, similar to caffe, keras should have model zoo so that people can replicate results of others. does anyone agree on that?
Mentioned in the "mega-issue" #100, though it would be worth having a separate one. The simplest model zoo is a github wiki page, another option it to have it as a page in the documentation and receive updates via push requests. I think model zoo matters most for models that take "more 6 hours to train" (i.e. a lar...
1
As discussed with @JeffBezanson in the Slack, `@threads` still uses a static schedule. However, there are some cases where we are using it as a simple way to express a lot of similar computations to be done on threads, each of which is actually quite expensive and not the same size. Thus for our purposes it would mak...
Apologies if this is a duplicate - did a quick search, couldn't find any issues related to this. Just started learning Julia. When learning a language I prefer to download documentation and read it off-line during commutes. There is a minor annoyance with the downloadable html version of the documentation as is: the...
0
I am trying to use a decorator with an anonymous class (class expression) on TypeScript 1.8.9 and am receiving the error: "error TS1206: Decorators are not valid here." const decorator: MethodDecorator = function (target: Object, propertyKey: string, descriptor: TypedPropertyDescriptor<any>): T...
Not sure if this is by design or not, but the following gives a compile error of "Decorators are not valid here" with TypeScript 1.8: let testClass = new class { testMethod(@myDecorator date: Date): any { return date; } }();
1
### Is there an existing issue for this? * I have searched the existing issues ### This issue exists in the latest npm version * I am using the latest npm ### Current Behavior This is a duplicate of #2632. This has been closed, but I still encounter it using the latest version of npm. When running `npm inst...
### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior Currently all of our open source projects and many of our non-open source projects are unable to build because `npm` 7+ is reifying different file trees based on the publish event of an unrelated module. This mean...
0
Hi, has the .divider-vertical for navbars been dropped from bootstrap 3, or is it just a feature overlook? I don't see it in neither docs nor code.
In Bootstrap, all components are defined using classes. But if someone wants to use BS with less, without any classes in markup, it is possible, but the classes will still be defined in the CSS file, adding useless cluter to the CSS file. Another problem caused by this is in the case we just want to quickly overrid...
0
Hi, sometimes the shortcuts for PowerToys do not work - I doubt this is because we close the 'Settings' window of PowerToys. So instead of closing the app, I think it would be good if the app minimizes itself to the System Tray. I think this minor tweak will be a value addition to PowerToys. Thanks!
# Environment Windows build number: [19041.330] PowerToys version: v0.19.1 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run # Steps to reproduce The cursor is not placed on the search box if there is some text. For example, after using PT Run once, the...
0
Not sure if this behavior is expected, there is an easy workaround. After I press to clear a form, bound model is not updated with new/reset values, while form resets as expected. Using angular 2 beta 0
When click the reset button, the form's value is still unchanged. See http://plnkr.co/edit/oBpDZRRUH7mmZct2hmDH?p=preview.
1
Not challenge specific, but when you start a new challenge, where you click in the text interpreter doesn't align where the cursor appears. You may click in one spot to begin typing, but end up a few rows down and mess up your code until you click again.
In all the exercises, we the users are forced to press the enter key before writing any code. * * * #### Update: We have locked the conversation temporarily on this thread to collaborators only, this has been resolved in staging, and will be live soon. The fix can be confirmed on the beta website. The workaround...
1
Summary of the bug is in the title I tried with this code : enum Event { ENTRY, EXIT, } struct Data; struct State<'a> { f: Fn(&mut Data, &Event) -> &'a Signal<'a>, } enum Signal<'a> { UNHANDLED, HANDLED, TRAN(Fn(&mut Da...
enum Foo { Bar(int, [int]), } fn main() { // Either of these lines can cause the ICE let _x: &(int, [int]); let _y: &Foo; } Backtrace: 1: 0x7f2a127e8580 - rt::backtrace::imp::write::h0180e7ded76a3ff2c0q 2: 0x7f2a127eb770 -...
1
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.3 * Operating System version: windows7 * Java version: 1.8 ### Steps to reproduce this issue...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.4-SNAPSHOT * Operating System version: MacOS * Java version: java11 ### Problems 1.When we ...
0
**Overview** At this time, there is no mechanism for socket types outside of the standard library to access the runtime network poller. This proposal, if accepted, would enable a resolution to issue #10565. This would enable packages outside of the standard library to take advantage of the runtime network poller, i...
Even though the 386 has a 4-byte word size, some instructions move data in larger chunks. In particular float64 loads move 8 bytes and some SSE2 operations (as yet unused) move even larger amounts. A float64 load from an only-4-byte-aligned address is significantly more expensive than o...
0
still cant write any "@" what is so dificult to change that? i know 2 types of keyboards... the ones with the @ on the number key "2" and the one with the "@" on the "Q" you just have to remove the shortcut on alt(right) + "Q" you CANT work with atom in EUROPE!!! the keyboards in europe have the @ on the "Q"-key
Original issue: atom/atom#1625 * * * Use https://atom.io/packages/keyboard-localization until this issue gets fixed (should be in the Blink upstream).
1
The browserplugin object width expands as expected when is used within a flexbox layout, but the height stays fixed at 150px - the height of the browserplugin object should also expand to the height of the parent . * Electron version: 0.36.9 * Operating system: Windows 7 x64, Windows 10 x64
A webview's object node doesn't get stretched vertically when the webview is part of a flexbox. ![Webview is full size](https://camo.githubusercontent.com/f16a21e8d1725050af0d281f09891b23459085ca12b514ad3a37fc13b346e130/687474703a2f2f7075752e73682f6d63784d6a2f623466326533633064332e706e67) ![Object node isn't full ...
1
Given the typescript: let impl: I = { a: 12, explicitVoid2: () => this.a, // ok, this: any because it refers to some outer object (window?) explicitVoid1() { return 12; }, explicitStructural() { return this.a; }, explicitInterface() { ...
**TypeScript Version:** 1.8.0 **Code** create project. create ASP.NET Web Application. create asp.net 5 empty website. create scripts folder in solution. create app folder in wwwroot. create typescript file. create tsconfig.json in scripts folder and build: { "compilerOptions": { "noIm...
0
Hi all, I'm trying to add a RaisedButton in the container, however I'm getting below exception. [{"event":"app.progress","params":{"appId":"9d38bcd5-7d0a-4cfe-a121-20c0dff4c237","id":"10","progressId":"hot.reload","message":"Performing hot reload..."}}]Performing hot reload... Syncing files t...
Low priority ## Environment Flutter (Channel master, v0.2.5-pre.396, on Microsoft Windows [Version 10.0.17134.48], locale en-US) Android things 8.1.0 Board: NXP i.MX7D ## Steps to Reproduce When building a release build for Android Things Dart will crash due to an incompatible VM configuration error. Debug bu...
0
**Chapman** opened **SPR-9454** and commented Spring version 3.1.0.RELEASE. A page display 2 dropdown boxes, each of them contained over 100 values. There are two problems: 1. Render JSP is slow, over 2 seconds to display a simple page. 2. After running for a few days, the response time is slower, over 5 secon...
**Derek Beauregard** opened **SPR-9602** and commented The javadoc for BeanFactory.getType(<bean_name>) specifies that it will "Determine the type of the bean with the given name. More specifically, determine the type of object that getBean(java.lang.String) would return for the given name." However, when using AOP...
0
* I tried using the `@types/request` package and had problems. Latest release seems to have added a duplicate 'time' identifier to the CoreOptions interface node_modules/@types/request/index.d.ts(146,9): error TS2300: Duplicate identifier 'time'. node_modules/@types/request/index.d.ts(157,9): err...
* I tried using the `@types/xxxx` 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 `Definitions by:` in `inde...
0
# Environment Windows build number: Microsoft Windows [Version 10.0.18362.239] Windows Terminal version (if applicable): (built from latest source as of July 17th, 2019, morning) I am working on implementing some new VT escape sequences (PR here), but I've run into a strange problem. What the...
# Steps to reproduce build OpenConsole.sln # Expected behavior conpty.dll should be output # Actual behavior conpty is built as a static lib
0
I think that cloning a scene and using the original scene in one renderer and the cloned scene in another renderer should be possible. Currently there is a conflict where the two renderers think they are sharing resources. I have created a fiddle http://jsfiddle.net/vAxYx/ to demonstrate. At the bottom, if both rend...
Hey -- Trying to render the same scene to two different (WebGL) renderers with two different cameras. The effect is such that only the first renderer to be asked to render the scene within my draw loop is actually drawn. function draw() { debugRenderer.render(scene, debugCamera); renderer.rend...
1
With IoT, WebRTC and VoIP DTLS (Datagram Transport Layer Security) is becoming more and more important. It would be great if the Go standard libray has support for it like it has for TLS. It would allow to implement secure versions of protocols using UDP as the underlying protocol like CoAP for example.
by **kzjeef** : Before filing a bug, please check whether it has been fixed since the latest release. Search the issue tracker and check that you're running the latest version of Go: Run "go version" and compare against http://golang.org/doc/devel/release.html If a newer version o...
0