Questions tagged [environment]

The O/S in which a process is executed, especially settings that affect the process

A computing environment consists of the following items:

  • Server hardware
  • Operating system
  • Software (both the software being used, and supporting software, such as and )
  • Data (input/output) from the software
  • Environment settings, such as executable PATH search directories

Commonly, for software development there are three main groups of environments:

2804 questions
1
vote
1 answer

Chef - "knife enviroment edit from file " not saving changes

When I try to update an environment attribute in chef using knife like this to pick up the definition from a json file using "from file" it reports "Object unchanged, not saving" even though I have changed an attribute value in my json file: knife…
user3488588
  • 21
  • 1
  • 3
1
vote
2 answers

Could I include more than two environments inside Apigee?

I want to include dev, test, preprod, prod and maybe some other environment inside my Apigee organization. I was searching on the Apigee docs and inside environment configuration, and I could not find instructions on how to do that. How can this be…
FortuneSoldier
  • 502
  • 3
  • 21
1
vote
1 answer

Spring environment validation

We're building a Spring-based application which will be delivered to end users as a distribution package. Users are responsible for properly configuring whatever needs to be configured (it's mostly about various filesystem locations, folder access…
Andrey Agibalov
  • 7,624
  • 8
  • 66
  • 111
1
vote
0 answers

How to unlockEnvironment in R - error

I'd like to lock an environment (and bindings) to make sure some data cannot be accidentially corrupted during execution of further code. Later, I'd need to unlock it again. There was this wonderful post Stackoverflow pointing to GitHub gist quite…
Martin
  • 594
  • 5
  • 16
1
vote
1 answer

Different type of properties in Gradle?

What are the different type of properties in Gradle and what it is the difference of using them. From what I know there are : system properties, environment properties and ONLY properties( extra properties ) declared with -D, -P and with ext. But if…
Xelian
  • 16,680
  • 25
  • 99
  • 152
1
vote
1 answer

bareboxenv-target: script not found

I'm working with ptxdist, with barebox as a bootloader. I'm trying to use 'bareboxenv' script in my arm to save the barebox environment to a file, so I've set the option which allows to compile it for arm in 'barebox.make' and tried to compiled…
Trouble-lling
  • 333
  • 5
  • 15
1
vote
1 answer

Save elements of a list to ".Rda" file inside a function

Just for example, I have a dataframe with columns: name, n, mean and sd. How do I extract and then save the elements of a list into a single rda file. The file should contain the generated datasets and not the list. random.r <- function(df,…
geodex
  • 1,219
  • 3
  • 13
  • 22
1
vote
2 answers

X Display on Windows machine

I'm trying to run some code on the server through PuTTY on a windows machine, and it doesn't work. (It works on Linus and Mac) And I'm pretty sure it is the problem of X display. Can anyone tell me how to setup the X environment on Windows?
TYZ
  • 8,466
  • 5
  • 29
  • 60
1
vote
3 answers

Set Jenkins Environment Variable from another Jenkins Environment Variable

I am trying to set job environment variables. Some variables are set from other environment variables. For instance on Windows: var1=this var2=that var3=other var4=%var1%_%var2%_%var3% And I'd like to see var4 set as 'this_that_other'. I tried…
Jeff Hutton
  • 156
  • 1
  • 2
  • 11
1
vote
1 answer

R Packages - Why are environments not associated with the package in which they are contained?

For instance, I have an environment myEnv which lives in my package Test. So why on earth does getPackageName(myEnv) return the current time "2014-02-03 17:17:23" instead of "Test"?? # In /R/Test.R myEnv <- new.env() print(getPackageName(myEnv)) #…
mchen
  • 9,808
  • 17
  • 72
  • 125
1
vote
1 answer

environment variables cause make's undefine to fail (Windows)

In Windows, I'm getting a failure in make (GnuWin32) when I try to undefine a variable that was defined in my environment: C:\>make makefile:2: *** missing separator. Stop. My environment has LIB defined, probably from another installed program.…
Brian
  • 73
  • 1
  • 5
1
vote
0 answers

executing the make config shared=1 command for METIS in python 2.7 on my windows 7 machine

I have a new issue. I have successfully installed Metis 0.1 but I'm not able to execute the make config shared=1 command. Additionally, I do not know where I have to execute this command. Should I execute it on command prompt? Or should I execute…
1
vote
0 answers

symfony 2.1 - dev environment faster than prod

I'm using Symfony 2.1 and my dev environment is 6 time faster than my prod... Indeed I made this method to perform some test public static function perfAction(){ return new Response("ok"); } This is displayed in 110ms in dev environment…
1
vote
0 answers

How to setup a good development environment for sharepoint 2013

We have the exact same issue. We have 6 developers, single sharepoint solution, 1 big server. We tried to create 6 web apps but still when they deploy it overwrites other developer's changes as they have not checkedin their changes yet. How to fix…
1
vote
0 answers

QT pro file environment variable lib path

Something I'm not getting. I want to include 3 libs in my .pro file. Created an environment variable, and then I add them to the LIBS path. This is OK for 2 times, the third time fails. In detail: Environment variable: NETSNMP_DIR…
ED8500
  • 41
  • 1
  • 9
1 2 3
99
100