HomeSort by relevance Sort by last modified time
    Searched refs:hooks (Results 1 - 25 of 190) sorted by null

1 2 3 4 5 6 7 8

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sqlite.py 7 factory, transactions, hooks, regression,
13 hooks.suite(), regression.suite(), dump.suite())
  /external/python/cpython2/Lib/test/
test_sqlite.py 7 factory, transactions, hooks, regression,
13 hooks.suite(), regression.suite(), dump.suite())
  /external/tensorflow/tensorflow/contrib/hooks/python/
__init__.py 23 from tensorflow.contrib.hooks.python.training import *
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_sqlite.py 7 factory, transactions, hooks, regression,
13 hooks.suite(), regression.suite(), dump.suite())
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_sqlite.py 7 factory, transactions, hooks, regression,
13 hooks.suite(), regression.suite(), dump.suite())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sqlite.py 7 factory, transactions, hooks, regression,
13 hooks.suite(), regression.suite(), dump.suite())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sqlite.py 7 factory, transactions, hooks, regression,
13 hooks.suite(), regression.suite(), dump.suite())
  /external/dhcpcd-6.8.2/dhcpcd-hooks/
Makefile 5 SCRIPTSDIR= ${LIBEXECDIR}/dhcpcd-hooks
29 ${INSTALL} -d /tmp/${DISTPREFIX}/dhcpcd-hooks
30 ${INSTALL} -m ${NONBINMODE} ${SCRIPTS} /tmp/${DISTPREFIX}/dhcpcd-hooks
  /tools/repohooks/rh/
hooks_unittest.py 17 """Unittests for the hooks module."""
36 import rh.hooks
68 """Verify builtin hooks are documented."""
69 data = self._grab_section('[Builtin Hooks]')
70 for hook in rh.hooks.BUILTIN_HOOKS:
77 for tool in rh.hooks.TOOL_PATHS:
84 for var in rh.hooks.Placeholders.vars():
98 self.replacer = rh.hooks.Placeholders()
162 @mock.patch.object(rh.hooks, '_get_build_os_name', return_value='vapier os')
171 @mock.patch.object(rh.hooks, '_get_build_os_name', return_value='vapier os'
    [all...]
config.py 32 import rh.hooks
92 """Config file used for per-project `repo upload` hooks."""
98 BUILTIN_HOOKS_SECTION = 'Builtin Hooks'
99 BUILTIN_HOOKS_OPTIONS_SECTION = 'Builtin Hooks Options'
137 """List of custom hooks to run (their keys/names)."""
146 """List of all enabled builtin hooks (their keys/names)."""
163 options = rh.hooks.HookOptions(hook,
166 yield (hook, functools.partial(rh.hooks.check_custom,
170 options = rh.hooks.HookOptions(hook,
173 yield (hook, functools.partial(rh.hooks.BUILTIN_HOOKS[hook]
    [all...]
  /external/python/cpython3/Lib/test/
test_sqlite.py 9 factory, transactions, hooks, regression,
20 hooks.suite(), regression.suite(),
  /external/tensorflow/tensorflow/contrib/hooks/python/training/
__init__.py 15 """hooks: A module containing `SessionRunHook`s for use with `MonitoredSession`.
22 from tensorflow.contrib.hooks.python.training.profiler_hook import ProfilerHook
  /external/tensorflow/tensorflow/contrib/hooks/
__init__.py 15 """hooks: A module containing `SessionRunHook`s for use with `MonitoredSession`.
25 from tensorflow.contrib.hooks.python.training import *
  /external/tensorflow/tensorflow/contrib/slim/python/slim/
evaluation.py 157 hooks=None):
181 hooks: A list of additional `SessionRunHook` objects to pass during the
195 if hooks is not None:
196 all_hooks.extend(hooks)
211 hooks=all_hooks,
233 hooks=None):
264 hooks: A list of additional `SessionRunHook` objects to pass during
279 if hooks is not None:
280 # Add custom hooks if provided.
281 all_hooks.extend(hooks)
    [all...]
  /frameworks/native/opengl/libs/EGL/
egldefs.h 20 #include "../hooks.h"
42 gl_hooks_t * hooks[2]; member in struct:android::egl_connection_t
  /external/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/
TestSSLEnginePair.java 52 public static TestSSLEnginePair create(Hooks hooks) throws IOException {
53 return create(TestSSLContext.create(), hooks);
56 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks) throws IOException {
57 return create(c, hooks, null);
60 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks, boolean[] finished)
62 SSLEngine[] engines = connect(c, hooks, finished);
66 public static SSLEngine[] connect(TestSSLContext c, Hooks hooks) throws IOException
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLEnginePair.java 50 public static TestSSLEnginePair create(Hooks hooks) throws IOException {
51 return create(TestSSLContext.create(), hooks);
54 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks) throws IOException {
55 return create(c, hooks, null);
58 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks, boolean[] finished)
60 SSLEngine[] engines = connect(c, hooks, finished);
64 public static SSLEngine[] connect(TestSSLContext c, Hooks hooks) throws IOException
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules from
    [all...]
  /external/python/cpython2/Lib/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]
  /build/soong/android/
hooks.go 21 // This file implements hooks that external module types can use to inject logic into existing
25 // Load hooks are run after the module's properties have been filled from the blueprint file, but
36 // Arch hooks are run after the module has been split into architecture variants, and can be used
45 h := &m.(Module).base().hooks
50 h := &m.(Module).base().hooks
54 func (x *hooks) runLoadHooks(ctx LoadHookContext, m *ModuleBase) {
65 func (x *hooks) runArchHooks(ctx ArchHookContext, m *ModuleBase) {
82 // Install hooks are run after a module creates a rule to install a file or symlink.
86 h := &m.(Module).base().hooks
104 func (x *hooks) runInstallHooks(ctx ModuleContext, path OutputPath, symlink bool)
120 type hooks struct { type
    [all...]
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
WorkerProcessTest.java 58 Set<Thread> hooks = Sets.newHashSet(); field in class:WorkerProcessTest.MockRegistrar
60 hooks.add(hook);
63 return hooks.remove(hook);
112 Iterables.getOnlyElement(registrar.hooks).getName());
114 assertTrue(registrar.hooks.isEmpty());
121 Thread hook = Iterables.getOnlyElement(registrar.hooks);
127 assertTrue(registrar.hooks.contains(hook));
138 assertTrue(registrar.hooks.isEmpty());
150 assertTrue(registrar.hooks.isEmpty());

Completed in 483 milliseconds

1 2 3 4 5 6 7 8