/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/ |
D | CertificateChainCleanerTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 32 HeldCertificate root = new HeldCertificate.Builder() in normalizeSingleSelfSignedCertificate() local 34 .build(); in normalizeSingleSelfSignedCertificate() 36 new RealTrustRootIndex(root.certificate)); in normalizeSingleSelfSignedCertificate() 37 assertEquals(list(root), council.clean(list(root))); in normalizeSingleSelfSignedCertificate() 41 HeldCertificate root = new HeldCertificate.Builder() in normalizeUnknownSelfSignedCertificate() local 43 .build(); in normalizeUnknownSelfSignedCertificate() 47 council.clean(list(root)); in normalizeUnknownSelfSignedCertificate() 54 HeldCertificate root = new HeldCertificate.Builder() in orderedChainOfCertificatesWithRoot() local 56 .build(); in orderedChainOfCertificatesWithRoot() [all …]
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | TextFormatParseInfoTreeTest.java | 1 // Protocol Buffers - Google's data interchange format 3 // https://developers.google.com/protocol-buffers/ 69 TextFormatParseInfoTree tree = rootBuilder.build(); in testBuildEmptyParseTree() 75 TextFormatParseInfoTree root = rootBuilder.build(); in testGetLocationReturnsSingleLocation() local 76 assertEquals(LOC0, root.getLocation(OPTIONAL_INT32, 0)); in testGetLocationReturnsSingleLocation() 77 assertEquals(1, root.getLocations(OPTIONAL_INT32).size()); in testGetLocationReturnsSingleLocation() 81 assertTrue(rootBuilder.build().getLocations(OPTIONAL_INT32).isEmpty()); in testGetLocationsReturnsNoParseLocationsForUnknownField() 83 TextFormatParseInfoTree root = rootBuilder.build(); in testGetLocationsReturnsNoParseLocationsForUnknownField() local 84 assertTrue(root.getLocations(OPTIONAL_INT32).isEmpty()); in testGetLocationsReturnsNoParseLocationsForUnknownField() 85 assertEquals(LOC0, root.getLocations(OPTIONAL_BOOLEAN).get(0)); in testGetLocationsReturnsNoParseLocationsForUnknownField() [all …]
|
/external/openssh/contrib/redhat/ |
D | openssh.spec | 8 # Version of ssh-askpass 11 # Do we want to disable building of x11-askpass? (1=yes 0=no) 14 # Do we want to disable building of gnome-askpass? (1=yes 0=no) 23 # Use GTK2 instead of GNOME in gnome-ssh-askpass 26 # Is this build for RHL 6.x? 33 # rpm -ba|--rebuild --define 'skip_xxx 1' 37 # Add option to build without GTK2 for older platforms with only GTK+. 39 # rpm -ba|--rebuild --define 'no_gtk2 1' 42 # Is this a build for RHL 6.x or earlier? 51 # rpm -ba|--rebuild --define "static_openssl 1" [all …]
|
/external/conscrypt/release/ |
D | README.md | 4 One-Time Setup 5 -------------- 22 <!-- TODO(flooey): Expand and link these, there's probably more --> 31 - Follow the instructions on [this 32 page](http://central.sonatype.org/pages/ossrh-guide.html) to set up an 34 - You only need to create the account, not set up a new project 35 - Contact a Conscrypt maintainer to add your account after you have created it. 36 - Install GnuPG and [generate your key 38 - [Publish your public key](https://www.gnupg.org/gph/en/manual.html#AEN464) 40 (e.g. `gpg --keyserver pgp.mit.edu --send-key <key ID>`). [all …]
|
D | linux | 4 # first. Must be run from the top-level conscrypt directory. 6 set -e 8 if [ -z "$1" ]; then 15 BRANCH=$(echo "$1" | sed -E 's/([0-9]+[.][0-9]+[.])[0-9]+/\1x/') 19 # Update the build.gradle file for the new version 20 sed -i 's/version = ".*"/version = "'"$1"'"/' build.gradle 22 # Commit the build.gradle, tag the release, and push upstream 23 git commit -a -m "Preparing version $1" 24 git tag -a "$1" -m "Version $1" 28 # Build and start the Docker container [all …]
|
/external/capstone/bindings/python/ |
D | Makefile | 7 rm -rf src/ 8 if test -n "${DESTDIR}"; then \ 9 python setup.py build install --root="${DESTDIR}"; \ 11 python setup.py build install; \ 15 rm -rf src/ 16 if test -n "${DESTDIR}"; then \ 17 python3 setup.py build install --root="${DESTDIR}"; \ 19 python3 setup.py build install; \ 22 # NOTE: Newer cython can be installed by: sudo pip install --upgrade cython 24 rm -rf src/ [all …]
|
/external/compiler-rt/lib/tsan/ |
D | check_cmake.sh | 2 set -u 3 set -e 5 ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 6 if [ -d "$ROOT/llvm-build" ]; then 7 cd $ROOT/llvm-build 9 mkdir -p $ROOT/llvm-build 10 cd $ROOT/llvm-build 11 …CC=clang CXX=clang++ cmake -G Ninja -DLLVM_ENABLE_WERROR=ON -DCMAKE_BUILD_TYPE=Release -DLLVM_ENAB… 14 ninja check-sanitizer 15 ninja check-tsan [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | algebraic_simplifier_test.cc | 7 http://www.apache.org/licenses/LICENSE-2.0 67 auto computation = m->AddEntryComputation(builder.Build()); in TEST_F() 68 HloInstruction* root = computation->root_instruction(); in TEST_F() local 69 EXPECT_EQ(root->opcode(), HloOpcode::kAdd); in TEST_F() 72 root = computation->root_instruction(); in TEST_F() 73 EXPECT_EQ(root, param0); in TEST_F() 85 ROOT sum = s32[8] add(x, y) in TEST_F() 92 m->entry_computation()->root_instruction(), in TEST_F() 97 // A*C + B*C => (A+B)*C if C is a floating-point power of 2. 107 ROOT sum = f32[] add(x, y) in TEST_F() [all …]
|
D | hlo_ordering_test.cc | 7 http://www.apache.org/licenses/LICENSE-2.0 55 // This results in a diamond-shaped callgraph. in TEST_F() 63 module->AddEmbeddedComputation(builder_c.Build()); in TEST_F() 71 module->AddEmbeddedComputation(builder_b.Build()); in TEST_F() 77 module->AddEmbeddedComputation(builder_a.Build()); in TEST_F() 84 module->AddEntryComputation(builder.Build()); in TEST_F() 137 HloComputation* body = module->AddEmbeddedComputation(body_builder.Build()); in TEST_F() 145 module->AddEmbeddedComputation(cond_builder.Build()); in TEST_F() 152 module->AddEntryComputation(builder.Build()); in TEST_F() 186 module->AddEntryComputation(builder.Build()); in TEST_F() [all …]
|
/external/autotest/site_utils/admin/ |
D | clean_staged_images.py | 3 # Use of this source code is governed by a BSD-style license that can be 11 1. Check if the build target is in the list of targets that need to keep the 12 latest build. Skip processing the directory if that's True. 34 def get_all_timestamp_dirs(root): argument 37 @param root: The top folder to look for timestamp file. 40 for dir_path, dir_names, file_names in os.walk(root): 50 """Test to see if the build at |build_path| is older than |max_age_hours|. 52 @param build_path: The path to the build (ie. 'build_dir/R21-2035.0.0') 53 @param max_age_hours: The maximum allowed age of a build in hours. 54 @return: True if the build is older than |max_age_hours|, False otherwise. [all …]
|
/external/testng/bin/ |
D | run-tests.sh | 1 ROOT=~/java/testng 3 JAR14=$ROOT/testng-$VERSION-jdk14.jar 4 JAR15=$ROOT/testng-$VERSION-jdk15.jar 6 java -ea -classpath test/build:$ROOT/3rdparty/junit.jar:$JAVA_HOME/lib/tools.jar:$JAR15:$CLASSPATH … 8 java -ea -classpath test/v4/build:$ROOT/3rdparty/junit.jar:$JAVA_HOME/lib/tools.jar:$JAR15:$CLASSPA… 10 java -ea -classpath test-14/build:$ROOT/3rdparty/junit.jar:$JAVA_HOME/lib/tools.jar:$JAR14:$CLASSPA… 12 …a -ea -classpath test-14/v4/build:$ROOT/3rdparty/junit.jar:$JAVA_HOME/lib/tools.jar:$JAR14:$CLASSP…
|
/external/tensorflow/tensorflow/tools/docker/ |
D | Dockerfile.devel-mkl-horovod | 13 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \ 15 ${PYTHON}-dev \ 16 ${PYTHON}-pip \ 17 ${PYTHON}-setuptools \ 18 ${PYTHON}-wheel \ 19 build-essential \ 22 libcurl3-dev \ 23 libfreetype6-dev \ 24 libhdf5-serial-dev \ 25 libnuma-dev \ [all …]
|
D | Dockerfile.devel-mkl | 12 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \ 14 ${PYTHON}-dev \ 15 ${PYTHON}-pip \ 16 ${PYTHON}-setuptools \ 17 ${PYTHON}-wheel \ 18 build-essential \ 21 libcurl3-dev \ 22 libfreetype6-dev \ 23 libhdf5-serial-dev \ 24 libpng-dev \ [all …]
|
/external/tensorflow/tensorflow/tools/graph_transforms/ |
D | quantize_nodes_test.cc | 7 http://www.apache.org/licenses/LICENSE-2.0 67 TF_ASSERT_OK(float_session->Create(float_graph_def)); in TestTransformedVersusFloatGraph() 70 float_session->Run(float_inputs, output_names, {}, &float_outputs)); in TestTransformedVersusFloatGraph() 84 TF_ASSERT_OK(transformed_session->Create(*transformed_graph_def)); in TestTransformedVersusFloatGraph() 86 TF_ASSERT_OK(transformed_session->Run(transformed_inputs, output_names, {}, in TestTransformedVersusFloatGraph() 156 auto root = tensorflow::Scope::NewRootScope(); in TestIgnoreOps() local 157 using namespace ::tensorflow::ops; // NOLINT(build/namespaces) in TestIgnoreOps() 164 return Const(root.WithOpName(name), Input::Initializer(tensor)); in TestIgnoreOps() 175 Output mat_mul_op = MatMul(root.WithOpName("mat_mul_op"), a_op, b_op); in TestIgnoreOps() 176 Output mul_op = Mul(root.WithOpName("mul"), c_op, d_op); in TestIgnoreOps() [all …]
|
/external/python/cpython2/Tools/buildbot/ |
D | clean.bat | 5 set root=%~dp0..\.. variable 6 set pcbuild=%root%\PCbuild 8 echo Deleting build 9 call "%pcbuild%\build.bat" -t Clean -k %* 10 call "%pcbuild%\build.bat" -t Clean -k -d %* 13 del /s "%root%\Lib\*.pyc" "%root%\Lib\*.pyo" 16 rmdir /s /q "%root%\build"
|
/external/python/cpython3/Tools/buildbot/ |
D | clean.bat | 5 set root=%~dp0..\.. variable 6 set pcbuild=%root%\PCbuild 8 echo Deleting build 9 call "%pcbuild%\build.bat" -t Clean -k %* 10 call "%pcbuild%\build.bat" -t Clean -k -d %* 13 del /s "%root%\Lib\*.pyc" "%root%\Lib\*.pyo" 16 rmdir /s /q "%root%\build"
|
/external/libcxx/utils/ci/ |
D | macos-trunk.sh | 3 set -ue 7 $(basename ${0}) [-h|--help] --libcxx-root <LIBCXX-ROOT> --libcxxabi-root <LIBCXXABI-ROOT> --std <S… 11 --libcxx-root Full path to the root of the libc++ repository to test. 12 --libcxxabi-root Full path to the root of the libc++abi repository to test. 13 --std Version of the C++ Standard to run the tests under (c++03, c++11, etc..). 14 --arch Architecture to build the tests for (32, 64). 15 …[--lit-args] Additional arguments to pass to lit (optional). If there are multiple arguments,… 16 …[--no-cleanup] Do not cleanup the temporary directory that was used for testing at the end. Thi… 17 [-h, --help] Print this help. 21 while [[ $# -gt 0 ]]; do [all …]
|
/external/jsr305/ri/nbproject/ |
D | project.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 5 <general-data xmlns="http://www.netbeans.org/ns/freeform-project/1"> 6 <name>JSR305-ri</name> 7 </general-data> 8 <general-data xmlns="http://www.netbeans.org/ns/freeform-project/2"> 9 <!-- Do not use Project Properties customizer when editing this file manually. --> 10 <name>JSR305-ri</name> 13 <source-folder> 17 <encoding>UTF-8</encoding> 18 </source-folder> [all …]
|
/external/libyuv/files/ |
D | .gn | 3 # Use of this source code is governed by a BSD-style license 4 # that can be found in the LICENSE file in the root of the source 7 # be found in the AUTHORS file in the root of the source tree. 9 # The location of the build configuration file. 10 buildconfig = "//build/config/BUILDCONFIG.gn" 12 # The secondary source root is a parallel directory tree where 13 # GN build files are placed when they can not be placed directly 15 secondary_source = "//build/secondary/" 20 # "gn check" or "gn gen --check". 27 "//build/config/BUILD.gn", [all …]
|
/external/grpc-grpc-java/ |
D | COMPILING.md | 1 Building gRPC-Java 4 Building is only necessary if you are making changes to gRPC-Java. 8 grpc-java has a C++ code generation plugin for protoc. Since many Java 10 codegen, the build can skip it. To skip, create the file 11 `<project-root>/gradle.properties` and add `skipCodegen=true`. 13 Then, to build, run: 15 $ ./gradlew build 26 build/run actions to Gradle. 29 ```Settings -> Build, Execution, Deployment 30 -> Build Tools -> Gradle -> Runner [all …]
|
/external/webrtc/ |
D | .gn | 3 # Use of this source code is governed by a BSD-style license 4 # that can be found in the LICENSE file in the root of the source 7 # be found in the AUTHORS file in the root of the source tree. 9 # The location of the build configuration file. 10 buildconfig = "//build/config/BUILDCONFIG.gn" 12 # The secondary source root is a parallel directory tree where 13 # GN build files are placed when they can not be placed directly 15 secondary_source = "//build/secondary/" 20 # "gn check" or "gn gen --check". 27 "//build/config/android/BUILD.gn", [all …]
|
/external/swiftshader/third_party/subzero/pydir/ |
D | szbuild.py | 21 """Build a regular expression string for inclusion or exclusion. 64 argparser.add_argument('--force', dest='force', type=int, choices=[0, 1], 66 help='Force all re-translations of the pexe.' + 68 argparser.add_argument('--include', '-i', default=[], dest='include', 72 argparser.add_argument('--exclude', '-e', default=[], dest='exclude', 76 argparser.add_argument('--output', '-o', default='a.out', dest='output', 79 argparser.add_argument('-O', default='2', dest='optlevel', 80 choices=['m1', '-1', '0', '1', '2'], 82 '(m1 and -1 are equivalent).' + 84 argparser.add_argument('--filetype', default='iasm', dest='filetype', [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | Projects.rst | 11 The LLVM build system is designed to facilitate the building of third party 16 to set to use the LLVM build system: 18 * ``PROJECT_NAME`` - The name by which your project is known. 19 * ``LLVM_SRC_ROOT`` - The root of the LLVM source tree. 20 * ``LLVM_OBJ_ROOT`` - The root of the LLVM object tree. 21 * ``PROJ_SRC_ROOT`` - The root of the project's source tree. 22 * ``PROJ_OBJ_ROOT`` - The root of the project's object tree. 23 * ``PROJ_INSTALL_ROOT`` - The root installation directory. 24 * ``LEVEL`` - The relative path from the current directory to the 25 project's root ``($PROJ_OBJ_ROOT)``. [all …]
|
/external/llvm/docs/ |
D | Projects.rst | 11 The LLVM build system is designed to facilitate the building of third party 16 to set to use the LLVM build system: 18 * ``PROJECT_NAME`` - The name by which your project is known. 19 * ``LLVM_SRC_ROOT`` - The root of the LLVM source tree. 20 * ``LLVM_OBJ_ROOT`` - The root of the LLVM object tree. 21 * ``PROJ_SRC_ROOT`` - The root of the project's source tree. 22 * ``PROJ_OBJ_ROOT`` - The root of the project's object tree. 23 * ``PROJ_INSTALL_ROOT`` - The root installation directory. 24 * ``LEVEL`` - The relative path from the current directory to the 25 project's root ``($PROJ_OBJ_ROOT)``. [all …]
|
/external/googletest/ |
D | appveyor.yml | 1 version: '{build}' 7 - compiler: msvc-15-seh 12 - compiler: msvc-15-seh 18 - compiler: msvc-15-seh 23 - compiler: msvc-14-seh 28 - compiler: msvc-14-seh 32 - compiler: gcc-6.3.0-posix 35 cxx_path: 'C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin' 39 - Debug 41 build: [all …]
|