Home
last modified time | relevance | path

Searched +full:additional +full:- +full:args (Results 1 – 25 of 1102) sorted by relevance

12345678910>>...45

/external/libwebsockets/lib/jose/jws/
Djose.c2 * libwebsockets - small server side websockets and web server implementation
4 * Copyright (C) 2010 - 2019 Andy Green <andy@warmcat.com>
28 #include "private-lib-core.h"
29 #include "jose/private-lib-jose.h"
115 * recipients[] LEJPCB_OBJECT_END (ctx->sp = 1)
130 * recipients[] LEJPCB_OBJECT_END (ctx->sp = 1)
161 struct jose_cb_args *args = (struct jose_cb_args *)ctx->user; in lws_jws_jose_cb() local
165 * In JOSE JSON, the element "epk" contains a fully-formed JWK. in lws_jws_jose_cb()
171 if (args->is_jwe && !strncmp(ctx->path, "epk.", 4)) { in lws_jws_jose_cb()
172 memcpy(args->jwk_jctx.path, ctx->path + 4, in lws_jws_jose_cb()
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/
Dnmake.yml4 ci-cmake:
6 runs-on: ${{ matrix.os }}
8 fail-fast: false
11 - name: Windows NMake x86
12 os: windows-2022
14 vc-vars: x86
16 - name: Windows NMake x64 compat
17 os: windows-2022
19 vc-vars: x86_amd64
20 additional-args: ZLIB_COMPAT=yes
[all …]
/external/cronet/testing/merge_scripts/code_coverage/
Dmerge_results.py3 # Use of this source code is governed by a BSD-style license that can be
5 """Merge results from code-coverage/pgo swarming runs.
7 This script merges code-coverage/pgo profiles from multiple shards. It also
23 def _MergeAPIArgumentParser(*args, **kwargs): argument
27 parser = argparse.ArgumentParser(*args, **kwargs)
28 parser.add_argument('--build-properties', help=argparse.SUPPRESS)
29 parser.add_argument('--summary-json', help=argparse.SUPPRESS)
30 parser.add_argument('--task-output-dir', help=argparse.SUPPRESS)
32 '-o', '--output-json', required=True, help=argparse.SUPPRESS)
37 '--additional-merge-script', help='additional merge script to run')
[all …]
/external/python/google-auth-library-python/google/auth/
Djwt.py7 # http://www.apache.org/licenses/LICENSE-2.0
79 Args:
82 header (Mapping[str, str]): Additional JWT header payload.
108 _helpers.unpadded_urlsafe_b64encode(json.dumps(header).encode("utf-8")),
109 _helpers.unpadded_urlsafe_b64encode(json.dumps(payload).encode("utf-8")),
123 return json.loads(section_bytes.decode("utf-8"))
132 Args:
165 Args:
179 Args:
198 earliest = iat - clock_skew_in_seconds
[all …]
/external/tensorflow/tensorflow/compiler/xla/tests/
Dbuild_defs.bzl24 args = [],
34 platform-agnostic cc_library rule. The arguments are identical to cc_test with
37 'backend_args'/'backend_tags' specifies backend-specific args parameters to
66 # includes the additional arg "--special_cpu_flag".
71 backend_args = {"cpu": ["--special_cpu_flag"]}
78 Args:
88 args: Test arguments for the target.
90 copts: Additional copts to pass to the build.
91 data: Additional data to pass to the build.
92 backend_tags: A dict mapping backend name to list of additional tags to
[all …]
/external/autotest/server/cros/
Dtelemetry_runner.py3 # Use of this source code is governed by a BSD-style license that can be
32 CHART_JSON_RESULT = 'results-chart.json'
77 be executed in the Lab environment - for this usecase, either the drone OR
113 It decides browser=[system|cros-chrome]
115 browser=lacros-chrome. It is only valid for remote
139 *args, **kwargs): argument
148 chart-json.
149 @param args: additional list of arguments to pass to the script.
150 @param kwargs: additional list of keyword arguments to pass to the
171 '--output-format=%s' % output_format,
[all …]
/external/python/google-auth-library-python/google/oauth2/
Dservice_account.py7 # http://www.apache.org/licenses/LICENSE-2.0
22 Service accounts are used for server-to-server communication, such as
36 `domain-wide delegation`_ authority to access user data on behalf of users in
54 Domain-wide delegation
55 ----------------------
57 Domain-wide delegation allows a service account to access user data on
64 do this. This authorization step is referred to as "delegating domain-wide
67 You can use domain-wise delegation by creating a set of credentials with a
96 'service-account.json')
105 specify additional scopes and a subject if necessary::
[all …]
/external/webrtc/tools_webrtc/android/
Dbuild_aar.py5 # Use of this source code is governed by a BSD-style license
7 # tree. An additional intellectual property rights grant can be found
15 .aar-file is just a zip-archive containing the files of the library. The file
17 - AndroidManifest.xml
18 - classes.jar
19 - libs/
20 - armeabi-v7a/
21 - libjingle_peerconnection_so.so
22 - x86/
23 - libjingle_peerconnection_so.so
[all …]
/external/bazel-skylib/docs/
Dpartial_doc.md1 <!-- Generated with Stardoc: http://skydoc.bazel.build -->
15 partial.make(<a href="#partial.make-func">func</a>, <a href="#partial.make-args">args</a>, <a href=…
20 A partial can have args assigned to it at the make site, and can have args
23 A partial 'function' can be defined with positional args and kwargs:
25 # function with no args
31 # function with 2 args
37 # function with 2 args and keyword args
43 The positional args passed to the function are the args passed into make
44 followed by any additional positional args given to call. The below example
74 The keyword args given to the function are the kwargs passed into make
[all …]
/external/bazel-skylib/lib/
Dpartial.bzl7 # http://www.apache.org/licenses/LICENSE-2.0
27 def _call(partial, *args, **kwargs):
30 Args:
32 *args: Additional positional arguments to be appended to the ones given to
34 **kwargs: Additional keyword arguments to augment and override the ones
40 function_args = partial.args + args
45 def _make(func, *args, **kwargs):
48 A partial can have args assigned to it at the make site, and can have args
51 A partial 'function' can be defined with positional args and kwargs:
53 # function with no args
[all …]
/external/pigweed/pw_protobuf_compiler/py/pw_protobuf_compiler/
Dgenerate_protos.py7 # https://www.apache.org/licenses/LICENSE-2.0
35 def _argument_parser() -> argparse.ArgumentParser:
41 '--language',
47 '--plugin-path', type=Path, help='Path to the protoc plugin'
50 '--proto-path',
52 help='Additional protoc include paths',
56 '--include-file',
58 help='File containing additional protoc include paths',
61 '--out-dir',
67 '--compile-dir',
[all …]
/external/python/mobly/mobly/
Dasserts.py7 # http://www.apache.org/licenses/LICENSE-2.0
27 *args, argument
33 Args:
35 *args: Positional arguments for the assertion call.
36 msg: A string that adds additional info about the failure.
43 assertion_method(*args, **kwargs)
58 Error message is "first != second" by default. Additional explanation can
61 Args:
64 msg: A string that adds additional info about the failure.
99 Args:
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/format/format.functions/
Dformat.pass.cpp1 //===----------------------------------------------------------------------===//
4 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: libcpp-has-no-incomplete-format
10 // TODO FMT Evaluate gcc-12 status
11 // UNSUPPORTED: gcc-12
13 // XFAIL: availability-fp_to_chars-missing
15 // Note this formatter shows additional information when tests are failing.
17 // they don't have this additional output.
21 // template<class... Args>
[all …]
/external/armnn/build-tool/scripts/
Dbuild-armnn.sh4 # Copyright © 2022-2023 Arm Ltd and Contributors. All rights reserved.
5 # SPDX-License-Identifier: MIT
9 # setup-armnn.sh must be executed in the same directory, before running this script
11 set -o nounset # Catch references to undefined variables.
12 set -o pipefail # Catch non zero exit codes within pipelines.
13 set -o errexit # Catch and propagate non zero exit codes.
21 …# $acl_scons_params are additional options provided by the user and will overwrite any previously …
24 if [ "$flag_debug" -eq 1 ]; then
33 # Force -fPIC so that ACL is suitable for inclusion in Arm NN library
34 local extra_cxx_flags="extra_cxx_flags='-fPIC'"
[all …]
/external/rust/crates/clap/3.2.23/src/
Dmkeymap.rs18 args: Vec<Arg<'help>>, field
33 pub(crate) fn is_position(&self) -> bool { in is_position()
39 fn eq(&self, rhs: &usize) -> bool { in eq()
48 fn eq(&self, rhs: &&str) -> bool { in eq()
57 fn eq(&self, rhs: &str) -> bool { in eq()
66 fn eq(&self, rhs: &OsStr) -> bool { in eq()
75 fn eq(&self, rhs: &char) -> bool { in eq()
87 pub(crate) fn contains<K>(&self, key: K) -> bool in contains()
94 /// Reserves capacity for at least additional more elements to be inserted
95 pub(crate) fn reserve(&mut self, additional: usize) { in reserve()
[all …]
/external/cronet/third_party/protobuf/
Dproto_library.gni2 # Use of this source code is governed by a BSD-style license that can be
35 # Generates a "_py_runtime"-suffixed target for test targets that need the
60 # List of additional files required for generator plugin script.
71 # Additional dependencies.
74 # Additional dependencies linked to library.
77 # Additional dependencies required before running protoc.
140 # and google-closure-library.
208 # |root_out_dir| and |root_build_dir| may differ in cross-compilation and
246 # Sanity check, |proto_in_dir| should be defined to allow sub-directories.
351 args = protos
[all …]
/external/libcxx/test/support/
Duses_alloc_types.hpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
21 // There are two forms of uses-allocator construction:
22 // (1) UA_AllocArg: 'T(allocator_arg_t, Alloc const&, Args&&...)'
23 // (2) UA_AllocLast: 'T(Args&&..., Alloc const&)'
24 // 'UA_None' represents non-uses allocator construction.
53 std::printf("UsesAllocatorType's don't match:\n%s %s\n----------\n%s %s\n", in CompareVerbose()
60 // Implements form (1) of uses-allocator construction from the specified
61 // 'Alloc' type and exactly 'N' additional arguments. It also provides
62 // non-uses allocator construction from 'N' arguments. This test type
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/support/
Duses_alloc_types.h1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
20 // There are two forms of uses-allocator construction:
21 // (1) UA_AllocArg: 'T(allocator_arg_t, Alloc const&, Args&&...)'
22 // (2) UA_AllocLast: 'T(Args&&..., Alloc const&)'
23 // 'UA_None' represents non-uses allocator construction.
48 // Implements form (1) of uses-allocator construction from the specified
49 // 'Alloc' type and exactly 'N' additional arguments. It also provides
50 // non-uses allocator construction from 'N' arguments. This test type
[all …]
/external/cronet/testing/libfuzzer/
Dfuzzer_test.gni2 # Use of this source code is governed by a BSD-style license that can be
14 # - (required) sources - fuzzer test source files
15 # - deps - test dependencies
16 # - libs - Additional libraries to link.
17 # - frameworks - Apple-only. Additional frameworks to link.
18 # - additional_configs - additional configs to be used for compilation
19 # - dict - a dictionary file for the fuzzer.
20 # - environment_variables - certain whitelisted environment variables for the
22 # - libfuzzer_options - options for the fuzzer (e.g. -close_fd_mask=N).
23 # - asan_options - AddressSanitizer options (e.g. allow_user_segv_handler=1).
[all …]
/external/crosvm/tools/
Dnextest_package3 # Use of this source code is governed by a BSD-style license that can be
27 # This is hard-coded specifically for crosvm tests.
45 rust_strip = cmd("rust-strip")
50 lib_dir = Path(cmd("rustc --print=sysroot").stdout()) / "lib"
51 for lib_file in lib_dir.glob("libstd-*"):
53 for lib_file in lib_dir.glob("libtest-*"):
59 target_dir = Path(metadata["rust-build-meta"]["target-directory"])
61 Path(suite["binary-path"]).relative_to(target_dir)
62 for suite in metadata["rust-binaries"].values()
67 for crate in metadata["rust-build-meta"]["non-test-binaries"].values()
[all …]
/external/openscreen/testing/libfuzzer/
Dfuzzer_test.gni2 # Use of this source code is governed by a BSD-style license that can be
12 # - (required) sources - fuzzer test source files
13 # - deps - test dependencies
14 # - libs - Additional libraries to link.
15 # - additional_configs - additional configs to be used for compilation
16 # - dict - a dictionary file for the fuzzer.
17 # - environment_variables - certain environment variables allowed for the
19 # - libfuzzer_options - options for the fuzzer (e.g. -close_fd_mask=N).
20 # - asan_options - AddressSanitizer options (e.g. allow_user_segv_handler=1).
21 # - msan_options - MemorySanitizer options.
[all …]
/external/tensorflow/tensorflow/python/keras/initializers/
Dinitializers_v2.py7 # http://www.apache.org/licenses/LICENSE-2.0
16 # pylint: disable=g-classes-have-attributes
49 method `from_config` in order to support serialization -- just like with
80 Args:
83 **kwargs: Additional keyword arguments.
88 """Returns the configuration of the initializer as a JSON-serializable dict.
91 A JSON-serializable Python dict.
102 initializer = RandomUniform(-1, 1)
107 Args:
137 Args:
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/lib/gprpp/
Darena.h9 * http://www.apache.org/licenses/LICENSE-2.0
23 // pre-allocate the right amount of memory
74 template <typename T, typename... Args>
75 T* New(Args&&... args) { in New() argument
77 new (t) T(std::forward<Args>(args)...); in New()
91 // on demand and maintained in a tail-linked list.
95 // quick optimization (avoiding an atomic fetch-add) for the common case
111 // If the initial arena allocation wasn't enough, we allocate additional zones
112 // in a reverse linked list. Each additional zone consists of (1) a pointer to
113 // the zone added before this zone (null if this is the first additional zone)
[all …]
/external/proguard/src/proguard/retrace/
DReTrace.java2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
5 * Copyright (c) 2002-2014 Eric Lafortune (eric@graphics.cornell.edu)
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 * Tool for de-obfuscating stack traces of applications that were obfuscated
40 private static final String REGEX_OPTION = "-regex";
41 private static final String VERBOSE_OPTION = "-verbose";
46 private static final String REGEX_CLASS = "\\b(?:[A-Za-z0-9_$]+\\.)*[A-Za-z0-9_$]+\\b";
47 private static final String REGEX_CLASS_SLASH = "\\b(?:[A-Za-z0-9_$]+/)*[A-Za-z0-9_$]+\\b";
48 private static final String REGEX_LINE_NUMBER = "\\b[0-9]+\\b";
50 private static final String REGEX_MEMBER = "<?\\b[A-Za-z0-9_$]+\\b>?";
[all …]
/external/bazelbuild-rules_android/rules/
Ddata_binding.bzl7 # http://www.apache.org/licenses/LICENSE-2.0
33 "Additional inputs required by the Java annotation processor."
36 "Additional outputs produced by the Java annotation processor."
41 "Additional Javac opts required by the Java annotation processor."
58 class_info = ctx.actions.declare_file(output_dir + "class-info.zip")
61 args = ctx.actions.args()
62 args.add("-layoutInfoFiles", layout_info)
63 args.add("-package", java_package)
64 args.add("-classInfoOut", class_info)
65 args.add("-sourceOut", srcjar)
[all …]

12345678910>>...45