Home
last modified time | relevance | path

Searched refs:childEnv (Results 1 – 25 of 45) sorted by relevance

12

/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/
H A DSessionAsyncRProcess.cpp156 core::system::Options childEnv; in start() local
157 core::system::environment(&childEnv); in start()
161 core::system::setenv(&childEnv, "R_LIBS", libPaths); in start()
167 core::system::setenv(&childEnv, var.first, var.second); in start()
171 core::system::setenv(&childEnv, "RSTUDIOAPI_IPC_REQUESTS_FILE", ipcRequests_.getAbsolutePath()); in start()
172 core::system::setenv(&childEnv, "RSTUDIOAPI_IPC_RESPONSE_FILE", ipcResponse_.getAbsolutePath()); in start()
173 core::system::setenv(&childEnv, "RSTUDIOAPI_IPC_SHARED_SECRET", sharedSecret_); in start()
176 options.environment = childEnv; in start()
H A DSessionConsoleProcessTable.cpp322 core::system::Options childEnv; in createTerminalExecuteConsoleProc() local
323 core::system::environment(&childEnv); in createTerminalExecuteConsoleProc()
324 core::system::getModifiedEnv(env, &childEnv); in createTerminalExecuteConsoleProc()
327 core::system::setHomeToUserProfile(&childEnv); in createTerminalExecuteConsoleProc()
329 options.environment = childEnv; in createTerminalExecuteConsoleProc()
H A DSessionConsoleProcess.cpp226 core::system::Options childEnv; in commonInit() local
227 core::system::environment(&childEnv); in commonInit()
228 options_.environment = childEnv; in commonInit()
249 core::system::Options childEnv; in commonInit()
250 core::system::environment(&childEnv); in commonInit()
251 options_.environment = childEnv; in commonInit()
/dports/math/vampire/vampire-4.5.1/scripts/
H A Ddeterminism_checker.py69 childEnv = os.environ
74 childEnv = dict(childEnv)
78 childEnv["abcd"] = s
83 return subprocess.Popen(cmdLine, bufsize=1, stderr=subprocess.PIPE, env=childEnv)
/dports/devel/spark/spark-2.1.1/launcher/src/main/java/org/apache/spark/launcher/
H A DMain.java111 private static String prepareWindowsCommand(List<String> cmd, Map<String, String> childEnv) { in prepareWindowsCommand() argument
113 for (Map.Entry<String, String> e : childEnv.entrySet()) { in prepareWindowsCommand()
128 private static List<String> prepareBashCommand(List<String> cmd, Map<String, String> childEnv) { in prepareBashCommand() argument
129 if (childEnv.isEmpty()) { in prepareBashCommand()
136 for (Map.Entry<String, String> e : childEnv.entrySet()) { in prepareBashCommand()
H A DAbstractCommandBuilder.java53 final Map<String, String> childEnv; field in AbstractCommandBuilder
62 this.childEnv = new HashMap<>(); in AbstractCommandBuilder()
254 return firstNonEmpty(childEnv.get(key), System.getenv(key)); in getenv()
H A DSparkLauncher.java130 this.builder.childEnv.putAll(env); in SparkLauncher()
154 builder.childEnv.put(ENV_SPARK_HOME, sparkHome); in setSparkHome()
559 for (Map.Entry<String, String> e : builder.childEnv.entrySet()) { in createBuilder()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.text.tests/src/org/eclipse/text/tests/link/
H A DLinkedModeModelTest.java302 LinkedModeModel childEnv= new LinkedModeModel(); in testNestedUpdate() local
303 childEnv.addGroup(group1_2); in testNestedUpdate()
304 childEnv.forceInstall(); in testNestedUpdate()
306 assertTrue(childEnv.isNested()); in testNestedUpdate()
351 LinkedModeModel childEnv= new LinkedModeModel(); in testNestedForceInstall() local
352 childEnv.addGroup(group1_2); in testNestedForceInstall()
353 childEnv.forceInstall(); in testNestedForceInstall()
355 assertFalse(childEnv.isNested()); in testNestedForceInstall()
388 childEnv.addGroup(group1_2); in testNestedTryInstall()
398 assertFalse(childEnv.tryInstall()); in testNestedTryInstall()
[all …]
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/desktop/
H A DDesktopWin32ApplicationLaunch.cpp219 core::system::Options childEnv; in launchRStudio() local
220 core::system::environment(&childEnv); in launchRStudio()
223 core::system::setenv(&childEnv, kRStudioInitialWorkingDir, initialDir); in launchRStudio()
224 options.environment = childEnv; in launchRStudio()
/dports/devel/spark/spark-2.1.1/core/src/main/scala/org/apache/spark/launcher/
H A DWorkerCommandBuilder.scala35 childEnv.putAll(command.environment.asJava)
36 childEnv.put(CommandBuilderUtils.ENV_SPARK_HOME, sparkHome)
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/modules/
H A DSessionWorkbench.cpp317 core::system::Options childEnv; in createSshKey() local
318 core::system::environment(&childEnv); in createSshKey()
321 core::system::setHomeToUserProfile(&childEnv); in createSshKey()
324 core::system::addToPath(&childEnv, in createSshKey()
327 options.environment = childEnv; in createSshKey()
H A DSessionSVN.cpp117 core::system::Options childEnv; in procOptions() local
118 core::system::environment(&childEnv); in procOptions()
122 core::system::addToPath(&childEnv, postbackDir.getAbsolutePath()); in procOptions()
126 core::system::addToPath(&childEnv, in procOptions()
134 core::system::addToPath(&childEnv, in procOptions()
146 core::system::setHomeToUserProfile(&childEnv); in procOptions()
152 core::system::setenv(&childEnv, "SVN_EDITOR", editFileCommand); in procOptions()
155 options.environment = childEnv; in procOptions()
H A DSessionFind.cpp1346 core::system::Options childEnv; in runGrepOperation() local
1347 core::system::environment(&childEnv); in runGrepOperation()
1348 core::system::setenv(&childEnv, "GREP_COLOR", "01"); in runGrepOperation()
1349 core::system::setenv(&childEnv, "GREP_COLORS", "ne:fn=:ln=:se=:mt=01"); in runGrepOperation()
1353 &childEnv, in runGrepOperation()
1356 options.environment = childEnv; in runGrepOperation()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/modules/build/
H A DSessionBuild.cpp577 core::system::Options childEnv; in roxygenize() local
579 childEnv = *options.environment; in roxygenize()
581 core::system::environment(&childEnv); in roxygenize()
588 options.environment = childEnv; in roxygenize()
699 core::system::Options childEnv; in buildPackage() local
701 childEnv = *options.environment; in buildPackage()
703 core::system::environment(&childEnv); in buildPackage()
728 pkgOptions.environment = childEnv; in buildPackage()
2387 core::system::Options childEnv; in canBuildCpp() local
2388 core::system::environment(&childEnv); in canBuildCpp()
[all …]
/dports/net/syncthing/syncthing-1.18.1/syncthing/cmd/syncthing/
H A Dmonitor.go96 childEnv := childEnv()
110 cmd.Env = childEnv
202 childEnv = append(childEnv, "STRESTART=yes")
547 func childEnv() []string { func
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-tools/hadoop-streaming/src/main/java/org/apache/hadoop/streaming/
H A DPipeMapRed.java200 Environment childEnv = (Environment) StreamUtil.env().clone(); in configure() local
201 addJobConfToEnvironment(job_, childEnv); in configure()
202 addEnvironment(childEnv, job_.get("stream.addenvironment")); in configure()
204 envPut(childEnv, "TMPDIR", System.getProperty("java.io.tmpdir")); in configure()
208 builder.environment().putAll(childEnv.toMap()); in configure()
/dports/devel/hadoop/hadoop-1.2.1/src/contrib/streaming/src/java/org/apache/hadoop/streaming/
H A DPipeMapRed.java205 Environment childEnv = (Environment) StreamUtil.env().clone(); in configure() local
206 addJobConfToEnvironment(job_, childEnv); in configure()
207 addEnvironment(childEnv, job_.get("stream.addenvironment")); in configure()
209 envPut(childEnv, "TMPDIR", System.getProperty("java.io.tmpdir")); in configure()
213 builder.environment().putAll(childEnv.toMap()); in configure()
/dports/devel/spark/spark-2.1.1/yarn/src/test/scala/org/apache/spark/launcher/
H A DTestClasspathBuilder.scala28 childEnv.put(CommandBuilderUtils.ENV_SPARK_HOME, sys.props("spark.test.home"))
/dports/devel/spark/spark-2.1.1/launcher/src/test/java/org/apache/spark/launcher/
H A DSparkSubmitCommandBuilderSuite.java221 launcher.childEnv.put(CommandBuilderUtils.ENV_SPARK_HOME, in testCmdBuilder()
239 launcher.childEnv.put("SPARK_CONF_DIR", System.getProperty("spark.test.home") in testCmdBuilder()
345 builder.childEnv.put(CommandBuilderUtils.ENV_SPARK_HOME, System.getProperty("spark.test.home")); in newCommandBuilder()
/dports/www/grafana8/grafana-8.3.6/vendor/cuelang.org/go/internal/core/adt/
H A Deval.go1701 childEnv := &Environment{
1706 childEnv.Cyclic = env.Cyclic
1707 childEnv.Deref = env.Deref
1716 parent := n.node.AddStruct(s, childEnv, closeInfo)
1728 n.dynamicFields = append(n.dynamicFields, envDynamic{childEnv, x, closeInfo, nil})
1732 n.forClauses = append(n.forClauses, envYield{childEnv, x, closeInfo, nil})
1736 n.ifClauses = append(n.ifClauses, envYield{childEnv, x, closeInfo, nil})
1746 n.addExprConjunct(MakeConjunct(childEnv, x, id))
1778 n.insertField(x.Label, MakeConjunct(childEnv, x, closeInfo))
/dports/sysutils/helmfile/vault-f6547fa8e820/vendor/github.com/hashicorp/consul-template/manager/
H A Drunner.go271 env.Custom = append(r.childEnv(), env.Custom...)
586 env.Custom = append(r.childEnv(), env.Custom...)
685 Env: r.childEnv(),
1006 func (r *Runner) childEnv() []string { func
/dports/misc/concourse/vault-bdd38fca2cff/vendor/github.com/hashicorp/consul-template/manager/
H A Drunner.go271 env.Custom = append(r.childEnv(), env.Custom...)
586 env.Custom = append(r.childEnv(), env.Custom...)
685 Env: r.childEnv(),
1006 func (r *Runner) childEnv() []string { func
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/hashicorp/vault/vendor/github.com/hashicorp/consul-template/manager/
H A Drunner.go271 env.Custom = append(r.childEnv(), env.Custom...)
586 env.Custom = append(r.childEnv(), env.Custom...)
685 Env: r.childEnv(),
1006 func (r *Runner) childEnv() []string { func
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/nomad/vendor/github.com/hashicorp/consul-template/manager/
H A Drunner.go271 env.Custom = append(r.childEnv(), env.Custom...)
586 env.Custom = append(r.childEnv(), env.Custom...)
685 Env: r.childEnv(),
1006 func (r *Runner) childEnv() []string { func
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/consul-template/manager/
H A Drunner.go272 env.Custom = append(r.childEnv(), env.Custom...)
570 env.Custom = append(r.childEnv(), env.Custom...)
686 Env: r.childEnv(),
1026 func (r *Runner) childEnv() []string { func

12