Questions tagged [dev-mode]
50 questions
1
vote
3 answers
Can I get eclipse gwt devmode to always recompile all my modules
I have two modules, the Main module and the Included module.
If I start the Main module it will show an interface with an iFrame which contains the Included module with some additional controls around it. I can also start the Included module…

wasatz
- 4,158
- 2
- 23
- 30
1
vote
2 answers
Saving / Restoring Printer DevModes - wxPython / win32print
So far I've found two different ways to access what I believe are equivalent versions of the Printer DevMode from a wxPython User Interface:
window = wx.GetTopLevelWindows()[0].GetHandle()
name = self.itemMap['device'].GetValue() # returns a valid…

g.d.d.c
- 46,865
- 9
- 101
- 111
1
vote
2 answers
My React App is working very slow on LocalHost but it is working fine in Live Server. UI Rendering is very slow. What could be the possible cause?
I am working on a React-TS App. It is loading fine in live server. But in dev mode in localhost it is very slow. After doing some research I came up with no solution. Here is me package json file.
{
"name": "xiq-webapp",
"version": "0.1.0",
…

FastNU
- 11
- 1
- 2
1
vote
0 answers
Is Dev Mode still broken in Hyperledger Fabric 2.X?
Is Dev Mode still broken in Hyperledger Fabric 2.X? I looked at the jira (https://jira.hyperledger.org/browse/FAB-17584) and it has been resolved. I looked at the jira in the comments too and they have also been resolved. Based on this, I think the…

thisLexic
- 43
- 2
- 8
1
vote
2 answers
Angular 7: Running with production configuration but development mode still enabled
My Angular 7.2.15 app is still in dev mode despite setting the production configuration and property.
Let's say, I have the following setup:
environment.ts
export const environment = {
PRODUCTION: false
};…

J. Doe
- 142
- 1
- 14
1
vote
1 answer
Devmode-engine-rust on Sawtooth running on Ubuntu 16.04
I want to install devmode-engine-rust on Sawtooth 1.0.5 running on Ubuntu 16.04. Standard installation using apt-get gives:
sawtooth-devmode-engine-rust :
Depends: libstdc++6 (>= 8.3.0) but 5.4.0-6ubuntu1~16.04.11 is to be installed
Depends:…

DeltaL
- 13
- 3
1
vote
1 answer
Angular 6 Really Long Time to Refresh
I have a problem with my app and refresh.
I am using angular-cli 6 for building my app, and I am using iis for the server.
When I run 'ng build --watch', and I refresh my browser, I have 10 seconds waiting before the app is displaying.
In the Chrome…

Sébastien Carré
- 28
- 4
1
vote
2 answers
Change screen Orientation with powershell - Where are the registry values stored?
Hej from Sweden,
I am trying out the code from the reference post: Powershell script to change screen Orientation
The script works. The goal is to make sure that the rotation is either landscape - default or portrait 90 degrees clockwise.
I need to…

pixelmybit
- 113
- 2
- 3
- 9
1
vote
0 answers
Why does dev.dmCopies return a compiler error?
I'm working on a program that prints addresses on envelopes. As part of the program I need to change some of the default print settings such as paper size. To do this I am using the DocumentProperties code listed below.
HANDLE hPrinter;
char…

Trent Walls
- 59
- 5
1
vote
1 answer
Error loading R dev_mode from .Rprofile
I'm doing a lot of development in R at the moment, so I would like to enable dev_mode when R starts up.
I've tried adding dev_mode() to my .Rprofile, given here:
library("devtools")
library("testthat")
dev_mode()
But doing so gives the following…

mskel
- 842
- 9
- 16
1
vote
1 answer
Getting errors with GWT tutorial on developers.google.com
I was trying to run the verbatim example given here https://developers.google.com/web-toolkit/doc/latest/tutorial/appengine
This part deals with converting a gwt project into app engine project and deploying it. After doing all the steps in the…

Apurv
- 4,458
- 2
- 21
- 31
1
vote
1 answer
When debugging using GWT devmode, how do I redirect to URLs on my own server?
I'm writing an app using GWT and Java Google App Engine. When I launch a page of the app using devmode, I see a URL that has the suffix "?gwt.codesvr=127.0.0.1:9997". Without that suffix, devmode does not seem to work; therefore I assume it must…

Daniel
- 1,861
- 1
- 16
- 24
0
votes
2 answers
Location of config file for devmode in Eclipse?
I have a multi module GWT project (say a.gwt.xml, b.gwt.xml, c.gwt.xml) that I am building in eclipse and testing in devmode. All was working well until I deleted one of the gwt module file and associated source. Now when I try to launch devmode…

Noj X
- 1
- 1
0
votes
2 answers
Detecting what &gwt.codesvr should be set to in non-gwt pages in a GWT/servlet app?
We have an application that is built exclusively in dev mode using the embedded jetty server that comes with GWT. We also host on jetty.
There are a number of pages we use for development only to do things like simulate SSO requests, view emails…

benstpierre
- 32,833
- 51
- 177
- 288
0
votes
0 answers
Quarkus : Mock bean in dev mode
In my Quarkus application have a bean with a grpc client :
@ApplicationScoped
@Slf4j
public class AuthorizationAdapter implements AuthorizationPort {
private final AuthorizationGrpc.AuthorizationBlockingStub authorizationBlockingStub;
…

user1549094
- 21
- 1
- 4