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
3
votes
10 answers

Adding a field to a structure without breaking existing code

So I'm working with this huge repository of code and have realized that one of the structs lack an important field. I looked at the code (which uses the struct) as closely as I could and concluded that adding an extra field isn't going to break…
Jacob
  • 34,255
  • 14
  • 110
  • 165
3
votes
2 answers

java.rmi.server.codebase not working on linux

I'm working on a twitter like, using rmi. I work, on Windows and everything works fine. But on linux I have : java.rmi.UnmarshalException: error unmarshalling return; nested exception is: java.lang.ClassNotFoundException: server.SimpleBark …
Giacogiac
  • 189
  • 1
  • 11
3
votes
2 answers

Assembly.Load(Byte[]) and Assembly.Location/Assembly.Codebase

I'm trying to load an assembly without locking the file. These assemblies could be third party assemblies so we don't necessarily have access to the code and one or two of them make use of Assembly.Location to read files from their directory, files…
Andy E
  • 338,112
  • 86
  • 474
  • 445
2
votes
2 answers

Merging Core Libraries

About a year ago our company rolled a relatively large software package written primarily by two senior developers. For ease of demonstration, I'll call it "project A". Since then, we have been working on a new software package, "project B" and in…
Aaron
  • 2,427
  • 4
  • 30
  • 41
2
votes
1 answer

Can you use environment variables to replace hardcoded path for href attribute in codebase element

I was curious if CLR could load assemblies from a specific location and this is what I found which basically loads the assembly from C:\MyAssemblies folder. Now, my question is - Is it possible to use environment variables in the following href…
Kabir
  • 91
  • 1
  • 1
  • 7
2
votes
2 answers

Remote Codebase

I have a dll. That dll is uploaded on a server. I want that each time the application starts to get the "latest" dll from the server, so I've used the following code in my app.config. Why isn't it working? here is the app.config…
Timotei
  • 1,909
  • 2
  • 22
  • 31
2
votes
1 answer

How can I build a library from source and ship it inside a crate in Rust

This question is related to Trouble with undefined symbols in Rust's ffi when using a C/Fortran library I have a library pfapack to interface in Rust. The problem is this library is pretty niche, so it will not be found on a user's machine often.…
Dumbo
  • 55
  • 8
2
votes
0 answers

firebase codebase mixup

I ended up somehow to have 2 functions with 2 codebases, and I do not know now how to remove one of them. So, when I use firebase deploy --project myelrondstats I get the bellow error: Error: More than one codebase claims following…
okidoki99
  • 33
  • 4
2
votes
2 answers

How much of modern FFmpeg is written by Fabrice Bellard?

FFmpeg is considered by many to be the work of Fabrice Bellard, and maybe even his magnum opus, but since he stopped contributing to the project (under the pseudonym Gérard Lantau) in 2004, I wondered how much of it can actually still be said to be…
Hashim Aziz
  • 4,074
  • 5
  • 38
  • 68
2
votes
2 answers

How read an Angular codebase?

I am a junior developer and have been assigned to this team that works on a web application similar to Whatsapp but written in Angular. It has many modules, components and pipes which is frankly quite daunting. Are there any tips / direction to…
2
votes
1 answer

WIX Heat wrong 'registryvalue' 'codebase' value

I know there are many similar questions about this theme, but none of them could give me an answer. I'm creating a windows installer for a dll which I developed in VS2019. The installer is created and works correctly on my machine, but not on other…
jokey
  • 23
  • 6
2
votes
3 answers

Add to Wikipedia's code?

I know that the wiki concept is let people from around the world contribute and everything. Now is there a way to add code ("contribute") to Wikipedia's codebase? Open-source? For eg. I'd like to offer a poll to every Wikipedian (registered user) on…
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
2
votes
0 answers

R: Searching package code in CRAN or installed locally

Suppose I wish to find instances of the use of one or more functions in the code of base or submitted packages, for purpose of better understanding idiomatic use of those functions. That is to say, I want to do a code search for the places where a…
andrewH
  • 2,281
  • 2
  • 22
  • 32
2
votes
1 answer

Npm - how to manage one-repo, multi-package codebase

I’m building a node.js app that needs to be scalable and maintainable. The idea is to have one repository, but with more than one module inside it. We are using local modules with npm, but we have a problem is that when we update a modules npm won’t…
Simone Pontiggia
  • 204
  • 2
  • 10
2
votes
1 answer

With Buildbot Source Step: why can 'codebase' not be set via Interpolate while 'repourl' can?

I have a factory that I use in several builders and I set builder specific settings via util.Property and util.Interpolate. While this works fine for repourl and branch it simply doesn't work for codebase. The following piece of code shows the…
Tyrnan
  • 23
  • 3
1 2
3
10 11