text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
Working with negative exponents has some very odd behaviors, to say the least. Running the internals of the `^` function gives different results than `^` itself, evaluation success changes based on whether a variable is replaced with its value, and `@code_*` forms are convinced that the result should always be of typ...
As discussed in https://discourse.julialang.org/t/confusing-difference- literal-vs-variable/13515/5 it would be good if this is documented somewhere. The explanation of @StefanKarpinski in this thread will be helpful: > This was a controversial change and there are still many people who are not > entirely comfortabl...
1
**Migrated issue, originally created by Marcin Jabrzyk (@bzyx)** Just tried to create URI connection string where user have password with '+' character, SQLAlchemy gives no clue in error and connecting to database using psql works fine. Example URI: SQLALCHEMY_DATABASE_URI = "postgresql+psycopg2://user:user+@so...
**Migrated issue, originally created by Anonymous** AFAIK, '+' symbol only needs to be unquoted to separate form values from URL. But why function _parse_rfc1738_args in sqlalchemy/lib/sqlalchemy/engine/url.py uses unquote_plus on password!? This is wrong, I think. Following lines of code are replacing '+' symbol ...
1
**Mark Fisher** opened **SPR-8017** and commented This appears to be a schema issue since the 'beans' element is enabled within a sequence where it would always be the last type. * * * **Affects:** 3.1 M1 **Issue Links:** * #14525 XML configuration: 'beans' element should be allowed between 'bean' elemebts ( ...
**Thomas Risberg** opened **SPR-8095** and commented This has been a problem in applications using `@Provider` combined with `@Autowired` where the bean look ups exhibit performance problems. These are quotes from a user: "Under heavy load we are experiencing heavy lock contention in DefaultListableBeanFactory.fi...
0
# Environment Windows build number: 10.0.19041.264 PowerToys version: PowerToysSetup-0.18.2-x64.msi # Steps to reproduce Run any of the apps listed below and try to install Power Toys # Expected behavior PowerToys should install as usual. # Actual behavior PowerToys says that some applic...
Windows build number: 10.0.19041.264 PowerToys version: v0.18.1 PowerToy module for which you are reporting the bug: auto update The update program requires to disable the Microsoft Store, Microsoft Text Input Application, Mail which are run at background. I can manually kill the process fo...
1
fn main() { static FOO: float = 10.0; match 0.0 { 0.0 .. FOO => (), _ => () } } /home/brian/dev/rust/src/test/run-pass/test.rs:5:15: 5:18 error: unexpected token: `FOO` /home/brian/dev/rust/src/test/run-pass/test.rs:5 ...
static foo: int = 16; fn main() { match 15 { 3 .. foo => io::println(~"success"), _ => fail!() } } /tmp/rusttest.rs:5:13: 5:16 error: unexpected token: `foo` /tmp/rusttest.rs:5 3 .. foo => io::println(~"success"), ...
1
The REPL's pathname tab completion inserts backslashes before spaces in paths, which results in an invalid string because `\ ` is not a valid escape. For example, if you create a file named `"foo bar"` julia> touch("foo bar") "foo bar" and then type `"foo<TAB>` in the REPL, you get: ...
Autocomplete in the REPL add `\` when needed to file names but julia1.0 functions do not like them julia> DelimitedFiles.readdlm("a\ a.txt") ERROR: syntax: invalid escape sequence julia> DelimitedFiles.readdlm("a a.txt") works
1
I'm not exactly sure what it's supposed to do, but it seems wrong: #![feature(macro_rules)] macro_rules! some_stmts( ({ $($s:stmt)* }) => ($($s)*) ) fn main() { some_stmts!({ //let a = 5; type a = int; }) } As is, we get: ...
Currently, the following macro argument grammar will not successfully parse anything, complaining of a "local ambiguity": $( $t:ty )* # The problem is that if it were to use the Rust parser to try to parse a type and fail, the whole task would be killed. This is easy to fix after that problem is...
1
After moving to numpy 1.10.0 b2 in Fedora rawhide, we're seeing bad gfortran flags when building scipy: Fortran f77 compiler: /usr/bin/gfortran -Wall -g -ffixed-form -fno-second-underscore -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=s...
numpy.distutils adds a `-ffpe-summary` command line option to gfortran, but it's apparently not supported by all versions of the compiler. See scipy/scipy#5380 Apparently this was added in `b354c00` \--- seems to affect also non-windows platforms.
1
**Description** Currently when a service is inlined in anoter service you get a log message like > Inlined service "abc" to "xyz". And at the same time you also get a log message that the service got removed > Removed service "abc"; reason: unused. IMO when it a service is inlined, it should not also log that ...
Hi, I am running Symfony 2.0.5 on Windows 7 with PHP version 5.3.8. When I am calling cache:clear on the console tool, I get this error sometimes (I do not know why): > C:\projects\cnc_agency\trunk>php app\console cache:clear > Clearing the cache for the dev environment with debug true > > [ErrorException] ...
0
CSG is a very important feature… other 3D frameworks have support for CSG built-in ( Babylon.js ), the only CSG I can find is the 7 years outdated plugin ( https://github.com/chandlerprall/ThreeCSG ) I propose that this plug-in gets updated for bufferGeometry and added to the three.js code base as an official plug-i...
Hello, It would be really convenient to have native support of separate repeat values for different types of maps (e.g. diffuse and bump). It is possible to use this setting through API, but it's a way more complex approach. StackOverflow discussion: https://stackoverflow.com/questions/14371385/can-a-three-js-mate...
0
* Output of `node_modules/.bin/electron --version`: 3.0.5 * Operating System (Platform and Version): travis ubuntu 14 * Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): the 2 series does not seem to have this issue **Expected Behavior** window.setTitle,...
* Electron version: 1.8.2 * Operating system: Deepin Linux 15.5 x86_64 ### How to reproduce * register 'CommandOrControl+C' to gloablShortcuts in main.js app.on('ready', function () { createWindow() // Then I register an shortcut const ret = globalShortcut.register('CommandOrC...
0
Hi, I used vec! the wrong way, and the compiler panicked. rustc -V -> rustc 1.0.0-dev (built 2015-05-17) Sorry, if this is a dup, I looked but did not see a report of this. fn main() { vec!([]); println!("Hello, world!"); } produces ~/code/rust/panic/ § RUST_BACKT...
Test case: fn main() { []; } Output: $ RUST_BACKTRACE=1 rustc test.rs test.rs:1:13: 1:15 error: internal compiler error: cat_expr Errd test.rs:1 fn main() { []; } ^~ note: the compiler unexpectedly panicked. this is a bug. note: we would a...
1
**Symfony version(s) affected** : 4.1.8+ **Description** Symfony now redirects routes with trailing slashes to routes without trailing slashes on its own, which seems unexpected and like a bad practice, as two URLs are treated equally which are not automatically equal by any official standards. URLs in my applica...
**Description** > The automatic 301 redirection from /foo/ to /foo was introduced in Symfony > 4.1. In previous Symfony versions this results in a 404 response. This is a "magic" behaviour which can be unwanted in certain cases. For example it can break AJAX calls via HTTPS. There should be an option to disable t...
1
Challenge Waypoint: Using typeof has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. This is not a challenge-specific error. It...
Challenge Waypoint: Say Hello to HTML Elements has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <h1>Hell...
1
Steps to reproduce: 1. Open a file in atom with the package `vim-mode` enabled. 2. Change the file permissions. 3. `Esc` `i` (switch to insert mode). **Atom Version** : 0.165.0 **System** : Mac OS X 10.10.2 **Thrown From** : Atom Core ### Stack Trace Uncaught Error: EACCES, open '/Users/Yvan/Downloads/t...
Perhaps put a message in the status bar or somewhere else, but catch it either way.
1
From the discussion in #18115 : we should add the Double Submit Cookies CSRF prevention strategy as described by https://www.owasp.org/index.php/CSRF_Prevention_Cheat_Sheet#Double_Submit_Cookies If doable, this should be the default CSRF prevention strategy used in symfony SE
It would be nice add cookies csrf token storage. Use case: we are having form which available for anonymous users (and bots like googlebot). Session starts on each time when this page open. And too much files was generated with session data.
1
Hello there. Doing a right click on a flash object opens up a context menu as expected, but the positioning in 2.0.0-beta.1 is wrong. This happens on both 32-bit and 64-bit builds for Windows and also on Ubuntu 64-bit. The positioning is correct in v1.8.2. Additional info: Windows 7 x64 Flash Player: 28.0.0.16...
* Electron version: 2.0.0-beta.1 * Operating system: Windows 10 and Ubuntu 16 (I cannot reproduce on macOS) ### Expected behavior We use `event.pageX` and `event.pageY` to position the context menu under the mouse and this used to work fine in Electron 1.7.x. ### Actual behavior The coordinates can easily end...
1
* * * ### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux Ubuntu 16.04 * **Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile de...
### System information * **Hardware** : AWS EC2 p2.16xlarge * **OS Platform and Distribution** : Linux Ubuntu 16.04 * **TensorFlow Serving installed from (source or binary)** : pip install tensorflow-serving-api pip install tensorflow-serving-api==1.11.0rc1 * **TensorFlow Serving version** : both 1.10...
1
The pull request to allow injecting ENV parameters introduced an issue when building the container. When a container is merged, the `mergeEnvPlaceholders` will duplicate existing placeholders. In a local project, where I had 9 `env()` parameters, this meant that the first 3 were duplicated 32768 times. Later when th...
The FileType currently prints the full qualified file system path to a file into the value attribute of the input field. This should be prevented at all costs inside the FileType (not in the template).
0
**Tobias Mattsson** opened **SPR-8728** and commented It would be really helpful if the profile attribute could take names of profiles that all has to be active. For instance: <beans profile="production,datacenter_us"> ... </beans> <beans profile="production,datacenter_eu"> ....
**Mark Fisher** opened **SPR-9654** and commented This can lead to an implicit "escaping" of the yet-to-be-initialized instance. It's more subtle than an explicit escape of a "this" reference, but it still allows the instance to be used before it is fully initialized (e.g. any explicit or implicit "this" references...
0
##### Description of the problem `Three.js` Github repository is more than **700mb** big. It sounds like this issue already came up and may be related to the Github history but I think that is getting **REALLY** big and that'd be great if there are some Git pros out there knowing how to deal with that! Note `git sh...
#####Git folder is too big, cloning repository last like 1 hour ![image](https://user- images.githubusercontent.com/25888114/55201005-f0488080-518e-11e9-89d8-126324fc772f.png) Is there a way this library "restart" git not to have that big git file ##### Three.js version * Dev * r103 * ... ##### Browser ...
1
What steps will reproduce the problem? If possible, include a link to a program on play.golang.org. 1. run `go test -coverprofile=coverage.out ./...` What is the expected output? coverage.out contains coverage all of the specified packages What do you see instead? ...
Duplicate strings can waste memory and cause lots of allocations, but may be cheaper at allocation time. Interning strings has a lookup cost, but can save memory and even CPU by reduced number of GCs. I'd like to have this choice, for when I know my strings are large and likely ...
0
**Context:** * Playwright Version: 1.2.1 * Operating System: Mac * Node version: 12.14.1 * Browser: Firefox, Webkit **Code Snippet** https://github.com/benoitjchevalier/playwright-focus npm install node run.js Observe lack of focus ring on some FF screenshots **Describe the bug** Hello there 👋 . W...
**Context:** * Playwright Version: 1.3.0 * Operating System: Linux/Docker * Node.js version: 14 * Browser: Firefox * Extra: https://try.playwright.tech/?s=nsosu **Code Snippet** // @ts-check const playwright = require("playwright"); (async () => { for (const browserType ...
1
Autocomplete in the REPL add `\` when needed to file names but julia1.0 functions do not like them julia> DelimitedFiles.readdlm("a\ a.txt") ERROR: syntax: invalid escape sequence julia> DelimitedFiles.readdlm("a a.txt") works
Autocompleted paths which include whitespaces lead to an error as the whitespaces are automatically masked with a leading single backslash see also https://discourse.julialang.org/t/invalid-escape-sequence/12154/2 julia> isfile("c:\\temp\\some folder with whitespace\\x.jl") true julia> ...
1
# Environment Windows build number: Microsoft Windows [Version 10.0.18363.836] PowerToys version: v 0.18.1 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run (ish) # Steps to reproduce It used to be "Press CTRL+WIN"... An alternative: * Open chrome (or...
Like the header says, need to be able to centralize the taskbar items as I have a 49" ultrawide and the clock and background apps are far too far to the right and too small. Likewise, the start menu is too far to the right to make it comfortable to use all the time. I know there's a way to enlarge the icons, but it'...
0
This url http://doc.rust-lang.org/core/?search=Option%3A%3Aunwrap_or_else currently returns two identical results A search for, "Option::unwrap_or_else" yields a direct hit. A search for, "Option unwrap_or_else" yields no results found during an investigation of #18498
$ brew install llvm --HEAD $ ./configure --llvm-root=$(brew --prefix llvm) --disable-docs --disable-valgrind --enable-debug --enable-optimize --enable-optimize-tests ... configure: using custom LLVM at /usr/local/opt/llvm configure: configure: found ok version of LLVM: 3.7.0svn .....
0
I'm trying the `generate package` command described in the Create your first package docs, but it's not in there (version 0.137.0)/doesn't show up in the Command Palette. It is, however, available from the top menu under Packages > Package Generator.
It looks like packages using activation commands don't have those commands appear in the command palette until the package is activated. Command palette at startup with untitled editor window: ![screen shot 2014-10-15 at 5 13 45 pm](https://cloud.githubusercontent.com/assets/671378/4655799/746ca7aa-54c9-11e4-86ce-f...
1
#### Code Sample, a copy-pastable example if possible from pandas.io.json import json_normalize json_normalize({'A': {'B': [{'X': 1, 'Y': 2}, {'X': 3, 'Y': 4}]}}, ['A', 'B']) Note: change from `json_normalize({'A': {'B': [1, 2]}}, ['A', 'B'])` to distinguish from #21608 #### Problem descript...
Current conversion of R objects into Python usng `pandas2ri.ri2py` does not work for the `<class 'rpy2.robjects.vectors.ListVector'>` object. As noted here, `pandas2ri.py2ri()` and `pandas2ri.ri2py()` are current methods to handle conversion. However, previous deprecated `com.convert_robj()` correctly converts the R ...
0
There is a problem when i use validation_groups when i render the form, lets say: class Profile { /** * @var string $phone * * @ORM\Column(name="phone", type="string", length=255, nullable=true) * @Assert\NotBlank(groups={"signup"}) */ pr...
The `ValidatorTypeGuesser` does not consider the current form's `validation_groups` option when guessing type. This could be fixed by passing the options array to the guesser methods. The signature of the `FormTypeGuesserInterface` methods would look like this: function guessType($class, $property, arr...
1
# Environment Windows build number: Microsoft Windows [Version 10.0.18912.1001] Windows Terminal version (if applicable): commit 2da5b0b # Steps to reproduce Build a terminal, open WSL profile. 1. If setting(profiles.json) has startingDirectory, erase it. **At commit` 2da5b0b`, there is...
* Your Windows build number: `Microsoft Windows [Version 10.0.18362.86]` * What you're doing and what's happening: Setting the starting directory for wsl in `profiles.json` doesn't make it point to the right directory. 1. Take the config below :- { "startingDirectory": "C:/Users/jo...
1
##### Description of the problem Duplicate request handling in #12434 In case of an error on the request, we should notify the rest of the duplicate `.load()` callbacks (`onError`). Similarly, we can call `onProgress` to every duplicate `.load()` call callback. ##### Three.js version * Dev * r87 * ... ####...
**Describe the bug** This glb file sofa.zip which made and exported from Blender, has diffuseMap and aoMap. When loaded to threejs scene using GLTFLoader, the aoMap display incorret. ![image](https://user- images.githubusercontent.com/10785634/114496195-ffa1a600-9c51-11eb-91fc-e6340ecfcc63.png) I guess they has...
0
# Bug report **What is the current behavior?** When trying to run production build of app errors out on `node dist/main.js` TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type number (3320) `main.js` const uiBasePath = path_1.default.dirn...
# Bug report **What is the current behavior?** Page no rendering `main.js` return error : `Uncaught SyntaxError: Unexpected token '!=='` **If the current behavior is a bug, please provide the steps to reproduce.** I have 2 apps : * shell : manager, head of app * fragment: one of the multiple apps. Will b...
0
**Ludovic Praud** opened **SPR-8375** and commented **How to reproduce the problem** With a ModelAttribute such as : class Model { List<String> getItems(); } With a JSP such as : <form:input path="items[0]" /> within an HTML form. POST the form with modified items attri...
**Darren Mills** opened **SPR-8282** and commented We have a WebSphere cluster configured with session replication between each node. In order to accomplish this, all objects that end up in the session must be Serializable. We are using the Joda Date/Time Converters in our domain objects which could be contained wi...
0
# Checklist * 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 already fixed in the master branch. * I have included all related issues and possible dup...
# 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
# Examples bug report ## Example name with-ant-design ## Describe the bug Antd v4 (alpha) builds should include only actually used icons. But in `with- ant-design` example all 1Mb of icons are bundled. ## To Reproduce Steps to reproduce the behavior, please provide code snippets or a repository: 1. Download ...
# Bug report ## Describe the bug Importing react-dom in a page or in one of its dependent component will cause react-dom.production.min.js to be included in the page bundle, adding about 32K gzipped size to a page. This is pretty common, examples: * ReactDOM.createPortal * `react-transition-group` also import...
0
# 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): PowerToys Run # Steps to reproduce Start PowerToys run with Austrian/German localization and try to use `,` as dot for calculation....
I'm using version 0.18 of PowerToys and I'm talking about the integrated calculator in PowerToys Run here: In the german area, we use the comma and not the period as a decimal- delimiter. The current version of the calculator in PowerToys Run only accepts periods as decimal-delimiter. Please add support for the comm...
1
Today I discovered a strange behavior: When I am writing a DataFrame with `.to_excel()`, it cuts columns. Compared with the same DataFrame with `.to_csv()` or `.head()`, you can see the difference, that the last 8 columns are missing. You can reproduce this by downloading `Features.pkl` from here and then: ...
#### Code Sample, a copy-pastable example if possible I often find my self doing In [2]: df = pd.Series(index=pd.MultiIndex.from_product([['A', 'B'], ['a', 'b']])) In [3]: df.index.get_level_values(0).unique() Out[3]: Index(['A', 'B'], dtype='object') #### Problem description The above ...
0
### What problem does this feature solve? Media queries are a regular concern for anyone building a complex responsive web application in Vue. Today, this means each component has a style section with base css as well as media queries. Though this functionality is not broken, it is error prone and can cause subtle c...
Hi. I would like to insert the template of a component in a different element but maintain the components tree structure. To be more precise, I have a component (bootstrap modal) which is rendered in the middle of the html content. Now the problem is that the styles of the modal inherits from parent, so what I want t...
0
Implement change detection on properties only. (This is needed to allow work on the HTML compiler to proceed.)
We would like to implement bare bones change detection so that we can unblock ourselves for other parts of the system and work on them in parallel. https://github.com/mhevery/angular/blob/master/modules/change_detection/src/watch_group.js https://github.com/mhevery/angular/blob/master/modules/change_detection/src/...
1
**Is this a request for help?** (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.): NO **What keywords did you search in Kubernetes issues before filing this one?** (If you have found any duplicates, you should instead reply there.):...
**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
What steps will reproduce the problem? If possible, include a link to a program on play.golang.org. 1. http://play.golang.org/p/QSuUU42ggi (It's a minimalish repro based on termbox-go) 2. go run on darwin amd64 What is the expected output? Do nothing and it should time ...
by **rpzrpzrpz** : [root@rpzcentos rpzcache]# go version go version go1.3.1 linux/amd64 net.ListenUDP("udp4",@gsrvaddr) glen,grxadd, gerr := gconn.ReadFromUDP(gbuf[0:]) go funcprocessbytes(grxadd,gbuf[0:glen]) There is no way to call a go routine after calling ReadFro...
0
**I'm submitting a ...** (check one with "x") [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
If I create a new angular 2 project using alpha 44 from NPM and attempt to load the webworker bundle in my TypeScript project I get the following errors during compilation. It looks like the facade types are not loading for some reason. node_modules/angular2/src/core/change_detection/parser/locals.d.ts...
0
Hi, I am new to SVM and get a little confused when using SVC: In the document, its description says > The multiclass support is handled according to a one-vs-one scheme. while in input argument fields, it says > decision_function_shape : ‘ovo’, ‘ovr’, default=’ovr’ I personally tried both ovo and ovr with linear...
The docs should probably state more cleary that decision_function_shape in SVC doesn't influence the multi-class strategy used in SVC but is only a hack to satisfy the sklearn API - and it should probably explain there or in the dev docs how it is done.
1
I'm requesting we reconsider the unconditional use of "urllib3.contrib.pyopenssl.inject_into_urllib3()". Added 7 years ago, the goal was to "add SNI support for Python 2" #749 "urllib3.contrib.pyopenssl.inject_into_urllib3()" is described to "Monkey- patch urllib3 with PyOpenSSL-backed SSL-support.": (https://githu...
Requests added the `requests[security]` dependency many, many years ago because the ssl module in Python's stdlib was lacking some features. Since PEP 466 has been implemented in Python 2.7.9, the ssl module supports hostname verification and SNI. 2.7.9 was released in 2014. Python 3.7.0 improved the situation even f...
1
**Szczepan Kuzniarz** opened **SPR-6268** and commented In the following example: package test @Controller class TestController { @RequestMapping(value = "/testGroovy.do", method = RequestMethod.GET) public String handler(HttpServletRequest request) { return "succes...
**Naresh Narayana** opened **SPR-5749** * and commented It seems that AOP is not working for Groovy beans. * * * **Affects:** 2.5.6 **Reference URL:** http://forum.springsource.org/showthread.php?t=71389 **Attachments:** * testProject.zip ( _10.75 kB_ ) **Issue Links:** * #10935 Annotated Groovy controll...
1
I've pulled together a list of questionable licenses that license scanners will pick up for Airflow. Ideally we should look to remove the dependencies from the project. Project | License | PR ---|---|--- astroid | LGPL-3.0 | certifi | MPL-2.0 | chardet | LGPL-2.1 | JayDeBeApi | LGPL-3.0 | ldap3 | LGPL-3....
We need to avoid GPL. > Apache 2 software can therefore be included in GPLv3 projects, because the > GPLv3 license accepts our software into GPLv3 works. **However, GPLv3 > software cannot be included in Apache projects. The licenses are > incompatible in one direction only, and it is a result of ASF’s licensing...
1
#### System information (version) * OpenCV => 3.1 * Operating System / Platform => Windows 64 Bit * IDE => Android Studio #### Description `StreamConfigurationMap map = characteristics.get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP); int bestWidth = 0, bestHeight = 0; float aspect = (float) width ...
##### System information (version) * OpenCV => 3.4.1 * Operating System / Platform => Android 5.0.1 * Compiler => -/- ##### Detailed description The Camera2 API Classes Camera2Renderer and JavaCamera2View are not functioning correctly. At least on my phone (Huawei P8, Android 5.0.1). JavaCamera2View crashes ...
1
when added into the vertices PointCloud new vertices, adding occurs, because: in function setParticleBuffers When copying in vertexArray of vertices, not all vertices are copied, because: vertexArray declared as Float32Array and Float32Array does not resize so I suggest: in function setParticleBuffers...
##### Description of the problem This form is for three.js bug reports and feature requests only. This is NOT a help site. Do not ask help questions here. If you need help, please use the forum or stackoverflow. Describe the bug or feature request in detail. **Are there any plans to port the three.js library to...
0
It would be nice if http://flask.pocoo.org/docs/0.12/deploying/mod_wsgi/ and hence `flask/docs/deploying/mod_wsgi.rst` sported some information on Python 3's venv virtual environment: The information needed to deploy with `venv`is available here: https://modwsgi.readthedocs.io/en/develop/user-guides/virtual- enviro...
It says in the documentation (the last section - "Working with Virtual Environments"): > For Python 3 add the following lines to the top of your .wsgi file: > > > activate_this = '/path/to/env/bin/activate_this.py' > with open(activate_this) as file_: > exec(file_.read(), dict(__file__=activate_t...
1
It seems that whitespace in a character array is treated as if it is zero. An example of this is shown below with details about the environment. This seems to match up with how character arrays work. Still this seems a bit surprising from a Python perspective. Am trying to understand if this is intentional and also i...
The following table shows the extents of the problem x : str sc = np.str_(x) arr = np.array(x, np.str_) `x` | `bool(x)` | `bool(sc)` | `bool(arr[()])` | `bool(arr)` | `sc.astype(bool)` ---|---|---|---|---|--- `''` | `False` | `False` | `False` | `False` | `ValueError` `'\0'` | `True` | `...
1
From @Zanthras on 2016-08-09T18:06:24Z ##### ISSUE TYPE * Bug Report ##### COMPONENT NAME networking/ios_config ##### ANSIBLE VERSION ansible 2.1.0.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION Fully default ...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME apt_repository_module ##### ANSIBLE VERSION ansible 2.1.1.0 ##### OS / ENVIRONMENT Ubuntu 14.04 ##### SUMMARY I tried to add ppa on ubuntu 14.04 server but getting "invalid repository" error. But when I try to add it from the server cli,...
0
Describe what you were doing when the bug occurred: 1. Can't describe. Just found devtools Components tab w/ this error 🤷🏻‍♂️ * * * ## Please do not remove the text below this line DevTools version: 4.10.1-f160547f47 Call stack: at store_Store.getElementAtIndex (chrome- extension://fmkadmapgofadopljbjfkapdko...
Describe what you were doing when the bug occurred: 1. Open React Devtool 2. Select the Component tab 3. Got below error * * * ## Please do not remove the text below this line DevTools version: 4.8.2-fed4ae024 Call stack: at Store.getElementAtIndex (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/buil...
1
Hey! Is there a way to pass in a sourcemap to `createBundleRenderer()`? There's an options argument, but it isn't documented (happy to write these docs if you point me towards the correct bit of source: I couldn't find it). Currently, I'm getting this error, which isn't too understandable: ReferenceE...
### Vue.js version 2.x.x ### Reproduction Link Because it is a ssr issue and hard to provide a running demo online, please see **Steps to reproduce** ### Steps to reproduce * clone the https://github.com/vuejs/vue-hackernews-2.0.git repostory * edit file `src/\components/ItemList.vue` to cause an error. For ...
1
Gentlemen! I want to filter multidimensional signal with 1D convolutional filter using `scipy.signal.fftconvolve` (along specified axis). Cannot you such an option to specify axes to filter to `scipy.signal.fftconvolve`?
As mentioned in #337 (comment), fftconvolve/convolve/correlate/etc could use an axis= parameter. An example application is computing the CWT in one step. nitime's version of fftconvolve has this.
1
Would love it if Launcher could fully replace WIN + S... thoughts?
Currently, in Windows 10 (1903), when clicking Win+R, it opens the "Run" window command. This functionality is very limited - the user must remember the exact command, or the exact file. No auto-correct, and if the user is wrong, it only brings an error message that says the file or command was not found. Can you p...
1
### Is there an existing issue for this? * I have searched the existing issues ### This issue exists in the latest npm version * I am using the latest npm ### Current Behavior package.json : { "name": "xxx", "files": ["./dist/"] } running `npm publish`, the dist will not be packed...
### Is there an existing issue for this? * I have searched the existing issues ### This issue exists in the latest npm version * I am using the latest npm ### Current Behavior When using leading periods in paths within the `files` section, the path is not included in publishing. This feels very inconsistent ...
1
### Describe your issue. ** operator raises a sparse matrix to a power, but it is element-wise power when we use it on .A of the same sparse matrix. I am not sure this is a bug in numpy or scipy, or if it is intentional. It at least looks like an inconsistency between numpy arrays and scipy.sparse ### Reproduci...
### Describe your issue. Currently, applying the `**` operator to a sparse array implements the `numpy.linalg.matrix_power` function. This is not compatible with the `np.array` implementation of `**`, which does element-wise power. This should be fixed as part of the migration from sparse "matrices" to sparse "array...
1
## Bug Report **Current Behavior** I am upgrading to babel v7.0.0. I am using mocha for my unit tests, v6.1.4. In `mocha.opts` I have specified `@babel/register` as the compiler and `@babel/polyfill` for the necessary polyfills. My tests run fine except when spreading objects. Everywhere that an object is being ...
### Is this a bug report or feature request? More a discussion which may leads to a feature request in `@babel/preset-env`. ### Summary The `useBuiltIns` features is great but its usage may not be appropriate for libraries because they affect the global scope. `@babel/plugin-transform-runtime` approach is nice bu...
0
Should this program work? package main type T interface { m() interface {T} } type foo struct { } func (f *foo) m() interface {T} { return &foo{} } func main() { var t T t = &foo{} t.m() } It seems to co...
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? `go1.6.2` 1. What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" 1. W...
1
Errors for use of non stable APIs are non-obvious. For example: $ deno run --allow-read --allow-write main.ts Compile file:///dev/deno/main.ts Download https://deno.land/std@0.50.0/fs/copy.ts Download https://deno.land/std@0.50.0/fs/ensure_dir.ts Download https://deno.land/std@0.50.0/fs...
I'm trying the following script and I get a few errors. index.ts import { exists } from "https://deno.land/std/fs/mod.ts"; const found = await exists('/folder'); console.log('Found:', found); Error: error TS2339: Property 'utime' does not exist on type 'typeof Deno'. ...
1
MRE: > julia@1.5.2 julia> methods(show); julia> length(methods(show)) 304 julia> @time methods(show); 0.000278 seconds (966 allocations: 46.531 KiB) > julia@master julia> methods(show); julia> length(methods(show)) 314 julia> @time method...
In version 1.4.2, the following is evaluated pretty much instantly: julia> using LinearAlgebra julia> mul! mul! (generic function with 154 methods) However, in the latest nightly build from commit `f130d9b`, the `mul!` takes multiple seconds to evaluate.
1
* VSCode Version: 1.2.0 * OS Version: Linux 4.4.0-22-generic #40-Ubuntu SMP x86_64 x86_64 x86_64 GNU/Linux Escape is bound to close the new terminal window feature, this is frustrating since some terminal applications use escape as a key to do certain things ( such as escape the application ). I am now stranded...
Integrated terminal master issue: #143 Open question: Currently pressing `esc` will hide the terminal, this can be a problem for some terminal programs, for example `vim`. Perhaps this should be configurable?
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.6.x, tag2.7.1 * Operating System version: mac * Java version: jdk1.8 ### 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: 2.7.7 * Operating System version: CentOS 7 * Java version: 1.8.0_202 ### Steps to re...
0
Pretty much like the title says, private methods should stay private: ### input: class NoRespect { private priv() {} pub() { return this.priv(); } } ### actual output: var NoRespect = (function () { function NoRespect() {} NoRespect.prototype.p...
Currently private functions are put on the prototype of a function so they are not really private. I suggest adding them as normal functions in the scope of the class so that they are in fact only accessible to the class. Example module Example { export class ExampleClass { ...
1
* VSCode Version: Version 0.10.11 (0.10.11) * OS Version: OS X 10.10.5 Steps to Reproduce: 1. Create a javascript file and enter following code: expect(confNy.vars['config']).to.equal( `proxy=nyproxy.company.org1, port=8081`); 1. The code is highlighted this way: ![screen1](ht...
_From@f111fei on February 23, 2016 6:14_ version: 0.10.10 ![2](https://cloud.githubusercontent.com/assets/7069719/13243197/80630302-da37-11e5-9ccf-a63d6f23433d.png) `letter` _Copied from original issue:microsoft/vscode#3270_
1
So I came across this, and the message I received asked me to create a bug report. Mac OSX 10.9.3, x86_64 Original error: rustc -L /usr/local/lib/glfw -L lib/glfw-rs/lib -L lib/gl-rs/lib -L lib/cgmath-rs/lib -O --out-dir=target src/main.rs src/main.rs:79:14: 79:22 error: internal compiler error: ...
fn main() { let v = &[]; let it = v.iter(); } vec-ice.rs:3:13: 3:14 error: internal compiler error: borrow-vec associated with bad sty: &ty_err vec-ice.rs:3 let it = v.iter(); ^ (Doesn't happen with `.slice`.)
1
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened The `on_failure_callback` is invoked twice when a DAG fails due to a timeout. This leads to duplicate failure alerts in our Slack channels. It happens reliably and the invocations are roughly 5 seconds apart. Context and fu...
### Apache Airflow version 2.4.2 ### What happened I have applied task callback for failure and success case using Cluster policy for the specific dag https://gist.github.com/Bowrna/7fdca8b546fc274edd068ffdae5b76f9 I am attaching the cluster policy that I have applied here. https://gist.github.com/Bowrna/199489...
1
Not sure if this is a duplicate, but, if I have a function like: function f() a = 1 b = 1 f(a b) end then I get an error like: julia> include("test.jl") ERROR: syntax: missing comma or ) in argument list while loading /home/simon/Desktop/test.jl, in e...
A code example where Julia does not abort gracefully: `(::Type{T})(x::Int) where {T<:Integer} = println("crash")` entered in the REPL leads to: > crashcrashcrashcrashcrash > crash > > crash > > crash > > corrupted double-linked list > > signal (6): Aborted > while loading no file, in expression starting on l...
0
Numpy.power(a,b) doesn't seem to be handling large numbers properly. ![screen shot 2018-04-23 at 7 18 48 pm](https://user- images.githubusercontent.com/9269983/39159452-30168168-472b-11e8-9660-59ac9532a3bd.png) Maybe a bug in multiplying matrixes? ![screen shot 2018-04-23 at 7 19 29 pm](https://user- images.git...
Simple demo: In [1]: np.uint8(0) - np.uint8(1) RuntimeWarning: overflow encountered in ubyte_scalars Out[1]: 255 In [2]: np.uint8(0)[...] - np.uint8(1)[...] Out[2]: 255 Should we even warn at all for unsigned integers?
1
* VSCode Version: 0.10.11 * OS Version: WIN10 x64 - Home Steps to Reproduce: 1. Write a sass-map ![image](https://cloud.githubusercontent.com/assets/9027363/13957459/5a2e4cbe-f02b-11e5-8f9f-56ece966ac6a.png)
If I add a map to a scss file, e.g. "$map: (key1: value1, key2: value2, key3: value3);" it shows as an error. Red squiggly appears under the ":" after the first key and hover message reads ") expected". Despite the error in editor node-sass evaluates map-get correctly over it.
1
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): ...
### If possible, provide a minimal reproducible example (We usually don't have time to read hundreds of lines of your code) x_nparray = $VERY_LARGE_NP_ARRAY(bigger than 2G) x = tf.Variable(init_value=x_nparray) saver=tf.Saver() with tf.Session() as sess: saver.save(sess, 'path/to/save') that would generate ve...
0
* Electron version:1.2.0 * Operating system:Windows 10 Toggle device toolbar button don't work in undock mode. ![undock](https://cloud.githubusercontent.com/assets/304166/15633713/109597e6-25e7-11e6-8122-bd209972ca4a.gif)
Hey Guys, I trying out the Developer Feature http://etoxin.net/blog/2014/06/25/chrome-38-introduces-a-responsive-design- view/ and still is not working. Any plans in future about that ?
1
Looks like a change in v3 that never made it into the docs. Form size classes are now .input-small and .input-large instead of .input-sm and .input-lg.
To increase/decrease the size of form controls, you can add the classes input- lg or input-sm (at least according to the website [http://getbootstrap.com/css/#forms] - which is the most consistent solution). In the css code, however, the classes are called input-large and input-small.
1
I am installing tensorflow 1.0.0-rc0 with GPU, the environment is: Operating System: Ubuntu 14.04.4 LTS gcc version: 4.7 bazel:0.4.5 python 3.6 CUDA 8.0 cuDNN:5.1.5 cuDNN is installed at /home/scs4450/CaffeInstall/cuda ranther than /usr/local/cuda-8.0 when i ./configure my tensorflow, i get the error ...
when I run : `bazel build --config=opt --config=cuda --verbose_failures //tensorflow/tools/pip_package:build_pip_package` INFO: Found 1 target... ERROR: /home/qs/.cache/bazel/ _bazel_qs/081cd1dbca77dcff65c775e7e860e873/external/farmhash_archive/BUILD.bazel:12:1: C++ compilation of rule '@farmhash_archive//:farmh...
1
**TypeScript Version:** 1.8.2. **Code** // A self-contained demonstration of the problem follows... class Foo { bar: "fizz" | "buzz"; } class Bar extends Foo { bar = "fizz"; } **Expected behavior:** `Bar.bar` is initialized to `"fizz"`; **Actual behavior:** ...
Let's use: interface A = { data: number; } interface B = { data: string; } interface C extends A, B {} This will throw an error as data has two separately defined types. I think that it would be really useful to allow C to become a union of the two interfaces either implic...
0
In Microsoft Visual Studio Professional you can click+hold on selected text and then drag that text to a new location. Like a cut/paste operation by dragging/dropping. Requesting that VS Code support this feature. Thanks!
We've seen several users run into issues while trying to use a Debugger in VS Code with source mapping for JavaScript projects (From TypeScript, React- Native, etc...). It's not trivial to configure your build project to generate the correct source maps, and it's difficult to understand if, and when they are wrong. ...
0
**System information** * OS Platform: OS X 10.13.3 * Custom code * tensorflow version: 1.12.0 * python version: 3.6.5 **Describe the current behavior** Tensorflow raises a TypeError when creating a dynamic_rnn with tf.int32 type in its input and state. When changing the type to tf.float32 the error is no...
This code: import tensorflow as tf x = tf.constant([ [[0,0],[5,0],[1,0],[1,0],[2,3],[4,0]], [[0,0],[0,0],[1,3],[2,0],[0,0],[0,0]] ], dtype=tf.int32) #changing this to tf.float32 solves the problem cell = tf.nn.rnn_cell.LSTMCell(num_units=15) initial_state = ...
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. * I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description Currently, the `acc...
As mentioned in #1507, it would be nice to be able to specify accelerator aliases, or multiple accelerators. The most obvious use case is for Zoom In. `Command+Plus` and `Command+=` generally both work for zooming in, but there is no way to specify this behavior in Electron. One idea is to specify an array of accel...
1
* Output of `node_modules/.bin/electron --version`: **3.0.9** * Operating System (Platform and Version): **Max OSX 10.14** * Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): **Not sure** **Expected Behavior** Open and close without crashes or hickups. ...
* Output of `node_modules/.bin/electron --version`: v3.0.1 (Happens on older versions of Electron as well) * Operating System (Platform and Version): macOS Mojave (10.14) Steps: \- App launches \- Pop up saying “App” would like to control your computer using accessibility features… appears \- Press deny ...
1
Generally, when using babel / `babel-loader` it is common to ignore `node_modules` for faster compilation speed. The definition of the `$$typeof` attribute we're looking for is: var REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol['for'] && Symbol['for']('react...
I am using 6to5 with jsx, gulp and browserify. After several file changes 6to5 crashes with error: `FATAL ERROR: JS Allocation failed - process out of memory`. I've found out that the problem is with my jsx source by simply switching entry point to js file instead jsx. See the console trace and my configuration below...
0
**I'm submitting a bug report** **Webpack version:** 1.13.2 **Please tell us about your environment:** Windows 7 **Current behavior:** For the following code snippet require.ensure( ['./module'], (syncedRequire) => { doSomething(syn...
Once i want to develop a custom loader which can receive an `JSON` options in the `query` as following: var urls = JSON.stringify({ value: { cdnUrl: 'http://xxx.domain.com/imgs/' } }); module.exports = { entry: { index: path.resolve(__dirname...
0
Implement Chrome DevTools Protocol for Node-like debug
// main.ts import { parse } from "https://deno.land/std/flags/mod.ts" console.log(parse(Deno.args)) Platform: macos aarch64 Version: 1.25.0 Args: ["deno", "compile", "main.ts"] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', /Users...
0
Although the startup database folder is always clean, this test fails. I think it has something to do with the underlying lucene index. @Test public void quickBenchmark2() { for(int i=0;i<3000;i++) batchInserter.createNode(4766131808L+i,new HashMap<>()); ...
Hi, I'd like to have the ability to easily get the start or end note of a relationship in Cypher. I have certain key information about a relationships, which are many (in my case tens thousands) and which all have the same start node. Example: start r=rel:transactions(sender_address='KEY') match n-[r]->() re...
0
ERROR: type should be string, got "\n\nhttps://github.com/symfony/security/blob/master/Csrf/TokenGenerator/UriSafeTokenGenerator.php#L48\n\nI have polyfill-php70 installed. It does not help.\n\n![screenshot from 2015-12-07 14 44\n37](https://cloud.githubusercontent.com/assets/3941091/11628353/6e9a27a0-9cf1-11e5-8a27-8210c7a4ecea.png)\n\n"
Currently, EntityChoiceList and ModelChoiceList share quite a lot of duplicated code. This duplication should be reduced by introducing a common base class or something similar.
0
Failed: https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci- kubernetes-e2e-gci-gke-prod-parallel/839/ Run so broken it didn't make JUnit output!
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-\nkubernetes-e2e-gci-gke-prod-parallel/82/\n\nMultiple broken tests:\n\nFailed: [k8s.io] EmptyDir volumes should support (non-root,0666,tmpfs)\n[Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/empty_dir.go:85\n Expected error:\n <*errors.errorString | 0xc8208e1250>: {\n s: \"expected container test-container success: gave up waiting for pod 'pod-6c83abaa-aee8-11e6-9144-0242ac110004' to be 'success or failure' after 5m0s\",\n }\n expected container test-container success: gave up waiting for pod 'pod-6c83abaa-aee8-11e6-9144-0242ac110004' to be 'success or failure' after 5m0s\n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2283\n \n\nIssues about this test specifically: #34658\n\nFailed: [k8s.io] EmptyDir wrapper volumes should becomes running {Kubernetes\ne2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/empty_dir_wrapper.go:180\n Expected error:\n <*errors.errorString | 0xc8200e37c0>: {\n s: \"timed out waiting for the condition\",\n }\n timed out waiting for the condition\n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/empty_dir_wrapper.go:179\n \n\nIssues about this test specifically: #28450\n\nFailed: [k8s.io] Secrets should be consumable from pods in volume\n[Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/secrets.go:88\n Expected error:\n <*errors.errorString | 0xc820cf4660>: {\n s: \"expected container secret-volume-test success: gave up waiting for pod 'pod-secrets-7f6f77a6-aee8-11e6-9ba3-0242ac110004' to be 'success or failure' after 5m0s\",\n }\n expected container secret-volume-test success: gave up waiting for pod 'pod-secrets-7f6f77a6-aee8-11e6-9ba3-0242ac110004' to be 'success or failure' after 5m0s\n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2283\n \n\nIssues about this test specifically: #29221\n\nFailed: [k8s.io] Kubectl client [k8s.io] Kubectl label should update the label\non a resource [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:753\n Expected\n <bool>: false\n to be true\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:752\n \n\nIssues about this test specifically: #28493 #29964\n\nFailed: [k8s.io] ServiceAccounts should mount an API token into pods\n[Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/service_accounts.go:240\n Expected error:\n <*errors.errorString | 0xc820a3add0>: {\n s: \"expected container token-test success: gave up waiting for pod 'pod-service-account-89578277-aee8-11e6-9d7a-0242ac110004' to be 'success or failure' after 5m0s\",\n }\n expected container token-test success: gave up waiting for pod 'pod-service-account-89578277-aee8-11e6-9d7a-0242ac110004' to be 'success or failure' after 5m0s\n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2283\n \n\nFailed: [k8s.io] Kubectl client [k8s.io] Kubectl apply should apply a new\nconfiguration to an existing RC {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:134\n Nov 19 22:18:13.412: Couldn't delete ns: \"e2e-tests-kubectl-vzbxd\": namespace e2e-tests-kubectl-vzbxd was not deleted with limit: timed out waiting for the condition, pods remaining: 1, pods missing deletion timestamp: 0 (&errors.errorString{s:\"namespace e2e-tests-kubectl-vzbxd was not deleted with limit: timed out waiting for the condition, pods remaining: 1, pods missing deletion timestamp: 0\"})\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:338\n \n\nIssues about this test specifically: #27524 #32057\n\n"
1
I am not 100% sure if this is a symfony bug because I am using FoSUserBundle, but from my debugging it seems to be a symfony error. The Symfony Session caller saves two sessions on authentication. One of them is a blank session with an array that looks like an empty _sf2_attributes array, and the other is the actual...
Q | A ---|--- Bug report? | no Feature request? | yes BC Break report? | no RFC? | yes Symfony version | latest If you have an entity with a state machine attached, you can still just set any state as current and save if you're not using `apply()`. It would make sense to add a validator specifically e...
0
I just did a pull from the HEAD and using mesos 0.25. To reproduce, I use a very simple guestbook yaml: apiVersion: v1 kind: Pod metadata: name: guestbook spec: containers: - name: redis image: redis - name: guestbook image: google/guestbook-python-re...
**Is this a request for help?** (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.): **What keywords did you search in Kubernetes issues before filing this one?** (If you have found any duplicates, you should instead reply there.): * * ...
0
### Apache Airflow version 2.3.0 (latest released) ### What happened Dag processor failed to start if `[core] sql_alchemy_conn` not defined airflow-local-airflow-dag-processor-1 | [2022-05-08 16:42:35,835] {configuration.py:494} WARNING - section/key [core/sql_alchemy_conn] not found in config ...
### Apache Airflow version 2.3.0 (latest released) ### What happened Running a standalone Dag Processor instance with `airflow dag-processor` throws the following exception: Standalone DagProcessor is not supported when using sqlite. ### What you think should happen instead The `airflow dag-p...
1
Julia currently links to OpenSSL (via libgit2). However, OpenSSL has a GPL- incompatible license. Since a build of Julia that links to FFTW is under the GPL this is a serious problem. The only solution that I can think of is to use a different crypto lib (such as Mozilla Network Security Services).
Inspired by JuliaWeb/Roadmap#5 (comment), I wanted to check here. Since Julia uses libgit2, which is in turn built using OpenSSL, are we OK with using OpenSSL derivatives elsewhere within Julia or are there licensing issues with the dual-licensed OpenSSL stuff? If there _are_ licensing issues associated with the use...
1
![padding- long](https://cloud.githubusercontent.com/assets/8292714/11541646/8090137a-98f0-11e5-97ed-f561727b68b3.PNG) ![padding- short](https://cloud.githubusercontent.com/assets/8292714/11541647/809fa376-98f0-11e5-8e53-6556fa19d218.PNG) Challenge Waypoint: Add Different Padding to Each Side of an Element has an ...
Challenge Waypoint: Use Clockwise Notation to Specify the Padding of an Element has an issue. User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <style> ...
1
##### System information (version) * OpenCV => 4.0.1 (WITH_HPX=ON) * Operating System / Platform => LUbuntu 16.04.6 x86_64 * Compiler => CMake (uses c++) * HPX => 1.2.1 ##### Detailed description When reading from a VideoCapture(0) object the program crashes with an error: terminate called a...
##### System information (version) * OpenCV => 3.4.3 * Operating System / Platform => Windows 7 64 Bit * Compiler => using this release : https://github.com/opencv/opencv/releases/download/3.4.3/opencv-3.4.3-vc14_vc15.exe with JDK 8 ##### Detailed description Hi ! I'm trying to translate this code sample htt...
0
> This issue was previously reported as bug at codeplex, now trying to submit > as suggestion. Below, the `Collection.model` field is supposed to accept **type of`TModel`** rather than **instance of`TModel`**: class Model { } class Collection<TModel extends Model> { model: typeof TModel; /...
This issue tracks our plans and discussion around the current situation with package typings. Internally, we've been talking about how to better package, locate, and discover typings for packages which do not include their own typings. The issues which arise around packages and their typings include: * Reuse - t...
0
Material-UI provides a way to know the device size and perform rendering based on screen size. However, documentation doesn't detail any way that indicates that Grid is device/screen orientation aware. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior ...
### Problem description When I use `Grid` component, I always see horizontal scrollbar. I found this page on StackOverflow: https://stackoverflow.com/questions/45519275/grid-in- material-ui-causes-horizontal-scroll-react where it is explained more. ### Steps to reproduce import * as ui from 'mate...
0
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior ## Current Behavior ## Steps to Reproduce (for bugs) 1. 2. 3. 4. ## Context ## Your Environment Tech | Version ---|--- Material-UI | React | browser | etc |
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior ## Current Behavior ## Steps to Reproduce (for bugs) 1. 2. 3. 4. ## Context ## Your Environment Tech | Version ---|--- Material-UI | React | browser | etc |
0
I tried following the official docker based local cluster setup guide here on OSX and it fails to work in the case of v1.2. There are several issues. Enumerating a few of them. * API server is not accessible from outside of the docker VM host. * Image garbage collection fails * Problem with nsinit - #1906...
**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
This looks to be an issue introduced in 2.0. If you look in the 2.0 example below you'll see that the zoom and street view controls become corrupted. When the marker is clicked, the infobox for it is also messed up. Bootstrap 2.0 - http://jsbin.com/obilec/ No Bootstrap - http://jsbin.com/obilec/2/ Bootstrap 1.4 -...
First of all thanks for your fantastic work. It does SAVE me a lot of time. When I put Google Maps into Bootstrap layout, img tag in Google Maps breaks because Bootstrap set **img max-width to 100%**. When I comment max-width, it's working find but I'm not sure whether it'll break something else in Bootstrap or not....
1
Ref #22034 (comment), on 0.6 and master I can only produce one deprecation warning per julia session. master and 0.6-rc2: julia> f2(x) = 2; f4(x) = 4; julia> @deprecate f1(x) f2(x); julia> @deprecate f3(x) f4(x); julia> f1(1) WARNING: f1(x) is deprecated, use f2(x) inste...
Referring to the discussion here (https://groups.google.com/forum/#!topic/julia-users/0XTidbuInbQ), launching with small number of workers and small matrix size works fine, but as workers and size of matrix is increased, the code breaks. test code : https://github.com/kapiliitr/JuliaBenchmarks/blob/master/ptrans.jl...
0
### Problem description If you leave a selectField as empty (i.e. value is undefined) it defaults to 0, whereas it used to show an empty selectField. ### Steps to reproduce Create a selectField without a value prop. ### Versions * Material-UI: 0.15.3 * React: 15.2.1 * Browser: Chrome 51
### Problem description Floating Labels (0.15.3) render like this: ![screen shot 2016-08-03 at 1 39 15 pm](https://cloud.githubusercontent.com/assets/1571918/17381333/404a271e-5980-11e6-8a85-fc3d53b3b1a6.png) in 0.15.2 they looked like this: ![screen shot 2016-08-03 at 1 43 08 pm](https://cloud.githubusercontent....
1
Only the half of the last line is seen when a horizontal bar is present in the editor. Tested under Mac OS X 10.9.2, Atom 0.95.0 ![screen shot 2014-05-15 at 15 42 47](https://cloud.githubusercontent.com/assets/3011068/2984101/7599e41c-dc2e-11e3-86c8-5ed426f306c1.png)
![2014-07-05 4 05 36](https://cloud.githubusercontent.com/assets/4571899/3486067/2d146022-041b-11e4-8852-89205968296e.png) As the picture shows, when the line-wrap is toggled it works normally with Latin letters but misbehaves when there are Chinese characters. I am using Atom 0.108.0(the latest) with Mac OS X 10.9...
0
Currently multiple assignemnt is supported at declaration like this let (critPos, period) = if critPos1 > critPos2 { (critPos1, period1) } else { (critPos2, period2) }; I think it would be nice to be able do something like this: // "improv...
How about we add a new command line option to change the entry point from "fn main()" to another? for example $ rustc a.rs --entry=myEntry
0