Home
last modified time | relevance | path

Searched refs:inspect (Results 176 - 200 of 249) sorted by relevance

12345678910

/third_party/node/
H A Dvcbuild.bat120 if /i "%1"=="test-node-inspect" set test_node_inspect=1&goto arg-ok
675 if defined test_node_inspect goto node-test-inspect
680 if defined test_node_inspect goto node-test-inspect
683 :node-test-inspect
685 %node_exe% tools\test-npm-package.js --install deps\node-inspect test
782 echo vcbuild.bat [debug/release] [msi] [doc] [test/test-all/test-addons/test-doc/test-js-native-api/test-node-api/test-benchmark/test-internet/test-pummel/test-simple/test-message/test-tick-processor/test-known-issues/test-node-inspect/test-check-deopts/test-npm/test-async-hooks/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [ignore-flaky] [static/dll] [noprojgen] [projgen] [small-icu/full-icu/without-intl] [nobuild] [nosnapshot] [nonpm] [nocorepack] [noetw] [ltcg] [licensetf] [sign] [ia32/x86/x64/arm64] [vs2019/vs2022] [download-all] [enable-vtune] [lint/lint-ci/lint-js/lint-md] [lint-md-build] [package] [build-release] [upload] [no-NODE-OPTIONS] [link-module path-to-module] [debug-http2] [debug-nghttp2] [clean] [cctest] [no-cctest] [openssl-no-asm]
/third_party/python/Lib/test/
H A Dtest_types.py8 import inspect namespace
601 sig = inspect.signature(object.__init__.__get__)
2122 self.assertTrue(gen.__code__.co_flags & inspect.CO_ITERABLE_COROUTINE)
2123 self.assertFalse(gen.__code__.co_flags & inspect.CO_COROUTINE)
2126 self.assertTrue(g.gi_code.co_flags & inspect.CO_ITERABLE_COROUTINE)
2127 self.assertFalse(g.gi_code.co_flags & inspect.CO_COROUTINE)
H A Dtest_signal.py3 import inspect namespace
70 if inspect.isroutine(value) and not inspect.isbuiltin(value):
H A Dtest_traceback.py8 import inspect namespace
361 str(inspect.signature(traceback.print_exception)),
366 str(inspect.signature(traceback.format_exception)),
371 str(inspect.signature(traceback.format_exception_only)),
H A Dtest_zipimport.py21 import inspect namespace
670 self.assertEqual(inspect.getsource(module), test_src)
/third_party/node/lib/internal/cluster/
H A Dprimary.js126 ArrayPrototypePush(execArgv, `--inspect-port=${getInspectPort(cluster.settings.inspectPort)}`);
/third_party/node/test/parallel/
H A Dtest-console.js82 // An Object with a custom inspect function.
83 const custom_inspect = { foo: 'bar', [util.inspect.custom]: () => 'inspect' };
219 'foo', 'foo bar', 'foo bar hop', "{ slashes: '\\\\\\\\' }", 'inspect',
237 "{\n foo: 'bar',\n [Symbol(nodejs.util.inspect.custom)]:" +
238 ' [Function: [nodejs.util.inspect.custom]]\n}\n');
240 "{\n foo: 'bar',\n [Symbol(nodejs.util.inspect.custom)]:" +
241 ' [Function: [nodejs.util.inspect.custom]]\n}\n');
244 assert.strictEqual(strings.shift(), 'inspect inspect\
[all...]
H A Dtest-repl.js29 const { inspect } = require('util');
998 const data = inspect(expected, { compact: false });
H A Dtest-trace-events-fs-async.js322 throw new Error(`${tr}:\n${util.inspect(proc)}`);
/third_party/node/lib/
H A Dbuffer.js97 inspect: utilInspect,
98 } = require('internal/util/inspect');
876 // Override how buffers are presented by util.inspect().
877 Buffer.prototype[customInspectSymbol] = function inspect(recurseTimes, ctx) { function
909 Buffer.prototype.inspect = Buffer.prototype[customInspectSymbol];
/third_party/jinja2/
H A Dnodes.py5 import inspect namespace
767 or inspect.iscoroutinefunction(func)
/third_party/node/lib/internal/readline/
H A Dinterface.js51 inspect,
54 } = require('internal/util/inspect');
662 this[kWriteToOutput](`Tab completion error: ${inspect(err)}`);
/third_party/node/deps/npm/node_modules/jackspeak/dist/commonjs/
H A Dindex.js807 * Custom printer for `util.inspect`
809 [node_util_1.inspect.custom](_, options) {
810 return `Jack ${(0, node_util_1.inspect)(this.toJSON(), options)}`;
/third_party/python/Lib/
H A Ddataclasses.py5 import inspect namespace
1098 text_sig = str(inspect.signature(cls)).replace(' -> None', '')
H A Dpdb.py16 you can use pdb's post-mortem facility to inspect the contents of the
37 point ('!'). This is a powerful way to inspect the program being
81 import inspect namespace
1219 if co.co_flags & inspect.CO_VARARGS: n = n+1
1220 if co.co_flags & inspect.CO_VARKEYWORDS: n = n+1
1648 # inspect.getsourcelines() returns lineno = 0 for
1650 # This method should be replaced by inspect.getsourcelines(obj)
1651 # once this bug is fixed in inspect
1652 lines, lineno = inspect.getsourcelines(obj)
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/
H A Dbcmsysport.c1532 if (ring->inspect) { in bcm_sysport_init_tx_ring()
2366 if (ring->inspect) in bcm_sysport_map_queues()
2374 ring->inspect = true; in bcm_sysport_map_queues()
2412 if (!ring->inspect) in bcm_sysport_unmap_queues()
2415 ring->inspect = false; in bcm_sysport_unmap_queues()
/kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/
H A Dbcmsysport.c1548 if (ring->inspect) { in bcm_sysport_init_tx_ring()
2370 if (ring->inspect) in bcm_sysport_map_queues()
2378 ring->inspect = true; in bcm_sysport_map_queues()
2405 if (!ring->inspect) in bcm_sysport_unmap_queues()
2408 ring->inspect = false; in bcm_sysport_unmap_queues()
H A Dbcmsysport.h705 bool inspect; /* inspect switch port and queue */ member
/kernel/linux/linux-5.10/arch/arm/kernel/
H A Dphys2virt.S90 @ need to inspect the first halfword of the opcode, to check whether
/kernel/linux/linux-6.6/arch/arm/kernel/
H A Dphys2virt.S90 @ need to inspect the first halfword of the opcode, to check whether
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/
H A Drx_desc.h1292 inspect:1, member
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath10k/
H A Drx_desc.h1324 inspect:1, member
/third_party/node/lib/internal/test_runner/
H A Drunner.js162 ArrayPrototypePush(argv, `--inspect-port=${getInspectPort(inspectPort)}`);
/third_party/protobuf/ruby/tests/
H A Dcommon_tests.rb121 assert_equal expected, m.inspect
126 assert_equal expected, m.inspect
243 assert l.inspect == '[5, 2, 3, 4]'
419 # We only assert on inspect value when there is one map entry because the
422 assert m.inspect == "{\"jkl;\"=>42}"
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyMessage.java151 * Message.inspect => string
155 * field's value is represented according to its own #inspect method.
158 public IRubyObject inspect() { in inspect() method in RubyMessage
742 sb.append(getField(context, fdef).inspect()); in layoutInspect()

Completed in 43 milliseconds

12345678910