text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
It happened somewhere in `v0.137.0...v0.138.0`
The Atom appmenu / global menu no longer works with Atom 0.137.0 in Ubuntu 14.10 (with Unity): http://i.imgur.com/1TSYnD5.png It used to work up until this version and also, Ubuntu 14.10 seems to be the only one affected as I've tested it in Ubuntu 14.04 and it still works there. Tested with both the Atom deb downl...
1
Cross-build binaries under directory `test/images`, https://github.com/kubernetes/kubernetes/tree/master/test/images TODO LIST: * clusterapi-tester * dnsutils * entrypoint-tester * fakegitserver * goproxy * hostexec * iperf * jessie-dnsutils * mount-tester * mount-tester-user * n-way-http ...
_TL;DR - Add more release versions to gcr.io/google_containers/ and tag by version_ Currently, the kube-apiserver.yaml linked to in the in the 1.1 version of the docs for High Availability (http://kubernetes.io/v1.1/docs/admin/high- availability.html) refers to: `image: gcr.io/google_containers/kube- apiserver:96...
0
# Checklist * [ x] I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * [x ] I have read the relevant section in the contribution guide on reporting bugs. * [x ] I have checked the issues list for similar or identic...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group 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
I've seen this a couple times, e.g. http://kubekins.dls.corp.google.com:8081/job/kubernetes-pull-build- test-e2e-gce/28103/# cc @caesarxuchao
• Failure [12.590 seconds] Generated release_1_2 clientset /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/generated_clientset.go:154 should create pods, delete pods, watch pods [It] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/t...
1
See; tensorflow.org/versions/r0.7/tutorials/mnist/beginners/index.html --> Training section. "Math Processing Error" appears in multiple places in page. Used OSX / Safari, Firefox, and Chrome. Screen shot attached. ![screen shot 2016-03-14 at 3 15 14 pm](https://cloud.githubusercontent.com/assets/351870/13761735/a3...
The website tries to load, `https://www.tensorflow.org/MathJax/jax/output/HTML- CSS/fonts/STIX/fontdata.js?rev=2.6.1` and fails. Someone needs to fix the path to get the right version of mathjax, and have all the LaTeX symbols show up. Thanks.
1
`Groupby` by level of `MultiIndex` with `rolling` duplicate index level. df = pd.DataFrame(data=[[1, 1, 10, 20], [1, 2, 30, 40], [1, 3, 50, 60], [2, 1, 11, 21], [2, 2, 31, 41], [2, 3, 51, 61]], columns=['id', 'date', 'd1', 'd2']) df.set_index([...
I found another oddity while digging through #13966. Begin with the initial DataFrame in that issue: df = pd.DataFrame({'A': [1] * 20 + [2] * 12 + [3] * 8, 'B': np.arange(40)}) Save the grouping: In [215]: g = df.groupby('A') Compute the rolling sum: ...
1
Importing the numpy c-extensions failed. Original error was: No module named 'numpy.core._multiarray_umath' python Version: 3.7.0 numpy version 1.18.2 Operating System :Windows ### Error message: Failed to load entry point 'info': IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE! Importin...
I am unable to `import numpy` (version 1.14.5) when I am using a debug version of Python (`python_d.exe`). When I attempt to do so I get the following traceback Python 3.5.4 (v3.5.4:3f56838, Aug 8 2017, 02:20:40) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license"...
1
## Steps to Reproduce 1. flutter create newapp 2. ... 3. ... ## Logs
Noticed this while investigating #19571 1. Run this Flutter app: class Foo { } void main() { print(new Foo()); } 2. Add a second `class Foo { }` declaration, and do a hot reload. 3. Do another hot reload. The engine will crash inside Dart's ReloadSources. @a-siva Stack trace: ...
0
Seems like the copy docstring in `pandas.Series` is duplicated. Instead of this: dtype : numpy.dtype or None If None, dtype will be inferred copy : boolean, default False Copy input data copy : boolean, default False Shouldn't it be this? dtype : numpy.dtype or...
quantities related xref #2494 xref #1071 custom meta-data xref #2485 It would be very convenient if unit support could be integrated into pandas. Idea: pandas checks for the presence of a unit-attribute of columns and - if present - uses it * with 'print' to show the units e.g. below the column names *...
0
When exporting interfaces from a .d.ts file using the es6 module format, using a * symbol will generate an equivalent line in the javascript even if no file is generated by tsc. test.d.ts: export interface Test { } module_no_asterisk.ts: export {Test} from "test"; g...
I have a file`interfaces.d.ts` which defines some interfaces, e.g: export interface IFoo {} export interface IBar {} I want to reexport all interfaces in another module: export * from "interfaces"; When targeting AMD, compiled code looks like this: define(["require",...
1
In native applications you can navigate between adjacent menu items using left and right arrow keys. In Electron this is impossible. Only up/down navigation works to select items from current open menu. Windows 7, 64-bit Electron 0.36.2
I created the Quick Start app and ran it in Windows 8.1 Professional (64-bit) with `"electron-prebuilt": "^0.30.4"`. Here are some ways in which using Electron menus from the keyboard don't work like Windows native menus: 1. Pressing `Alt` by itself should select the first menu from the menu bar. (Electron just f...
1
### What problem does this feature solve? I use the following pattern to wait for a condition to hold: const unwatch = this.$watch(function () { return this.queue.find((element) => element.shown === false); }, function (newValue, oldValue) { if (!newValue) return; unwatch();...
### Version 2.6.7 ### Reproduction link https://jsfiddle.net/misq007/a5wth0rf/39/ ### Steps to reproduce the error will popup ### What is expected? Provide/Inject to work properly for the first level component in the same way as it is working when nested. ### What is actually happening? Injection "mode" not ...
0
Rust does not interoperate with C unions right now. Doing so typically requires a lot of unsafe casting. Consensus seems to be that we need a macro- based solution.
How would one call C functions involving union with Rust FFI? SpiderMonkey's jsval is one example.
1
Hi guys, the tooltip function on a disabled button doesn't work in Firefox. The tooltip doesn't show up. No JS-Error thrown. It works in Internet Explorer 10. Regards, davkraid
If you have a button with the disabled class, the tooltip doesn't pop up. 😢
1
(with a built-in class, or indeed a class defined using the native `class` syntax) ### Input Code const headers = new class extends Headers {} ### Link to repl babel repl ### Expected Behavior generate code that works, as the input code does in browser ### Current Behavior the generated code doe...
Current Babel transform, when it comes to call the parent function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "functi...
1
Sending an https request with timeout, does not make retries when it gets a timeout. Code: import requests s = requests.session() s.mount('https://localhost:10000', requests.adapters.HTTPAdapter(max_retries = 3)) s.post('https://localhost:10000', timeout = 3) Raises this exception (with ...
Alternative title: _A bugfix in urlib3 raises a new bug in requests._ (I tried to figure out what changed in `urllib3` but was not able to do so). I believe the issue has to do with these lines ( requests/requests/adapters.py Lines 509 to 539 in ac3be98 | try: ---|--- | skip_host = "Host" in request.headers...
0
When creat a array with set the dtype , the array just lost the columns which the dtype is numpy.string_,numpy.str,numpy.str_,numpy.str0 . And when i change 'string_' to '<U1' ,that will work . ### Reproducing code example: import numpy as np << your code here >> b = np.array([('a',1,2),(3,4...
Example: >>> dt = np.dtype([('f', float), ('s', str)]) >>> np.array([(1.0, "hello world")], dt) array([(1.0, '')], dtype=[('f', '<f8'), ('s', 'S')]) Proposal: This should either resize or raise a ValueError (#8970), as it seems like it would always mask bugs
1
# Environment Windows build number: 10.0.18363.900 PowerToys version: 0.19.0 PowerToy module for which you are reporting the bug: PowerToys Run, Keyboard Manager # What I did 1. I changed the keyboard shortcut for PowerToys Run to Win+R (aka the current Run shortcut) 2. After I saw t...
# Environment Windows build number: [run "ver" at a command prompt] PowerToys version: 0.19 PowerToy module for which you are reporting the bug (if applicable): PT Run # Steps to reproduce Remap key from alt-space to win-space execute shortcut multiple times # Expected behavior don't...
1
Recently upgraded from 0.35 to 1.3, and now, simply put, the electron process (specifically the `webContents`?) crashes every time a request is made to an HTTP URL. * Electron version: 1.3.3 * Operating system: Arch Linux There's no discernible error message, the window goes white and the devtools report they h...
* Electron version: 1.3.3 * Operating system: Windows 10.0.10586 The issue is one of my webviews is crashing when using the _**fetch**_ api. I use it to handle a chunked http response. When calling **_stream.read()_** for a second time it returns Promise.reject(NETWORK ERROR) and the webview crashes. The issue...
1
[ x ] bug report => search github for a similar issue or PR before submitting [ x ] feature request **Current behavior** I have a component that may create inside it several other components that may have Radio Button Groups inside them. I want the nested components to not have to receiv...
See #5294 for pointers
0
As noted in #12076 Getpagesize doesn't currently return the actual system's default page size, but rather a hard-coded value. Per the discussion with @ianlancetaylor on golang-dev [1], the opinion was that syscall.Getpagesize should return the same value as the POSIX call sysconf(_SC_PAGESIZE). This change will be n...
At least three problems here: `1`. cmd/ld INITRND needs to be at least as large as the page size, otherwise we might trigger kernel bugs. See https://groups.google.com/forum/#!topic/golang-nuts/29RraQ-t3gc for a case. However, just using a larger INITRND value will make the binary bigger because of the zero ...
1
by **juanval** : go version go1.3 darwin/amd64 What steps reproduce the problem? Example: http://play.golang.org/p/-GqZSloAM3 1. fmt.Println(math.Sin(1.5e17)) What happened? Program prints "1.231298118089368e+08" What should have happened instead...
Sigh, for example, === RUN TestConnectionlessWriteClosedError --- PASS: TestConnectionlessWriteClosedError (0.00 seconds) write_test.go:134: use of closed network connection write_test.go:134: use of closed network connection write_test.go:134: use of closed network c...
0
Describe what you were doing when the bug occurred: 1. 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.7.0-23309eb38 Call stack: at I (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:163895) at I (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/b...
Describe what you were doing when the bug occurred: 1. 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.7.0-23309eb38 Call stack: at I (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:163895) at I (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/b...
1
Similar to Visual Studio extensions, I would like to register a specific file extension and swap out the code editor for a custom UI experience when that file opened.
I want to implement an extension to display a graphical presentation for a binary file. I have had a look at markdown extension. But it displays the customized preview window with the default editor window side by side. So I want to know: 1. Is there a method to only open the preview window (customized) without op...
1
Platform: win32, python 2.6 binary installer from python.org, numpy binary installer of versions given, mingw32 compiler (specified in distutils.cfg) "easy_install ffnet" works fine with numpy 1.6.2; with numpy 1.7.0, it raises a SandboxViolation: > Wrote C/API module "_pikaia" to file > "build\src.win32-2.6\ffnet\...
I didn't see this error reported, apologies if it is a duplicate -- my current numpy is 1.6.2. $ sudo easy_install --upgrade numpy Searching for numpy Reading http://pypi.python.org/simple/numpy/ Reading http://numpy.scipy.org Reading http://sourceforge.net/project/showfiles.php?group_i...
1
Compare: julia> A = Diagonal(rand(1000)) 1000×1000 Diagonal{Float64,Array{Float64,1}}: 0.0341907 ⋅ ⋅ ⋅ … ⋅ ⋅ ⋅ ⋅ 0.758919 ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ 0.700876 ⋅ ⋅ ...
Disclamer: This very well may be duplicate for #22123 (or rather #21191 #21153, @martinholters should know better, I guess). I have this (crazy, unrealistic, computer-generated) type: Ref{Tuple{T,Ref{Union{Ref{Tuple{Ref{Union{Ref{Ref{Tuple{Ref{Tuple{Union{Tuple{Ref{Ref{T}},T}, T},T}},T}}}, T}},T}}, Re...
0
Happened several times in the last few runs: https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/pr- logs/pull/28543/kubernetes-pull-build-test-e2e-gce/48158/ https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/pr- logs/pull/26696/kubernetes-pull-build-test-e2e-gce/48157/ https://k8s-gubernator....
gcloud is crashing due to `ERROR: gcloud crashed (error): [Errno 111] Connection refused` see https://k8s-gubernator.appspot.com/build/kubernetes- jenkins/logs/kubernetes-e2e-gke/10711/ for an example. https://k8s-gubernator.appspot.com/build/kubernetes- jenkins/logs/kubernetes-e2e-gce/19753/ seems to have some bac...
1
In the provided numpy swig interface file, numpy.i, the ARGOUTVIEWM typemaps for dimension 4 arrays seem to be erroneously duplicated. Lines 2799-2949 approximately duplicate lines 2951-3101, with the exception of line 2890 which appears to be incorrect because it only goes up to dimension 3. It seems to me that line...
## Documentation Reference URL Typo in first example of One Dimensional Array ![image](https://user- images.githubusercontent.com/58799086/116272520-99169f00-a79e-11eb-84a4-c15eaeaa24f9.png)
0
Challenge http://freecodecamp.com/challenges/waypoint-target-elements-by- class-using-jquery has an issue. This issue is also replicated on http://freecodecamp.com/challenges/waypoint- target-html-elements-with-selectors-using-jquery Where the <script> tag should be, the letters "fccss" appear; and where the </sc...
Challenge http://www.freecodecamp.com/challenges/waypoint-create-a-javascript- slot-machine has an issue. The four Javascript slot machine exercises all display the JS section of the code incorrectly. Presumably `fccss` is supposed to be `<script>`, and likewise `fcces` is supposed to be `</script>`. ![screen shot ...
1
gc successfully compiles the following program: package a func f() int { for {}; ; } while gotype says: go.go:5: missing return at end of function go version devel +9b04852 Sat Jul 11 00:08:50 2015 +0000 linux/amd64
Per a (pending) spec change, the following code should be permitted: package p func f() int { return 3 ; // <<< trailing empty statement } See #14422 for details.
1
# Summary of the new feature/enhancement Simply, I myself am not a fan of the default windows start menu. I only ever use it for searching for apps or files so PowerToys Run seemed like a good replacement. It's fast and has less clutter HOWEVER it don't have the option to map the WinKey by itself to replace the star...
## 📝 Provide a description of the new feature I think it would be useful to be able to export/import the remapped keys and shortcuts. This would allow the users to use the same mappings in different devices as well as saving them if they needed to reinstall PowerToys. Apart from that, I guess this feature could be...
0
I have an app using material-ui and SSR. On some pages of my app, I get a warning like: Warning: Prop `className` did not match. Server: .... "a-224 b-231 c-241 d-293" Client: "a-224 b-231 c-241 d-284" (I replaced the long classnames with a, b, c, d). But the mismatch is on the "suffix" of the la...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior I would have expected to be able to use `value={100}` inside a RadioGroup and FormControlLabel. The docs state, that value is a `string` https://material- ui-1dab0.firebaseapp.com/api/radio-group/ ...
0
##### Description of the problem `BufferAttribute` can be shared among geometries (or even it can be referenced twice or more in one geometry). But `.toJSON()` creates the same data many times for such a shared buffer attribute. That leads to non-efficient serialized data and shared buffer attribute will become many...
I am trying to use the example at https://threejs.org/examples/?q=spline#webgl_geometry_spline_editor . It appears that I cannot reliably drag the control points. Sometimes while changing perspective, the dragging controls appear, but I can't get this to happen reliably. OS X 10.9 Firefox 51.0.1 Google Chrome ...
0
Current code for precision_recall_curve assumes the curve always passes through (recall=0, precision=1). However this is not the case. For instance, pred_proba = [0.8, 0.8, 0.8, 0.2, 0.2] true_value = [0, 0, 1, 1, 0] metrics.precision_recall_curve(true_value, pred_proba) will return precision = [ 0.4 0.33333...
Referencing `"The last precision and recall values are 1. and 0. respectively and do not have a corresponding threshold. This ensures that the graph starts on the x axis."` Say you have a tie in your highest predicted probability output from the classifier with some false positives and some true positives, for examp...
1
I have a an index with 30M documents, spread across 4 nodes, 30 shards, with 2 replicas each. Each document has a nested mapping type "a", representing a transaction log entry. Each transaction log entry has a positive or negative dollar value and a timestamp. When I attempt to bucket the nested objects using the dat...
Today, a new field can be added to the local mapping of two shards simultaneously. If the detected field type is different, then each shard can end up with a different field type. These shards then send their new mapping to the master, but only of the mappings will win. This can result in incorrect results and even ...
1
**I'm submitting a ...** (check one with "x") [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
**I'm submitting a ...** [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 **Current behavior...
0
## Steps to Reproduce Pages on Navigator stack rebuild when a new page is pushed onto the stack. Suppose the pages were numbered numerically, in the order they are pushed onto the stack i.e. page 1 -> page 2 -> page 3. When we push Page 3, previous pages from page 1 to 2 rebuild as evident from the print statement...
Flutter crash report; please file at https://github.com/flutter/flutter/issues. ## command flutter build apk ## exception FormatException: FormatException: Bad UTF-8 encoding 0xe4 (at offset 9) #0 _Utf8Decoder.convert (dart:convert/utf.dart:484:15) #1 _Utf8ConversionSink.addSlice (dar...
0
Should we add PathEscape and PathUnescape functions, similar to QueryEscape and QueryUnescape? The functionality is already present (see func (*URL) EscapedPath), but it is awkward to use. See https://groups.google.com/forum/#!topic/golang-dev/UDUqvuKrq14 for golang- dev discussion
Compile this file (loosely based on test/named1.go) with 6g: package p type Bool bool type Int int type String string func B(Bool) {} func I(Int) {} func S(String) {} func F() { B(1 == 2) I(1 + 2) S("1" + "2") } I se...
0
When encoding a large data structure (such as a tree representing a file- system), the Encode() methods first marshal the encoded data into a []byte buffer and then write the buffer to the writer. Similarly, the Decode() methods require a buffer to unmarshal from. These buffers must be allocated (and grown) and typic...
Gc correctly rejects the following program: package n func n(){_=string(0.)} But gotype successfully compiles it. It must not. `0.` is an fp constant. on commit `e9a746d`
0
**I'm submitting a ...** (check one with "x") [x] bug report [ ] feature request [ ] support request **Current behavior** Define property named "click" as an @output(). `@Output() public click: EventEmitter = new EventEmitter(); public foo(item){ this.click.emit(item); }`use the component and bind t...
@Component({ selector: 'my-component' events: ['change'] }) @View({ template: '<input (change)="...">' }) class MyComponent { } The above code creates an issue. It conflates the `change` event from the `MyComponent` with the bubbling `change` event from the `<...
1
Sometimes it happens so that some code logically belongs in one module, but there is just too much of it to put in one file. For example, here is my use case: // base.ts export interface SomeCoreType { ... } export interface MyStandardAjaxResponse { ... } export function doAjax( url: s...
Support compiling multiple input .ts files into one external module. Need to determine exactly how the module boundaries are defined when doing this.
1
_From@jockjocko on April 12, 2016 9:39_ * VSCode Version: 0.10.15-insider * OS Version: Windows 10 Steps to Reproduce: 1. Create class and constructor. 2. Create a new instance of the newly created class 3. Shift + f12 or right click find all references I would expect it to find all references of the c...
I dont find a way to "Find References" on a constructor of a class. Is this not supported?
1
# Bug report ## Describe the bug `http://localhost:3000/_error` reloads indefinitely. ## To Reproduce yarn create next-app test cd test yarn dev And go to `http://localhost:3000/_error`. ## Expected behavior I expect to have a 404 error, similar to calling `http://localhost:3000/_doc...
# Bug report ## Describe the bug When you visit `/_error` in development the page reloads non-stop and the error page is rendered with a status of 200 and text of `An unexpected error occurred`. ## To Reproduce Steps to reproduce the behavior, please provide code snippets or a repository: 1. Create minimal Nex...
1
I want to try the compression performance of weight pruning of TensorFlow. Is it OK for you to provide the model after pruning? e.g., the 50% sparsity MobileNetV1?
1
## 🐛 Bug ## To Reproduce Steps to reproduce the behavior: 1. Execute `conda install pytorch torchvision cudatoolkit=10.0 -c pytorch` to intall pytorch1.1 and torchvision0.3.0 2. Execute `conda install pytorch-nightly -c pytorch` to install pytorch1.2 3. Import torchvision then get the following error. ...
The official website does not provide the torchvison version installation method. Here is the error message when torchvison 0.3.0 is used. torchvision/_C.cpython-36m-x86_64-linux-gnu.so: undefined symbol: _ZN2at7getTypeERKNS_6TensorE That should be caused by the mismatch version between pytorch-nightly and torch...
1
Consider the following code: const path = "./404.txt"; await Deno.readTextFile(path); I get the following error when I run the script. error: Uncaught (in promise) NotFound: No such file or directory (os error 2) const text = await Deno.readTextFile(path); ^ ...
Currently the error message of the exception, thrown from the `Deno.stat/statSync`, when the file is missing, does not include the file name: nickolay@frontier:~/workspace/Bryntum/siesta-monorepo/siesta$ deno Deno 1.9.2 exit using ctrl+d or close() > Deno.statSync('/home/nickolay/not_existi...
1
When compiling a TypeScript project that references `@types/node`, the compiler (TSC) will report an error regarding duplicate `assert` identifiers. node_modules/@types/node/assert.d.ts:56:14 - error TS2300: Duplicate identifier 'assert'. 56 export = assert; ~~~~~~ nod...
After adding the NuGet package `Handlebars.TypeScript.DefinitelyTyped`, it's throwing a lot of "Duplicate Identifier" errors because there are two handlebars files. My project will not compile with it installed.
0
When i add brand logo to navbar it gets overlapped by ".navbar-collapse" so it can't be clickable. There is no example of such use case and i can't seem to find any solution.
i am a beginner in website development and m stuck here by unable to replace the bootsrtap navbar brand with a logo-image which is a png file .
1
`cmd + click` adds an extra cursor in the editor. `cmd + shift + click` currently behaves in a weird way that does not appear to be intended. My expectation was for `cmd + shift + click` to add multiple cursors on the lines between the last added cursor and the click position (on the same column as the click). Does...
In plenty editors, doing `left-alt` (left option) and selecting text will take a slice of that text: ![sublime](https://cloud.githubusercontent.com/assets/1189716/3020145/21a1ced6-df9b-11e3-9cf2-70371ca5fee1.gif) Notice that only characters are selected, empty lines are ignored. Also, after selecting with `left-alt...
1
Hi there. First of all, thanks a lot for making JAX such a great framework. It's awesome. Actually it's only awesome when we only do training on a single node. To my knowledge, the multi-node support is still missing for now. 10 months ago, @hawkinsp and @gnecula mentioned that there's already some experimental supp...
I don't have a node with 8 gpus. I have two nodes each with 4 gpus. So is it possible to train a model on multiple nodes?
1
**Apache Airflow version** : 1.7.1.2 **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): **Environment** : * **Cloud provider or hardware configuration** : * **OS** (e.g. from /etc/os-release): * **Kernel** (e.g. `uname -a`): * **Install tools** : * **Others** : **What happen...
### Body ## Provider alibaba: 1.1.0rc1 * Add oss_task_handler into alibaba-provider and enable remote logging to OSS (#21785): @EricGao888 ## Provider amazon: 3.1.1rc1 * Added AWS RDS sensors (#21231): @kazanzhy * Added AWS RDS operators (#20907): @kazanzhy * Add RedshiftDataHook (#19137): @john-jac * F...
0
# Summary of the new feature/enhancement I realize this would be a whole new feature and not necessarily improvements to the existing toys, but I have long waited for Microsoft to implement the old Mac feature "hot corners" where by simply moving the mouse to any of the 4 corners of the screen would do things like p...
# Summary of the new feature/enhancement Operating systems such as macOS or some Linux distributions have hot corners option in their functionality. It would be great to have something like that in Windows. Although there are third party applications that provide such functionality (e.g. WinX Corners), they are some...
1
#### Challenge Name http://codepen.io/Lihkinrian/pen/evOgVr?editors=0010 #### Issue Description When i use http://codepen.io i am getting an error "getCurrentPosition() and watchPosition() no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, su...
#### Show the Local Weather https://www.freecodecamp.com/challenges/show-the-local-weather #### Weather App Location issue I am currently using Google chrome and I have been trying to figure out why my location could not be found when I copied the exact code from FCC and placed it in Codepen.io. After a week of fi...
1
I have a Paper element containing a grid system (24 columns) that contains a Paper, that contains a typography (schematic) <Paper> <Grid container spacing={24}> <Grid item xs={12} sm={6}> <Paper> <Typography> I would like to change the Typography's font col...
I'm having an issue with `RaisedButton` only when used inside of the `Toolbar` component. Here is the code in question: <Toolbar> <ToolbarGroup float='right'> <RaisedButton label='Continue' primary={true} onTouchTap={callNextPage} /> </ToolbarGroup> </Toolbar> The resul...
0
* VSCode Version: Version 0.10.10 / `5b5f4db` * OS Version: Mac OS X Yosemite 10.10.5 / 14F1605 ## Steps to Reproduce: 1. Save a new file with a `.js` extension 2. Add some JS code ## Expected I'll see a full range of syntax highlighting ## Actual ![highlighting sample](https://cloud.githubusercontent.co...
0.10.10 (Feburary build) has a regression is that the following JavaScript keywords are no longer highlighted in the Dark Visual Studio & Light Visual Studio themes: `var` `let` `const` `function` `get` `set` `class` `interface` `module` `namespace` This only affects JavaScript (not TypeScript). The workaround i...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior I'm trying to upgrade from Next 4.2.3 to 5.1. I have styletron set up as per the example provided here with a few tweaks to make it work for version 3 of styletron. When using Next 5.1, the server side r...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior My app run smoothly. ## Current Behavior Throw error ## Steps to Reproduce (for bugs) I have typescript project, which I cannot use `.babelrc` to my project. So I decided to make custom babel con...
0
I'm working on standing up a 3 node Zookeeper instance, and instead of having separate RCs and Services for each individual pod, I'd like one RC with three instances that keeps all three pods alive. The image is based off the `mesoscloud/zookeeper` image, just with the quorum enabled. zookeeper-rc.json ...
**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.): ...
0
_Original tickethttp://projects.scipy.org/scipy/ticket/425 on 2007-05-25 by @cournape, assigned to @cournape._ It looks like the scipy.stats module needs some updating. First, there are now some duplicate with numpy functionality. Also, the API do not match between numpy and scipy. Eg : #!python ...
To avoid duplication of the same question, can you please check out this topic on stackoverflow? http://bit.ly/TVcbz4
0
Pretty regularly, when I create a file in a project, ctrl-p won't reveal the new file in results unless I drill into Preferences, check, and then uncheck, Exclude VCS Ignored Paths. After that, the new file shows up as expected.
I really don't know when this is happening. But it seems that sometimes when I add files with `touch file.txt` the fuzzy-finder does not list it, and you have to close the window and reopen it to show it (reload window also works). Worth noting is that it appears as it should in the tree-view.
1
**Joern Huxhorn** opened **SPR-7924** and commented org.springframework.web.servlet.config.AnnotationDrivenBeanDefinitionParser executes messageConverters.add(createConverterBeanDefinition(MappingJacksonHttpMessageConverter.class, source)); at line 187 in spring-webmvc-3.0.5.RELEASE There is no way that I'm ...
**Martin Zeltner** opened **SPR-1142** and commented Example: file1.xml: <beans> <import resource="classpath:common/common-config.xml"/> ... </beans> file2.xml: <beans> <import resource="classpath:common/common-config.xml"/> ... </beans> If I load now an application context which has "file1.xml" ...
0
When try to access labels (`.loc`) by using a specific list of `Timestamp` objects or a `DatetimeIndex` object (See attached csv file), the resulting index is returned in UTC offset but the original timezone is not removed. This seems to happen only in very specific cases, when the index passed to `.loc` contains la...
Perhaps there is some canonical way of doing this that I'm not aware of, but from time to time I find myself wanting to group more than one frame by a key, and apply some function to the result. At the moment, I'm doing this in a somewhat roundabout way: results = [] for key, t1 in table1.groupby(l...
0
Please see https://github.com/microsoft/PowerToys/wiki/Application- Compatibility
# Summary of the new feature/enhancement Option for launcher that lets you choose between showing just file/folder results vs other kinds of results. (similar to how alfredapp works on mac) Why? I usually use the launcher because I want a file/folder or an app - I know this before pressing the launcher hotkey. Laun...
0
The module source looks like: import parseIRI from './iri'; import typeProcessors from './typeProcessors'; import * as qs from './qs'; import { clone, defaults, parseResponseHeaders, createResult, startsWith, ...
## Feature Request I have an idea in my head. Not sure if it's already implemented. In JavaScript modules, Babel could detect same strings and create one small variable for that. Then It would replace those duplicates with that variable. It could prevent the JS engine from creating strings every single time. It ...
0
## 🐛 Bug It seems there is an issue with the pip installation of 1.1. After upgrading, I get an error when calling `import torch`. ## To Reproduce Steps to reproduce the behavior: 1. Install torch==1.1.0 with pip Traceback (most recent call last): File "", line 1, in File "/anaconda3/envs/torch/lib/python...
## 🐛 Bug I tried to install PyTorch, but I can't use it. It can't link dynamic library libomp.dylib ## To Reproduce Steps to reproduce the behavior: 1. pipenv install torch torchvision 2. `from torch.utils.data import Dataset` Traceback (most recent call last): File "/Users/kaspersapala/...
1
Always fire first element callback. <ul> <li v-repeat="todos" v-on="click:callback" > {{content}} : {{done}} </li> </ul> var demo = new Vue({ template: demo_template, dat...
### Version 2.6.10 ### Reproduction link https://github.com/meditatingdragon/starter-gridsome-vuetify ### Steps to reproduce Have `gridsome` as a dependency (or whatever depends on `vue-server-renderer`) and observe GitHub and Snyk. ### What is expected? No vulnerabilities ### What is actually happening? XSS...
0
Applying an invalid style will use property from previous render. This can cause some hard to pin down bugs since you may inadvertently be applying invalid styles but not notice because the style on the previous render was fine. But then rendering later on with the same props/state will cause a different style to be ...
Consider, for example, a relatively generic `<Field />` component: var fieldCounter = 0; var Field = React.createClass({ getInitialState: function() { return { inputId: 'field-' + ++fieldCounter }; }, render: function() { var props = this.props, ...
0
Most of the times, you define your validation rules inside of your Entities. Some Forms require only a subset of data that your Entity contains, forcing you to create FormModels and copying Validator rules from one place to the code. As everybody knows, copying means trouble and duplication, which means that if a...
Hi guys, Following my discussion with leonardo I implemented a form to create a new Translation linked to an existing TranslationToken or a new one (with some ajax). For now let's focus on the case where TranslationToken exists in DataBase. Here is my relationship inside Translation class : @ORM\Many...
0
## Bug Report **Current Behavior** let a = {1: 'one', 2: 'two', 3:'three'}; const {1:val, ...aWithoutOne} = a; console.log(val); // prints 'one' console.log(aWithoutOne); // Expects {2:'two', 3:'three'} , gets {1: 'one', 2: 'two', 3:'three'}; **Input Code** Run the code above in JSBin against Javascript a...
## Bug Report **Current Behavior** This was discovered a few days ago. We were using three “newer” JavaScript features: * Object destructuring * Rest properties * Computed property names The following line (from the block below): `const { [person.id]: excludedPerson, ...includedPeople } = samePeople;` ......
1
In #8990 we added a WPT runner, and the entire WPT test suite to the repo. We are now able to run web platform tests. Currently only a very limited amount of tests is enabled, and many tests will fail once we enable testing them. We would like to get more coverage for our built in Web APIs. I have listed all of the s...
I'm trying to make a proxy server that analyzes the response body for each request. The problem comes when using `res.clone()` after the request has been proxied, I try to save the body data after the server responds, and then return the response to the client like this const body = await res.clone()....
0
**marc schipperheyn** opened **SPR-9418** and commented I have been playing around with RedirectAttributes and although I like the FlashAttribute function, I don't really like the way it has been implemented. For me, FlashAttributes come into play in the GET/POST/Redirect/displayStatus chain. What I don't like is...
**Leigh Anderson** opened **SPR-9176** and commented New entries are added to dependentBeanMap and dependenciesForBean map every time that a new instance of the request-scoped bean is created. This is because the proxy object representing the HttpServletRequest has a bean name like "$Proxy10@XXXXX" where XXXXX chan...
0
### Feature Request OpenCV already provides its own **IMPORTED** library targets. For example: opencv_calib3d opencv_core opencv_dnn opencv_features2d opencv_flann opencv_gapi opencv_highgui ... However, I hope OpenCV can provide this form `pkg::comp` or `pkg::pkg` of...
While the syntax `::` seems to be more modern and conventional in cmake, it has a obvious benefit. The following won't get any error until the linking time with a undefined reference error to `cv::imshow`. find_package(OpenCV 3.3 REQUIRED COMPONENTS core) target_link_libraries(myExe opencv_core op...
1
Q | A ---|--- Bug report? | yes Feature request? | no BC Break report? | no Symfony version | 3.3 I was playing with Symfony Flex when I noticed this: * * * Create a project with Symfony Flex: $ composer create-project symfony/skeleton:3.3.x-dev my_project/ $ cd my_project/ $ mak...
Q | A ---|--- Bug report? | no Feature request? | no BC Break report? | no RFC? | no Symfony version | 3.4 That's because of #24562, so this is actually a duplicate. BUT, we can fix this one now, by not using FQCN ids internally. This has to be done NOW, before the release. WDYT?
0
**Do you want to request a _feature_ or report a _bug_?** Bug. **What is the current behavior?** function Foo() { return 'foo'; } function Test() { return <span><Foo />bar</span>; } Hydration of `<Test />` to serverside rendered `<Test />` produces following warning: ...
Observed this on react@16.0.0-beta.5 import React from 'react'; import { renderToString } from 'react-dom/server'; const B = () => 'b'; console.log(renderToString(<div>{'a'}<B />{'c'}</div>)); This renders as `<div data-reactroot="">a<!-- -->bc</div>`. If you try to hydrate this ...
1
Observed using numpy-1.11.2: If I create a masked array X = np.ma.array(('a','b','c'), mask=(0,1,0)) then invoking X.filled() yields: array(['a', 'N', 'c'], dtype='|S1') Yet the documentation at https://docs.scipy.org/doc/numpy/reference/generated/numpy.ma.default_fill_value.html#numpy.ma.default_fill_value sugge...
For string arrays of type `S1` or `S2`, the default fill value in Numpy masked arrays (`N/A`) is not appropriate: In [1]: from numpy import ma In [2]: x = ma.array(['a', 'b', 'c'], dtype='S1', mask=[1,0,0]) In [3]: x.filled() Out[3]: array(['N', 'b', 'c'], dtype='|...
1
In pandas/pandas/io/parsers.py line 1000, np.uin8 is referred. It is an inexistent member in numpy. I suppose it's a typo for np.uint8.
while using read_fwf I had a bug that had this line from parsers.py https://github.com/pydata/pandas/blob/072e40b0b5beab36c2adda9e0bcbb26755e1928f/pandas/io/parsers.py#L989 in which there is a np.uin8 which I'm pretty sure should be a np.uint8 apologise if this has already been submitted - I did a search on uin8 a...
1
Hello, I want to use TorchScript to accelerate my training, but I found my cpu memory is going up and finally blow up, but if I don't use TorchScript, everything is fine. I have no idea if it's a bug, Can you give me some advice? cc @suo
Hello, I want to use TorchScript to accelerate my training, but I found my cpu memory is going up and finally blow up, but if I don't use TorchScript, everything is fine. I have no idea if it's a bug, Can you give me some advice? cc @suo
1
I need to create indexes in relationship to optimize my query. Cypher not support indexes in relationship ? And I cannot create the follow constraint in relationship SHARED_REACTION: CREATE CONSTRAINT ON ()-[sr:SHARED_REACTION]-() ASSERT EXISTS (sr.id) Neo4j returns: "Unable to create CONSTRAINT.." Neo.Data...
_NOTE: This description has been updated, the original description is at the bottom_ While Neo4j primitives are `read committed`, Cypher composes these primitives together in ways that can lead to errors - notably cypher may read an entity that is subsequently deleted, and will then fail to perform some operation o...
0
Seen with Celery 3.1.20, Django 1.9 Steps to reproduce: * Set CELERY_RESULT_BACKEND to multiple memcache servers e.g. `CELERY_RESULT_BACKEND = 'cache+memcached://127.0.0.1:11211;127.0.0.10:11211/'` * Start a celery worker using ./manage.py celery worker Result is a crash with stacktrace: [2016-0...
This breaks mongo backend, because of `33f1dc8`. I believe `maybe_sanitize_url` doesn't play well with replica sets... Full backtrace: ValueError: invalid literal for int() with base 10: '53473,{snip}.mongolab.com' File "celery/worker/__init__.py", line 206, in start self.blueprint.start...
1
On the v2.0.0-0.3.beta1 tag I'm currently getting abnormally large task timings (all appear slightly different but start with `1447240`...): 2015-11-11 11:32:28,585 p=6905 u=vagrant | TASK: Task 1 ------------------------1447240566.82s 2015-11-11 11:32:28,586 p=6905 u=vagrant | TASK: Task 2 -----...
Issue Type: Bug Report (2.0 regression) Ansible Version: 2.0.0 (rc1) Ansible Configuration: default Environment: NA Summary: For 1.9 callback plugins, playbook_on_stats was only called once at the end of the playbook run, regardless of number of plays. This made it effectively useful as an "on playbook finish...
1
## Bug Report Why ModeConfiguration not support config 'driverClassName'? When I Use default Mode(it's Standalone and H2 database), and run my applicatin in Tomcat It will throws 'No suitable driver' Exception ### Which version of ShardingSphere did you use? 5.3.2 ### Which project did you use? ShardingSphere...
## Bug Report ### Which version of ShardingSphere did you use? master branch ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? JDBC ### Expected behavior Daily Continuous Integration pass ### Actual behavior https://github.com/apache/shardingsphere/actions/workflows/ci-daily.yml ht...
0
**Migrated issue, originally created by Michael Bayer (@zzzeek)** because it's not mapped up front @declared_attr isn't evaluated as expected. might need the plugin to run them again. from sqlalchemy import * from sqlalchemy.orm import * from sqlalchemy.ext.declarative import (declarative_bas...
**Migrated issue, originally created by Michael Bayer (@zzzeek)** poc should allow us to consolidate #2670, #2952, #3149, #3050. the new descriptors include the ability to cache the result per class, or to do "cascade", guarantees that the callable fn is called only once per target class, as well as to name attrib...
1
I'm having an issue with webpack where if I stop watching and restart, it will build just fine, but if I edit a file and save it, the incremental build fails with this error: **Uncaught TypeError: Cannot read property 'call' of undefined** Hunting it down there's a module that does not get included in the increment...
I’ve run into a fairly strange, fairly specific problem when running webpack in watch mode on OS X. When using `require.context` in the presence of a module with a lot of dependencies in `node_modules` that was symlinked using `npm link`, webpack seems to open a _lot_ of file descriptors, very quickly leading to a ra...
0
**Glide Version** : **Integration libraries** : **Device/Android Version** : **Issue details / Repro steps / Use case background** : **Glide load line /`GlideModule` (if any) / list Adapter code (if any)**: Glide.with(iv.getContext()) .load(url) .placeholder...
I get the following error when trying to load an image from assets into ImageView after app was closed and restarted: > D/skia: --- SkImageDecoder::Factory returned null The scenario in which this issue appears: Android 5.0.1 (also tried on 5.1.1 - same issue) 1. Start app 2. Load animated image from assets i...
0
The "vertical-align: middle" style property makes the a FlatButton label un- centered * [x ] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Based on the material design guidelines the label text of a button is meant to be in the center https://mater...
* I have searched the issues of this repository and believe that this is not a duplicate. I'd like to use the `TablePagination` component without a page size selector. Moreover, it would great if I can use a property like `showPageSizeSelector` or something like this to manage page size selector visibility. I've c...
0
Not sure why the random state changed for non random operation like tf.constant `pip freeze|grep "python\|tensorflow"` python-dateutil==2.7.2 tensorflow==1.5.0 tensorflow-tensorboard==1.5.1 cat test.py import tensorflow as tf print(tf.__version__) seed = 0 def test1(): graph...
### Environment info Operating System: Windows 10, 64 bit Installed version of CUDA and cuDNN: CUDA 8.0 cuDNN 5.1 Intalled TF by the following: pip3 install --upgrade tensorflow-gpu ### If possible, provide a minimal reproducible example (We usually don't have time to read hundreds of lines of your code) ...
0
[Enter steps to reproduce below:] 1. Create a file named 2Checkout.ts 2. Rename file to checkOut.ts I'm not sure if these are the steps (or which step) resulted in the error, but this is what I was doing at the time. When the problem occurred, the ide opened hundreds of tabs. I was not able to work again until...
Some repro steps that I gathered from the existing issues: 1. Have a file open in branch `something` that doesn't exist in branch `atom` 2. `git checkout atom` 3. ENOENT 💥 OR 4. Have a file open in Atom that will be affected by `git rebase` 5. `git rebase` 6. ENOENT 👎 OR Just simply rename a fil...
1
feature request: getState, example, const [state, setState, getState] = useState(null); it is ok to use the simple variable in a dependent uses effect, but not ok in not a dependant use effect. the state is a simple variable. which is closure passed into functions, so it is not updated. and setState with a functi...
## Steps To Reproduce Englobe code in a static class make rule bug ! Actually rule detect React in class, but it not true ! This is a pure ES6 js class with a proxi field to a React functions in scope. And is not a React Class components ! interface PanelProps {} class DOMAINE { static ...
0
# Environment OS: Platform ServicePack Version VersionString -------- ----------- ------- ------------- Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Terminal: > get-appxpackage Microsoft.WindowsTerminal Name : Microsof...
# Environment Windows build number: 1903 18362.267 Windows Terminal version (if applicable): 0.3.2142.0 # Steps to reproduce Window Terminal have to be possible to use internationally. "international localization" is the keyword which have to remember. Cant give chars @ $ £ { [ ] } becau...
0
Angular 2 is a great piece of software, but its biggest problem is that it's overly verbose. Has implicitly requesting a component's sibling template/css been discussed? component \- component.js \- component.html \- component.css I know it's less explicit, but it would encourage a standard pattern for organi...
I'm using angular2-seed and throughout my project each component has `html` and `css` file with the same name as component `ts` file. ├── about │   ├── about.html │   ├── about.ts │   └── about.css where component `ts` file is: import {Component} from 'angular2/angular2...
1
I have an app design requirement to pick images on a custom layout, I can't have the native picker dialog pop-up. So I need access to just the uris of all photos and videos in library, to implement my custom picker layout. Therefore I'm requesting a method to return a list of the uris for all pictures/videos in t...
Right now the picker defaults to single mode, it would be nice to be able to have a multi-mode, by passing a parameter when you launch it, then an array is returned of files instead of just one. for android this might help speed things up unique code intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true...
1
I encountered this issue at build time while testing #16246 on a Haswell-based CPU supporting AVX2. This is due to a confirmed bug in GCC that is fixed since GCC 8.4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65782 One suggested workaround on Stack Overflow was to pass a number of `-ffixed-<reg>` flags to preven...
Attempting to install numpy 1.17.3 on cygwin fails, with the only reported error message being `invalid register for .seh_savexmm`. I can't figure out where this would be getting called, since the reported file is `standard input` and grepping the source for `savexmm` does not produce any obvious clues. ### Reprod...
1
**Migrated issue, originally created by Daniel Kassen** Below is a snippet of code that defines a Parent class and a Child class which is abstract and used for inheritance. Classes that inherit from Child do not automatically populate if the entry exists in the database. By that, I mean the proper query is not perf...
### Describe the bug I try to build the documentation into `epub` format to be able to read the docs on my ebook reader, as I couldn't find the pre-built `epub` anywhere on the https://www.sqlalchemy.org/. Unfortunately, this fails with the error. I tried `make html` to see if that's a general issue or only an iss...
0
Hi, First, thank you for your effort and hard work for creating this great react component! I have an issue with the recently released beta-22 version. I had an page displaying background image using the following style: pageBackground: { background: { image: `url(${backgroundImg})`,...
Since JSS comes bundled in material-ui I am guessing that the problem is with your fork. When I do const styles = theme => ({ main: { margin: [100, 50] } }) I get `margin: 100px, 50px;` Notice the comma between the values. If id do just const styles = them...
1
### Describe your issue. `scipy.spatial.KDTree()` throws Segmentation fault on given input. ### Reproducing Code Example import numpy as np from scipy.spatial import KDTree data = [ [456., 9.], [572., 10.], [555., 15.], [604., 16.], [547., 29.], ...
When running the code below (boiled down from the original producer) I get a segmentation fault. #### Reproducing code example: import numpy as np from scipy.spatial import KDTree points = np.arange(34.).reshape(-1, 2) points[0] = np.nan points[8] = np.nan KDTree(points) ####...
1
**Mathew Wyatt** opened **SPR-4054** and commented When i have a "prototype" (defined as prototype in the spring-config) bean which implements the ApplicationContextAware interface, it is eagerly instantiated when the application context is loaded. Which means i have a bean floating around in space which i can not ...
**Pavel Nemec** opened **SPR-9839** and commented Detail description is on forum(see Reference URL) use case: Custom RequestParamMethodArgumentResolver that would parse and validate serialized object received in request parameter. found problems: 1)As opposed to default resolvers, custom resolver can't obtain me...
0
Rogue kubelets can make N failure events (e.g., out of disk, can't mount secret, can't garbage collect) every poll loop, which can completely overload a kube-apiserver. We should rate limit these.
**Is this a request for help?** (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.): Raising this bug after discussing with gmarek. **What keywords did you search in Kubernetes issues before filing this one?** (If you have found any du...
0
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Electron Version 10.4.0 ### What opera...
### Expected behavior Should be able to develope andoid apps using electron
0
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME gather_facts ##### ANSIBLE VERSION ansible 2.3.0.0 config file = configured module search path = Default w/o overrides python version = 2.7.12 (default, Jul 1 2016, 15:12:24) [GCC 5.4.0 20160609] ##### CONFIGURATION Def...
FreeBSD seems very fond of "rc-style" configuration files, which have the following format: # Comment SOMETHING=somevalue Examples of this are make.conf, sysctl.conf, rc.conf and many others. The format is close, but not exactly the INI-format, which makes the ini_file module unusable. The l...
0
_bug_ After updating from 15.3.2 to 15.4.0, the error is showing up in previously working code. The app fails to load in **IE11 on Win 7** with the following error: `SCRIPT5022: Objects are not valid as a React child (found: object with keys {$$typeof, type, key, ref, props, _owner, _store}). If you meant to rende...
**Do you want to request a _feature_ or report a _bug_?** BUG **What is the current behavior?** App doesn't render in IE11 and below. **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem viahttps://jsfiddle.net or similar (template: https://jsf...
1
**Do you want to request a _feature_ or report a _bug_?** Report a possible bug **What is the current behavior?** When Component A renders Component B with a children prop that is a react component / JSX fragment any render of component A will recreate said children prop **If the current behavior is a bug, pleas...
If you have componentWillReceiveProps: function() { this.setState({x: this.state.x + 1}); this.setState({x: this.state.x + 1}); } then `x` will only be incremented once because the new state will just be stored in `_pendingState` until `receiveProps` finishes. After my refacto...
0