Top "Global" questions

Refers to a space where variables and other items may be accessed from any scope.

What's the difference between CUDA shared and global memory?

I’m getting confused about how to use shared and global memory in CUDA, especially with respect to the following: …

memory cuda global shared-memory
SharePoint wsp solution: How to Deploy Globally

I have created a wsp package and add it to Central Administration > Operations > Solution Management using the addsolution …

sharepoint deployment global wsp stsadm
Jenkins: Access global passwords in powershell

I am having trouble accessing the jenkins global password as an environment variable in powershell. I have done the following. …

powershell jenkins passwords global
C++: When (and how) are C++ Global Static Constructors Called?

I'm working on some C++ code and I've run into a question which has been nagging me for a while... …

c++ gcc static global constructor
How can I define global variables inside a twig template file?

Is it possible to set global variables in a twig file, so that I can access that variables from other …

php variables twig global templating
Global variable with imports

first.py myGlobal = "hello" def changeGlobal(): myGlobal="bye" second.py from first import * changeGlobal() print myGlobal The output I get …

python global
Gradle global build directory

I want to know is it possible to configure Gradle to use one global build directory for all projects? I …

build gradle google-drive-api global
How does one clear or remove a global in julia?

Is there any syntax that does something similar to MATLAB's "clear" i.e. if I have a global variable "a". …

global-variables global julia
Okay to declare static global variable in .h file?

static keyword keeps the scope of a global variable limited to that translation unit. If I use static int x …

c++ c static global extern
Increment a global variable in Bash

Here's a shell script: globvar=0 function myfunc { let globvar=globvar+1 echo "myfunc: $globvar" } myfunc echo "something" | myfunc echo "Global: $globvar" …

bash unix global increment