Questions tagged [recompile]

The act of compiling something again.

To "recompile" is to compile again. This could refer to simply compiling a second time, or compiling decompiled code.

191 questions
0
votes
2 answers

oracle 12c materialized view becomes invalid but no ddl happened to master

I'm using 4 materialized views on my oracle 12c - all of them are updated manually by a stored procedure call. All views include a lookup to context variable in where clause including a time span (from and to). Context was created by CREATE OR…
Joe K
  • 1
  • 2
0
votes
1 answer

Learning - Extensibility: Dynamic loading, and any other no-recompile software updates

I'm planning on writing a program but I am stuck in a conundrum. I don't want to start writing something and then have to rewrite it all when I find out that my program is not extensible. The other problem, is I do not have enough programming…
SgtPooki
  • 11,012
  • 5
  • 37
  • 46
0
votes
1 answer

Recompile on save isn't working

I started a Node.js project on Visual Studio 2017 Community on my PC at home, just to test a few things out and play around. When I begin "debugging" (as in get Visual Studio to compile and launch the website), any changes I make and save to files…
Kris Lawton
  • 159
  • 12
0
votes
1 answer

How to compile AndroidManifest.xml programmatically on Android?

I want to know how to implement a apk editor which can edit app name and version. A way I can figure out takes several steps: unzip apk file modify app name and version in AndroidManifest.xml replace the AndroidManifest.xml with the modified…
hyb1996
  • 147
  • 3
  • 10
0
votes
0 answers

Modifing .class file in .jar

As follow of this thread: Resource to url java I need to edit the .class inside of the .jar . I manage to read the class file with jd-gui I can't change the text of the class file. Is there a simple way to change the line mentioned in the thread ?
0
votes
3 answers

More Expressive Code

Is there a more intelligent way to write this code avoiding the repetition of the condition (answer<200) in the WHILE and in the IF? public class HelloWorld { public static void main(String[] args) { …
JamesB
  • 569
  • 1
  • 9
  • 31
0
votes
0 answers

How to compile the part of template. Angular 2, Ionic 2

I have got a component with template. In this template I got a button which is making request to server via AJAX to get the new part of current template. I had to get it and append it to one of elements in my HTML template. The part of new HTML…
Alexander Zakusilo
  • 1,466
  • 3
  • 16
  • 34
0
votes
1 answer

Can an exe file compiled with Delphi 7 work on OSX?

I have an exe file compiled with Delphi 7. I want it to work on OSX (in this case, Mac OS Sierra). Is there any way to compile the exe file as an OSX package and install/run it on OSX?
0
votes
0 answers

Recompiling a revised r package

Disclaimer: I am not a coder and have only a very limited working understanding of r, so I apologise if my question is completely feeble. I was using the r package "pegas" (https://cran.r-project.org/web/packages/pegas/pegas.pdf) and came across…
0
votes
1 answer

"IF..ElseIf..Else" or "Where clause" to guide Stored Procedure results

I have the following two SQL statements First one: IF(@User_Id IS NULL) BEGIN SELECT * FROM [UserTable] END ELSE BEGIN SELECT * FROM [UserTable] AS u WHERE u.[Id] = @User_Id …
0
votes
2 answers

Dotpeek - Modify DLL Files - Use modified(recompiled) in project

I already did the process - Importing dll file in Dotpeek and Exporting Assembly to Project, Now I can modify dll file in VS 2015, but how to recompile the project and use recompiled dll file again in existing project.. I tried with building project…
Dharmesh
  • 11
  • 2
  • 6
0
votes
0 answers

Recompiling a java class while running a program

I'm not really sure how to describe this so i'll try my best: Say i have 2 classes, one called Ping(a listener class which waits for certain inputs) and the other Pong. in the Ping class i have a Pong object saved like so: public static Pong pong =…
user619361
  • 33
  • 1
  • 3
0
votes
1 answer

µVISION: BUILD TARGET ALWAYS RECOMPILES ALL FILES

µVision v.5.01 retranslates all files in my project when I'm using Project - Build target. However, I have made no changes to my files and the the µVision built-in MAKE should check the timestamp to see that there are no changes. I have made sure TZ…
Victor Che
  • 75
  • 7
0
votes
2 answers

Regex string insertion

Simple, simple question, hope you can help me: How do I add a string to a regex? Say: d = '\d\d\d' mo = re.compile(r #d goes here) Pasting it, separating it with a comma, or with a plus gives me errors. Normally, as you know, it would be…
Mauser
  • 31
  • 5
0
votes
2 answers

Xcode 7+ Is there a way to Preserve App State after Recompiling

My application has deep navigational chains of 8+ screens deep (Wizard-style). When i'm editing a View Controller, and i want to make a quick visual change and re-test, As a tester, I have to go through the full flow to end up where I was before…
FranticRock
  • 3,233
  • 1
  • 31
  • 56