text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
**Migrated issue, originally created by jvanasco (@jvanasco)** discussed previously in * https://groups.google.com/forum/#!searchin/sqlalchemy/icontains/sqlalchemy/MUyt8zYaP0c/ht4fGR9q9w8J * https://groups.google.com/forum/#!searchin/sqlalchemy/icontains/sqlalchemy/331XoToT4lk/RPjIYNTkSEIJ I tried doing this ...
### Describe the bug Using MySQL 8.0.27 with a database table called `lead`. Turns out this is a new reserved word in MariaDB. I am using SQLAlchemy 1.3.24 and adding `lead` to your `dialects/mysql/base.py` `RESERVED_WORDS` set fixes the issue, causing the `lead` table to be escaped properly. Looking at your latest ...
0
I'm wondering if you can add a new feature: show nested menu when hover on item. I read your source code and found that the new menu was rendered on body. I don't know how to change code so the menu item can support this feature.
the circle around the selected date in the calendar is down and left of where it should be to be centered with the selected number. this is verified on mac osx in chrome, safari, and firefox the circle should be: top: -7px; left: 3px these screenshots are from the datepicker documentation ...
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 an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * L...
* Electron version: 1.7.9 * Operating system: macOS ### Expected behavior The callback should be used only for URLs matching the filter. const filter = { urls: ['*://www.googleapis.com'] }; session.defaultSession.webRequest.onBeforeRequest(filter, (details, callback) => { console.log('o...
1
_Original tickethttp://projects.scipy.org/numpy/ticket/881 on 2008-08-07 by trac user mgogoulos@..., assigned to @cournape._ numpy.object0 and numpy.object result in segmentation fault, see the following: $ gdb python ... (gdb) run -c "import numpy; obj = numpy.object0()" Starting program: /usr/bin/python -c "i...
_Original tickethttp://projects.scipy.org/numpy/ticket/816 on 2008-06-09 by @pv, assigned to unknown._ The following code causes a segmentation fault: import numpy as np print np.__version__ np.object_(3) The reason apparently is (see the Valgrind trace below) that the _object_ _ constr...
1
When creating declaration files (`"declaration": true` in `tsconfig.json`) for a component which uses `withStyles` the typescript compiler complains with : > TS4023:Exported variable 'MyComponent' has or is using name > 'StyledComponentProps' from external module "./node_modules/material- > ui/index" but cannot be n...
I have inherited this React/typescript/material-ui project from a more experienced developer. My problem started when I was trying to solve another problem - importing DropDownMenu from material-ui, with my inline linter telling me that it could not be found. I then changed the version of `material-ui": "^1.0.0...
0
I believe the following behavior of `which()` is not intended: julia> f(a::Int, b) = a+b f (generic function with 1 method) julia> f(a, b::Int) = a-b f (generic function with 2 methods) julia> f(2,2) # to highlight that there is an ambiguity ERROR: MethodError: f(::Int...
As pointed out here #11430 (comment), here #11430 (comment) and in some of the comments on that issue, the naming convention for `Ref` and `RefValue` is probably not the best and causes some confusion. I'd like to propose the following changes * `Ref` -> `CRef`, `ARef` (A for Abstract) or `ByRef` (proposed by @Je...
0
### Description Using `spider.crawler.engine.close_spide()` in pipeline will throw an exception ### Steps to Reproduce class IPVerification: @classmethod def from_settings(cls, settings): return cls(settings.get('REDIS_URL')) def __init__(self, redis_url): ...
Sometimes pages depend on certain HTTP request headers sent, for rendering the expected result, and it's a manual and tedious job to find out which headers those are. So, here's an idea for automating this probing mechanism: create a new scrapy command `probe` which takes a url as argument and a text to look for. S...
0
Unit tests on our CI have apparently been failing for 2 weeks and no one noticed (oops!)... The PR that seems to have caused the failures is #14328. The failing test is `k8s.io/kubernetes/pkg/volume/flocker` \- `TestSetUpAtInternal`. [16:15:04][Step 4/5] --- FAIL: TestSetUpAtInternal (0.00s) [16:...
**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.): cl...
0
At first I explain you what I would like to do with tsserver. @dbaeumer I think you could be interested with this issue for VSCode and Angular2 support. Take the sample https://angular.io/docs/ts/latest/quickstart.html with Angular2 & TypeScript. There is a ts file: import {Component} from 'angular2/a...
Say I'm writing a declaration file for an external library that both exposes a global and supports CommonJS. According to the handbook I would write that like this: module zoo { function open(): void; } declare module "zoo" { export = zoo; } And then the usage would...
0
**Yanming Zhou** opened **SPR-3559** and commented public String parseStringValue(String placeholder) developer can reuse placeholder programmatically not only in xml configuration,for example,when use spring-javaconfig `@Configuration`(defaultAutowire = Autowire.BY_NAME) public abstract class Config { ...
**Vincent MONIER** opened **SPR-8884** and commented For testing purpose, I use EmbeddedDatabase. My database schema contains HSQLDB PMS stored procedures. like this one: \----------- content of procedure.sql (a valid HSQLDB PMS stored procedure) --------------------- CREATE PROCEDURE get_customer(IN id INT, OU...
0
**Important note:** the development of Keras is currently taking place at `github.com/tensorflow/tensorflow`. Please file your bug report by creating a new issue in the TensorFlow repository. Please note that multi-backend Keras development has been discontinued. Do not report issues about multi-backend Keras (Keras...
I train a Keras model and want to perform some matrix operation on the output (e.g. numpy.matmul()). However, each time I try to use any of numpy functions (like, matmul(), dot(), concatenate()), the IPython kernel dies and restarts. I'm using Spyder IDE on Mac OS X, both Keras, Tensorflow, and numpy are up-to- date....
0
#### Code Sample import pandas as pd df = pd.DataFrame(["x", "y", "z"], dtype='category') df.replace({"x": "y"}) #### Problem description ##### Current output ~/.local/lib/python3.6/site-packages/pandas/core/internals.py in __init__(self, values, placement, ndim, fastpath) ...
#### Code Sample, a copy-pastable example if possible In [2]: pd.Series([1, 2, 3, 2], dtype='category').replace(2, 1) # good Out[2]: 0 1 1 1 2 3 3 1 dtype: category Categories (3, int64): [1, 2, 3] In [3]: pd.Series([1, 2, 3, 2], dtype='category').repla...
1
I created the app by npx create-app order //not this problem Mismatching Versions of React and React DOM and not this Duplicate React here is my code First,I created a hook usePre.js which is copied from https://reactjs.org/docs/hooks-faq.html#how-to-get-the-previous-props-or-state `import React,{useRef,useEffec...
**Do you want to request a _feature_ or report a _bug_?** A bit of both? **What is the current behavior?** The old context API involved components that provided and consumed context using a shared string key. In other words, the only requirement for communication between components providing or consuming context ...
0
**First of all , Thanks to all contributor** When i use the lastest version to build my node app, i want to debug my app.. when i add the launch.json , but not appear in the launch configuration dropdown menu. So , i guess need restart the VSCode , Yes... did it... Maybe it's a tiny bug... thx. OS : Windows 10...
Using VS Code 0.10.1 on Mac OS 10.10.5 1. create and cd into a new project directory 2. invoke "npm init" and specify "entry point" file (i.e. "main" in package.json) 3. create the entry point file (i.e. index.js) 4. invoke "code ." 5. switch to debug view and click the gear icon or press "run" Expect res...
1
* PowerToys version: 0.21 and 0.22 * PowerToy Utility: * Running PowerToys as Admin: no * Windows build number: 19041.508 ## 📷 Screenshots ![image](https://user- images.githubusercontent.com/4996834/93026219-11b05d00-f60d-11ea-9adf-96d96e1d125f.png)
# Summary of the new feature/enhancement Allow windows to snap into 2 or more Zones. # Proposed technical implementation details (optional) When moving a window to a zone can choose to allow the window to snap to multiple zones that is in the same monitor. For example if you have 3 zones in one monitor you can sna...
0
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 1.0.0 **System** : Unknown Windows Version **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15...
I right-clicked on a folder in the tree view **Atom Version** : 0.194.0 **System** : Windows 7 Entreprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Fu...
1
Currently, the meta/main.yml file in roles supports controlling whether duplicate dependencies will be allowed based on the `allow_duplicates` field at the root level. However, it's possible that some dependencies should not be duplicated, while others within the same file should be. **Implementation:** `allow_dupli...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME aci_ap but I guess similar for other aci_* modules ##### ANSIBLE VERSION ansible 2.4.2.0 config file = /home/dhamann/ddsdnlab.at/ansible_aci_buildout/ansible.cfg configured module search path = [u'/home/dhamann/.ansible/plugins/module...
0
resource r(b: int) { r(b); } fn main() { r(0); } Hits a fatal assertion rather than simply failing: rust: task 7fce71800000 ran out of stack rust: fatal, 'on_rust_stack()' failed, ../src/rt/rust_task.cpp:570
What we are doing now leaks (#3555) and I don't know how to fix it yet, so we should not pretend we can enforce stack size limits safely.
1
Relating to #875, willing to try a PR if offered guidance. We're building a ecommerce store from scratch with next and are close to finishing the initial architecture. The only thing bugging us is the number of folders we ended up with. The `src` folder would be a major improvement in our structure and the way we th...
When using `Router.push(url, as, { shallow })` the `Router` should validate that `as` is a String and warn the consumer. As a consumer, I would expect `Router.push` to gracefully handle / fallback to setting `as = url` so I can simply invoke `Router.push(url, {shallow: true})` but 🤷‍♀️ * I have searched the ...
0
Version 0.10.3 uses up 100% cpu on my macbook pro. Especially the Electron Helper
Not sure how I can help debug this, whilst `code` is running in the background, it has a detrimental effect on the performance of the battery. ![screen shot 2015-11-28 at 12 59 23](https://cloud.githubusercontent.com/assets/1777444/11451979/ef2b5afc-95cf-11e5-8160-f74d7ec8be6b.png) ![screen shot 2015-11-28 at 13 02...
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. ### Issue Details * **Electron Version:** v9.0.5 * 9.0.5 ### Rejection Email Guideline 2.1 - Performance - App Completeness We were unable to revi...
I just received a MAS rejection for an app using Electron 8.3.0. The app I submitted was a small feature bump - no major changes. Moreover the last review was just a few days ago. From MAS review: Your app includes a version of an SDK from Electron that violates the App Store Review Guidelines. The ve...
1
Just installed TensorFlow 1.0 on Windows 10 (x64) on a Surface Pro 4 following the instructions from here: https://www.tensorflow.org/install/install_windows (e.g. pip3 install --upgrade tensorflow). I'm unable to validate my installation, though - here's what I'm running into: Python 3.5.2 (v3.5.2:4d...
I have Python 3.5.2 and Anaconda 4.1.1 (64bit) and when i tried installing TF i got the same error earlier today. After following uninstall and then reinstall TF commands i was able to start Python app using TF; but now i am getting OpKernel error for unknown op: UpdateFertileSlots. ![image](https://cloud.githubus...
1
My problem is with import TF module. Here is my configuration: Python 3.6.1, Windows 7 64-bit. I've MSVCP140.dll library in 'C:\Windows\System32' and 'C:\Windows\SysWOW64' folders. I also have instaled Update 3 for VS2015 C++. In Windows PATH varitable I have such value related to python: C:\Users\Jacek\AppData\Lo...
The current .whl does not support python 3.6. Please update to support the latest version of python. Thanks! C:\WINDOWS\system32>python --version Python 3.6.0 C:\WINDOWS\system32>pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl tensorflow-0.1...
1
Here is error: ![image](https://user- images.githubusercontent.com/1636250/109177801-e079b280-7790-11eb-8fce-50257e88090a.png) Python 3.7.8 fastapi 0.63.0 Run configuration: `uvicorn.run("app:app", host="0.0.0.0", port=port, reload=True)` I think the error is in the path here is console log: `127.0.0.1:549...
Hello, I am following to fastAPI callbacks here : https://fastapi.tiangolo.com/advanced/openapi-callbacks/ to try to set up slack alerts in one of my projects. My goal is to sending a slack message whenever the API request failed. My code looks like this: from typing import Optional from fas...
0
## 🐛 Bug I noticed that my generated JIT was creating two variables with the exact same parameters. Also: Simply deleting the duplicated lines makes everything faster. ## To Reproduce Python: for (x, l, c) in zip(sources, self.loc, self.conf): conf.append(c(x).permute(0, 2, 3, 1).conti...
## ❓ Questions and Help ### Please note that this issue tracker is not a help form and this issue will be closed. We have a set of listed resources available on the website. Our primary means of support is our discussion forum: * Discussion Forum
0
## Bug Report **For English only** , other languages will not accept. Before report a bug, make sure you have: * Searched open and closed GitHub issues. * Read documentation: ShardingSphere Doc. Please pay attention on issues you submitted, because we maybe need more details. If no response **more than 7 da...
## Feature Request **For English only** , other languages will not accept. Please pay attention on issues you submitted, because we maybe need more details. If no response **more than 7 days** and we cannot make decision by current information, we will **close it**. Please answer these questions before submittin...
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)** : Linux Ubuntu 16.04 * **Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device** ...
As announced in release notes, TensorFlow release binaries version 1.6 and higher are prebuilt with AVX instruction sets. This means on any CPU that do not have these instruction sets either CPU or GPU version of TF will fail to load with any of the following errors: * `ImportError: DLL load failed:` * A crash w...
1
#### Example Code `print(pd.DataFrame({'a': np.zeros(1000, 'V4')}))` #### Results Non-deterministic behavior. Sometimes you get all zeros, sometimes you get garbage like this: a 0 [1, 0, 0, 0] 1 [0, 0, 0, 0] 2 [8, 0, 0, 0] 3 ...
Trying to print anything containing a V* (void) type throws in `isnull`: >>> import numpy as np >>> import pandas as pd >>> arr = np.array([b'foo'], dtype='V') >>> arr array([[102 111 111]], dtype='|V3') >>> s = pd.Series(arr) >>> s[0] [102 111 111] >>> s T...
1
**Migrated issue, originally created by René Steetskamp (@otech-nl)** I have a hybrid property "password" which used to work but after a package update gave "AttributeError: can't set attribute". Downgrading to "sqlalchemy<1.2" fixed the issue. Using sqlite 3.22.0, pipenv, flask and flask-sqlachemy. Pipfile, exec...
**Migrated issue, originally created by Marcin Lulek (@ergo)** Hello, I'm not sure if I was always using SA in wrong way or there is a bug in 1.2 version. Setters need to be named same way as hybrid property - this test case works in 1.x and breaks in 1.2. I did notice that in the examples in docs the property na...
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 ...** (check one with "x") [X] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
1
> Issue originally made by @Ltrlg ### Bug information * **Babel version:** 6.4.0 * **Node version:** 5.3.0 * **npm version:** 3.3.12 ### Options --plugins transform-async-to-generator ### Input code class C { async a() { let t = this; let f = () => ...
## Bug Report **Current Behavior** If relying on external browserslist config, "defaults" in that file resolves to empty set, which enables all transforms. **Expected behavior/code** "defaults" should resolve normally. In the example below, many transforms should be disabled. **Babel Configuration (babel.confi...
0
Test plan item for #3062 @bpasero Please complete...
1.0.0 introduced the ability to use VS Code as a git difftool. The relevant global `.gitconfig` lines are as follows: [diff] tool = default-difftool [difftool "default-difftool"] cmd = code --wait --diff $LOCAL $REMOTE How can I use VS Code as a git mergetool? The relevant ar...
0
用android studio3.0打不开 flutter_gallery这个例子 提示如下: ![tim 20180301130609](https://user- images.githubusercontent.com/35317999/36827897-599814b0-1d51-11e8-87a4-1770fb6e0849.png)
Flutter Gallery's assets are not stored in https://storage.googleapis.com/flutter_infra/. As a result, users cannot use alternate storage locations by specifying the FLUTTER_STORAGE_BASE_URL environment variable. flutter/examples/flutter_gallery/pubspec.yaml Lines 15 to 18 in dd79685 | flutter_gallery_assets: -...
1
* [x ] I have searched the issues of this repository and believe that this is not a duplicate. ## Current Behavior I just upgraded from verstion 1.0.0-beta.3 to 1.0.0-beta.8 and now I'm getting **"Module not found: can't resolve jss"** error when running `npm start`. I can confirm that I have jss and react-jss in...
even though passing the anchor= 'bottom' prop the drawer is still on left side * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Drawer should be placed on the side of the screen provided by anchor prop ## Current Behavior Drawer does not listen ...
0
I've a problem with Celery parent thread. It works, but CPU consumption is near 100%. Top output is: 28337 xxx 20 0 658m 101m 35m R 100 0.6 844:58.47 celery Celery version is: celery report software -> celery:3.1.8 (Cipater) kombu:3.0.10 py:2.7.3 billiard:3.3.0.14 py-amqp:1.4.2 platform -> system:Lin...
Hello, We're using Celery 3.1.6, and one of our queues is using 100% CPU for the master process. ps shows: root 6960 59.2 0.7 160680 51628 ? Rs Feb01 2319:49 /$VENV/bin/python /$VENV/manage.py celery worker -Q ads -P prefork --autoscale=10,5 -n $NAME --settings=settings -l INFO root...
1
I have a dropdown inside a nav-collapse, and this is happening: * Load the page in width < 900px * Click on btn-navbar to un-collapse * Click on dropdown to show the dropdown-menu. Nothing happens. * Click twice on btn-navbar to collapse and un-collapse again. * Click on dropdown to show the dropdown-menu....
In order to customize the prev/next buttons (with, say, an icon), it is also required to recreate about half the styles associated with `.icon-next` and `.icon-prev`. This is because these styles also include .icon-prev { &:before { content: '\2039';// SINGLE LEFT-POINTING ANGLE QUO...
0
Exactly like you support the _error.js file. This would solve a common question people are asking (#71, https://twitter.com/luisrudge/status/790946965123112960). The idea is look for a _layout.js file. If it exists, render it passing the current route's content as children.
Having animated route transitions would be nice, as this is one of the many benefits through client-side routing. Doing so should be left up to the user in my opinion (some people prefer CSS transitions over more fine-grained control with `react-motion` etc). As I understand it, one would need to modify the top-level...
1
We'll be able to translate the site for other idioms?
I am planning on translating the docs into Korean, should I be distributing it on my own?
1
Steps to reproduce error: 1. Setup symfony 2.8 2. Use the configuration setting security: firewals: main: form_login: intention: 3. Observe that **none** of the error messages intended to help correct the deprecated setting show up, only the generic error is reported, negating the utility of the 20 lines commi...
**Description** You currently cannot use the profiler if you do not have the twig bundle installed. If you do not install the twig-bundle, you'll have an error `The service "web_profiler.controller.profiler" has a dependency on a non-existent service "twig".`, even if you don't need twig in your app (api style app...
0
**Do you want to request a _feature_ or report a _bug_?** feature **What is the current behavior?** There is no way to define a custom mode. **If the current behavior is a bug, please provide the steps to reproduce.** **What is the expected behavior?** I'm making this up - `--mode npm://package-name` Why? ...
# Bug report When having several named entry points and sharing a lib with `eager:true`, the lib code is duplicated to all resulting bundles. Example for entry points: entry: { main: "./shell/main", styles: "./shell/styles.css", polyfills: "./shell/polyfills" }, Exam...
0
I have ran into this error on the parameter broadcast step of `torch.nn.parallel.replicate`. It sounds like this, to be precise: `NCCL Error 1: unhandled cuda error`. #2332 is possibly related.
## 🐛 Bug A module might declare a buffer of unknown size in its init function by using: self.register_buffer('name', None) The buffer might later contain a valid tensor. Saving this (now non-None) buffer with `state_dict()` works but loading this state dict to a newly instantiated module (where the ...
0
The following typescript (using the new module system syntax) import "foo"; generates the following invalid javascript: define(["require", "exports", "foo"], function (require, exports, )
Given this code: // foo.ts import './bar'; import baz from './baz'; baz; // bar.ts export default function bar() {} // baz.ts export default function baz() {} Repro: `tsc -m amd foo.ts` Expected output: define(["require", "exports", './baz', './bar...
1
# Environment Windows build number: [Version 10.0.18363.836] PowerToys version: v0.18.1 PowerToy module for which you are reporting the bug (if applicable): PowerLauncher # Steps to reproduce search anything related to powerlauncher like `Launcher` # Expected behavior Exclude itself in...
# Environment Windows build number: 10.0.18363 PowerToys version: 0.18.0 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run # Steps to reproduce 1. Open PowerToys Run 2. Type "Launcher" # Expected behavior PowerToys Run doesn't shows itself # Actual...
1
Here are 2 ways to drop rows from a pandas data-frame based on a condition: 1. `df = df[condition]` 2. `df.drop(df[condition].index, axis=0, inplace=True)` The first one does not do it _inplace_ , right? The second one does not work as expected when the index is not unique, so the user would need to `reset_in...
sum() is giving 0.0 as the total, rather than NaN, when the entire row/column is NaN. Note that this bug does not arise in pandas 17.1 with numpy 1.11.0, running on Ubuntu. #### Code Sample, a copy-pastable example if possible import numpy as np df = pd.DataFrame([[np.nan,np.nan,np.nan,np.nan], ...
0
The script that demonstrate this can be found here. Pasted below #!/usr/bin/julia -f f() = nothing forward_nothing(func) = func() forward_pos_only(func, args...) = func(args...) forward_kw(func, args...; kws...) = func(args...; kws...) do_sth(a, b, c) = begin ...
This may just be naiveté on my part with regards to writing Julia functions, but I'm seeing a performance hit when adding keyword arguments to function calls. Basically, I was looking at the implementation of QuickSort and wanted to see if by adding a user-defined cutoff for insertion sort (rather than the built- in...
1
After upgrading from numpy version 1.16.2 to 1.16.3, `f2py -c ... --fcompiler=intelem` fails with `CompilerNotFound`. Rolling back to version 1.16.2 everything works as expected. This doesn't happen with `--fcompiler=gnu95` which works on both versions. Just prior to the traceback I get: customize In...
Hi, I have intel compilers installed, but get this: Found executable /opt/intel/compilers_and_libraries_2018.1.163/linux/bin/intel64/icc customize IntelEM64TFCompiler Found executable /opt/intel/compilers_and_libraries_2018.1.163/linux/bin/intel64/ifort Traceback (most recent call last): ...
1
Error messages are too abstract.. Link to circleci log: https://app.circleci.com/jobs/github/pytorch/pytorch/4513748 PR doesn't seem to be related to the failure: #33409 ====================================================================== ERROR: test_abs_cpu (__main__.TestFuser) ---------...
## 🐛 Bug Error text: ====================================================================== ERROR: test_abs_cpu (__main__.TestFuser) ---------------------------------------------------------------------- Traceback (most recent call last): File "C:\Users\circleci\project\build\win_tm...
1
# Checklist * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was alrea...
# Checklist * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was alrea...
0
The full page is considered extra small in actual pixel size, so it uses the xs styles for layout (col-xs-...). This is a problem, in our case, we have a mobile view and a print view. The print view cannot be the same as the mobile view and the layout gets blown apart as a result. My interim solution is ...
When printing in Safari 7 and Firefox 25 the grid carries over to the print style, but in Chrome 34 and IE 11 everything stacks when printed. Any insights here?
1
What steps will reproduce the problem? 1. http://play.golang.org/p/lV4Ag-Fw_7 2. 3. What is the expected output? program should terminate normally What do you see instead? deadlock Which compiler are you using (5g, 6g, 8g, gccgo)? 6g Which opera...
In CL 20489, @crawshaw observed that he was able to change the cmd/internal/obj's objfile writing code and cmd/link/internal/ld's objfile reading code, but no tests failed to indicate that cmd/internal/goobj should be updated too. cmd/internal/goobj used to be used by cmd/newlink, but that was deleted in CL 20380 (`...
0
Using 0.209.0 on Windows 7 Pro 64-bit, Atom (even in safe mode) will no longer open a new first-and-only window with the session state (open folder and open files) from the previous last-to-be-closed Atom window. #6917 seems similar, but that was fixed. I guess this might be a regression, unless it was a deliberate...
Atom 0.209.0 doesn't save open files and folders on exit (0.208.0 made this). After restart, there is only empty "untitled" file. Here's my config: "*": "exception-reporting": userId: "480b20de-e736-263e-a240-4205e8c90e87" welcome: showOnStartup: false core: ...
1
When the name of a variable begins with "var",VSC will make "var" as a kind of color and make the end of its name as a different kind of color. However,if the name of a variable is " _var_ ",it will make its name as a kind color. ![-1](https://cloud.githubusercontent.com/assets/8530043/13721271/95c81ab6-e85b-11e5...
![image](https://cloud.githubusercontent.com/assets/10532611/13596334/26e5ec28-e512-11e5-8f45-298892f1d25a.png) return new vscode.Variable(property.name, displayValue, variablesReference); ![image](https://cloud.githubusercontent.com/assets/10532611/13596347/45992a0e-e512-11e5-847e-af3a2c6e32ad.png) ...
1
It would be great if Pandas Series got an info method, like Pandas DataFrame. My main interest is to find out memory usage.
1
I'm getting a crash both with latest master and with 0.4.6 after loading CategoricalArrays.jl and calling `gc()`. You can get the code from the `nl/crash` branch. _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org ...
Having recently gone through the updating of several packages for 0.4 and trying out the new doc system, I first have to say, I love it! Much kudos to everyone who put in so much effort to build and make the transition. As an extension to the wonderful new functionality, I find myself wanting to document the dayligh...
0
When downloading the latest nuget package lodash is getting two files: version 4.0 and version 3.10. this causes compilation error due to duplicate declarations.
I have found a change in the rx.js libraries that caused the typescript compiler to enter in an endless loop (and also put the VS in a freeze mode - bug in VS, I know, Intellij or even Eclipse is doing a better job with TS). The problem happened because was renamed the IObservable interface to Observable and along o...
0
Today I'm update a version of the Symfony using $>bin/vendors update After the update, I need clear the cache, but I found this error. $>php app\console cache:clear Catchable fatal error: Object of class Symfony\Component\ClassLoader\DebugUniversalClassLoader could not be converted to string in E:\Projetos\eMark...
Q | A ---|--- Bug report? | yes Feature request? | no BC Break report? | no RFC? | no Symfony version | 4.0.3 TL;DR; `Symfony\Bundle\FrameworkBundle\CacheWarmer\TemplateFinder` doesn't find templates inside the `templates/` folder. This is because the `TemplateFinder` is unaware of the `paths` setting...
0
**I'm submitting a ...** (check one with "x") [x] feature request **Current behavior** We don't have an SPA. And we can't go full SPA right now. So there are multiple root components placed in the DOM <my-app1></my-app1> <my-app2></my-app2> @NgModule({ i...
**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 ...
0
The following syntax: Model.query.filter('table_name.column_name % 'query_string'').all() will generate a correct sql expression, except by the percentage sign, which will be duplicated, rendering: "model.column_name %% 'query_string'". This duplication is unavoidable so far as I know by the docs, but it should be...
**Migrated issue, originally created by Anonymous** Python 3.3 has added a timestamp() method to datetime.datetime objects. In this example SettingDefaults.start_time is defined as Column(DateTime, default=datetime.now, nullable=False). default_settings = session.query(SettingDefaults).\ ...
0
#### Code Sample, a copy-pastable example if possible import pandas as pd class KV(object): def __init__(self, key, val): self.key = key self.val = val def __str__(self): return 'KV({!r}:{!r})'.format(self.key, self.val) def __hash_...
A few of the methods in `groupby_helper.pxi.in` have a pattern that goes: N, K = (<object> values).shape with nogil: if K > 1: # loop over j in range(K) and do stuff ... else: # do stuff with j=0 ...
0
If a single element array is passed to `np.float64()` in the following way, it is returned not as an array but as a numpy scalar. I have not observed this behavior when converting in this way via other dtypes, though my tests are not exhaustive. Code to reproduce below: import numpy as np # Re...
_Original tickethttp://projects.scipy.org/numpy/ticket/764 on 2008-04-29 by @charris, assigned to unknown._ In [1]: float32(array([[1]])) Out[1]: array([[ 1.]], dtype=float32) In [2]: float64(array([[1]])) Out[2]: 1.0 In [3]: int64(array([[1]])) Out[3]: array([[1]], dtype...
1
Test case (the order is important): print(type(numpy.exp(1) + Variable(torch.zeros(2, 5)))) # <class 'numpy.ndarray'> (of really strange shape) I understand why this is happening but I'd prefer an error to be thrown here if possible when the "expected" behaviour cannot be achieved.
Pytorch shows the following inconsistent behaviour. import numpy as np import torch from torch.autograd import Variable 1.0 + Variable(torch.ones(1)) # returns as expected # Variable containing: # 2 # [torch.FloatTensor of size 1] np.sum(1.0) + Variable(torch...
1
Q | A ---|--- Bug report? | no Feature request? | yes BC Break report? | yes RFC? | no Symfony version | 4.0 Hello, Following #21409, I think it would be very more user-friendly to enable passing parameters as objects to Router::generate(). Indeed, the user is used to get objects from parameters in ...
For Symfony2 Router with the help of standart bundle (sensio extra) we can write ParamConverters to convert request param=>object. Is there any standart way to use reversed convertion? Now we must do something like this: path('DevBlogBundle_post_show',{'post':post.id}) While a better way would be: path('DevBlo...
1
Support for 3rd parties app or built in functionality to support a tiling windows manager instead of floating. Something similar to i3 or chunkwm.
This was mentioned in the README so I'm creating the issue as it sounds like a neat idea to me I'm assuming this would allow for more flexible window arrangements than the current quadrant snapping, etc.
1
On a solaris 10 target with ansible 1.9.3 using template or copy with become fails with `fatal: [rpm-zone3] => ssh connection closed waiting for a privilege escalation password prompt` Full log from the failed section: TASK: [web | Create CAM pasword file for agent install] *********************** ...
##### Issue Type: Bug Report ##### Ansible Version: 1.9.0.1 ##### Environment: Both Cent OS 6 for source machine and target machine ##### Summary: The template module fails(err: `ssh connection closed waiting for password prompt`) at creating files that require sudo permission with password. ##### Steps To Repr...
1
Hey, I am not sure if this is a duplicate or not, but I could not find this exact issue. I realize we are not running 3.1.7 so I will upgrade all machines to check Running: amqp==1.3.3 billiard==3.3.0.10 celery==3.1.6 eventlet==0.14.0 kombu==3.0.7 Getting the following issue: [2014-01-10 12...
I'm encountering an issue using the Consul result backend which I suspect is NOT a Celery issue as such but rather an issue in the lack of thread safety in the library the backend uses. The symptoms are consistent with confusion between the sorts of responses that Consul gives to the library when creating saved resu...
0
Would be great if 6g had POPCNTQ/L/W and TZCNTQ/L/W instructions added. Real world usage: bits-and-blooms/bitset#19
go version go version devel +bddf2a72f5e1 Wed Nov 27 19:32:15 2013 +1100 windows/amd64 cd $(GOROOT)/src/cmd/yacc make rename expr expr.exe expr.exe > 1+2*3 2013/11/30 11:14:44 unrecognized character '\r' 7 > 1. expr need append executable extension. ...
0
when using typescript, `expect` assertions are not typechecked. since playwright supports typescript, i would expect the assertions to be typechecked, otherwise the typescript support is completely pointless ### System info * Playwright Version: 1.30.0 * Operating System: windows 10 * Browser: all ### Source...
### System info * Playwright Version: [v1.24] * Operating System: [macOS 13.4.] * Browser: [All, Chromium, Firefox, WebKit] * Other info: nodejs v18 ### Source code * I provided exact source code that allows reproducing the issue locally. **Config file** // playwright.config.ts import...
0
### Version 2.5.2 ### Reproduction link https://github.com/Pistos/vue-unknown-custom-element-bug ### Steps to reproduce See README, but I duplicate the steps here for your convenience: 1. `npm install` 2. `npm run dev` 3. Browse to http://localhost:8080 4. Click "Example Tab" at top of page 5. Observe...
### Version 2.2.6 ### Reproduction link https://jsbin.com/pusozum/edit?html,js,console,output ### Steps to reproduce Please check minimal reproduction: 2 components which are parent and child, parent pass props to child. Child component will not update if the props is not referred in its template. ### What ...
0
On this page, https://doc.rust-lang.org/std/macro.unimplemented!.html, the [src] hyperlink points to https://doc.rust- lang.org/src/std/%3Ccore%20macros%3E.html#1, which does not exist. The same problem happens on https://doc.rust-lang.org/std/macro.format!.html, which points to https://doc.rust- lang.org/src/std/%3...
see http://doc.rust-lang.org/std/macro.assert!.html
1
On Windows, when I am behind a proxy server I am able to get the list of possible extensions to install but every time I try to install one of them it gives an error that it can't find the proxy server. Note in the error message that I replaced the real address with the text proxyAddress. I did notice that some of t...
Whenever I try to install any extension, using _ext install_ , I get a **connect ETIMEDOUT 191.238.172.191:443** error. Trying to navigate to **https://191.238.172.191** in the browser produces a warning regarding the certificate being valid only for * **.market.visualstudio.com** , but I'm allowed to proceed. Shou...
1
When ever I get to a new challenge my cursor refuses to go to the end of a closing tag. I do that so I can start a new line for my code. Instead it will start in the middle of my code and then jump down two lines in the middle of other code. Seriously needs fixing.
Challenge http://www.freecodecamp.com/challenges/waypoint-remove-classes-from- an-element-with-jquery has an issue. right now, whenever the camper write the removeClass() function -even before specifying the class he/she wants to be removed-. the application automatically marks the challenge as completed. The reason...
0
Add color to link in panel header (hover, visited...)
http://jsfiddle.net/7kJcG/ Idk, make them white or something
1
As before we can have a private filed with unsupported named type, but in recently update(gomobile version +24a199a Wed Jan 13), it breaks this rule, that makes a huge impact to code, and make all types which want to be used for mobile narrows down to supported basic type.... Before: The following type is working ...
as golang.org/s/gobind says: Passing and returning a struct S promotes it to *S for the purpose of generating bindings. Currently this is not implemented.
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.8 * Operating System version: Ubuntu 20.04 * Java version: openjdk 1.8.0_265 ### Steps to re...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: xxx * Operating System version: xxx * Java version: xxx ### Steps to reproduce this issue 1. ...
0
Some reference code: https://glitch.com/edit/#!/occlusion-roughness-metalness Retrieving old discussion from : #14940 > Merging metal/rough/AO textures on the same texture on different channels is > something we had in our plan for features to support in the GLTFExporter > since the beginning. Actually I had it on ...
There're duplicate code: * https://github.com/mrdoob/three.js/blob/dev/examples/jsm/postprocessing/EffectComposer.js#L246-L316 * https://github.com/mrdoob/three.js/blob/dev/examples/jsm/postprocessing/Pass.js#L8-L78 **Describe the solution you'd like** Re-export Pass and FullScreenQuad in EffectComposer.js
0
I'm interested in support for printing out code files. Is there a way to cause the editor to render the full file into the DOM (as opposed to only the visible set of rows)? That seems like the main hurdle.
At the moment these commands apply to the whole file. Could they apply to the selection if there is one?
0
The validation works unexpected with my below steps to reproduce ### Expected results The error "Control labeled "Metrics" cannot be empty" should not appear when delete Metrics ### Actual results The error "Control labeled "Metrics" cannot be empty" appears when delete Metrics, but it not happens after refresh p...
PR #7231 updated visualization validation to take place in the exploreReducer.js `SET_FIELD_VALUE` action. This validation does not take into account any `controlOverrides` on the visualization. Specifically, the Table viz removes any validatation from the `metrics` row control. This means attempting to create a Tab...
1
**Matt Young** opened **SPR-6859** and commented I posted this on the forum, but with no response... I wondered if you all could look into it. I was stubbing out some code that I'd like to run on a schedule, and just to test it, I have it running once every 60 seconds. I noticed that in my logging, the method seem...
**Carsten Mjartan** opened **SPR-3202** and commented I'm using Freemarkers TagLib-Support to make use of spring form tags in freemarker views. Example: page.ftl <#assign form=JspTaglibs["http://www.springframework.org/tags/form"]> ... <`@form`.form commandName="registrationData" method="post"> ... <`@for...
0
Hi! **Postive:** I've been so happy with Atom, it replaced my IntelliJ/PHPStorm and other IDE's incl. Vim and Sublime Text as a general purpose editor and sometimes IDE for a wide array of languages. **Negative:** Now here is my problem: The startup-time is frustrating. Can't I run atom as a daemon during star...
Status: This is an ongoing effort. Via @kevinsawicki The current plan is to investigate what is slow on startup, optimize it, and then investigate concatenating all the CoffeeScript requires to save eval time on startup. ### Merged Changes Times below are were taken with a Macbook Pro on OS X 10.8.5 with 2.6 Ghz ...
1
# Description of the new feature/enhancement As a user with multiple tabs opened in Windows Terminal When I click and drag one tab to an area clear of Windows Terminal I want the tab to open in a new instance of Windows Terminal So that I can see both terminals side by side Currently,...
# Environment Windows 10 1903 build 18362.418 Any other software? # Steps to reproduce This happened suddenly after a recent windows 10 update , left my laptop installing some updates at night , to find this strange error in the morning when trying to ssh from a debian WSL instance # E...
0
var fs = require('fs'); var path = require('path'); for (var i = 0; i < 1000; i++){ fs.open(path.join(__dirname, "test.txt"), "a", function(err, fd) { if (err) { return; } fs.writeFile(fd, i + "\n"); }); } When...
To repro: 1. Upgrade Atom on Windows to 0.36.0 of Electron 2. Open a file 3. Renderer crash: # ChildEBP RetAddr 00 0018dbf8 777f492e ntdll!NtTerminateProcess+0xc 01 0018dcd0 74ee7b42 ntdll!RtlExitUserProcess+0x9e 02 0018dce4 6d173fac KERNEL32!ExitProcessImplementation+0x12 03 ...
1
### System Info transformers-cli env * `transformers` version: 4.24.0 * Platform: Linux-5.4.0-99-generic-x86_64-with-glibc2.17 * Python version: 3.8.12 * Huggingface_hub version: 0.10.1 * PyTorch version (GPU?): 1.12.1+cu102 (True) * onnxruntime-gpu: 1.13.1 * Tensorflow version (GPU?): not installed (...
## Environment info * `transformers` version: 4.8.2 * Platform: Databricks * Python version: 3.7.10 * PyTorch version (GPU?): GPU * Using GPU in script?: No * Using distributed or parallel set-up in script?: Yes ## Information Model I am using : camembert-base: The problem arises when i try to use a t...
0
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke-serial/1724/\n\nFailed: [k8s.io] [HPA] Horizontal pod autoscaling (scale resource: CPU)\n[k8s.io] [Serial] [Slow] ReplicaSet Should scale from 5 pods to 3 pods and\nfrom 3 to 1 {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:62\n Expected error:\n <*errors.errorString | 0xc821114a70>: {\n s: \"Only 4 pods started out of 5\",\n }\n Only 4 pods started out of 5\n not to have occurred\n \n\nPrevious issues for this test: #27394 #27660 #28079\n\n"
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gce-serial/2033/\n\nFailed: [k8s.io] [HPA] Horizontal pod autoscaling (scale resource: CPU)\n[k8s.io] [Serial] [Slow] Deployment Should scale from 1 pod to 3 pods and from\n3 to 5 {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:49\n Aug 28 09:38:39.413: timeout waiting 15m0s for pods size to be 5\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/autoscaling_utils.go:284\n \n\nPrevious issues for this test: #30317\n\n"
1
* Electron version: 1.3.3 * Operating system: win10 What I do: 1. Use typescript to compile a react project with sourcemap enabled. 2. Do not use any package tools like webpack or browerify, aka, directly use require() in browser process. 3. Open the electron instance to debug. What I expect: 1. The c...
Hey, I've noticed that source maps are not applied on first run. After launching Electron, the user needs to re-load the page in order for the source maps to "kick in." Here is a repo where you can reproduce the problem: test-electron-source-maps (in branch test/first-run)
1
(This is a feature that I've been working on (see #21493 (comment)). I open this issue so that relevant PRs can be better tracked.) ## 🚀 Feature and Motivation Better CMake integration. Currently there are a lot of inconsistency and redundancy between the Python setup scripts and CMake scripts (duplicated env chec...
## 🐛 Bug I am getting above error while doing inference after quantization of my model. a. This happens after 62nd epoch. If I quantize using any weights till 62nd epoch, every thing is fine. b. If I use partial (1/3) data to train my model, I see no issue. c. Only with "qnnpack". No issue with 'fbgemm' d. ...
0
For example, now I have a parameter 'D' in the model. Now I want to replace the 'D' with 'C', where 'C = a+b'
For example, now I have a parameter 'D' in the model. Now I want to replace the 'D' with 'C', where 'C = a+b'. Is there anyway in pytorch that can achieve that replacement while keeping the backpropagation between 'C' and 'a+b'. (e.g., training the model will update the value of 'a' and 'b'. I've tried D.data = C, ...
1
##### Issue Type: Bug Report ##### Ansible Version: ansible 1.7.2 ##### Environment: Management: Mac OS X Target: Debian stable ##### Summary: I have a SSL certificate stored in a vault file, one of my task copies it to a file (using the copy module) on the remote server. This worked perfectly on 1.7.1, on...
I'm in Melbourne, Australia and I'm using ansible to set up a VM on Rackspace in their DFW location. Ansible runs take a very, very long time mainly because paramiko sets up a new connection for every task. I'm aware that I can switch to using "vanilla" ssh and thus gain the benefit of a ControlMaster/ControlPersis...
0
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): No...
CHECK macros from `platform/logging.h` leak out into `core/public` headers which clash with users of glog. One path is through `core/platform/allocator.h`: In file included from external/org_tensorflow/tensorflow/core/platform/logging.h:25:0, from external/org_tensorflow/tensorflo...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The application should compile without error ## Current Behavior When passing a component to the `withStyles` function I get this error TS2345: Argument of type 'typeof ApplicationMenu' ...
This issue applies to the `v1-beta` branch. The typescript type definitions of `StyleRules` and `Theme` are not compatible and cause a typescript type conflict. As an example consider the following typical case: import { withStyles, Theme, StyleRulesCallback } from 'material-ui/styles'; c...
0
# Summary of the new feature/enhancement Toggle to remove/replace the shortcut arrows on desktop icons # Proposed technical implementation details (optional) It's a simple registry edit, detailed at https://www.windowscentral.com/how- get-rid-shortcut-arrows-windows-10 That said, many people dislike mucking a...
Bring back the power toy for removing and replacing the overlay arrow on on shortcut icons.
1
>>> import requests >>> requests.get("https://r8---sn-q4f7snss.googlevideo.com") Traceback (most recent call last): File "/usr/local/lib/python3.4/dist-packages/requests/models.py", line 370, in prepare_url host = idna.encode(host, uts46=True).decode('utf-8') File "/usr/local/...
requests v2.12.0 >>> import requests >>> requests.get('http://vluki_develop_624_solr:8983/solr/vluki') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 70, in get return request('get', ...
1
I have `DataFrame`: import pandas as pd import datetime as datetime a = pd.DataFrame({'id': [1, 2, 3, 2], 'my_date': [datetime.datetime(2017, 1, i) for i in range(1, 4)] + [datetime.datetime(2017, 1, 1)], 'num': [2, 3, 1, 4] }) prin...
xref #14873 (boolean casts) xref #14849 (datetime) #### A small, complete example of the issue import pandas as pd def predictions(tool): out = pd.Series(index=['p1', 'p2', 'useTime'], dtype=object) if 'step1' in list(tool.State): out['p1'] = str(tool[tool.State ...
1
### Description For instance, I have two dockerized FastApi application running. My `App1` always calls `App2`. Is it possible to route calls to `App2` in a simple way from `App1`, without writing duplicate endpoints in `App1` and using requests lib to call endpoints in `App2`? Something in lines of Sub Applicati...
Hi I have identified a problem related to the way the integrated swagger interprets lists in formdata. So this is the endpoint I use: > @router.patch("/clients/{client_id}") > def patch_client(client_id: int, > db: Session = Depends(get_db), > email: typing.Optional[List[EmailStr]] = Form(None), > phon...
0
I have found that the class "modal-open" is being applied too late to the body tag. Because of this, there is a brief appearance of double scroll bars. This is happening in Firefox (22.0) and Chrome (28.0.1500.72 m), both desktop. It happens in IE10 as well but because of the scroll bars overlaying content it is not ...
Hi, sorry for bad English. I want to tell that there is issue with opened modal (2 scrollbars) if javascripts included in head and not in the end of page as assumed in examples. The reason is here https://github.com/twbs/bootstrap/blob/3.0.0-wip/js/modal.js#L238 $body is empty
1
Symfony's YAML parser/dumper behaves differently than the PHP PECL yaml parser/dumper. Example code: <?php require_once("Symfony/Component/Yaml/Parser.php"); require_once("Symfony/Component/Yaml/Yaml.php"); require_once("Symfony/Component/Yaml/Inline.php"); require_once("Symfony/C...
Hey guys! See the old discussion here: http://groups.google.com/group/symfony- devs/browse_thread/thread/d7da04699033ec07 Currently, there's no standard way of (when you're not using a CDN) retrieving the absolute URL to an asset. This would be useful, for example, when generating asset paths in a template for an e...
0
Using Firefox 22.0 on a MacBookPro, http://twitter.github.io/bootstrap/components/ The Scrollspy works, but when clicking on an actual item on the side nav, Error console give this: An empty string is passed to GetElementById() cheers!
You cannot access on any left-side menu link with Firefox. Tested with Firefox 22.0 on Mac
1
I've recently did a profile of my project, haven't done that in 4-5 months, since then three.js version has been upgraded several times. Currently on `0.132.2` So, profile shows up that `getProgramCacheKey` takes up close to 20% of the entire time: ![image](https://user- images.githubusercontent.com/5939063/132960...
(*** This section is for bug reports and feature requests only. This is NOT a help site. Do not ask help questions here. If you need help, please use stackoverflow. ***) ##### Description of the problem As far as I understand, UVs cannot currently be applied by polygon-vertex and must be applied directly to the ver...
0
After several hours, still no success. Next 8 was ok. I created this issue to track investigations. @app/web | > Using external babel configuration | > Location: "/Users/steida/dev/nberg/packages/web/babel.config.js" | [ info ] bundled successfully, waiting for typecheck results ... ...
# Bug report ## Describe the bug We had a working worker file prior to the update to canary, afterwords we get a 'window is undefined' error and the functionality of our worker is never fired or fulfilled. We are already on the canary of next-workers which has a similar bug fix. ## To Reproduce 1. add next-work...
1
When multiple versions of the documentation are available, it tends to pollute google results. As a way to prevent that, it would be good to always have the latest stable release available under /current/, and have all previous versions + the master docs contain canonical links to the current docs like: ...
# Motivation and Summary When someone uses a web search engine to find a crate’s documentation, they are likely to wind up on the documentation for a random older version of that crate. This can be confusing and frustrating if they are working on a project that depends on a more recent version of that crate. As an e...
1
* **Electron Version:** 4.0.^ * **Operating System:** Ubuntu + Xfce 18.04 x64 hi, when i want to change my keyboard layout with "Alt+Shift" shortcut. in electron apps like * notable * post man * this test one menu will open ( check screenshots ). i don't have any shortcut on my app or OS for this...
I'm reluctantly convinced that Deno will replace Node as the most used server- side javascript technology. Are there any plans in place already for the development of an Electron that runs on deno? If not, my suggestion is that such development is inevitable and I'd like to see it started early versus late. This is ...
0