Questions tagged [codebase]

The term codebase, or code base, is used in software development to mean the whole collection of source code used to build a particular application or component.

The codebase for a project is typically stored in a source control repository. A source code repository is a place where large amounts of source code are kept, either publicly or privately. They are often used by multi-developer projects to handle various versions and developers submitting various patches of code in an organized fashion. Subversion and Mercurial are popular tools used to handle this workflow, and are common in open source projects.

152 questions
0
votes
1 answer

Generate JNI Bridge and Java interfaces from C++

I know that it is possible to generate the JNI given a Java implementation using javac but is there a way to do the opposite (a "cjava")? So if I have something like this: mypackage/mylib.h: void helloWorld(); mypackage/mylib.c: #include…
Stefan Falk
  • 23,898
  • 50
  • 191
  • 378
0
votes
0 answers

Find all double comparisons in a C# codebase

I recently learned the perils of comparing double values. Now, I want to find all of the double comparisons in our rather large c# codebase so that I can replace them. I've been doing this using full text searches, hunting and pecking through the…
Mark Bell
  • 384
  • 2
  • 8
0
votes
1 answer

How to run bootstrap.py to setup Firefox code base?

I followed the steps provided here. I ran python bootstrap.py, it prompted me to enter a choice, I entered 2, Firefox for Desktop Artifact mode. How to resolve this?
Yash Sharma
  • 811
  • 1
  • 9
  • 27
0
votes
0 answers

Python __gettattr__ returning function

I am currently trying to read python codebase - I picked up the crayons by Kenneth Reitz as it seems very well written and rather simple, but I am having issues understanding the meaning of the following method (code ref): ... def __getattr__(self,…
NefariousOctopus
  • 807
  • 2
  • 10
  • 18
0
votes
0 answers

Building a Java Web Start App for Multiple Codebases

I have a Java Web Start application for which the JNLP is generated dynamically. The JWS application is built in NetBeans, which offers me several options RE the codebase for this app, including not specifying one. But so far, I've been using the…
Sheldon R.
  • 452
  • 2
  • 7
  • 26
0
votes
1 answer

syncing variations on a repository git

I am trying to figure out how (if possible) to set up multiple git repositories to behave in a specific way. Basically, we have multiple repositories for multiple clients, however they are meant to all share a system directory. When a change is made…
0
votes
2 answers

Building two different android apps on the same codebase that only differ by const

I am building two android applications, which relay on the same codebase but differ by the server address which they grab their files from. Till now i've created two line of my server's address constant, and builded the application once with the…
gkpln3
  • 1,317
  • 10
  • 24
0
votes
2 answers

Specifying remote codeBase for Java security policy

I have a client-side security policy, with a statement that grants permissions. I want to be able to specify it to grant the set of permissions for an RMI server only. For example this works: grant{ //my permissions }; But I cant figure…
Ultimate Gobblement
  • 1,851
  • 16
  • 23
0
votes
1 answer

Versioning and common code-bases with Eclipse

I'd like to bring out an Android app in the near future, so I was wondering how to support a couple of funcitonalities I have got used whilst developing for J2ME and iPhone first the versioning. With J2ME (using NetBeans as IDE) I had the option to…
TiGer
  • 5,879
  • 6
  • 35
  • 36
0
votes
1 answer

Tips for following php calls in code base

I am working with action script 3 and often I see server calls that link to php files. var serverCall:ServerCall = new ServerCall("getDeviceFirmwareLog", getDeviceFirmwareLogResponse, getDeviceFirmwareLogResponse, false); This line calls some php…
Justin
  • 203
  • 1
  • 13
0
votes
1 answer

java applet ClassNotFoundException with codebase

I'm starting to work on an applet that will replace an existing one. Having never developed an applet before, I thought I'd get going with the popular HelloWorld example. I am able to run it a couple different ways: in the appletviewer, and also in…
Sheldon R.
  • 452
  • 2
  • 7
  • 26
0
votes
1 answer

How can I make a gradle from a Library Project Android Studio

I am using Android Studio. I have created a library project.and I have successfully included this library in another prstoject.I have followed the below steps to include that library in my project. a.I have added that library folder in my project…
Developer
  • 103
  • 12
0
votes
1 answer

Java Remote Method Invocation(RMI): codebase property

How to use the codebase java property to download the(Interface and Stub class)from the sever to the client computer, in java RMI(Remote Method Invocation)?
0
votes
0 answers

Large Android project, code base increases and looks ugly.

We are working on a project in android. Our project has following functionality: 1. Make rest calls. 2. Save data to database. 3. Show data on Ui. 4. Many other android features. We use Retrofit, ActiveAndroid. Our project has many Activities and…
Jayendra Gothi
  • 682
  • 2
  • 11
  • 26
0
votes
1 answer

Some C++ source files are compiled for multiple dll

In our projects my team wants to use some C++ source files for different dlls (for example MySource.cpp, amongst others, will be compiled twice to produce both A.dll and B.dll). I'll call this situation "duplicating compilations". I think it is very…
Brainless
  • 1,522
  • 1
  • 16
  • 30