/third_party/grpc/test/core/client_channel/ |
D | xds_bootstrap_test.cc | 83 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/ |
D | Jambase | 42 # 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 …]
|
D | jambase.cpp | 20 ".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",
|
D | startup.cpp | 49 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/typescript/src/server/ |
D | typesMap.json | 45 "angular-bootstrap-lightbox": "angular-bootstrap-lightbox", 81 "bootstrap": "bootstrap", string 82 "bootstrap-editable": "x-editable", 83 "bootstrap-maxlength": "bootstrap-maxlength", 84 "bootstrap-notify": "bootstrap-notify", 85 "bootstrap-slider": "bootstrap-slider", 86 "bootstrap-switch": "bootstrap-switch", 207 "jquery.bootstrap.wizard": "jquery.bootstrap.wizard", 208 "jquery.bootstrap-touchspin": "bootstrap-touchspin", 388 "react-bootstrap": "react-bootstrap", [all …]
|
/third_party/typescript/lib/ |
D | typesMap.json | 45 "angular-bootstrap-lightbox": "angular-bootstrap-lightbox", 81 "bootstrap": "bootstrap", string 82 "bootstrap-editable": "x-editable", 83 "bootstrap-maxlength": "bootstrap-maxlength", 84 "bootstrap-notify": "bootstrap-notify", 85 "bootstrap-slider": "bootstrap-slider", 86 "bootstrap-switch": "bootstrap-switch", 207 "jquery.bootstrap.wizard": "jquery.bootstrap.wizard", 208 "jquery.bootstrap-touchspin": "bootstrap-touchspin", 388 "react-bootstrap": "react-bootstrap", [all …]
|
/third_party/boost/tools/build/src/ |
D | bootstrap.jam | 16 # 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/grpc/src/core/ext/xds/ |
D | xds_bootstrap.cc | 54 // ignore whatever might be specified in the bootstrap file for in IsValidConfig() 86 std::string BootstrapString(const XdsBootstrap& bootstrap) { in BootstrapString() argument 88 if (bootstrap.node() != nullptr) { in BootstrapString() 100 bootstrap.node()->id, bootstrap.node()->cluster, in BootstrapString() 101 bootstrap.node()->locality_region, bootstrap.node()->locality_zone, in BootstrapString() 102 bootstrap.node()->locality_subzone, bootstrap.node()->metadata.Dump())); in BootstrapString() 109 bootstrap.server().server_uri, bootstrap.server().channel_creds_type)); in BootstrapString() 110 if (bootstrap.server().channel_creds_config.type() != Json::Type::JSON_NULL) { in BootstrapString() 113 bootstrap.server().channel_creds_config.Dump())); in BootstrapString() 115 if (!bootstrap.server().server_features.empty()) { in BootstrapString() [all …]
|
/third_party/python/Lib/test/test_importlib/ |
D | test_spec.py | 236 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) 310 loaded = self.bootstrap._load(self.spec) 319 loaded = self.bootstrap._load(self.spec) 335 loaded = self.bootstrap._load(self.spec) 344 loaded = self.bootstrap._load(self.spec) [all …]
|
D | test_locks.py | 118 def bootstrap(self): member in LifetimeTests 123 self.assertNotIn(name, self.bootstrap._module_locks) 124 lock = self.bootstrap._get_module_lock(name) 125 self.assertIn(name, self.bootstrap._module_locks) 129 self.assertNotIn(name, self.bootstrap._module_locks) 134 self.assertEqual(0, len(self.bootstrap._module_locks), 135 self.bootstrap._module_locks)
|
/third_party/python/Lib/test/ |
D | test_ensurepip.py | 90 ensurepip.bootstrap() 104 ensurepip.bootstrap(root="/foo/bar/") 116 ensurepip.bootstrap(user=True) 127 ensurepip.bootstrap(upgrade=True) 138 ensurepip.bootstrap(verbosity=1) 149 ensurepip.bootstrap(verbosity=2) 160 ensurepip.bootstrap(verbosity=3) 171 ensurepip.bootstrap() 175 ensurepip.bootstrap(altinstall=True) 179 ensurepip.bootstrap(default_pip=True) [all …]
|
/third_party/grpc/src/core/ext/filters/client_channel/xds/ |
D | xds_channel_secure.cc | 68 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()
|
D | xds_bootstrap.cc | 40 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/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ClassLoaderUtil.java | 18 * even a class is loaded through the bootstrap class loader of JRE. 28 // bootstrap class loader. Note that we probably do not reach in BootstrapClassLoader() 35 // super(null) is commonly used for accessing the bootstrap in BootstrapClassLoader() 46 * initialized by bootstrap class loader. 96 // during bootstrap, cl might be still null (other than Android?). in getClassLoader() 97 // In this case, we want to use the bootstrap class loader. in getClassLoader()
|
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/ |
D | bootstrap.py | 12 """Raised when the current environment is missing Butler bootstrap variables. 22 """Loads LogDog Butler bootstrap parameters from the environment. 38 """Returns (ButlerBootstrap): The probed bootstrap environment. 60 raise NotBootstrappedError('No streamserver in bootstrap environment.') 70 """Returns: (StreamClient) stream client for the bootstrap streamserver URI.
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | ClassLoaderUtil.java | 19 * 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/ |
D | appveyor.yml | 31 ./configure.py --bootstrap --platform mingw 2>&1\n 43 python configure.py --bootstrap 45 ninja.bootstrap.exe all 55 - ./configure.py --bootstrap
|
D | configure.py | 120 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/ |
D | bundle.ts | 33 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/ |
D | mcm-buildall.sh | 19 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/ |
D | bootstrap.jam | 85 # 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/ |
D | README.md | 1 # 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/ |
D | startup_v2.py | 67 .*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/ |
D | test-loaders-hidden-from-users.js | 10 require('internal/bootstrap/loaders'); 13 message: /Cannot find module 'internal\/bootstrap\/loaders'/ 19 const source = 'module.exports = require("internal/bootstrap/loaders")';
|
/third_party/boost/libs/test/doc/adv_scenarios/ |
D | building_utf.qbk | 34 > bootstrap.bat 42 > bootstrap.bat 53 > bootstrap.bat 61 > ./bootstrap.sh
|