Searched +full:os +full:- +full:release (Results 1 – 25 of 1166) sorted by relevance
12345678910>>...47
| /external/libopus/.github/workflows/ |
| D | cmake.yml | 8 runs-on: ubuntu-20.04 10 - uses: actions/checkout@v3 12 fetch-depth: 0 13 - name: Download models 15 - name: Install CMake 3.1 17 …curl -sL https://github.com/Kitware/CMake/releases/download/v3.1.0/cmake-3.1.0-Linux-x86_64.sh -o … 19 sudo ./cmakeinstall.sh --prefix=/usr/local --exclude-subdir 21 sudo apt-get install libidn11 22 - name: Create Work Dir 24 - name: Configure [all …]
|
| D | dred.yml | 9 runs-on: ${{ matrix.config.os }} 11 fail-fast: false 14 - { 15 name: "Windows/Lib/X64/Release", 16 os: windows-latest, 17 config: Release, 18 args: -G "Visual Studio 17 2022" -DOPUS_X86_PRESUME_AVX2=ON 20 - { 21 name: "Windows/Lib/armv8/Release", 22 os: windows-latest, [all …]
|
| /external/deqp/scripts/ |
| D | run_internal_tests.py | 1 # -*- coding: utf-8 -*- 3 #------------------------------------------------------------------------- 5 # -------------------------------------- 13 # http://www.apache.org/licenses/LICENSE-2.0 21 #------------------------------------------------------------------------- 23 import os 31 exit(-1) 37 curPath = os.getcwd() 39 os.chdir(workDir) 41 os.chdir(curPath) [all …]
|
| /external/google-cloud-java/java-os-login/ |
| D | synth.metadata | 6 "remote": "https://github.com/googleapis/java-os-login.git", 44 ".github/generated-files-bot.yml", 46 ".github/release-please.yml", 47 ".github/release-trigger.yml", 48 ".github/snippet-bot.yml", 49 ".github/sync-repo-settings.yaml", 50 ".github/trusted-contribution.yml", 51 ".github/workflows/approve-readme.yaml", 52 ".github/workflows/auto-release.yaml", 68 ".kokoro/nightly/java8-osx.cfg", [all …]
|
| /external/rust/crates/libloading/src/ |
| D | changelog.rs | 3 /// Release 0.8.3 (2024-03-05) 5 /// ## Non-breaking changes 7 /// A `dev-dependency` on `windows-sys` that was unconditionally introduced in 11 /// Release 0.8.2 (2024-03-01) 16 /// to not be breaking enough to warrant a semver-breaking release of libloading. If you're stick 19 /// ## Non-breaking changes 21 /// * The crate switches the dependency on `windows-sys` to a `windows-target` one for Windows 25 /// * `os::unix::with_dlerror` has been exposed for the users who need to invoke `dl*` family of 29 /// Release 0.8.1 (2023-09-30) 31 /// ## Non-breaking changes [all …]
|
| /external/google-cloud-java/java-os-config/ |
| D | synth.metadata | 6 "remote": "https://github.com/googleapis/java-os-config.git", 44 ".github/generated-files-bot.yml", 46 ".github/release-please.yml", 47 ".github/snippet-bot.yml", 48 ".github/sync-repo-settings.yaml", 49 ".github/trusted-contribution.yml", 50 ".github/workflows/approve-readme.yaml", 51 ".github/workflows/auto-release.yaml", 67 ".kokoro/nightly/java8-osx.cfg", 68 ".kokoro/nightly/java8-win.cfg", [all …]
|
| /external/crosvm/tools/windows/ |
| D | build_test.py | 3 # Use of this source code is governed by a BSD-style license that can be 6 """Builds crosvm in debug/release mode on all supported target architectures. 11 To test changes more quickly, set the --noclean option. This prevents the target directories from 14 For easy binary size comparison, use the --size-only option to only do builds that will result in a 15 binary size output, which are non-test release builds. 18 structure with Cargo.toml files. Only top-level crates are tested directly. To skip a top-level 20 tests run single-threaded, add an empty .build_test_serial file to the directory. 27 import os 32 sys.path.append(os.path.dirname(sys.path[0])) 39 IS_WINDOWS = os.name == "nt" [all …]
|
| /external/grpc-grpc/tools/interop_matrix/ |
| D | create_matrix_images.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 22 import os 31 python_util_dir = os.path.abspath( 32 os.path.join(os.path.dirname(__file__), "../run_tests/python_utils") 40 # All gRPC release tags, flattened, deduped and sorted. 44 release 46 for release in list(release_dict.keys()) 56 "--gcr_path", 57 default="gcr.io/grpc-testing", 62 "--release", [all …]
|
| /external/rust/crates/grpcio-sys/grpc/tools/interop_matrix/ |
| D | create_matrix_images.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 22 import os 31 python_util_dir = os.path.abspath( 32 os.path.join(os.path.dirname(__file__), '../run_tests/python_utils')) 39 # All gRPC release tags, flattened, deduped and sorted. 42 set(release 44 for release in list(release_dict.keys())))) 50 argp.add_argument('--gcr_path', 51 default='gcr.io/grpc-testing', 54 argp.add_argument('--release', [all …]
|
| /external/python/cpython2/Lib/ |
| D | platform.py | 3 """ This module tries to retrieve as much platform-identifying data as 11 # This module is maintained by Marc-Andre Lemburg <mal@egenix.com>. 19 # * support for MS-DOS (PythonDX ?) 23 # Many thanks to all those who helped adding platform-specific 38 # 1.0.8 - changed Windows support to read version from kernel32.dll 39 # 1.0.7 - added DEV_NULL 40 # 1.0.6 - added linux_distribution() 41 # 1.0.5 - fixed Java support to allow running the module on Jython 42 # 1.0.4 - added IronPython support 43 # 1.0.3 - added normalization of Windows system name [all …]
|
| /external/python/cpython3/Lib/ |
| D | platform.py | 3 """ This module tries to retrieve as much platform-identifying data as 11 # This module is maintained by Marc-Andre Lemburg <mal@egenix.com>. 16 # * support for MS-DOS (PythonDX ?) 20 # Many thanks to all those who helped adding platform-specific 35 # 1.0.8 - changed Windows support to read version from kernel32.dll 36 # 1.0.7 - added DEV_NULL 37 # 1.0.6 - added linux_distribution() 38 # 1.0.5 - fixed Java support to allow running the module on Jython 39 # 1.0.4 - added IronPython support 40 # 1.0.3 - added normalization of Windows system name [all …]
|
| /external/angle/build/android/pylib/utils/ |
| D | device_dependencies_test.py | 3 # Use of this source code is governed by a BSD-style license that can be 6 import os 16 test_path = os.path.join(constants.DIR_SOURCE_ROOT, 'foo', 'bar', 'baz.txt') 17 output_directory = os.path.join( 18 constants.DIR_SOURCE_ROOT, 'out-foo', 'Release') 24 test_path = os.path.join(constants.DIR_SOURCE_ROOT, 'out-foo', 'Release', 26 output_directory = os.path.join( 27 constants.DIR_SOURCE_ROOT, 'out-foo', 'Release') 33 test_path = os.path.join(constants.DIR_SOURCE_ROOT, 'out-foo', 'Release', 35 output_directory = os.path.join( [all …]
|
| /external/cronet/build/android/pylib/utils/ |
| D | device_dependencies_test.py | 3 # Use of this source code is governed by a BSD-style license that can be 6 import os 16 test_path = os.path.join(constants.DIR_SOURCE_ROOT, 'foo', 'bar', 'baz.txt') 17 output_directory = os.path.join( 18 constants.DIR_SOURCE_ROOT, 'out-foo', 'Release') 24 test_path = os.path.join(constants.DIR_SOURCE_ROOT, 'out-foo', 'Release', 26 output_directory = os.path.join( 27 constants.DIR_SOURCE_ROOT, 'out-foo', 'Release') 33 test_path = os.path.join(constants.DIR_SOURCE_ROOT, 'out-foo', 'Release', 35 output_directory = os.path.join( [all …]
|
| /external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/ |
| D | release.yml | 1 name: CI Release 5 - '*' 7 ci-cmake: 9 runs-on: ${{ matrix.os }} 11 fail-fast: false 14 - name: Windows MSVC Win32 15 os: windows-latest 17 cmake-args: -A Win32 18 deploy-name: win-x86 20 - name: Windows MSVC Win32 Compat [all …]
|
| /external/python/cpython3/Doc/library/ |
| D | platform.rst | 1 :mod:`platform` --- Access to underlying platform's identifying data 7 .. moduleauthor:: Marc-André Lemburg <mal@egenix.com> 12 -------------- 21 -------------- 39 This is available on most if not all Unix platforms and some non-Unix platforms 48 To get at the "64-bitness" of the current interpreter, it is more 84 non-empty release string, to get the macOS version rather than the darwin 140 .. function:: release() 142 Returns the system's release, e.g. ``'2.2.0'`` or ``'NT'``. An empty string is 148 Returns the system/OS name, such as ``'Linux'``, ``'Darwin'``, ``'Java'``, [all …]
|
| /external/libyuv/docs/ |
| D | deprecated_builds.md | 5 ## Pre-requisites 7 …need to have depot tools installed: https://www.chromium.org/developers/how-tos/install-depot-tools 32 For iOS add `;target_os=['ios'];` to your OSX .gclient and run `GYP_DEFINES="OS=ios" gclient sync.` 54 export GYP_DEFINES="OS=android" 77 call python gyp_libyuv -fninja -G msvs_version=2013 78 ninja -j7 -C out\Release 79 ninja -j7 -C out\Debug 82 call python gyp_libyuv -fninja -G msvs_version=2013 83 ninja -C out\Debug_x64 84 ninja -C out\Release_x64 [all …]
|
| /external/toolchain-utils/crosperf/ |
| D | download_images_unittest.py | 2 # -*- coding: utf-8 -*- 4 # Use of this source code is governed by a BSD-style license that can be 10 import os 45 @mock.patch.object(os, "makedirs") 46 @mock.patch.object(os.path, "exists") 51 test_build_id = "lumpy-release/R36-5814.0.0" 53 "gs://chromeos-image-archive/%s/chromiumos_test_image.tar.xz" 61 # Set os.path.exists to always return False and run downloader 72 # Verify os.path.exists was called thrice, with proper arguments. 76 "/usr/local/home/chromeos/.*tmp/lumpy-release/" [all …]
|
| /external/libyuv/infra/config/ |
| D | main.star | 2 # https://chromium.googlesource.com/infra/luci/luci-go/+/master/lucicfg/doc/ 9 LIBYUV_GERRIT = "https://chromium-review.googlesource.com/libyuv/libyuv" 12 "instance": "rbe-webrtc-trusted", 13 "metrics_project": "chromium-reclient-metrics", 17 "instance": "rbe-webrtc-untrusted", 18 "metrics_project": "chromium-reclient-metrics", 34 "commit-queue.cfg", 35 "cr-buildbucket.cfg", 36 "luci-logdog.cfg", 37 "luci-milo.cfg", [all …]
|
| /external/tinyxml2/.github/workflows/ |
| D | test.yml | 5 name: ${{ matrix.os }}, ${{ matrix.cmake_name }} 7 fail-fast: false 9 os: [ windows-2019, macos-latest, ubuntu-20.04 ] 12 - os: windows-2019 17 - os: ubuntu-20.04 20 - os: macos-latest 23 - cmake: 3.15 25 - cmake: 3.x 31 runs-on: ${{ matrix.os }} 33 # System set-up [all …]
|
| /external/libbrillo/brillo/ |
| D | osrelease_reader.h | 1 // Copyright 2014 The Chromium OS Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 5 // Wrapper around /etc/os-release and /etc/os-release.d. 26 // Loads the key=value pairs from either /etc/os-release.d/<KEY> or 27 // /etc/os-release. 40 // Getter for all the keys in /etc/os-release. 44 // The map storing all the key-value pairs. 47 // os-release can be lazily loaded if need be.
|
| /external/python/cpython2/Lib/distutils/ |
| D | util.py | 3 Miscellaneous utility functions -- anything that doesn't fit into 9 import sys, os, string, re 18 mainly to distinguish platform-specific build directories and 19 platform-specific built distributions. Typically includes the OS name 20 and version and the architecture (as supplied by 'os.uname()'), 21 although the exact information included depends on the OS; eg. for IRIX 27 linux-i586 28 linux-alpha (?) 29 solaris-2.6-sun4u 30 irix-5.3 [all …]
|
| /external/llvm/utils/ |
| D | llvm-compilers-check | 2 ##===- utils/llvmbuild - Build the LLVM project ----------------*-python-*-===## 9 ##===----------------------------------------------------------------------===## 46 # llvmbuild --src=~/llvm/commit --src=~/llvm/staging --src=~/llvm/official 47 # --build=debug --build=release --build=paranoid 48 # --prefix=/home/greened/install --builddir=/home/greened/build 52 # ~/install. llvm-compilers-check creates separate build and install 54 # llvmbuild will build debug, release and paranoid (debug+checks) 58 # The user may control parallelism via the --jobs and --threads 59 # switches. --jobs tells llvm-compilers-checl the maximum total 61 # as equivalent to the GNU make -j switch. --threads tells [all …]
|
| /external/python/cpython2/Demo/threads/ |
| D | find.py | 5 # although the improvement is only about 20-30 percent. 7 # a speedup. :-( ) 10 # command line syntax, so the predicate it searches for is wired-in, 14 # Usage: parfind.py [-w nworkers] [directory] ... 22 import os 39 # - busy and work are only modified when mutex is locked 40 # - len(work) is the number of jobs ready to be taken 41 # - busy is the number of jobs being done 42 # - todo is locked iff there is no work and somebody is busy 55 self.mutex.release() [all …]
|
| /external/bazelbuild-rules_rust/.github/workflows/ |
| D | release.yaml | 1 --- 2 name: Release 7 - main 9 - version.bzl 16 BAZEL_STARTUP_FLAGS: --bazelrc=${{ github.workspace }}/.github/github.bazelrc 20 runs-on: ubuntu-20.04 22 - uses: actions/checkout@v3 25 - name: Ensure branch is 'main' 28 branch="$(git rev-parse --abbrev-ref HEAD)" 30 echo "The release branch must be main. Got '${branch}'' instead." >&2 [all …]
|
| /external/python/cpython2/Lib/test/ |
| D | test_thread.py | 1 import os 58 self.running -= 1 60 self.done_mutex.release() 78 @unittest.skipIf(os.name not in ("nt", "os2", "posix"), 'test meant for nt, os2, and posix') 89 fail_msg = "stack_size(%d) failed - should succeed" 119 mut.release() 127 mut.release() 141 started.release() 173 self.waiting = self.num_threads - 1 174 self.checkout_mutex.release() [all …]
|
12345678910>>...47