Home
last modified time | relevance | path

Searched full:environment (Results 1 – 25 of 4769) sorted by relevance

12345678910>>...191

/external/python/google-api-python-client/docs/dyn/
Dtagmanager_v1.accounts.containers.environments.html79 <p class="firstline">Creates a GTM Environment.</p>
82 <p class="firstline">Deletes a GTM Environment.</p>
85 <p class="firstline">Gets a GTM Environment.</p>
91 <p class="firstline">Updates a GTM Environment. This method supports patch semantics.</p>
94 <p class="firstline">Updates a GTM Environment.</p>
98 <pre>Creates a GTM Environment.
106 { # Represents a Google Tag Manager Environment. Note that a user can create, delete and update env…
107 "authorizationCode": "A String", # The environment authorization code.
109 "environmentId": "A String", # GTM Environment ID uniquely identifies the GTM Environment.
110 "url": "A String", # Default preview page url for the environment.
[all …]
Dtagmanager_v1.accounts.containers.reauthorize_environments.html79 <p class="firstline">Re-generates the authorization code for a GTM Environment.</p>
83 <pre>Re-generates the authorization code for a GTM Environment.
88 environmentId: string, The GTM Environment ID. (required)
92 { # Represents a Google Tag Manager Environment. Note that a user can create, delete and update env…
93 "authorizationCode": "A String", # The environment authorization code.
95 "environmentId": "A String", # GTM Environment ID uniquely identifies the GTM Environment.
96 "url": "A String", # Default preview page url for the environment.
97 …"name": "A String", # The environment display name. Can be set or changed only on USER type enviro…
98 "enableDebug": True or False, # Whether or not to enable debug by default on for the environment.
101 …, # The fingerprint of the GTM environment as computed at storage time. This value is recomputed w…
[all …]
Dtagmanager_v2.accounts.containers.environments.html79 <p class="firstline">Creates a GTM Environment.</p>
82 <p class="firstline">Deletes a GTM Environment.</p>
85 <p class="firstline">Gets a GTM Environment.</p>
94 <p class="firstline">Updates a GTM Environment. This method supports patch semantics.</p>
97 <p class="firstline">Re-generates the authorization code for a GTM Environment.</p>
100 <p class="firstline">Updates a GTM Environment.</p>
104 <pre>Creates a GTM Environment.
111 { # Represents a Google Tag Manager Environment. Note that a user can create, delete and update env…
112 "authorizationCode": "A String", # The environment authorization code.
113 …"description": "A String", # The environment description. Can be set or changed only on USER type …
[all …]
/external/u-boot/env/
DKconfig1 menu "Environment" menu
4 bool "Environment is not stored"
18 Define this if you don't want to or can't have an environment stored
19 on a storage medium. In this case the environment will still exist
22 environment.
25 bool "Environment in EEPROM"
35 environment area within the total memory of your EEPROM.
43 EEPROM, which holds the environment, is on the I2C bus.
46 if you have an Environment on an EEPROM reached over
52 EEPROM which holds the environment, is reached over
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowEnvironmentTest.java12 import android.os.Environment;
27 ShadowEnvironment.setExternalStorageState(Environment.MEDIA_REMOVED); in tearDown()
32 assertThat(Environment.getExternalStorageState()).isEqualTo(Environment.MEDIA_REMOVED); in getExternalStorageState_shouldReturnStorageState()
33 ShadowEnvironment.setExternalStorageState(Environment.MEDIA_MOUNTED); in getExternalStorageState_shouldReturnStorageState()
34 assertThat(Environment.getExternalStorageState()).isEqualTo(Environment.MEDIA_MOUNTED); in getExternalStorageState_shouldReturnStorageState()
39 assertThat(Environment.getExternalStorageDirectory().exists()).isTrue(); in getExternalStorageDirectory_shouldReturnDirectory()
44 final File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES); in getExternalStoragePublicDirectory_shouldReturnDirectory()
46 …assertThat(path).isEqualTo(new File(ShadowEnvironment.EXTERNAL_FILES_DIR.toFile(), Environment.DIR… in getExternalStoragePublicDirectory_shouldReturnDirectory()
51 File path1 = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES); in getExternalStoragePublicDirectory_shouldReturnSameDirectory()
52 File path2 = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES); in getExternalStoragePublicDirectory_shouldReturnSameDirectory()
[all …]
/external/python/cpython3/Doc/library/
Dvenv.rst20 site directories. Each virtual environment has its own Python binary (which
21 matches the version of the binary that was used to create this environment) and
35 Python interpreter a virtual environment will be based on.
46 .. note:: A virtual environment is a Python environment such that the Python
52 A virtual environment is a directory tree which contains Python executable
53 files and other files which indicate that it is a virtual environment.
57 environment is active, they install Python packages into the virtual
58 environment without needing to be told to do so explicitly.
60 When a virtual environment is active (i.e., the virtual environment's Python
63 environment, whereas :attr:`sys.base_prefix` and
[all …]
/external/v8/src/compiler/
Dbytecode-graph-builder.cc26 // The abstract execution environment simulates the content of the interpreter
27 // register file. The environment performs SSA-renaming of all tracked nodes at
29 class BytecodeGraphBuilder::Environment : public ZoneObject { class in v8::internal::compiler::BytecodeGraphBuilder
31 Environment(BytecodeGraphBuilder* builder, int register_count,
36 // Specifies whether environment binding methods should attach frame state
59 // Effect dependency tracked by this environment.
65 // Preserve a checkpoint of the environment for the IR graph. Any
66 // further mutation of the environment will not affect checkpoints.
70 // Control dependency tracked by this environment.
79 Environment* Copy();
[all …]
/external/v8/tools/gcmole/
Dgcmole.cc275 class Environment;
289 static ExprEffect NoneWithEnv(Environment* env) { in NoneWithEnv()
298 Environment* env() { in env()
299 return reinterpret_cast<Environment*>(effect_ & ~kAllEffects); in env()
307 ExprEffect(int effect, Environment* env) in ExprEffect()
319 class Environment { class
321 Environment() = default;
323 static Environment Unreachable() { in Unreachable()
324 Environment env; in Unreachable()
329 static Environment Merge(const Environment& l, in Merge()
[all …]
/external/libchrome/third_party/jinja2/
Dlexer.py196 def compile_rules(environment): argument
197 """Compiles all the rules from the environment into a list of rules."""
200 (len(environment.comment_start_string), 'comment',
201 e(environment.comment_start_string)),
202 (len(environment.block_start_string), 'block',
203 e(environment.block_start_string)),
204 (len(environment.variable_start_string), 'variable',
205 e(environment.variable_start_string))
208 if environment.line_statement_prefix is not None:
209 rules.append((len(environment.line_statement_prefix), 'linestatement',
[all …]
Dext.py21 from jinja2.environment import Environment
45 system at the parser level. Custom extensions are bound to an environment
46 but may not store environment specific data on `self`. The reason for
47 this is that an extension can be bound to another environment (for
48 overlays) by creating a copy and reassigning the `environment` attribute.
50 As extensions are created by the environment they cannot accept any
54 storing the configuration values on the environment. Because this way the
55 environment ends up acting as central configuration storage the
72 def __init__(self, environment): argument
73 self.environment = environment
[all …]
Denvironment.py3 jinja2.environment
45 """Return a new spontaneous environment. A spontaneous environment is an
46 unnamed and unaccessible (in theory) environment that is used for
52 return Environment(*args)
55 _spontaneous_environments[args] = env = Environment(*args)
78 def load_extensions(environment, extensions): argument
79 """Load the extensions from the list and bind it to the environment.
86 result[extension.identifier] = extension(environment)
100 def _environment_sanity_check(environment): argument
101 """Perform a sanity check on the environment."""
[all …]
Dloaders.py39 implement a custom loading mechanism. The environment provides a
54 def get_source(self, environment, template):
70 def get_source(self, environment, template): argument
72 It's passed the environment and template name and has to return a
100 def load(self, environment, name, globals=None): argument
113 source, filename, uptodate = self.get_source(environment, name)
117 bcc = environment.bytecode_cache
119 bucket = bcc.get_bucket(environment, name, filename, source)
125 code = environment.compile(source, name, filename)
134 return environment.template_class.from_code(environment, code,
[all …]
/external/python/cpython3/Lib/venv/
D__init__.py2 Virtual environment (venv) package for Python. Based on PEP 405.
20 This class exists to allow virtual environment creation to be
22 behaviour when called upon to create a virtual environment.
25 *un*available to the created environment.
33 :param clear: If True, delete the contents of the environment directory if
34 it already exists, before environment creation.
36 virtual environment.
37 :param upgrade: If True, upgrade an existing virtual environment.
39 environment
40 :param prompt: Alternative terminal prefix for the environment.
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DEnvironment.h1 //== Environment.h - Map from Stmt* to Locations/Values ---------*- C++ -*--==//
10 // This file defined the Environment and EnvironmentManager classes.
31 /// An entry in the environment consists of a Stmt and an LocationContext.
32 /// This allows the environment to manage context-sensitive bindings,
56 class Environment {
66 Environment(BindingsTy eb) in Environment() function
77 /// Environment.
80 /// Profile - Profile the contents of an Environment object for use
82 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) { in Profile()
92 bool operator==(const Environment& RHS) const {
[all …]
/external/tensorflow/tensorflow/contrib/specs/python/
Dspecs.py29 def eval_params(params, environment=None): argument
30 """Evaluates a parameter specification and returns the environment.
34 environment: a dictionary of input bindings
37 Environment with additional bindings created by
45 if environment:
46 bindings.update(environment)
51 def eval_spec(spec, environment=None): argument
52 """Evaluates a spec and returns the environment.
55 in an environment. That is useful if you use the spec language to
62 environment: a dictionary of input bindings
[all …]
/external/python/cpython3/Doc/using/
Dvenv-create.inc4 python3 -m venv /path/to/new/virtual/environment
11 platform or arguments used at environment creation time). It also creates an
44 ENV_DIR A directory to create the environment in.
49 Give the virtual environment access to the system
55 --clear Delete the contents of the environment directory if it
56 already exists, before environment creation.
57 --upgrade Upgrade the environment directory to use this version
60 environment (pip is bootstrapped by default)
62 environment.
64 Once an environment has been created, you may wish to activate it, e.g. by
[all …]
/external/u-boot/tools/env/
Dfw_env.c60 ulong env_size; /* environment size */
62 ulong env_sectors; /* number of environment sectors */
107 struct environment { struct
115 static struct environment environment = { variable
312 * be able to successfully write environment later. in ubi_read()
394 * Search the environment for a variable.
401 for (env = environment.data; *env; env = nxt + 1) { in fw_getenv()
405 if (nxt >= &environment.data[ENV_SIZE]) { in fw_getenv()
407 "environment not terminated\n"); in fw_getenv()
420 * Search the default environment for a variable.
[all …]
DREADME3 the U-Boot's environment variables.
40 that does not have support for redundant environment enabled.
45 be used to access the environment.
47 The DEVICEx_OFFSET constants define the environment offset within the
50 ENVx_SIZE defines the size in bytes taken by the environment, which
51 may be less then flash sector size, if the environment takes less
55 partition where the environment resides.
58 this environment instance. On NAND this is used to limit the range
61 To prevent losing changes to the environment and to prevent confusing the MTD
63 to the environment.
/external/python/cpython3/Tools/nuget/
Dmake_pkg.proj41 <Environment>$(Environment)%0D%0Aset PYTHONPATH=$(PySourcePath)Lib</Environment>
42 <Environment>$(Environment)%0D%0Aset PYTHON_NUSPEC_VERSION=$(NuspecVersion)</Environment>
43 …<Environment Condition="$(Platform) != 'x86'">$(Environment)%0D%0Aset PYTHON_PROPS_PLATFORM=$(Plat…
44 …<Environment Condition="$(Platform) == 'x86'">$(Environment)%0D%0Aset PYTHON_PROPS_PLATFORM=Win32<…
45 … <Environment>$(Environment)%0D%0Amkdir "$(OutputPath.Trim(`\`))" &gt;nul 2&gt;nul</Environment>
54 … <Exec Command="setlocal%0D%0A$(Environment)%0D%0A$(PythonArguments)%0D%0A$(PackageArguments)" />
/external/u-boot/include/
Denvironment.h14 * The "environment" is stored as a list of '\0' terminated
20 * The environment is preceded by a 32 bit CRC over the data part.
152 unsigned char data[ENV_SIZE]; /* Environment data */
156 extern env_t environment;
182 /* Value for environment validity */
184 ENV_INVALID, /* No valid environment */
185 ENV_VALID, /* First or only environment is valid */
186 ENV_REDUND, /* Redundant environment is valid */
220 * load() - Load the environment from storage
222 * This method is optional. If not provided, no environment will be
[all …]
/external/libchrome/base/
Denvironment_unittest.cc5 #include "base/environment.h"
30 std::unique_ptr<Environment> env(Environment::Create()); in TEST_F()
37 std::unique_ptr<Environment> env(Environment::Create()); in TEST_F()
65 std::unique_ptr<Environment> env(Environment::Create()); in TEST_F()
70 std::unique_ptr<Environment> env(Environment::Create()); in TEST_F()
76 // Now verify that the environment has the new variable. in TEST_F()
85 std::unique_ptr<Environment> env(Environment::Create()); in TEST_F()
89 // First set some environment variable. in TEST_F()
92 // Now verify that the environment has the new variable. in TEST_F()
95 // Finally verify that the environment variable was erased. in TEST_F()
/external/u-boot/cmd/
Dnvedit.c13 * Support for persistent environment data
15 * The "environment" is stored on external storage as a list of '\0'
17 * a double '\0'. The environment is preceded by a 32 bit CRC over
18 * the data part and, in case of redundant environment, a byte of
23 * environment. After that, we use a hash table.
30 #include <environment.h>
66 * be used via get_env_id() as an indication, if the environment
67 * has changed or not. So it is possible to reread an environment
68 * variable only if the environment was changed ... done so for
80 * Command interface: print one or all environment variables
[all …]
/external/u-boot/doc/
DREADME.enetaddr18 - environment ("ethaddr", "eth1addr", ...)
34 2. Read from environment in net/eth.c after initialize()
35 3. The environment variable will be compared to the driver initialized
37 environment variable will be used unchanged.
38 If the environment variable is not set, it will be initialized from
44 b) The user hasn't set an 'ethmacskip' environment variable
57 address(es) and initializing the respective environment variable(s) from it.
58 Note that this shall be done if, and only if, the environment does not already
59 contain these environment variables, i.e. existing variable definitions must
62 During runtime, the ethernet layer will use the environment variables to sync
[all …]
/external/python/cpython2/Lib/
Drexec.py6 environment that only exposes those built-in operations that are
126 Code executed in this restricted environment will only have access to
172 import within the restricted environment.)
308 """Execute code within a restricted environment.
312 executed in the restricted environment's __main__ module.
319 """Evaluate code within a restricted environment.
323 the restricted environment's __main__ module. The value of the
332 environment's __main__ module.
343 restricted environment. Overriding this method in a subclass is
344 used to change the policies enforced by a restricted environment.
[all …]
/external/swiftshader/third_party/LLVM/utils/lit/lit/
DTestingConfig.py12 # Set the environment based on the command line arguments.
13 environment = {
22 environment.update({
34 environment = environment,
66 environment, substitutions, unsupported, on_clone, argument
73 self.environment = dict(environment)
87 self.environment, self.substitutions,
100 self.environment = dict(self.environment)

12345678910>>...191