Home
last modified time | relevance | path

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

12345678910>>...158

/third_party/node/src/
Denv-inl.h148 inline Environment* AsyncHooks::env() { in env()
149 return Environment::ForAsyncHooks(this); in env()
306 Environment* env, double default_trigger_async_id) in DefaultTriggerAsyncIdScope()
323 Environment* Environment::ForAsyncHooks(AsyncHooks* hooks) { in ForAsyncHooks()
324 return ContainerOf(&Environment::async_hooks_, hooks); in ForAsyncHooks()
327 inline size_t Environment::async_callback_scope_depth() const { in async_callback_scope_depth()
331 inline void Environment::PushAsyncCallbackScope() { in PushAsyncCallbackScope()
335 inline void Environment::PopAsyncCallbackScope() { in PopAsyncCallbackScope()
381 inline void Environment::AssignToContext(v8::Local<v8::Context> context, in AssignToContext()
385 // Used by Environment::GetCurrent to know that we are on a node context. in AssignToContext()
[all …]
Dnode_report_module.cc18 using node::Environment;
31 Environment* env = Environment::GetCurrent(info); in WriteReport()
57 Environment* env = Environment::GetCurrent(info); in GetReport()
84 Environment* env = Environment::GetCurrent(info); in SetCompact()
92 Environment* env = Environment::GetCurrent(info); in GetDirectory()
100 Environment* env = Environment::GetCurrent(info); in SetDirectory()
108 Environment* env = Environment::GetCurrent(info); in GetFilename()
116 Environment* env = Environment::GetCurrent(info); in SetFilename()
123 Environment* env = Environment::GetCurrent(info); in GetSignal()
130 Environment* env = Environment::GetCurrent(info); in SetSignal()
[all …]
Denv.cc57 int const Environment::kNodeContextTag = 0x6e6f64;
58 void* const Environment::kNodeContextTagPtr = const_cast<void*>(
59 static_cast<const void*>(&Environment::kNodeContextTag));
228 CHECK_EQ(0, uv_key_create(&Environment::thread_local_env)); in InitThreadLocalOnce()
233 // Ideally, we’d have a consistent story that treats all threads/Environment in UpdateTraceCategoryState()
256 void Environment::CreateProperties() { in CreateProperties()
270 // Store primordials setup by the per-context script in the environment. in CreateProperties()
332 Environment::Environment(IsolateData* isolate_data, in Environment() function in node::Environment
367 // We create new copies of the per-Environment option sets, so that it is in Environment()
368 // easier to modify them after Environment creation. The defaults are in Environment()
[all …]
Dinspector_js_api.cc45 static Local<String> GetClassName(Environment* env) { in GetClassName()
56 static Local<String> GetClassName(Environment* env) { in GetClassName()
66 JSBindingsSessionDelegate(Environment* env, in JSBindingsSessionDelegate()
85 Environment* env_;
89 JSBindingsConnection(Environment* env, in JSBindingsConnection()
103 static void Bind(Environment* env, Local<Object> target) { in Bind()
118 Environment* env = Environment::GetCurrent(info); in New()
136 Environment* env = Environment::GetCurrent(info); in Dispatch()
165 static bool InspectorEnabled(Environment* env) { in InspectorEnabled()
171 auto env = Environment::GetCurrent(info); in SetConsoleExtensionInstaller()
[all …]
Dnode_perf.cc55 Environment* env = entry.env(); in InitObject()
98 Environment* env = Environment::GetCurrent(args); in New()
110 void PerformanceEntry::Notify(Environment* env, in Notify()
127 Environment* env = Environment::GetCurrent(args); in Mark()
146 Environment* env = Environment::GetCurrent(args); in ClearMark()
157 inline uint64_t GetPerformanceMark(Environment* env, const std::string& name) { in GetPerformanceMark()
166 Environment* env = Environment::GetCurrent(args); in Measure()
215 Environment* env = Environment::GetCurrent(args); in MarkMilestone()
226 Environment* env = Environment::GetCurrent(args); in SetupPerformanceObservers()
232 void PerformanceGCCallback(Environment* env, in PerformanceGCCallback()
[all …]
/third_party/python/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
30 …python.org/guides/installing-using-pip-and-virtual-environments/#creating-a-virtual-environment>`__
41 .. note:: A virtual environment is a Python environment such that the Python
47 A virtual environment is a directory tree which contains Python executable
48 files and other files which indicate that it is a virtual environment.
52 environment is active, they install Python packages into the virtual
53 environment without needing to be told to do so explicitly.
55 When a virtual environment is active (i.e., the virtual environment's Python
58 environment, whereas :attr:`sys.base_prefix` and
[all …]
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/build_system/
Dbuild_system_test.dart25 Environment environment;
43 fooTarget = TestTarget((List<File> inputFiles, Environment environment) async {
44 environment
59 barTarget = TestTarget((List<File> inputFiles, Environment environment) async {
60 environment.buildDir
74 fizzTarget = TestTarget((List<File> inputFiles, Environment environment) async {
85 sharedTarget = TestTarget((List<File> inputFiles, Environment environment) async {
94 environment = Environment(
111 final BuildResult buildResult = await buildSystem.build(fooTarget, environment);
118 final Target badTarget = TestTarget((List<File> inputFiles, Environment environment) async {})
[all …]
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/
Dchannel_test.dart74 environment: anyNamed('environment'),
84 environment: anyNamed('environment'),
105 environment: anyNamed('environment'),
110 environment: anyNamed('environment'),
115 environment: anyNamed('environment'),
125 environment: anyNamed('environment'),
130 environment: anyNamed('environment'),
135 environment: anyNamed('environment'),
144 environment: anyNamed('environment'),
149 environment: anyNamed('environment'),
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_system/
Dbuild_system.dart38 /// of at least one of the environment values and zero or more local values.
94 /// set up the environment before the test is run. Unit tests should fully
116 Future<void> build(List<File> inputFiles, Environment environment);
123 Environment environment,
126 final File stamp = _findStampFile(environment);
211 void clearStamp(Environment environment) {
212 final File stamp = _findStampFile(environment);
221 Environment environment,
223 final File stamp = _findStampFile(environment);
245 Environment environment,
[all …]
Dsource.dart13 /// [Environment].
14 typedef InputFunction = List<File> Function(Environment environment);
18 /// Create a new [SourceVisitor] from an [Environment].
19 SourceVisitor(this.environment, [this.inputs = true]);
21 /// The current environment.
22 final Environment environment;
36 sources.addAll(function(environment));
41 /// The uri may include constants defined in an [Environment]. If
57 case Environment.kProjectDirectory:
59 fs.path.split(environment.projectDir.resolveSymbolicLinksSync()));
[all …]
/third_party/node/tools/inspector_protocol/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 …]
/third_party/python/Doc/using/
Dvenv-create.inc4 python3 -m venv /path/to/new/virtual/environment
12 used at environment creation time). It also creates an (initially empty)
45 ENV_DIR A directory to create the environment in.
50 Give the virtual environment access to the system
56 --clear Delete the contents of the environment directory if it
57 already exists, before environment creation.
58 --upgrade Upgrade the environment directory to use this version
61 environment (pip is bootstrapped by default)
63 environment.
67 Once an environment has been created, you may wish to activate it, e.g. by
[all …]
/third_party/node/src/api/
Dhooks.cc21 void RunAtExit(Environment* env) { in RunAtExit()
26 auto env = Environment::GetThreadLocalEnv(); in AtExit()
30 void AtExit(Environment* env, void (*cb)(void* arg), void* arg) { in AtExit()
35 void EmitBeforeExit(Environment* env) { in EmitBeforeExit()
39 Maybe<bool> EmitProcessBeforeExit(Environment* env) { in EmitProcessBeforeExit()
40 TraceEventScope trace_scope(TRACING_CATEGORY_NODE1(environment), in EmitProcessBeforeExit()
61 int EmitExit(Environment* env) { in EmitExit()
65 Maybe<int> EmitProcessExit(Environment* env) { in EmitProcessExit()
99 Environment* env;
125 Environment* env = Environment::GetCurrent(isolate); in AddEnvironmentCleanupHook()
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/
Dprocess.dart97 Map<String, String> _environment(bool allowReentrantFlutter, [ Map<String, String> environment ]) {
99 if (environment == null)
100 environment = <String, String>{'FLUTTER_ALREADY_LOCKED': 'true'};
102 environment['FLUTTER_ALREADY_LOCKED'] = 'true';
105 return environment;
114 Map<String, String> environment,
120 environment: _environment(allowReentrantFlutter, environment),
140 Map<String, String> environment,
146 environment: environment,
196 Map<String, String> environment,
[all …]
/third_party/jinja2/
Denvironment.py62 _env_bound = t.TypeVar("_env_bound", bound="Environment")
68 """Return a new spontaneous environment. A spontaneous environment
70 existing environment.
72 :param cls: Environment class to create.
73 :param args: Positional arguments passed to environment.
107 environment: "Environment", argument
110 """Load the extensions from the list and bind it to the environment.
119 result[extension.identifier] = extension(environment)
124 def _environment_config_check(environment: "Environment") -> "Environment": argument
125 """Perform a sanity check on the environment."""
[all …]
Doptimizer.py16 from .environment import Environment
19 def optimize(node: nodes.Node, environment: "Environment") -> nodes.Node: argument
22 optimizer = Optimizer(environment)
27 def __init__(self, environment: "t.Optional[Environment]") -> None: argument
28 self.environment = environment
42 environment=self.environment,
Dlexer.py18 from .environment import Environment
211 def compile_rules(environment: "Environment") -> t.List[t.Tuple[str, str]]: argument
212 """Compiles all the rules from the environment into a list of rules."""
216 len(environment.comment_start_string),
218 e(environment.comment_start_string),
221 len(environment.block_start_string),
223 e(environment.block_start_string),
226 len(environment.variable_start_string),
228 e(environment.variable_start_string),
232 if environment.line_statement_prefix is not None:
[all …]
/third_party/skia/third_party/externals/jinja2/
Dlexer.py205 def compile_rules(environment): argument
206 """Compiles all the rules from the environment into a list of rules."""
210 len(environment.comment_start_string),
212 e(environment.comment_start_string),
215 len(environment.block_start_string),
217 e(environment.block_start_string),
220 len(environment.variable_start_string),
222 e(environment.variable_start_string),
226 if environment.line_statement_prefix is not None:
229 len(environment.line_statement_prefix),
[all …]
/third_party/elfutils/doc/
Ddebuginfod-client-config.77 debuginfod-client-config \- debuginfod client environment variables, cache control files and etc.
10 Several environment variables and control files control the behaviour of debuginfod client applicat…
17 .SH ENVIRONMENT VARIABLES
20 This environment variable points to a file system to be used for
25 This environment variable contains a list of URL prefixes for trusted
27 This environment variable may be set by /etc/profile.d scripts
32 This environment variable governs the location of the cache where
34 directory is chosen based on other environment variables, see below.
38 This environment variable governs the default progress function. If
46 This environment variable governs the default file descriptor for
[all …]
/third_party/python/Lib/venv/
D__init__.py2 Virtual environment (venv) package for Python. Based on PEP 405.
22 This class exists to allow virtual environment creation to be
24 behaviour when called upon to create a virtual environment.
27 *un*available to the created environment.
35 :param clear: If True, delete the contents of the environment directory if
36 it already exists, before environment creation.
38 virtual environment.
39 :param upgrade: If True, upgrade an existing virtual environment.
41 environment
42 :param prompt: Alternative terminal prefix for the environment.
[all …]
/third_party/python/Tools/nuget/
Dmake_pkg.proj42 <Environment>$(Environment)%0D%0Aset PYTHONPATH=$(PySourcePath)Lib</Environment>
43 <Environment>$(Environment)%0D%0Aset PYTHON_NUSPEC_VERSION=$(NuspecVersion)</Environment>
44 …<Environment Condition="$(Platform) != 'x86'">$(Environment)%0D%0Aset PYTHON_PROPS_PLATFORM=$(Plat…
45 …<Environment Condition="$(Platform) == 'x86'">$(Environment)%0D%0Aset PYTHON_PROPS_PLATFORM=Win32<…
46 … <Environment>$(Environment)%0D%0Amkdir "$(OutputPath.Trim(`\`))" &gt;nul 2&gt;nul</Environment>
55 … <Exec Command="setlocal%0D%0A$(Environment)%0D%0A$(PythonArguments)%0D%0A$(PackageArguments)" />
/third_party/flutter/flutter/dev/devicelab/test/
Dadb_test.dart116 Map<String, String> environment,
121 environment: environment,
128 CommandArgs({ this.command, this.arguments, this.environment });
132 final Map<String, String> environment;
135 …g toString() => 'CommandArgs(command: $command, arguments: $arguments, environment: $environment)';
145 const MapEquality<String, String>().equals(otherCmd.environment, environment);
155 int get _hashEnvironment => environment != null
156 ? const MapEquality<String, String>().hash(environment)
185 …ing> shellEval(String command, List<String> arguments, { Map<String, String> environment }) async {
189 environment: environment,
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_system/targets/
Dassets.dart19 List<File> inputs(Environment environment) {
22 manifestPath: environment.projectDir.childFile('pubspec.yaml').path,
23 packagesPath: environment.projectDir.childFile('.packages').path,
36 List<File> outputs(Environment environment) {
39 manifestPath: environment.projectDir.childFile('pubspec.yaml').path,
40 packagesPath: environment.projectDir.childFile('.packages').path,
44 final File file = fs.file(fs.path.join(environment.buildDir.path, 'flutter_assets', key));
77 Future<void> build(List<File> inputFiles, Environment environment) async {
78 final Directory output = environment
87 manifestPath: environment.projectDir.childFile('pubspec.yaml').path,
[all …]
Ddart.dart41 List<File> listDartSources(Environment environment) {
42 …final Map<String, Uri> packageMap = PackageMap(environment.projectDir.childFile('.packages').path)…
84 Future<void> build(List<File> inputFiles, Environment environment) async {
86 FlutterProject.fromDirectory(environment.projectDir),
88 if (environment.defines[kBuildMode] == null) {
91 final BuildMode buildMode = getBuildModeForName(environment.defines[kBuildMode]);
92 final String targetFile = environment.defines[kTargetFile] ?? fs.path.join('lib', 'main.dart');
93 final String packagesPath = environment.projectDir.childFile('.packages').path;
103 outputFilePath: environment.buildDir.childFile('app.dill').path,
120 Future<void> build(List<File> inputFiles, Environment environment) async {
[all …]
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/build_system/targets/
Dassets_test.dart14 Environment environment;
19 environment = Environment(
42 await buildSystem.build(const CopyAssets(), environment);
44 …expect(fs.file(fs.path.join(environment.buildDir.path, 'flutter_assets', 'AssetManifest.json')).ex…
45 …expect(fs.file(fs.path.join(environment.buildDir.path, 'flutter_assets', 'FontManifest.json')).exi…
46 …expect(fs.file(fs.path.join(environment.buildDir.path, 'flutter_assets', 'LICENSE')).existsSync(),…
48 …expect(fs.file(fs.path.join(environment.buildDir.path, 'flutter_assets', 'assets/foo/bar.png')).ex…
52 await buildSystem.build(const CopyAssets(), environment);
54 …expect(fs.file(fs.path.join(environment.buildDir.path, 'flutter_assets', 'assets/foo/bar.png')).ex…
63 await buildSystem.build(const CopyAssets(), environment);
[all …]

12345678910>>...158