| /third_party/mindspore/mindspore-src/source/cmake/ |
| D | lite_ios.cmake | 1 set(CMAKE_THREAD_LIBS_INIT "-lpthread") 2 set(CMAKE_HAVE_THREADS_LIBRARY 1) 3 set(CMAKE_USE_WIN32_THREADS_INIT 0) 4 set(CMAKE_USE_PTHREADS_INIT 1) 6 set(USED_CMAKE_GENERATOR "${CMAKE_GENERATOR}" CACHE STRING "Expose CMAKE_GENERATOR" FORCE) 9 set(MODERN_CMAKE YES) 13 # Get the Xcode version 14 execute_process(COMMAND xcodebuild -version OUTPUT_VARIABLE XCODE_VERSION ERROR_QUIET OUTPUT_STRIP_… 15 string(REGEX MATCH "Xcode [0-9\\.]+" XCODE_VERSION "${XCODE_VERSION}") 16 string(REGEX REPLACE "Xcode ([0-9\\.]+)" "\\1" XCODE_VERSION "${XCODE_VERSION}") [all …]
|
| D | package_script.cmake | 7 set(GIT ${GIT_EXECUTABLE}) 9 # set path 10 set(MS_ROOT_DIR ${CPACK_CMAKE_SOURCE_DIR}) 11 set(MS_PACK_ROOT_DIR ${CPACK_PACK_ROOT_DIR}) 13 set(PYTHON ${CPACK_PYTHON_EXE}) 14 set(PYTHON_VERSION ${CPACK_PYTHON_VERSION}) 17 …message(FATAL_ERROR "Found Python version ${PYTHON_VERSION}, but only versions 3.7 - 3.10 are supp… 20 # set package file name 23 set(PY_TAGS "cp310-cp310") 25 set(PY_TAGS "cp39-cp39") [all …]
|
| /third_party/benchmark/ |
| D | CMakeLists.txt | 2 cmake_minimum_required (VERSION 3.10...3.22) 4 project (benchmark VERSION 1.8.3 LANGUAGES CXX) 10 option(BENCHMARK_ENABLE_WERROR "Build Release candidates with -Werror." ON) 11 option(BENCHMARK_FORCE_WERROR "Build Release candidates with -Werror regardless of compiler issues.… 15 set(BENCHMARK_ENABLE_WERROR OFF) 18 set(BENCHMARK_ENABLE_WERROR OFF) 21 set(BENCHMARK_ENABLE_WERROR ON) 25 option(BENCHMARK_BUILD_32_BITS "Build a 32 bit version of the library." OFF) 27 …set(BENCHMARK_BUILD_32_BITS OFF CACHE BOOL "Build a 32 bit version of the library - unsupported wh… 35 option(BENCHMARK_DOWNLOAD_DEPENDENCIES "Allow the downloading and in-tree building of unmet depende… [all …]
|
| /third_party/vk-gl-cts/external/jsoncpp/ |
| D | CMakeLists.txt | 5 # Set the JSONCPP_NEWEST_VALIDATED_POLICIES_VERSION string to the newest cmake version 9 # are set to their NEW behaivor, thereby suppressing policy warnings related to policies 13 # continue to generate policy warnings "CMake Warning (dev)...Policy CMP0XXX is not set:" 15 set(JSONCPP_OLDEST_VALIDATED_POLICIES_VERSION "3.8.0") 16 set(JSONCPP_NEWEST_VALIDATED_POLICIES_VERSION "3.13.2") 17 cmake_minimum_required(VERSION ${JSONCPP_OLDEST_VALIDATED_POLICIES_VERSION}) 19 #Set and use the newest available cmake policies that are validated to work 20 set(JSONCPP_CMAKE_POLICY_VERSION "${CMAKE_VERSION}") 22 set(JSONCPP_CMAKE_POLICY_VERSION "${JSONCPP_NEWEST_VALIDATED_POLICIES_VERSION}") 24 cmake_policy(VERSION ${JSONCPP_CMAKE_POLICY_VERSION}) [all …]
|
| /third_party/elfio/ |
| D | CMakeLists.txt | 1 cmake_minimum_required(VERSION 3.10) 6 set(IS_TOP_PROJECT TRUE) 17 # Read version from header file 18 set(version_header "elfio/elfio_version.hpp") 20 string(REGEX MATCH "#define ELFIO_VERSION \"([0-9\.]+)\"" _ ${ver}) 23 message(FATAL_ERROR "Unable to parse version from ${version_header}") 26 set(version ${CMAKE_MATCH_1}) variable 31 project(elfio VERSION ${version} LANGUAGES C CXX) 49 set(CMAKE_CXX_STANDARD 14) 53 # set (CMAKE_CXX_FLAGS "-Wall") [all …]
|
| /third_party/pulseaudio/ |
| D | meson.build | 2 …version : run_command(find_program('git-version-gen'), join_paths(meson.current_source_dir(), '.ta… 8 meson.add_dist_script('scripts/save-tarball-version.sh', meson.project_version()) 14 # (e.g.: v11.99.1-3-gad14bdb24 -> v11.99.1) 15 version_split = pa_version_str.split('-')[0].split('.') 28 # The stable ABI for client applications, for the version info x:y:z 32 # A simplified, synchronous, ABI-stable interface for client 33 # applications, for the version info x:y:z always will hold x=z 36 # The ABI-stable GLib adapter for client applications, for the version 41 libpulse_version_info[0] - libpulse_version_info[2], 47 libpulse_simple_version_info[0] - libpulse_simple_version_info[2], [all …]
|
| /third_party/python/Lib/test/ |
| D | test_http_cookies.py | 18 'output': 'Set-Cookie: chips=ahoy\nSet-Cookie: vienna=finger'}, 23 'output': 'Set-Cookie: keebler="E=mc2; L=\\"Loves\\"; fudge=\\012;"'}, 29 'output': 'Set-Cookie: keebler=E=mc2'}, 37 'output': 'Set-Cookie: key:term=value:term'}, 39 # issue22931 - Adding '[' and ']' as valid characters in cookie 46 'Set-Cookie: a=b', 47 'Set-Cookie: c=[', 48 'Set-Cookie: d=r', 49 'Set-Cookie: f=h' 96 self.assertEqual(value[-2:], '\\;') [all …]
|
| /third_party/skia/third_party/externals/expat/expat/cmake/autotools/ |
| D | expat-config-version.cmake.in | 1 # This is a basic version file for the Config-mode of find_package(). 3 # to create a version-file which can be installed along a config.cmake file. 5 # The created file sets PACKAGE_VERSION_EXACT if the current version string and 6 # the requested version string are exactly the same and it sets 7 # PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, 8 # but only if the requested major version is the same as the current one. 9 # The variable CVF_VERSION must be set before calling configure_file(). 12 set(PACKAGE_VERSION "@PACKAGE_VERSION@") 15 set(PACKAGE_VERSION_COMPATIBLE FALSE) 18 if("@PACKAGE_VERSION@" MATCHES "^([0-9]+)\\.") [all …]
|
| /third_party/protobuf/cmake/ |
| D | CMakeLists.txt | 2 cmake_minimum_required(VERSION 3.1.3) 9 cmake_policy(SET CMP0022 NEW) 12 cmake_policy(SET CMP0042 NEW) 14 # Clear VERSION variables when no VERSION is given to project() 16 cmake_policy(SET CMP0048 NEW) 24 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11") 26 set(CMAKE_CXX_STANDARD 11) 27 set(CMAKE_CXX_STANDARD_REQUIRED ON) 28 set(CMAKE_CXX_EXTENSIONS OFF) 36 string(APPEND CMAKE_CXX_FLAGS " -diag-disable=2196") [all …]
|
| /third_party/elfutils/ |
| D | ChangeLog | 1 2022-11-02 Mark Wielaard <mark@klomp.org> 3 * configure.ac (AC_INIT): Set version to 0.188. 6 2022-10-31 Aaron Merey <amerey@redhat.com> 10 2022-10-20 Mark Wielaard <mark@klomp.org> 12 * Makefile.am (rpm): Remove --sign. 14 2022-10-22 Mark Wielaard <mark@klomp.org> 19 2022-09-13 Aleksei Vetrov <vvvvvv@google.com> 23 2022-09-27 Taketo Kabe <kabe@sra-tohoku.co.jp> 25 * debuginfod/debuginfod-client.c: Correctly get timestamp when 26 compiling with -D_TIME_BITS=64 on 32bit environment. [all …]
|
| /third_party/skia/third_party/externals/brotli/ |
| D | CMakeLists.txt | 5 cmake_minimum_required(VERSION 2.8.6) 11 set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE) 24 message("-- Compiler is EMSCRIPTEN") 26 message("-- Compiler is not EMSCRIPTEN") 32 # set it to OFF in your project before you add_subdirectory(brotli). 35 # Bundled mode hasn't been set one way or the other, set the default 36 # depending on whether or not we are the top-level project. 38 set(BROTLI_BUNDLED_MODE ON) 40 set(BROTLI_BUNDLED_MODE OFF) 47 # Parse version information from common/version.h. Normally we would [all …]
|
| /third_party/rust/crates/clap/tests/builder/ |
| D | derive_order.rs | 13 --flag_a second flag in no_derive_order() 14 --flag_b first flag in no_derive_order() 15 -h, --help Print help in no_derive_order() 16 --option_a <option_a> second option in no_derive_order() 17 --option_b <option_b> first option in no_derive_order() 18 -V, --version Print version in no_derive_order() 22 .version("1.2") in no_derive_order() 31 .action(ArgAction::Set) in no_derive_order() 39 .action(ArgAction::Set) in no_derive_order() 43 utils::assert_output(cmd, "test --help", NO_DERIVE_ORDER, false); in no_derive_order() [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/lite/tools/converter/micro/coder/generator/component/const_blocks/ |
| D | cmake_lists.cc | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 8 * http://www.apache.org/licenses/LICENSE-2.0 21 cmake_minimum_required(VERSION 3.18) 25 message(FATAL_ERROR "PKG_PATH not set") 30 set(HEADER_PATH ${PKG_PATH}/runtime) 48 add_definitions(-mfloat-abi=softfp -mfpu=neon) 51 set(CMAKE_C_FLAGS "${CMAKE_ENABLE_C99} ${CMAKE_C_FLAGS}") 52 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17") 55 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDebug -g") 56 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDebug -g") [all …]
|
| /third_party/openGLES/extensions/EXT/ |
| D | GLX_EXT_create_context_es2_profile.txt | 13 against version 1 of this extension. 28 Version 30 Version 4, April 6, 2012 75 "... If a version less than or equal to 3.0 is requested, the context 80 "... If the version requested is a valid and supported OpenGL-ES version, 81 and the GLX_CONTEXT_ES_PROFILE_BIT_EXT bit is set in the 83 returned will implement the OpenGL ES version requested. 85 Otherwise, if a version less than or equal to 3.0 is requested, the 91 "... If the requested OpenGL version is less than 3.2, 93 context is determined solely by the requested version." [all …]
|
| /third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
| D | GLX_EXT_create_context_es2_profile.txt | 13 against version 1 of this extension. 28 Version 30 Version 4, April 6, 2012 75 "... If a version less than or equal to 3.0 is requested, the context 80 "... If the version requested is a valid and supported OpenGL-ES version, 81 and the GLX_CONTEXT_ES_PROFILE_BIT_EXT bit is set in the 83 returned will implement the OpenGL ES version requested. 85 Otherwise, if a version less than or equal to 3.0 is requested, the 91 "... If the requested OpenGL version is less than 3.2, 93 context is determined solely by the requested version." [all …]
|
| /third_party/lz4/build/cmake/ |
| D | CMakeLists.txt | 11 cmake_minimum_required(VERSION 3.5) 13 set(LZ4_TOP_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../..") 15 # Parse version information 17 …_TOP_SOURCE_DIR}/lib/lz4.h" version_line REGEX "^#define LZ4_VERSION_${VERSION_TYPE} +([0-9]+).*$") 18 …string(REGEX REPLACE "^#define LZ4_VERSION_${VERSION_TYPE} +([0-9]+).*$" "\\1" version_number "${v… 19 set(LZ4_VERSION_${VERSION_TYPE} ${version_number} PARENT_SCOPE) 26 set(LZ4_VERSION_STRING "${LZ4_VERSION_MAJOR}.${LZ4_VERSION_MINOR}.${LZ4_VERSION_RELEASE}") 29 message(STATUS "Creating build script for LZ4 version: ${LZ4_VERSION_STRING}") 31 project(LZ4 VERSION ${LZ4_VERSION_STRING} LANGUAGES C) 43 set(LZ4_BUNDLED_MODE ON) [all …]
|
| /third_party/curl/projects/ |
| D | generate.bat | 22 rem * SPDX-License-Identifier: curl 30 rem Set our variables 32 set VERSION=ALL variable 33 set MODE=GENERATE 42 if not exist ..\GIT-INFO.md goto norepo 48 set VERSION=PRE variable 50 set VERSION=VC10 variable 52 set VERSION=VC11 variable 54 set VERSION=VC12 variable 55 ) else if /i "%~1" == "-clean" ( [all …]
|
| /third_party/openGLES/extensions/ARB/ |
| D | GLX_ARB_create_context.txt | 17 Copyright (c) 2009-2013 The Khronos Group Inc. Copyright terms at 22 Khronos-approved extension specifications are updated in response to 25 first appear in the latest version of that core Specification, and will 38 Version 8 update approved by the ARB on September 24, 2009. 40 Version 42 Version 10, 2012/03/28 65 attributes specifying the GL version and context properties 121 subject to constraints imposed by the OpenGL API version of the 138 * Implementation-dependent limits on the number of direct 156 the specified version of the API. If successful, the context [all …]
|
| /third_party/skia/third_party/externals/angle2/extensions/ |
| D | EGL_ANGLE_platform_angle.txt | 23 Version 25 Version 5, 2017-12-28 42 This extension is written against the wording of version 9 of the 102 eglGetPlatformDisplayEXT with <platform> set to EGL_PLATFORM_ANGLE_ANGLE. 107 handle. If <platform> is set to EGL_PLATFORM_ANGLE_ANGLE and the returned 112 EGL_PLATFORM_ANGLE_TYPE_ANGLE is implicitly set to 117 EGL_PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE are implicitly set to 121 EGL_PLATFORM_ANGLE_DEBUG_LAYERS_ENABLED is implicitly set to 125 EGL_PLATFORM_ANGLE_DEVICE_TYPE_ANGLE is implicitly set to 128 - EGL_PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE to request a hardware [all …]
|
| /third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
| D | GLX_ARB_create_context.txt | 17 Copyright (c) 2009-2013 The Khronos Group Inc. Copyright terms at 28 Version 8 update approved by the ARB on September 24, 2009. 30 Version 32 Version 10, 2012/03/28 55 attributes specifying the GL version and context properties 111 subject to constraints imposed by the OpenGL API version of the 128 * Implementation-dependent limits on the number of direct 146 the specified version of the API. If successful, the context 150 If a version less than or equal to 3.0 is requested, the context 153 * Any version no less than that requested and no greater than 3.0. [all …]
|
| /third_party/protobuf/php/tests/ |
| D | compatibility_test.sh | 7 rm -rf generated 10 $PROTOC1 --php_out=generated proto/test_include.proto 11 $PROTOC2 --php_out=generated \ 12 -I../../src -I. \ 31 …$PROTOC2 --php_out=../php/tests/generated -I../php/tests -I. ../php/tests/proto/test_import_descri… 39 awk -v file=`basename $1` -v dir=`basename $(dirname $1)` ' 56 set -ex 62 …repo1.maven.org/maven2/com/google/protobuf/protoc/$OLD_VERSION/protoc-$OLD_VERSION-linux-x86_64.exe 64 # Extract the latest protobuf version number. 70 [ -f ../../src/protoc ] || { [all …]
|
| /third_party/libwebsockets/READMEs/ |
| D | release-checklist | 2 ----------------- 4 1) non-CI QA 12 - CMakeLists.txt 14 set(SOVERSION "6") 16 - scripts/libwebsockets.spec 18 -/%{_libdir}/libwebsockets.so.6 23 a) Add next version tag header. 27 - NEW 28 - CHANGE 29 - REMOVE [all …]
|
| /third_party/libwebsockets/ |
| D | CMakeLists.txt | 2 # libwebsockets - small server side websockets and web server implementation 4 # Copyright (C) 2010 - 2020 Andy Green <andy@warmcat.com> 25 cmake_minimum_required(VERSION 2.8.12) 35 cmake_policy(SET CMP0048 NEW) 39 # cmake_policy(SET CMP0024 NEW) 43 cmake_policy(SET CMP0075 NEW) 48 # For selecting between DEBUG / RELEASE, use -DCMAKE_BUILD_TYPE=DEBUG or =RELEASE 51 set(LWS_WITH_BUNDLED_ZLIB_DEFAULT OFF) 53 set(LWS_WITH_BUNDLED_ZLIB_DEFAULT ON) 56 set(LWS_ROLE_RAW 1) [all …]
|
| /third_party/nghttp2/ |
| D | CMakeLists.txt | 1 # nghttp2 - HTTP/2 C Library 25 cmake_minimum_required(VERSION 3.14) 26 # XXX using 1.8.90 instead of 1.9.0-DEV 27 project(nghttp2 VERSION 1.62.1) 30 # https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html 31 set(LT_CURRENT 42) 32 set(LT_REVISION 1) 33 set(LT_AGE 28) 35 set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) 36 include(Version) [all …]
|
| /third_party/ltp/testcases/kernel/syscalls/capset/ |
| D | capset02.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 5 * Copyright (c) Linux Test Project, 2003-2023 12 * 1. capset() fails with errno set to EFAULT if an invalid address 14 * 2. capset() fails with errno set to EFAULT if an invalid address 16 * 3. capset() fails with errno set to EINVAL if an invalid value 17 * is given for header->version. 18 * 4. capset() fails with errno set to EPERM if the new_Effective is 20 * 5. capset() fails with errno set to EPERM if the new_Permitted is 22 * 6. capset() fails with errno set ot EPERM if the new_Inheritable is 23 * not a subset of the old_Inheritable and bounding set. [all …]
|