| /third_party/opencl-headers/.github/workflows/ |
| D | linux.yml | 7 runs-on: ubuntu-18.04 8 container: streamhpc/opencl-sdk-base:ubuntu-18.04-20220127 19 - C_COMPILER: gcc-7 20 CXX_COMPILER: g++-7 23 CONFIG: Debug 25 - C_COMPILER: gcc-7 26 CXX_COMPILER: g++-7 29 CONFIG: Release 31 - C_COMPILER: gcc-7 32 CXX_COMPILER: g++-7 [all …]
|
| D | windows.yml | 7 runs-on: windows-latest 16 - VER: v141 18 GEN: Ninja Multi-Config 22 NINJA_URL: https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip 28 - uses: actions/checkout@v2 30 - name: Cache Ninja install 31 if: matrix.GEN == 'Ninja Multi-Config' 32 id: ninja-install 37 key: ${{runner.os}}-ninja-${{env.NINJA_URL}} 39 - name: Install Ninja [all …]
|
| D | macos.yml | 7 runs-on: macos-latest 11 GEN: [Xcode, Ninja Multi-Config] 15 - name: Checkout OpenCL-Headers 18 - name: Create Build Environment 21 cmake -E make_directory $GITHUB_WORKSPACE/build; 22 cmake -E make_directory $GITHUB_WORKSPACE/install; 23 …if [[ "${{matrix.GEN}}" == "Ninja Multi-Config" && ! `which ninja` ]]; then brew install ninja; fi; 25 cmake --version 27 - name: Configure CMake 30 -G "${{matrix.GEN}}" [all …]
|
| /third_party/rust/crates/codespan/codespan-reporting/src/term/ |
| D | config.rs | 7 pub struct Config { struct 30 impl Default for Config { argument 31 fn default() -> Config { in default() 32 Config { in default() 58 /// error[E0002]: Bad config found 69 /// error[E0002]: Bad config found 76 /// error[E0002]: Bad config found 135 pub fn header(&self, severity: Severity) -> &ColorSpec { in header() 146 pub fn label(&self, severity: Severity, label_style: LabelStyle) -> &ColorSpec { in label() 158 pub fn with_blue(blue: Color) -> Styles { in with_blue() [all …]
|
| D | renderer.rs | 7 use crate::term::{Chars, Config, Styles}; 11 /// The user-facing name of the file. 17 /// Single-line label, with an optional message. 24 /// A multi-line label to render. 28 /// Multi-line label top. 42 /// Left vertical labels for multi-line labels. 48 /// Multi-line label bottom, with an optional message. 87 /// snippet line ── │ 38 │ │ Brownie lemon drops chocolate jelly-o candy canes. Danish marzipan 89 /// │ │ │ ^^^^^^^^^^^^^^^^^^^ -------------------- blah blah 93 /// snippet line ── │ 40 │ │ Fruitcake jelly-o danish toffee. Tootsie roll pastry cheesecake [all …]
|
| /third_party/curl/docs/libcurl/ |
| D | libcurl.md | 1 --- 3 SPDX-License-Identifier: curl 7 See-also: 8 - libcurl-easy (3) 9 - libcurl-multi (3) 10 - libcurl-security (3) 11 - libcurl-thread (3) 13 - All 14 --- 18 libcurl - client-side URL transfers [all …]
|
| D | libcurl-tutorial.md | 1 --- 3 SPDX-License-Identifier: curl 4 Title: libcurl-tutorial 7 See-also: 8 - libcurl-easy (3) 9 - libcurl-errors (3) 10 - libcurl-multi (3) 11 - libcurl-url (3) 13 - All 14 --- [all …]
|
| /third_party/selinux/libselinux/man/ru/man8/ |
| D | selinux.8 | 3 SELinux \- Linux с улучшенной безопасностью от NSA (SELinux) 6 Linux с улучшенной безопасностью от NSA - это реализация гибкой архитектуры мандатного 10 Role-Based Access Control (управление доступом на основе ролей) и Multi-Level Security 15 .I /etc/selinux/config 17 устанавливать режим его работы - разрешительный или принудительный. Переменной 21 будет полностью отключён, система будет работать без какой-либо защиты SELinux. 28 дальнейшее выполнение операции после первого отказа, так и из-за того, что после 33 .I /etc/selinux/config 42 специально настроенном домене. Если используется политика MLS (Multi-Level Security), 50 .IR /etc/selinux/config . [all …]
|
| /third_party/icu/ |
| D | .gitignore | 36 bazel-* 42 output-*.cpp 43 perf-*.xml 44 test-*.xml 53 Generated[!!-~]Files/ 74 build-local.properties 86 icu4c/source/perf-*.xml 91 icu4c/source/test-*.xml 98 tools/multi/packages/*.jar 128 icu4c/source/config.cache [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/ |
| D | vktSynchronizationBasicFenceTests.cpp | 1 /*------------------------------------------------------------------------ 3 * ------------------------ 11 * http://www.apache.org/licenses/LICENSE-2.0 22 *//*--------------------------------------------------------------------*/ 55 tcu::TestStatus basicOneFenceCase (Context& context, FenceConfig config) in basicOneFenceCase() argument 57 …de::MovePtr<VideoDevice> videoDevice (config.videoCodecOperationFlags != 0 ? new VideoDevice(co… in basicOneFenceCase() 116 void checkVideoSupport (Context& context, FenceConfig config) in checkVideoSupport() argument 118 if (config.videoCodecOperationFlags != 0) in checkVideoSupport() 119 VideoDevice::checkSupport(context, config.videoCodecOperationFlags); in checkVideoSupport() 122 void checkCommandBufferSimultaneousUseSupport (Context& context, FenceConfig config) in checkCommandBufferSimultaneousUseSupport() argument [all …]
|
| D | vktSynchronizationBasicSemaphoreTests.cpp | 1 /*------------------------------------------------------------------------ 3 * ------------------------ 11 * http://www.apache.org/licenses/LICENSE-2.0 22 *//*--------------------------------------------------------------------*/ 65 …phore(Context& context, const DeviceInterface& vk, const VkDevice device, const TestConfig& config) in createTestSemaphore() argument 67 …if (config.semaphoreType == VK_SEMAPHORE_TYPE_TIMELINE && !context.getTimelineSemaphoreFeatures().… in createTestSemaphore() 70 …return Move<VkSemaphore>(config.useTypeCreate ? createSemaphoreType(vk, device, config.semaphoreTy… in createTestSemaphore() 75 tcu::TestStatus basicOneQueueCase (Context& context, const TestConfig config) in basicOneQueueCase() argument 77 …::MovePtr<VideoDevice> videoDevice (config.videoCodecOperationFlags != 0 ? new VideoDevice(co… in basicOneQueueCase() 82 const Unique<VkSemaphore> semaphore (createTestSemaphore(context, vk, device, config)); in basicOneQueueCase() [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/ |
| D | vktSynchronizationBasicFenceTests.cpp | 1 /*------------------------------------------------------------------------ 3 * ------------------------ 11 * http://www.apache.org/licenses/LICENSE-2.0 22 *//*--------------------------------------------------------------------*/ 55 tcu::TestStatus basicOneFenceCase (Context& context, FenceConfig config) in basicOneFenceCase() argument 57 …de::MovePtr<VideoDevice> videoDevice (config.videoCodecOperationFlags != 0 ? new VideoDevice(co… in basicOneFenceCase() 116 void checkVideoSupport (Context& context, FenceConfig config) in checkVideoSupport() argument 118 if (config.videoCodecOperationFlags != 0) in checkVideoSupport() 119 VideoDevice::checkSupport(context, config.videoCodecOperationFlags); in checkVideoSupport() 122 void checkCommandBufferSimultaneousUseSupport (Context& context, FenceConfig config) in checkCommandBufferSimultaneousUseSupport() argument [all …]
|
| D | vktSynchronizationBasicSemaphoreTests.cpp | 1 /*------------------------------------------------------------------------ 3 * ------------------------ 11 * http://www.apache.org/licenses/LICENSE-2.0 22 *//*--------------------------------------------------------------------*/ 65 …phore(Context& context, const DeviceInterface& vk, const VkDevice device, const TestConfig& config) in createTestSemaphore() argument 67 …if (config.semaphoreType == VK_SEMAPHORE_TYPE_TIMELINE && !context.getTimelineSemaphoreFeatures().… in createTestSemaphore() 70 …return Move<VkSemaphore>(config.useTypeCreate ? createSemaphoreType(vk, device, config.semaphoreTy… in createTestSemaphore() 75 tcu::TestStatus basicOneQueueCase (Context& context, const TestConfig config) in basicOneQueueCase() argument 77 …::MovePtr<VideoDevice> videoDevice (config.videoCodecOperationFlags != 0 ? new VideoDevice(co… in basicOneQueueCase() 82 const Unique<VkSemaphore> semaphore (createTestSemaphore(context, vk, device, config)); in basicOneQueueCase() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/marl/docs/ |
| D | scheduler.md | 5 - [`marl::Scheduler`](#marlscheduler) 6 - [Binding](#binding) 7 - [Fibers](#fibers) 8 - [Tasks](#tasks) 9 - [Workers](#workers) 10 - [`marl::Scheduler::Worker::run()`](#marlschedulerworkerrun) 11 - [`marl::Scheduler::Worker::runUntilIdle()`](#marlschedulerworkerrununtilidle) 12 - [`marl::Scheduler::Worker::waitForWork()`](#marlschedulerworkerwaitforwork) 13 - [`marl::Scheduler::Worker::spinForWork()`](#marlschedulerworkerspinforwork) 14 - [`marl::Scheduler::Worker::suspend()`](#marlschedulerworkersuspend) [all …]
|
| /third_party/skia/third_party/externals/freetype/builds/ |
| D | freetype.mk | 2 # FreeType 2 library sub-Makefile 6 # Copyright (C) 1996-2021 by 23 # PLATFORM_DIR The architecture-dependent directory, 38 # in the platform-specific configuration files. 65 # DISTCLEAN The sub-makefiles can append additional stuff to these two 72 # A, I, O, T Check `config.mk' for details. 78 .PHONY: single multi objects library refdoc refdoc-venv 80 # default target -- build single objects and library 84 # `multi' target -- build multiple objects and library 86 multi: objects library [all …]
|
| /third_party/selinux/libselinux/man/man8/ |
| D | selinux.8 | 3 SELinux \- NSA Security-Enhanced Linux (SELinux) 6 NSA Security-Enhanced Linux (SELinux) is an implementation of a 10 including those based on the concepts of Type Enforcement®, Role- 11 Based Access Control, and Multi-Level Security. Background 16 .I /etc/selinux/config 39 .I /etc/selinux/config 50 .I /etc/selinux/config 54 .I /etc/selinux/config 64 tailored to its operation. The MLS (Multi-Level Security) policy is designed 65 as a policy where all processes are partitioned into fine-grained security [all …]
|
| /third_party/curl/src/ |
| D | tool_operate.c | 21 * SPDX-License-Identifier: curl 108 struct OperationConfig *config, 192 switch(stat_buf->st_fab_rfm) { in VmsSpecialSize() 198 return stat_buf->st_size; in VmsSpecialSize() 222 transfersl->next = p; in add_per_transfer() 224 p->prev = transfersl; in add_per_transfer() 245 n = per->next; in del_per_transfer() 246 p = per->prev; in del_per_transfer() 249 p->next = n; in del_per_transfer() 254 n->prev = p; in del_per_transfer() [all …]
|
| /third_party/curl/packages/vms/ |
| D | stage_curl_install.com | 8 $! [usr.bin]curl-config. 15 $! [usr.include.curl]multi.h 17 $! [usr.include.curl]typecheck-gcc.h 19 $! [usr.share.man.man1]curl-config.1 39 $! SPDX-License-Identifier: ISC 60 $! If we are staging files, make sure that the libcurl.pc and curl-config 64 $ if f$search("[--]libcurl.pc") .eqs. "" 68 $ if f$search("[--]curl-config") .eqs. "" 70 $ @build_curl-config_script.com 76 $!------------------ [all …]
|
| /third_party/rust/crates/clap/clap_complete/tests/ |
| D | common.rs | 3 pub fn basic_command(name: &'static str) -> clap::Command { in basic_command() 6 clap::Arg::new("config") in basic_command() 14 .conflicts_with("config") in basic_command() 26 pub fn feature_sample_command(name: &'static str) -> clap::Command { in feature_sample_command() 37 clap::Arg::new("config") in feature_sample_command() 39 .help("some config file") in feature_sample_command() 42 .long("config") in feature_sample_command() 56 pub fn special_commands_command(name: &'static str) -> clap::Command { in special_commands_command() 62 clap::Arg::new("config") in special_commands_command() 63 .long("config") in special_commands_command() [all …]
|
| /third_party/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client-multi/ |
| D | CMakeLists.txt | 1 project(lws-minimal-mqtt-client-multi C) 3 find_package(libwebsockets CONFIG REQUIRED) 8 set(SAMP lws-minimal-mqtt-client-multi) 9 set(SRCS minimal-mqtt-client-multi.c)
|
| /third_party/alsa-lib/ |
| D | .gitignore | 4 config.log 5 config.cache 6 config.status 7 config.guess 8 config.sub 10 config.h.in 15 test-driver 20 install-sh 31 include/config.h 32 include/stamp-h1 [all …]
|
| /third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/ |
| D | README.md | 9 * multi-process execution 11 ## Command-Line Arguments 14 following additional command-line arguments: 16 * `--batch-size` limits the number of tests to run in each batch 17 * `--batch-timeout` limits the amount of time spent in each batch 18 * `--bot-mode` enables multi-process execution and test batching 19 * `--debug-test-groups` dumps the test config categories when using `bot-mode` 20 * `--filter-file` allows passing a larger `gtest_filter` via a file 21 * `--histogram-json-file` outputs a [formatted JSON file][HistogramSet] for perf dashboards 22 * `--max-processes` limits the number of simuntaneous processes [all …]
|
| /third_party/curl/docs/cmdline-opts/ |
| D | disable.md | 1 --- 3 SPDX-License-Identifier: curl 9 Multi: boolean 10 See-also: 11 - config 13 - -q $URL 14 --- 16 # `--disable` 18 If used as the **first** parameter on the command line, the *curlrc* config 19 file is not read or used. See the --config for details on the default config
|
| /third_party/openssl/demos/certs/apps/ |
| D | mkxcerts.sh | 2 # Create certificates using various algorithms to test multi-certificate 6 CN="OpenSSL Test RSA SHA-1 cert" $OPENSSL req \ 7 -config apps.cnf -extensions usr_cert -x509 -nodes \ 8 -keyout tsha1.pem -out tsha1.pem -new -days 3650 -sha1 9 CN="OpenSSL Test RSA SHA-256 cert" $OPENSSL req \ 10 -config apps.cnf -extensions usr_cert -x509 -nodes \ 11 -keyout tsha256.pem -out tsha256.pem -new -days 3650 -sha256 12 CN="OpenSSL Test RSA SHA-512 cert" $OPENSSL req \ 13 -config apps.cnf -extensions usr_cert -x509 -nodes \ 14 -keyout tsha512.pem -out tsha512.pem -new -days 3650 -sha512 [all …]
|
| /third_party/iptables/ |
| D | .gitignore | 12 /include/xtables-version.h 16 /build-aux/ 17 /config.* 20 /stamp-h1 21 /iptables/iptables-apply.8 23 /iptables/xtables-multi 24 /iptables/xtables-compat-multi
|