Home
last modified time | relevance | path

Searched refs:reloaded (Results 1 – 25 of 73) sorted by relevance

123

/third_party/python/Lib/test/test_importlib/
Dtest_api.py222 reloaded = self.init.reload(module)
225 self.assertEqual(reloaded.spam, 3)
232 reloaded = self.init.reload(types)
234 self.assertIs(reloaded, types)
236 self.assertEqual(reloaded.__loader__.path, loader.path)
243 reloaded = self.init.reload(types)
245 self.assertIsNot(reloaded.__loader__, None)
246 self.assertIs(reloaded, types)
288 reloaded = self.init.reload(module)
289 ns = vars(reloaded).copy()
[all …]
Dtest_spec.py345 reloaded = self.bootstrap._exec(self.spec, loaded)
349 self.assertIs(reloaded, loaded)
357 reloaded = self.bootstrap._exec(self.spec, loaded)
360 self.assertIs(reloaded, loaded)
367 reloaded = self.bootstrap._exec(self.spec, loaded)
370 self.assertIs(reloaded, loaded)
396 reloaded = self.bootstrap._exec(self.spec, loaded)
400 self.assertIs(reloaded, loaded)
/third_party/flutter/flutter/packages/flutter_tools/test/integration.shard/
Dhot_reload_test.dart102 bool reloaded = false;
103 … final Future<void> reloadFuture = _flutter.hotReload().then((void value) { reloaded = true; });
108 expect(reloaded, isFalse);
111 expect(reloaded, isTrue);
112 reloaded = false;
142 bool reloaded = false;
143 … final Future<void> reloadFuture = _flutter.hotReload().then((void value) { reloaded = true; });
147 expect(reloaded, isFalse);
150 expect(reloaded, isTrue);
/third_party/flutter/flutter/dev/devicelab/bin/tasks/
Dflutter_attach_test.dart18 final Completer<void> reloaded = Completer<void>();
39 reloaded.complete();
67 await eventOrExit(reloaded.future);
/third_party/typescript/src/server/
DscriptInfo.ts126 const reloaded = this.reload(newText); constant
129 return reloaded;
/third_party/iptables/
Diptables-config45 # Space separated list of sysctl items which are to be reloaded on start.
/third_party/flutter/engine/flutter/frontend_server/
DREADME.md53 such update can not be hot-reloaded by VM at this point, will be rejected.
/third_party/python/Doc/library/
Dimp.rst160 When a module is reloaded, its dictionary (containing the module's global
176 more than once, and may fail in arbitrary ways when reloaded.
190 being reloaded instead of just ``__name__``.
Dimportlib.rst177 When a module is reloaded, its dictionary (containing the module's global
195 when reloaded.
210 :exc:`ModuleNotFoundError` is raised when the module being reloaded lacks
407 when a module is imported or reloaded. The module should already
423 module should be used and reloaded.
433 reloaded):
/third_party/libinput/doc/user/
Dtouchpad-jitter.rst89 :ref:`reload the hwdb <hwdb_reloading>`. Once reloaded, :ref:`libinput-record`
/third_party/curl/
Dbackport-CVE-2023-27535.patch88 ftpstate state_saved; /* transfer type saved to be reloaded after
/third_party/openGLES/extensions/EXT/
DWGL_EXT_display_color_table.txt189 WGL_OK is returned if the table is successfully reloaded. [Return
216 application are calculated whenever a table is created or reloaded with
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DWGL_EXT_display_color_table.txt189 WGL_OK is returned if the table is successfully reloaded. [Return
216 application are calculated whenever a table is created or reloaded with
/third_party/python/Misc/NEWS.d/
D3.6.0b4.rst128 warnings module is reloaded (thing usually only done in unit tests).
D3.5.0a3.rst468 Modules bz2, tarfile and tokenize now can be reloaded with imp.reload().
/third_party/mesa3d/docs/relnotes/
D21.1.1.rst122 - panfrost: Always write reloaded tiles when making CRC data valid
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/doc/docbook/
Dwpa_supplicant.conf.sgml30 <para>Changes to configuration file can be reloaded be sending
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/doc/docbook/
Dwpa_supplicant.conf.sgml26 <para>Changes to configuration file can be reloaded be sending
/third_party/mesa3d/src/amd/compiler/
Daco_spill.cpp1675 bool reloaded = ctx.is_reloaded[vec[i]] || ctx.is_reloaded[vec[j]]; in assign_spill_slots() local
1676 ctx.is_reloaded[vec[i]] = reloaded; in assign_spill_slots()
1677 ctx.is_reloaded[vec[j]] = reloaded; in assign_spill_slots()
/third_party/flutter/flutter/packages/flutter_tools/lib/src/
Drun_hot.dart742 printTrace('reloaded $loadedLibraryCount of $finalLibraryCount libraries');
902 // Only report timings if we reloaded a single view without any errors.
/third_party/mesa3d/src/amd/common/
Dac_nir_lower_ngg.c1038 nir_ssa_def *reloaded = nir_load_var(b, saved->var); in save_reusable_variables() local
1039 nir_ssa_def_rewrite_uses_after(ssa, reloaded, reloaded->parent_instr); in save_reusable_variables()
/third_party/python/Doc/c-api/
Dimport.rst94 Reload a module. Return a new reference to the reloaded module, or ``NULL`` with
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/
DOES_get_program_binary.txt54 program binary can be reloaded into the GL via ProgramBinaryOES. This is a
/third_party/openGLES/extensions/OES/
DOES_get_program_binary.txt64 program binary can be reloaded into the GL via ProgramBinaryOES. This is a
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_get_program_binary.txt65 offline compiler. The resulting program binary can be reloaded into the

123