/aosp_15_r20/external/python/cpython3/PCbuild/ |
D | readme.txt | 2 ----------------- 9 2. Run "build.bat" to build Python in 32-bit Release configuration. 10 3. (Optional, but recommended) Run the test suite with "rt.bat -q". 14 ------------------------------------------ 16 This directory is used to build CPython for Microsoft Windows on 32- and 64- 29 used to build standard x86-compatible 32-bit binaries, output into the 30 win32 sub-directory. The x64 platform is used for building 64-bit AMD64 31 (aka x86_64 or EM64T) binaries, output into the amd64 sub-directory. 32 The Itanium (IA-64) platform is no longer supported. 37 to using ./configure --with-pydebug on UNIX. All binaries built [all …]
|
D | get_externals.bat | 15 if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts 16 if "%~1"=="--no-openssl" (set IncludeSSL=false) & shift & goto CheckOpts 17 if "%~1"=="--no-libffi" (set IncludeLibffi=false) & shift & goto CheckOpts 18 if "%~1"=="--tkinter-src" (set IncludeTkinterSrc=true) & shift & goto CheckOpts 19 if "%~1"=="--openssl-src" (set IncludeSSLSrc=true) & shift & goto CheckOpts 20 if "%~1"=="--libffi-src" (set IncludeLibffiSrc=true) & shift & goto CheckOpts 21 if "%~1"=="--python" (set PYTHON=%2) & shift & shift & goto CheckOpts 22 if "%~1"=="--organization" (set ORG=%2) & shift & shift & goto CheckOpts 23 if "%~1"=="-c" (set DO_CLEAN=true) & shift & goto CheckOpts 24 if "%~1"=="--clean" (set DO_CLEAN=true) & shift & goto CheckOpts [all …]
|
D | get_external.py | 1 #!/usr/bin/env python3 13 repo = f'cpython-{"bin" if binary else "source"}-deps' 35 p.add_argument('-v', '--verbose', action='store_true') 36 p.add_argument('-b', '--binary', action='store_true', 38 p.add_argument('-O', '--organization', 39 help='Organization owning the deps repos', default='python') 40 p.add_argument('-e', '--externals-dir', type=pathlib.Path,
|
/aosp_15_r20/external/boringssl/src/ |
H A D | MODULE.bazel.lock | 21 "version": "0.0.0-dev", 27 "deps": { 43 "deps": { 44 "com_google_absl": "abseil-[email protected]", 47 "com_googlesource_code_re2": "re2@2023-09-01", 58 "integrity": "sha256-itWYxzrXluDYKAsILOvYKmMNc+c808cAV5OKZQG7pdc=", 59 "strip_prefix": "googletest-1.14.0", 61 …ild/modules/googletest/1.14.0.bcr.1/patches/module_dot_bazel.patch": "sha256-jijctisPYOzP4X4cl0K7n… 93 "deps": { 103 "https://github.com/bazelbuild/platforms/releases/download/0.0.9/platforms-0.0.9.tar.gz" [all …]
|
/aosp_15_r20/external/bazelbuild-rules_python/python/private/common/ |
H A D | providers.bzl | 7 # http://www.apache.org/licenses/LICENSE-2.0 19 DEFAULT_STUB_SHEBANG = "#!/usr/bin/env python3" 28 # changes the return value from a two-tuple to a single value, which then 142 A Python runtime describes either a *platform runtime* or an *in-build runtime*. 143 A platform runtime accesses a system-installed interpreter at a known path, 144 whereas an in-build runtime points to a `File` that acts as the interpreter. In 147 the same conventions as the standard CPython interpreter. 161 * Invoking the appropriate entry point. This is usually a second-stage bootstrap 164 The {obj}`--bootstrap_impl` flag affects how this stage 1 bootstrap 167 * `--bootstrap_impl=system_python` substitutions: `%is_zipfile%`, `%python_binary%`, [all …]
|
/aosp_15_r20/external/python/cpython3/.azure-pipelines/ |
D | posix-steps.yml | 9 - checkout: self 14 - script: sudo setfacl -Rb /home/vsts 17 - script: ${{ parameters.sudo_dependencies }} ./.azure-pipelines/posix-deps-${{ parameters.dependen… 20 - script: ./configure --with-pydebug 21 displayName: 'Configure CPython (debug)' 23 - script: make -j4 24 displayName: 'Build CPython' 26 - ${{ if eq(parameters.coverage, 'true') }}: 27 - script: ./python -m venv venv && ./venv/bin/python -m pip install -U coverage 30 - script: ./venv/bin/python -m test.pythoninfo [all …]
|
/aosp_15_r20/external/python/cpython2/PCbuild/ |
D | readme.txt | 2 ----------------- 8 get_externals.bat (build.bat -e) will download and use Python via 10 3. Run "build.bat -e" to build Python in 32-bit Release configuration. 11 4. (Optional, but recommended) Run the test suite with "rt.bat -q". 15 ------------------------------------------ 58 used to build standard x86-compatible 32-bit binaries, output into this 59 directory. The x64 platform is used for building 64-bit AMD64 (aka 60 x86_64 or EM64T) binaries, output into the amd64 sub-directory. The 61 Itanium (IA-64) platform is no longer supported. 66 to using ./configure --with-pydebug on UNIX. All binaries built [all …]
|
D | get_externals.bat | 12 if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts 13 if "%~1"=="--no-openssl" (set IncludeSSL=false) & shift & goto CheckOpts 14 if "%~1"=="--python" (set PYTHON_FOR_BUILD=%2) & shift & shift & goto CheckOpts 15 if "%~1"=="--organization" (set ORG=%2) & shift & shift & goto CheckOpts 16 if "%~1"=="-c" (set DO_CLEAN=true) & shift & goto CheckOpts 17 if "%~1"=="--clean" (set DO_CLEAN=true) & shift & goto CheckOpts 18 if "%~1"=="--clean-only" (set DO_FETCH=false) & goto clean 48 set libraries=%libraries% bzip2-1.0.6 49 if NOT "%IncludeBsddb%"=="false" set libraries=%libraries% bsddb-4.7.25.0 50 if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2p [all …]
|
D | get_external.py | 1 #!/usr/bin/env python3 11 repo = f'cpython-{"bin" if binary else "source"}-deps' 33 p.add_argument('-v', '--verbose', action='store_true') 34 p.add_argument('-b', '--binary', action='store_true', 36 p.add_argument('-O', '--organization', 37 help='Organization owning the deps repos', default='python') 38 p.add_argument('-e', '--externals-dir', type=pathlib.Path,
|
/aosp_15_r20/external/python/cpython3/.azure-pipelines/windows-release/ |
D | mingw-lib.yml | 2 DllToolOpt: -m i386:x86-64 3 #DllToolOpt: -m i386 --as-flags=--32 6 - powershell: | 7 …git clone https://github.com/python/cpython-bin-deps --branch binutils --single-branch --depth 1 -… 8 gci "bin\$(Arch)\python*.dll" | %{ 9 & "binutils\gendef.exe" $_ | Out-File -Encoding ascii tmp.def 10 …& "binutils\dlltool.exe" --dllname $($_.BaseName).dll --def tmp.def --output-lib "$($_.Directory)\…
|
D | stage-publish-pythonorg.yml | 5 - job: Publish_Python 10 #vmImage: windows-2022 17 - template: ./checkout.yml 19 - task: UsePythonVersion@0 24 - ${{ if parameters.BuildToPublish }}: 25 - task: DownloadPipelineArtifact@1 36 - task: DownloadPipelineArtifact@1 48 - task: DownloadBuildArtifacts@0 59 - ${{ else }}: 60 - task: DownloadPipelineArtifact@1 [all …]
|
/aosp_15_r20/external/bazelbuild-rules_python/python/private/ |
H A D | hermetic_runtime_repo_setup.bzl | 7 # http://www.apache.org/licenses/LICENSE-2.0 14 """Setup a python-build-standalone based toolchain.""" 31 """Define a toolchain implementation for a python-build-standalone repo. 33 It expected this macro is called in the top-level package of an extracted 34 python-build-standalone repository. See 58 "bin/**", 64 # Platform-agnostic filegroup can't match on all patterns. 92 deps = select({ 138 implementation_name = "cpython", 139 # See https://peps.python.org/pep-3147/ for pyc tag infix format [all …]
|
/aosp_15_r20/external/pytorch/torch/utils/ |
H A D | cpp_extension.py | 1 # mypy: allow-untyped-defs 37 SHARED_FLAG = '/DLL' if IS_WINDOWS else '-shared' 82 def _nt_quote_args(args: Optional[List[str]]) -> List[str]: 83 """Quote command-line arguments for DOS/Windows conventions. 88 # Cover None-type 93 def _find_cuda_home() -> Optional[str]: 120 def _find_rocm_home() -> Optional[str]: 130 # can be either <ROCM_HOME>/hip/bin/hipcc or <ROCM_HOME>/bin/hipcc 144 def _join_rocm_home(*paths) -> str: 149 only once we need to get any ROCm-specific path. [all …]
|
/aosp_15_r20/out/soong/ |
D | build.aosp_shiba.ninja.globs | 1 {"Pattern":".","Excludes":null,"Matches":["./"],"Deps":["."]} 2 {"Pattern":"art/artd/AndroidTest.xml","Excludes":null,"Matches":null,"Deps":["art/artd"]} 3 {"Pattern":"art/artd/binder/aidl_api/artd-aidl/**/*.aidl","Excludes":null,"Matches":null,"Deps":["a… 4 …ifactsPath.aidl","art/artd/binder/com/android/server/art/VdexPath.aidl"],"Deps":["art/artd/binder/… 5 {"Pattern":"art/artd/binder/src","Excludes":null,"Matches":null,"Deps":["art/artd/binder"]} 6 {"Pattern":"art/artd/corpus/*","Excludes":null,"Matches":null,"Deps":["art/artd"]} 7 …idTest.xml","Excludes":null,"Matches":["art/artd/tests/AndroidTest.xml"],"Deps":["art/artd/tests/A… 8 {"Pattern":"art/artd/tests/assets","Excludes":null,"Matches":null,"Deps":["art/artd/tests"]} 9 {"Pattern":"art/artd/tests/res","Excludes":null,"Matches":null,"Deps":["art/artd/tests"]} 10 {"Pattern":"art/artd/tests/src","Excludes":null,"Matches":["art/artd/tests/src/"],"Deps":["art/artd… [all …]
|
D | build.aosp_shiba.9.ninja | 2 # Module: protobuf-json-mapping_test_src_lib 3 # Variant: android_arm64_armv8-2a_cortex-a55 7 # external/rust/android-crates-io/crates/protobuf-json-mapping/Android.bp:37:1 9 …f-json-mapping_test_src_lib_android_arm64_armv8-2a_cortex-a55.moduleDesc = //external/rust/android… 10 m.protobuf-json-mapping_test_src_lib_android_arm64_armv8-2a_cortex-a55.moduleDescSuffix = 13 …al/rust/android-crates-io/crates/protobuf-json-mapping/protobuf-json-mapping_test_src_lib/android_… 15 …t/android-crates-io/crates/protobuf-json-mapping/protobuf-json-mapping_test_src_lib/android_arm64_… 17 …-json-mapping_test_src_lib_android_arm64_armv8-2a_cortex-a55.moduleDesc}strip protobuf-json-mappin… 18 tags = module_name=protobuf-json-mapping_test_src_lib;module_type=rust_test;rule_name=strip 19 args = $ --keep-mini-debug-info [all …]
|
/aosp_15_r20/external/python/setuptools/ |
D | CHANGES.rst | 2 ------- 13 * #3202: Changed behaviour of auto-discovery to not explicitly expand ``package_dir`` 14 for flat-layouts and to not use relative paths starting with ``./``. 22 * #3211: Disabled auto-discovery when distribution class has a ``configuration`` 24 configuration=...)``). This is done to ensure extension-only packages created 27 behaviour to avoid accidental multiple top-level packages in a flat-layout. 31 still likely to observe the auto-discovery behavior, which may halt the 35 To disable auto-discovery please explicitly set either ``packages`` or 36 ``py_modules``. Alternatively you can also configure :ref:`custom-discovery`. 40 ------- [all …]
|
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 2 .. date: 2019-11-18-16-17-56 4 .. release date: 2019-11-19 13 .. date: 2019-11-14-16-13-23 22 .. date: 2019-10-08-19-29-55 23 .. nonce: QL7s0- 31 .. date: 2019-09-25-13-21-09 36 rendering the document page as HTML. (Contributed by Dong-hee Na in 42 .. date: 2019-09-23-21-02-46 47 CVE-2019-15903. 52 .. date: 2019-08-27-01-13-05 [all …]
|
/aosp_15_r20/out/.module_paths/ |
D | files.db | 2 {"WorkingDirectory":"/root/opengrok-1.13.29/src/aosp_15_r20","RootDirs":["."],"FollowSymlinks":false,"ExcludeDirs":[".git",".repo"],"PruneFiles":[".out-dir",".find-ignore"],"IncludeFiles":["Android.mk","AndroidProducts.mk","Android.bp","CleanSpec.mk","OWNERS","TEST_MAPPING","METADATA"],"IncludeSuffixes":[".mk"],"FilesystemView":"root@v2202504258438334715"} 3 [{"Device":65027,"Root":"/root/opengrok-1.13.29/src/aosp_15_r20","Dirs":[{"P":"","T":1749095540760375437,"I":547973,"F":["Android.bp","lk_inc.mk"]},{"P":"art","T":1745562276530206591,"I":2361613,"F":["Android.mk","Android.bp","TEST_MAPPING","OWNERS","METADATA","CleanSpec.mk"]},{"P":"art/adbconnection","T":1745562275874206941,"I":4456672,"F":["Android.bp"]},{"P":"art/artd","T":1745562275878206940,"I":4456683,"F":["Android.bp"]},{"P":"art/artd/binder","T":1745562275874206941,"I":4456728,"F":["Android.bp"]},{"P":"art/artd/binder/com","T":1745562275874206941,"I":4456732,"F":null},{"P":"art/artd/binder/com/android","T":1745562275874206941,"I":4456734,"F":null},{"P":"art/artd/binder/com/android/server","T":1745562275874206941,"I":4456735,"F":null},{"P":"art/artd/binder/com/android/server/art","T":1745562275878206940,"I":4456738,"F":[]},{"P":"art/artd/tests","T":1745562275878206940,"I":4456798,"F":["Android.bp"]},{"P":"art/artd/tests/src","T":1745562275878206940,"I":4456805,"F":null},{"P":"art/artd/tests/src/com","T":1745562275878206940,"I":4456806,"F":null},{"P":"art/artd/tests/src/com/android","T":1745562275878206940,"I":4456807,"F":null},{"P":"art/artd/tests/src/com/android/art","T":1745562275878206940,"I":4456808,"F":[]},{"P":"art/benchmark","T":1745562275878206940,"I":4456812,"F":["Android.bp"]},{"P":"art/benchmark/const-class","T":1745562275878206940,"I":4456817,"F":[]},{"P":"art/benchmark/const-class/src","T":1745562275878206940,"I":4456822,"F":[]},{"P":"art/benchmark/const-string","T":1745562275878206940,"I":4456828,"F":[]},{"P":"art/benchmark/const-string/src","T":1745562275878206940,"I":4456833,"F":[]},{"P":"art/benchmark/golem-tiagent","T":1745562275878206940,"I":4456842,"F":[]},{"P":"art/benchmark/jni-per [all...] |
/aosp_15_r20/packages/inputmethods/LatinIME/dictionaries/ |
D | pt_PT_wordlist.combined.gz |
|