/third_party/python/Lib/test/ |
D | pstats.pck | 2 _compile_info(iig�h㈵��>g�����>(u'/home/gbr/devel/python/Lib/sre_parse.pyi�… 3 …u)/home/gbr/devel/python/Lib/sre_compile.pyicu_simple(irirg?�̔��?ghUMu?(… 11 …python/Lib/sre_parse.pyi�u_parse(i|i|g�ͮ{+R?gǟ�lXSy?0(u4/home/gbr/devel/p…
|
/third_party/skia/third_party/externals/angle2/ |
D | .vpython | 3 # It describes patterns for python wheel dependencies of the python scripts in 5 # (since pure-python dependencies can be easily vendored into third_party). 7 # When vpython is invoked, it finds this file and builds a python VirtualEnv, 10 # this never requires the end-user machine to have a working python extension 14 # All python scripts in the repo share this same spec, to avoid dependency 17 # If you have depot_tools installed in your $PATH, you can invoke python scripts 19 # substituting `vpython` instead of `python` on the command line, e.g.: 33 name: "infra/python/wheels/jsonlines-py2_py3" 37 name: "infra/python/wheels/subprocess32/${vpython_platform}" 57 name: "infra/python/wheels/psutil/${vpython_platform}" [all …]
|
D | .vpython3 | 3 # It describes patterns for python wheel dependencies of the python scripts in 5 # (since pure-python dependencies can be easily vendored into third_party). 7 # When vpython is invoked, it finds this file and builds a python VirtualEnv, 10 # this never requires the end-user machine to have a working python extension 14 # All python scripts in the repo share this same spec, to avoid dependency 17 # If you have depot_tools installed in your $PATH, you can invoke python scripts 19 # substituting `vpython` instead of `python` on the command line, e.g.: 30 name: "infra/python/wheels/six-py2_py3" 35 name: "infra/python/wheels/psutil/${vpython_platform}"
|
/third_party/PyYAML/tests/data/ |
D | construct-python-object.data | 1 - !!python/object:test_constructor.AnObject { foo: 1, bar: two, baz: [3,3,3] } 2 - !!python/object:test_constructor.AnInstance { foo: 1, bar: two, baz: [3,3,3] } 4 - !!python/object/new:test_constructor.AnObject { args: [1, two], kwds: {baz: [3,3,3]} } 5 - !!python/object/apply:test_constructor.AnInstance { args: [1, two], kwds: {baz: [3,3,3]} } 7 - !!python/object:test_constructor.AState { _foo: 1, _bar: two, _baz: [3,3,3] } 8 - !!python/object/new:test_constructor.ACustomState { state: !!python/tuple [1, two, [3,3,3]] } 10 - !!python/object/new:test_constructor.InitArgs [1, two, [3,3,3]] 11 - !!python/object/new:test_constructor.InitArgsWithState { args: [1, two], state: [3,3,3] } 13 - !!python/object/new:test_constructor.NewArgs [1, two, [3,3,3]] 14 - !!python/object/new:test_constructor.NewArgsWithState { args: [1, two], state: [3,3,3] } [all …]
|
D | construct-python-tuple-list-dict.data | 1 - !!python/list [1, 2, 3, 4] 2 - !!python/tuple [1, 2, 3, 4] 3 - !!python/dict {1: 2, 3: 4} 4 - !!python/dict 5 !!python/tuple [0,0]: 0 6 !!python/tuple [0,1]: 1 7 !!python/tuple [1,0]: 1 8 !!python/tuple [1,1]: 0
|
D | construct-python-complex.data | 1 - !!python/complex 0.5+0j 2 - !!python/complex 0.5+0.5j 3 - !!python/complex 0.5j 4 - !!python/complex -0.5+0.5j 5 - !!python/complex -0.5+0j 6 - !!python/complex -0.5-0.5j 7 - !!python/complex -0.5j 8 - !!python/complex 0.5-0.5j
|
D | construct-python-name-module.data | 1 - !!python/name:str 2 - !!python/name:yaml.Loader 3 - !!python/name:yaml.dump 4 - !!python/name:abs 5 - !!python/module:yaml.tokens 6 - !!python/name:signal.Handlers
|
/third_party/python/Doc/ |
D | Makefile | 163 cp -pPR build/html dist/python-$(DISTVERSION)-docs-html 164 tar -C dist -cf dist/python-$(DISTVERSION)-docs-html.tar python-$(DISTVERSION)-docs-html 165 bzip2 -9 -k dist/python-$(DISTVERSION)-docs-html.tar 166 (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-html.zip python-$(DISTVERSION)-docs-html) 167 rm -r dist/python-$(DISTVERSION)-docs-html 168 rm dist/python-$(DISTVERSION)-docs-html.tar 172 cp -pPR build/text dist/python-$(DISTVERSION)-docs-text 173 tar -C dist -cf dist/python-$(DISTVERSION)-docs-text.tar python-$(DISTVERSION)-docs-text 174 bzip2 -9 -k dist/python-$(DISTVERSION)-docs-text.tar 175 (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-text.zip python-$(DISTVERSION)-docs-text) [all …]
|
/third_party/protobuf/python/ |
D | tox.ini | 3 py{27,33,34,35,36}-{cpp,python} 13 python: PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python 15 python setup.py -q build_py 16 python: python setup.py -q build 17 … cpp: python setup.py -q build --cpp_implementation --warnings_as_errors --compile_static_extension 18 python: python setup.py -q test -q 19 cpp: python setup.py -q test -q --cpp_implementation 20 python: python setup.py -q test_conformance 21 cpp: python setup.py -q test_conformance --cpp_implementation
|
D | release.sh | 6 grep "__version__ = '.*'" python/google/protobuf/__init__.py | sed -r "s/__version__ = '(.*)'/\1/" 52 find python -type d -exec chmod a+r,a+x {} + 53 find python -type f -exec chmod a+r {} + 77 …sed -i -r "s/__version__ = '.*'/__version__ = '${VERSION}.${DEV}'/" python/google/protobuf/__init_… 80 cd python 83 python setup.py build 84 python setup.py test 87 python setup.py sdist 95 python setup.py clean build bdist_wheel 112 python setup.py clean build sdist [all …]
|
/third_party/node/deps/v8/ |
D | .vpython | 3 # It describes patterns for python wheel dependencies of the python scripts in 5 # (since pure-python dependencies can be easily vendored into third_party). 7 # When vpython is invoked, it finds this file and builds a python VirtualEnv, 10 # this never requires the end-user machine to have a working python extension 14 # All python scripts in the repo share this same spec, to avoid dependency 17 # If you have depot_tools installed in your $PATH, you can invoke python scripts 19 # substituting `vpython` instead of `python` on the command line, e.g.: 31 {python: "cp27", abi: "cp27mu", platform: "manylinux1_x86_64"}, 32 {python: "cp27", abi: "cp27mu", platform: "linux_arm64"}, 33 {python: "cp27", abi: "cp27mu", platform: "linux_armv6l"}, [all …]
|
D | .vpython3 | 3 # It describes patterns for python wheel dependencies of the python scripts in 5 # (since pure-python dependencies can be easily vendored into third_party). 7 # When vpython is invoked, it finds this file and builds a python VirtualEnv, 10 # this never requires the end-user machine to have a working python extension 14 # All python scripts in the repo share this same spec, to avoid dependency 17 # If you have depot_tools installed in your $PATH, you can invoke python scripts 19 # substituting `vpython` instead of `python` on the command line, e.g.: 31 {python: "cp38", abi: "cp38", platform: "manylinux1_x86_64"}, 32 {python: "cp38", abi: "cp38", platform: "linux_arm64"}, 34 {python: "cp38", abi: "cp38", platform: "macosx_10_10_intel"}, [all …]
|
/third_party/openh264/build/ |
D | mktargets.sh | 3 python build/mktargets.py --directory codec/decoder --library decoder 4 python build/mktargets.py --directory codec/encoder --library encoder --exclude DllEntry.cpp 5 python build/mktargets.py --directory codec/common --library common --exclude asm_inc.asm --exclude… 6 python build/mktargets.py --directory codec/processing --library processing 8 python build/mktargets.py --directory codec/console/dec --binary h264dec 9 python build/mktargets.py --directory codec/console/enc --binary h264enc 10 python build/mktargets.py --directory codec/console/common --library console_common 11 python build/mktargets.py --directory test/encoder --prefix encoder_unittest 12 python build/mktargets.py --directory test/decoder --prefix decoder_unittest 13 python build/mktargets.py --directory test/processing --prefix processing_unittest [all …]
|
/third_party/jerryscript/docs/ |
D | 00.GETTING-STARTED.md | 15 - `python` >= `2.7.6` 18 sudo apt-get install gcc gcc-arm-none-eabi cmake cppcheck vera++ python 33 python tools/build.py --debug 39 python tools/build.py --debug --lto=off 51 python tools/build.py --cmake-param=CMAKE_PARAM 57 python tools/build.py --profile=es5.1|es2015-subset|minimal 69 python tools/build.py 75 python tools/build.py --compile-flag="-nostdlib -I/path/to/ext-libc/include" --link-lib="ext-c" 83 python tools/build.py --toolchain=TOOLCHAIN 89 python tools/build.py --toolchain=cmake/toolchain_linux_armv7l.cmake [all …]
|
/third_party/libxml2/ |
D | .gitignore | 72 python/.deps 73 python/.libs 74 python/Makefile 75 python/Makefile.in 76 python/gen_prog 77 python/libxml2-export.c 78 python/libxml2-py.c 79 python/libxml2-py.h 80 python/libxml2.py 81 python/libxml2class.py [all …]
|
/third_party/python/Lib/test/test_email/data/ |
D | msg_06.txt | 1 Return-Path: <barry@python.org> 2 Delivered-To: barry@python.org 7 Message-ID: <15265.9482.641338.555352@python.org> 8 From: barry@python.org (Barry A. Warsaw) 9 Sender: barry@python.org 10 To: barry@python.org 20 Return-Path: <barry@python.org> 21 Delivered-To: barry@python.org 22 Message-ID: <15265.9468.713530.98441@python.org> 23 From: barry@python.org (Barry A. Warsaw) [all …]
|
D | msg_43.txt | 1 From SRS0=aO/p=ON=bag.python.org=None@bounce2.pobox.com Fri Nov 26 21:40:36 2004 3 … nil nil "Banned file: auto__mail.python.bat in mail from you" "^From:" nil nil nil nil "Banned fi… 6 Message-Id: <edab.7804f5cb8070@python.org> 13 To: <webmaster@python.org> 14 Subject: Banned file: auto__mail.python.bat in mail from you 48 …ostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat 54 …ostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat 60 …ostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat 66 …ostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat 72 …ostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat [all …]
|
/third_party/python/ |
D | README.rst | 4 .. image:: https://travis-ci.com/python/cpython.svg?branch=master 6 :target: https://travis-ci.com/python/cpython 8 .. image:: https://github.com/python/cpython/workflows/Tests/badge.svg 10 :target: https://github.com/python/cpython/actions 12 .. image:: https://dev.azure.com/python/cpython/_apis/build/status/Azure%20Pipelines%20CI?branchNam… 14 :target: https://dev.azure.com/python/cpython/_build/latest?definitionId=4&branchName=master 18 :target: https://discuss.python.org/ 30 - Website: https://www.python.org 31 - Source code: https://github.com/python/cpython 32 - Issue tracker: https://bugs.python.org [all …]
|
D | .gitignore | 77 Misc/python.pc 78 Misc/python-embed.pc 79 Misc/python-config.sh 90 Modules/python.exp 129 /python-config 130 /python-config.py 131 /python.bat 132 /python-gdb.py 133 /python.exe-gdb.py 150 # Ignore ./python binary on Unix but still look into ./Python/ directory. [all …]
|
/third_party/node/tools/msvs/ |
D | find_python.cmd | 6 :: Use python.exe if in %PATH% 8 for /f "delims=" %%a in ('where python.exe 2^> nul') do ( 10 goto :found-python 17 if not errorlevel 1 goto :found-python 20 goto :no-python 32 :: https://www.python.org/dev/peps/pep-0514/#installpath 47 :found-python 48 echo Python found in %p%\python.exe 49 call :check-python "%p%\python.exe" 50 if errorlevel 1 goto :no-python [all …]
|
/third_party/protobuf/kokoro/linux/benchmark/ |
D | run.sh | 30 cd python 31 python setup.py build --cpp_implementation 37 make python-pure-python-benchmark 38 make python-cpp-reflection-benchmark 39 make -j8 python-cpp-generated-code-benchmark 42 ./python-pure-python-benchmark --json --behavior_prefix="pure-python-benchmark" $datasets >> tmp/p… 45 …d/gperftools/.libs/libtcmalloc.so" LD_LIBRARY_PATH="$oldpwd/src/.libs" ./python-cpp-reflection-ben… 48 …d/gperftools/.libs/libtcmalloc.so" LD_LIBRARY_PATH="$oldpwd/src/.libs" ./python-cpp-generated-code… 103 env LD_LIBRARY_PATH="$oldpwd/src/.libs" python -m util.result_uploader -php_c="../tmp/php_c_result.… 104 …-cpp="../tmp/cpp_result.json" -java="../tmp/java_result.json" -go="../tmp/go_result.txt" -python="…
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | message_module.cc | 43 struct ApiImplementation : google::protobuf::python::PyProto_API { 45 return google::protobuf::python::PyMessage_GetMessagePointer(msg); in GetMessagePointer() 48 return google::protobuf::python::PyMessage_GetMutableMessagePointer(msg); in GetMutableMessagePointer() 51 return google::protobuf::python::GetDefaultDescriptorPool()->pool; in GetDefaultDescriptorPool() 55 return google::protobuf::python::GetDefaultDescriptorPool() in GetDefaultMessageFactory() 71 (PyCFunction)google::protobuf::python::cmessage::SetAllowOversizeProtos, METH_O, 104 if (!google::protobuf::python::InitProto2MessageModule(m)) { in INITFUNC() 111 new ApiImplementation(), google::protobuf::python::PyProtoAPICapsuleName(), in INITFUNC() 114 o, google::protobuf::python::PyProtoAPICapsuleName()); in INITFUNC()
|
/third_party/node/deps/v8/tools/ |
D | callstats.py.vpython | 3 # It describes patterns for python wheel dependencies of the python scripts in 5 # (since pure-python dependencies can be easily vendored into third_party). 7 # When vpython is invoked, it finds this file and builds a python VirtualEnv, 10 # this never requires the end-user machine to have a working python extension 14 # All python scripts in the repo share this same spec, to avoid dependency 17 # If you have depot_tools installed in your $PATH, you can invoke python scripts 19 # substituting `vpython` instead of `python` on the command line, e.g.: 28 name: "infra/python/wheels/numpy/${vpython_platform}" 33 name: "infra/python/wheels/scipy/${vpython_platform}"
|
/third_party/node/tools/ |
D | test-v8.bat | 14 echo running 'python tools\dev\v8gen.py %test_args%' 15 call python tools\dev\v8gen.py %test_args% 23 echo running 'python tools\run-tests.py %common_v8_test_options% %v8_test_options% --slow-tests-cut… 24 call python tools\run-tests.py %common_v8_test_options% %v8_test_options% --slow-tests-cutoff 10000… 25 call python ..\..\tools\v8-json-to-junit.py < v8-tap.xml > v8-tap.json 29 echo running 'python tools\run-tests.py %common_v8_test_options% intl --slow-tests-cutoff 1000000 -… 30 call python tools\run-tests.py %common_v8_test_options% intl --slow-tests-cutoff 1000000 --json-tes… 31 call python ..\..\tools\v8-json-to-junit.py < v8-intl-tap.xml > v8-intl-tap.json 35 echo running 'python tools\run-tests.py %common_v8_test_options% benchmarks --slow-tests-cutoff 100… 36 call python tools\run-tests.py %common_v8_test_options% benchmarks --slow-tests-cutoff 1000000 --js… [all …]
|
/third_party/python/Modules/_decimal/tests/ |
D | runall.bat | 25 call python.bat -m test -uall -R 3:3 test_decimal 31 call python.bat -m test -uall test_decimal 37 call python.bat .\Modules\_decimal\tests\deccheck.py 59 call python.bat -m test -uall test_decimal 65 call python.bat .\Modules\_decimal\tests\deccheck.py 87 call python.bat -m test -uall -R 3:3 test_decimal 93 call python.bat -m test -uall test_decimal 99 call python.bat .\Modules\_decimal\tests\deccheck.py 121 call python.bat -m test -uall test_decimal 127 call python.bat .\Modules\_decimal\tests\deccheck.py
|