Home
last modified time | relevance | path

Searched +full:- +full:djdk (Results 1 – 15 of 15) sorted by relevance

/external/jacoco/org.jacoco.doc/docroot/doc/
Dbuild.html1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-st…
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6 <link rel="stylesheet" href="resources/doc.css" charset="UTF-8" type="text/css" />
7 …<link rel="stylesheet" href="../coverage/jacoco-resources/prettify.css" charset="UTF-8" type="text…
9 <script type="text/javascript" src="../coverage/jacoco-resources/prettify.js"></script>
10 <title>JaCoCo - Build</title>
51 ./jacoco/target/jacoco-<i>x.y.z.qualifier</i>.zip
62 mvn clean verify -DskipTests
71 <a href="http://maven.apache.org/guides/mini/guide-using-toolchains.html">Maven
[all …]
/external/jacoco/.azure-pipelines/
Dazure-pipelines.yml2 - job:
35 vmImage: 'ubuntu-18.04'
37 - bash: |
38 set -e
42 curl -L $JDK_URL -o .jdk/jdk.tar.gz
43 tar -xzf .jdk/jdk.tar.gz -C .jdk --strip-components 1
44 .jdk/bin/java -version
60 - bash: |
61 if [[ "$JDK_VERSION" -ge "8" ]]; then
65 mvn -V -B -e -f org.jacoco.build \
[all …]
/external/jacoco/
D.appveyor.yml2 - C:\Users\appveyor\apache-maven-3.3.9 -> appveyor.yml
3 - C:\Users\appveyor\.m2 -> **\pom.xml
6 - if not exist C:\Users\appveyor\apache-maven-3.3.9 (
7 …rl -LsS "http://www.apache.org/dyn/closer.cgi?action=download&filename=maven/maven-3/3.3.9/binarie…
8 unzip apache-maven-3.3.9-bin.zip -d C:\Users\appveyor
10 - SET PATH=C:\Users\appveyor\apache-maven-3.3.9\bin;%PATH%
14 - mvn -V -B -e verify -Djdk.version=6 --toolchains=.travis\appveyor-toolchains.xml
17 - path: jacoco\target\*.zip
/external/oss-fuzz/projects/fastjson2/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
21 mvn package -Dmaven.test.skip=true -Djdk.version=15
22 CURRENT_VERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate \
23 -Dexpression=project.version -q -DforceStdout)
24 cp "target/fastjson-$CURRENT_VERSION.jar" $OUT/fastjson.jar
28 # The classpath at build-time includes the project jars in $OUT as well as the
30 BUILD_CLASSPATH=$(echo $PROJECT_JARS | xargs printf -- "$OUT/%s:"):$JAZZER_API_PATH
33 RUNTIME_CLASSPATH=$(echo $PROJECT_JARS | xargs printf -- "\$this_dir/%s:"):\$this_dir
35 for fuzzer in $(find $SRC -name '*Fuzzer.java'); do
[all …]
/external/oss-fuzz/projects/apache-commons/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
22 GEOMETRY_MODULE="commons-geometry-io-euclidean"
25 cd $SRC/commons-$project
26 …MAVEN_ARGS="-Dmaven.test.skip=true -Djavac.src.version=15 -Djavac.target.version=15 -Djdk.version=…
27 CURRENT_VERSION=$($MVN org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate \
28 -Dexpression=project.version -q -DforceStdout)
31 # commons-geometry is a multi-module project and requires special handling in order
32 # to build and extract the proper module (commons-geometry-io-euclidean)
33 …$MVN package org.apache.maven.plugins:maven-shade-plugin:3.2.4:shade -am -pl $GEOMETRY_MODULE $MAV…
[all …]
/external/angle/build/android/gyp/
Dcreate_java_binary_script.py4 # Use of this source code is governed by a BSD-style license that can be
21 # be user-supplied paths in the args. The script receives the classpath relative
45 # https://chromium-review.googlesource.com/c/chromium/src/+/4697557/3
46 java_cmd += ['-Djdk.util.zip.disableZip64ExtraFieldValidation=true']
50 parser.add_argument('--jar-args')
51 parser.add_argument('--jvm-args')
52 parser.add_argument('--classpath')
70 java_cmd += ['-classpath', ':'.join(classpath), \"{main_class}\"]
79 parser.add_argument('--output',
83 '--main-class',
[all …]
/external/cronet/build/android/gyp/
Dcreate_java_binary_script.py4 # Use of this source code is governed by a BSD-style license that can be
21 # be user-supplied paths in the args. The script receives the classpath relative
45 # https://chromium-review.googlesource.com/c/chromium/src/+/4697557/3
46 java_cmd += ['-Djdk.util.zip.disableZip64ExtraFieldValidation=true']
50 parser.add_argument('--jar-args')
51 parser.add_argument('--jvm-args')
52 parser.add_argument('--classpath')
71 ['-classpath', ':'.join(classpath), '-enableassertions', \"{main_class}\"])
80 parser.add_argument('--output',
84 '--main-class',
[all …]
/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/
DJazzer.java8 * http://www.apache.org/licenses/LICENSE-2.0
56 * The libFuzzer-compatible CLI entrypoint for Jazzer.
58 * <p>Arguments to Jazzer are passed as command-line arguments or {@code jazzer.*} system
61 * {@code --target_class=com.example.FuzzTest}.
63 * <p>Arguments to libFuzzer are passed as command-line arguments.
74 .map(bytes -> new String(bytes, StandardCharsets.UTF_8)) in main()
85 // --asan and --ubsan imply --native by default, but --native can also be used by itself to fuzz in start()
93 Log.error("--asan, --hwasan and --ubsan cannot be used without --native"); in start()
107 -> (arg.startsWith("-fork=") && !arg.equals("-fork=0")) in start()
108 || (arg.startsWith("-jobs=") && !arg.equals("-jobs=0")) in start()
[all …]
/external/okio/
Dbuild.gradle.kts21 id("build-support").apply(false) in <lambda>()
79 "${rootDir.toString().replace('\\', '/')}/docs/css/dokka-logo.css" in <lambda>()
82 "${rootDir.toString().replace('\\', '/')}/docs/images/icon-square.png" in <lambda>()
123 url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") in <lambda>()
142 // com.squareup.okio:okio:3.x.y) even though we changed that artifact from JVM-only to Kotlin in <lambda>()
181 freeCompilerArgs += "-Xjvm-default=all" in <lambda>()
206 "-Djdk.tracePinnedThread=full", in <lambda>()
207 "--enable-preview", in <lambda>()
208 "-DloomEnabled=true" in <lambda>()
221 ignoreAttribute("Bnd-LastModified") in <lambda>()
[all …]
/external/cronet/build/android/gyp/util/
Dbuild_utils.py2 # Use of this source code is governed by a BSD-style license that can be
50 ret += ['-Xmx' + xmx]
52 # See: https://chromium-review.googlesource.com/c/chromium/src/+/4705883/3
54 ret += ['-Djdk.util.zip.disableZip64ExtraFieldValidation=true']
101 parser.error('--%s is required' % option_name.replace('_', '-'))
140 exits with a non-zero exit code."""
186 # WARNING: Use --illegal-access=warn to enable warnings of further ...
193 'Use --illegal-access=warn|'
232 stdout = stdout.decode('utf-8')
233 stderr = stderr.decode('utf-8')
[all …]
/external/angle/build/android/gyp/util/
Dbuild_utils.py2 # Use of this source code is governed by a BSD-style license that can be
50 ret += ['-Xmx' + xmx]
52 # See: https://chromium-review.googlesource.com/c/chromium/src/+/4705883/3
54 ret += ['-Djdk.util.zip.disableZip64ExtraFieldValidation=true']
101 parser.error('--%s is required' % option_name.replace('_', '-'))
140 exits with a non-zero exit code."""
186 # WARNING: Use --illegal-access=warn to enable warnings of further ...
193 'Use --illegal-access=warn|'
232 stdout = stdout.decode('utf-8')
233 stderr = stderr.decode('utf-8')
[all …]
/external/python/cpython3/Misc/NEWS.d/
D3.8.0b1.rst2 .. date: 2019-05-21-23-20-18
4 .. release date: 2019-06-04
7 CVE-2019-9948: Avoid file reading by disallowing ``local-file://`` and
14 .. date: 2019-02-24-18-48-16
19 loop when there are too many non-ASCII characters in a header.
24 .. date: 2018-03-30-12-26-47
34 .. date: 2019-06-03-00-51-02
44 .. date: 2019-06-01-20-03-13
54 .. date: 2019-06-01-16-53-41
55 .. nonce: dZ3-NY
[all …]
/external/rust/crates/quiche/deps/boringssl/src/ssl/
Dhandshake_server.cc1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
8 * This library is free for commercial and non-commercial use as long as
35 * being used are not cryptographic related :-).
58 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
80 * openssl-core@openssl.org.
131 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
179 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_client_cipher_list_contains_cipher()
180 client_hello->cipher_suites_len); in ssl_client_cipher_list_contains_cipher()
198 SSL *const ssl = hs->ssl; in negotiate_version()
199 assert(!ssl->s3->have_version); in negotiate_version()
[all …]
/external/boringssl/src/ssl/
Dhandshake_server.cc1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
8 * This library is free for commercial and non-commercial use as long as
35 * being used are not cryptographic related :-).
58 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
80 * openssl-core@openssl.org.
131 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
179 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_client_cipher_list_contains_cipher()
180 client_hello->cipher_suites_len); in ssl_client_cipher_list_contains_cipher()
198 SSL *const ssl = hs->ssl; in negotiate_version()
199 assert(!ssl->s3->have_version); in negotiate_version()
[all …]
/external/cronet/third_party/boringssl/src/ssl/
Dhandshake_server.cc1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
8 * This library is free for commercial and non-commercial use as long as
35 * being used are not cryptographic related :-).
58 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
80 * openssl-core@openssl.org.
131 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
179 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_client_cipher_list_contains_cipher()
180 client_hello->cipher_suites_len); in ssl_client_cipher_list_contains_cipher()
198 SSL *const ssl = hs->ssl; in negotiate_version()
199 assert(!ssl->s3->have_version); in negotiate_version()
[all …]