Home
last modified time | relevance | path

Searched full:bootstrap (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/third_party/grpc/test/core/client_channel/
Dxds_bootstrap_test.cc83 grpc_core::XdsBootstrap bootstrap(std::move(json), &error); in TEST() local
85 EXPECT_EQ(bootstrap.server().server_uri, "fake:///lb"); in TEST()
86 ASSERT_EQ(bootstrap.server().channel_creds.size(), 1UL); in TEST()
87 EXPECT_EQ(bootstrap.server().channel_creds[0].type, "fake"); in TEST()
88 EXPECT_EQ(bootstrap.server().channel_creds[0].config.type(), in TEST()
90 ASSERT_NE(bootstrap.node(), nullptr); in TEST()
91 EXPECT_EQ(bootstrap.node()->id, "foo"); in TEST()
92 EXPECT_EQ(bootstrap.node()->cluster, "bar"); in TEST()
93 EXPECT_EQ(bootstrap.node()->locality_region, "milky_way"); in TEST()
94 EXPECT_EQ(bootstrap.node()->locality_zone, "sol_system"); in TEST()
[all …]
/third_party/boost/tools/build/src/engine/
DJambase42 # This global will hold the location of the build system bootstrap file.
43 .bootstrap-file = ;
73 if $(.bootstrap-file)
75 ECHO "Error: Illegal attempt to re-bootstrap the build system by invoking" ;
92 # Try to find the build system bootstrap file 'bootstrap.jam'.
93 local bootstrap-file = [ GLOB $(BOOST_BUILD_PATH) : bootstrap.jam ] ;
94 .bootstrap-file = $(bootstrap-file[1]) ;
96 # There is no bootstrap.jam we can find, exit with an error.
97 if ! $(.bootstrap-file)
105 ECHO "but we were unable to find \"bootstrap.jam\" in the specified directory" ;
[all …]
Djambase.cpp20 ".bootstrap-file = ;\n",
35 "if $(.bootstrap-file)\n",
37 "ECHO \"Error: Illegal attempt to re-bootstrap the build system by invoking\" ;\n",
45 "local bootstrap-file = [ GLOB $(BOOST_BUILD_PATH) : bootstrap.jam ] ;\n",
46 ".bootstrap-file = $(bootstrap-file[1]) ;\n",
47 "if ! $(.bootstrap-file)\n",
55 "ECHO \"but we were unable to find \\\"bootstrap.jam\\\" in the specified directory\" ;\n",
63 "[ NORMALIZE_PATH $(.bootstrap-file:D) ] ;\n",
65 "include $(.bootstrap-file) ;\n",
99 "if ! $(.bootstrap-file)\n",
Dstartup.cpp49 b2::jam::variable dot_bootstrap_file{".bootstrap-file"}; in builtin_boost_build()
53 "Error: Illegal attempt to re-bootstrap the build system by invoking\n" in builtin_boost_build()
88 // # Try to find the build system bootstrap file 'bootstrap.jam'. in builtin_boost_build()
93 file = b2::paths::normalize(file+"/bootstrap.jam"); in builtin_boost_build()
101 // # There is no bootstrap.jam we can find, exit with an error. in builtin_boost_build()
111 "but we were unable to find 'bootstrap.jam' in the specified directory " in builtin_boost_build()
125 // Set the bootstrap=file var as it's used by the build system to refer to in builtin_boost_build()
144 bool b2::startup::bootstrap(FRAME *frame) in bootstrap() function in b2::startup
239 // Load the build system bootstrap file we found. But check we did that. in bootstrap()
244 b2::jam::list dot_dot_bootstrap_file_val = b2::jam::variable{".bootstrap-file"}; in bootstrap()
/third_party/python/Lib/test/
Dtest_ensurepip.py39 ensurepip.bootstrap()
53 ensurepip.bootstrap(root="/foo/bar/")
65 ensurepip.bootstrap(user=True)
76 ensurepip.bootstrap(upgrade=True)
87 ensurepip.bootstrap(verbosity=1)
98 ensurepip.bootstrap(verbosity=2)
109 ensurepip.bootstrap(verbosity=3)
120 ensurepip.bootstrap()
124 ensurepip.bootstrap(altinstall=True)
128 ensurepip.bootstrap(default_pip=True)
[all …]
/third_party/boringssl/src/util/bot/go/
Denv.py30 bootstrap = imp.load_source( variable
31 'bootstrap', os.path.join(os.path.dirname(__file__), 'bootstrap.py'))
34 new = bootstrap.prepare_go_environ()
48 exe = bootstrap.find_executable(exe, [bootstrap.WORKSPACE])
/third_party/boost/tools/build/src/
Dbootstrap.jam16 # Load the kernel/bootstrap.jam, which does all the work.
17 .bootstrap-file = $(.bootstrap-file:D)/kernel/bootstrap.jam ;
18 include $(.bootstrap-file) ;
/third_party/python/Lib/test/test_importlib/
Dtest_spec.py236 def bootstrap(self): member in ModuleSpecMethodsTests
256 self.bootstrap._exec(self.spec, module)
265 loaded = self.bootstrap._load(self.spec)
278 loaded = self.bootstrap._load(self.spec)
291 loaded = self.bootstrap._load(self.spec)
302 loaded = self.bootstrap._load(self.spec)
308 loaded = self.bootstrap._load(self.spec)
315 loaded = self.bootstrap._load(self.spec)
329 loaded = self.bootstrap._load(self.spec)
338 loaded = self.bootstrap._load(self.spec)
[all …]
Dtest_locks.py116 def bootstrap(self): member in LifetimeTests
121 self.assertNotIn(name, self.bootstrap._module_locks)
122 lock = self.bootstrap._get_module_lock(name)
123 self.assertIn(name, self.bootstrap._module_locks)
127 self.assertNotIn(name, self.bootstrap._module_locks)
132 self.assertEqual(0, len(self.bootstrap._module_locks),
133 self.bootstrap._module_locks)
/third_party/grpc/src/core/ext/filters/client_channel/xds/
Dxds_channel_secure.cc68 grpc_channel* CreateXdsChannel(const XdsBootstrap& bootstrap, in CreateXdsChannel() argument
73 if (!bootstrap.server().channel_creds.empty()) { in CreateXdsChannel()
74 for (size_t i = 0; i < bootstrap.server().channel_creds.size(); ++i) { in CreateXdsChannel()
75 if (bootstrap.server().channel_creds[i].type == "google_default") { in CreateXdsChannel()
78 } else if (bootstrap.server().channel_creds[i].type == "fake") { in CreateXdsChannel()
93 return grpc_insecure_channel_create(bootstrap.server().server_uri.c_str(), in CreateXdsChannel()
101 creds, bootstrap.server().server_uri.c_str(), new_args, nullptr); in CreateXdsChannel()
Dxds_bootstrap.cc40 std::string BootstrapString(const XdsBootstrap& bootstrap) { in BootstrapString() argument
42 if (bootstrap.node() != nullptr) { in BootstrapString()
54 bootstrap.node()->id, bootstrap.node()->cluster, in BootstrapString()
55 bootstrap.node()->locality_region, bootstrap.node()->locality_zone, in BootstrapString()
56 bootstrap.node()->locality_subzone, bootstrap.node()->metadata.Dump())); in BootstrapString()
63 bootstrap.server().server_uri)); in BootstrapString()
64 for (const auto& creds : bootstrap.server().channel_creds) { in BootstrapString()
85 "[xds_client %p] Got bootstrap file location from " in ReadFromFile()
94 gpr_log(GPR_DEBUG, "[xds_client %p] Bootstrap file contents: %s", client, in ReadFromFile()
101 absl::StrCat("Failed to parse bootstrap file ", path.get()).c_str(), in ReadFromFile()
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DClassLoaderUtil.java19 * even a class is loaded through the bootstrap class loader of JRE.
30 // bootstrap class loader. Note that we probably do not reach in BootstrapClassLoader()
37 // super(null) is commonly used for accessing the bootstrap in BootstrapClassLoader()
48 * initialized by bootstrap class loader.
98 // during bootstrap, cl might be still null (other than Android?). in getClassLoader()
99 // In this case, we want to use the bootstrap class loader. in getClassLoader()
/third_party/ninja/
Dappveyor.yml31 ./configure.py --bootstrap --platform mingw 2>&1\n
43 python configure.py --bootstrap
45 ninja.bootstrap.exe all
55 - ./configure.py --bootstrap
Dconfigure.py120 class Bootstrap: class
123 Used to bootstrap Ninja from scratch. In --bootstrap mode this
126 behave like non-bootstrap mode.
145 # In bootstrap mode, we have no ninja process to catch /showIncludes
161 # make the bootstrap build work.
202 parser.add_option('--bootstrap', action='store_true',
203 help='bootstrap a ninja binary from nothing')
241 if options.bootstrap:
250 n = Bootstrap(n, verbose=options.verbose)
261 if '--bootstrap' in configure_args:
[all …]
/third_party/jsframework/test/ut/app/
Dbundle.ts33 bootstrap
38 describe('use defineFn/bootstrap', () => {
84 describe('bootstrap', () => {
97 const result = bootstrap(page, options.packageName, '@app-module/dom', undefined, undefined);
103 … const result = bootstrap(page, options.packageName, '@app-application/dom', undefined, undefined);
/third_party/toybox/scripts/
Dmcm-buildall.sh19 BOOTSTRAP=i686-linux-musl
41 HOST=$BOOTSTRAP
93 # $BOOTSTRAP arch
132 # Make bootstrap compiler (no $TYPE, dynamically linked against host libc)
136 TARGET=$BOOTSTRAP make_toolchain 2>&1 | tee -a "$OUTPUT/log/$BOOTSTRAP"-host.log
147 # First target builds a proper version of the $BOOTSTRAP compiler above,
/third_party/boost/tools/build/src/kernel/
Dbootstrap.jam85 # Bootstrap the module system. Then bring the import rule into the global module.
87 SEARCH on <module@>modules.jam = $(.bootstrap-file:D) ;
107 local whereami = [ NORMALIZE_PATH $(.bootstrap-file:DT) ] ;
245 PYTHON_IMPORT_RULE bootstrap : bootstrap : PyBB : bootstrap ;
246 modules.poke PyBB : root : [ NORMALIZE_PATH $(.bootstrap-file:DT)/.. ] ;
250 local ok = [ bootstrap $(root) ] ;
/third_party/libevdev/doc/style/
DREADME.md1 # Doxygen-Bootstrap
2 This is a small project for integrating Doxygen output with Twitter Bootstrap.
6 …b pages (specifically it is based on https://github.com/plusjade/jekyll-bootstrap/). Be sure to m…
/third_party/boost/tools/build/test/
Dstartup_v2.py67 .*but we were unable to find 'bootstrap\.jam' in the specified directory or in BOOST_BUILD_PATH:""")
75 …r".*but we were unable to find 'bootstrap\.jam' in the specified directory or in BOOST_BUILD_PATH:…
81 …r".*but we were unable to find 'bootstrap\.jam' in the specified directory or in BOOST_BUILD_PATH:…
90 subdir="bootstrap-env", stdout="build system bootstrapped")
93 t.run_build_system(subdir="bootstrap-explicit",
/third_party/node/test/parallel/
Dtest-loaders-hidden-from-users.js10 require('internal/bootstrap/loaders');
13 message: /Cannot find module 'internal\/bootstrap\/loaders'/
19 const source = 'module.exports = require("internal/bootstrap/loaders")';
/third_party/grpc/examples/python/xds/
DREADME.md31 create a bootstrap file as desribed in [gRFC A27](https://github.com/grpc/proposal/blob/master/A27-…
50 2. Point the `GRPC_XDS_BOOTSTRAP` environment variable at the bootstrap file:
53 export GRPC_XDS_BOOTSTRAP=/etc/xds-bootstrap.json
68 Be sure to set up the bootstrap file and `GRPC_XDS_BOOTSTRAP` as in the previous
/third_party/boost/libs/test/doc/adv_scenarios/
Dbuilding_utf.qbk34 > bootstrap.bat
42 > bootstrap.bat
53 > bootstrap.bat
61 > ./bootstrap.sh
/third_party/protobuf/php/tests/
Dgdb_test.sh6 # phpunit` --bootstrap autoload.php tmp_test.php
8 # gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which phpunit` --bootstrap
9 gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which phpunit` --bootstrap a…
/third_party/boost/
Dbootstrap.bat15 call .\build.bat %* > ..\..\..\..\bootstrap.log
50 ECHO # Automatically generated by bootstrap.bat >> project-config.jam
91 ECHO Please consult bootstrap.log for further diagnostics.
94 REM Set an error code to allow `bootstrap && b2`
/third_party/node/tools/bootstrap/
Dwindows_boxstarter4 …ckage/nr/url?https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstart…
9 # Install-BoxstarterPackage https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/w…
12 # https://github.com/nodejs/node/blob/master/tools/bootstrap/README.md

12345678910>>...19