Home
last modified time | relevance | path

Searched +full:default +full:- +full:cli (Results 1 – 25 of 746) sorted by relevance

12345678910>>...30

/external/zstd/
DCHANGELOG2 perf: Regain Minimal memset()-ing During Reuse of Compression Contexts (@Cyan4973, #2969)
12 perf: faster mid-level compression speed in presence of highly repetitive patterns, by @senhuang42
16 perf: on-demand reduced ZSTD_DCtx state size, using build macro ZSTD_DECODER_INTERNAL_BUFFER, at a …
20 build: improved meson unofficial build, by @eli-schwartz
21 cli : custom memory limit when training dictionary (#2925), by @embg
22 cli : report advanced parameters information when compressing in very verbose mode (``-vv`), by @Sv…
25 api: Various functions promoted from experimental to stable API: (#2579-2581, @senhuang42)
39 api: ZSTDMT_NBWORKERS_MAX reduced to 64 for 32-bit environments (@Cyan4973)
41 perf: Block splitter to improve compression ratio, enabled by default for high compression levels (…
42 perf: Decompression loop refactor, speed improvements on `clang` and for `--long` modes (#2614 #263…
[all …]
/external/python/rsa/rsa/
Dutil.py7 # https://www.apache.org/licenses/LICENSE-2.0
23 def private_to_public() -> None:
26 # Parse the CLI options
32 parser.add_option('-i', '--input', dest='infilename', type='string',
34 parser.add_option('-o', '--output', dest='outfilename', type='string',
37 parser.add_option('--inform', dest='inform',
38 help='key format of input - default PEM',
39 choices=('PEM', 'DER'), default='PEM')
41 parser.add_option('--outform', dest='outform',
42 help='key format of output - default PEM',
[all …]
Dcli.py7 # https://www.apache.org/licenses/LICENSE-2.0
33 def keygen() -> None:
36 # Parse the CLI options
40 parser.add_option('--pubout', type='string',
43 'pyrsa-priv2pub to create the public key file later.')
45 parser.add_option('-o', '--out', type='string',
49 parser.add_option('--form',
50 help='key format of the private and public keys - default PEM',
51 choices=('PEM', 'DER'), default='PEM')
53 (cli, cli_args) = parser.parse_args(sys.argv[1:])
[all …]
/external/autotest/client/common_lib/cros/manual/
Daudio_helper.py2 # Use of this source code is governed by a BSD-style license that can be
27 logging.info('---cmd: %s', cmd)
35 logging.info('---audio card %s', soundcard)
37 logging.exception('Fail to get sound card, cli=%s.', cmd)
89 "awk -v N=2 '{print $N}'" % soundcard)
92 logging.exception('Fail to run cli: %s.', cmd)
100 @returns True, None if default speakers have same volume as one read
114 logging.info('---Fail to get node for default speaker.')
115 return False, 'Fail to get node for default speaker.'
118 logging.info('---Volume for default speaker are sync for '
[all …]
/external/lz4/programs/
DREADME.md5 The Command Line Interface (CLI) can be generated
8 …all [standard conventions](https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html),
12 For advanced use cases, there are targets to different variations of the CLI:
13 - `lz4` : default CLI, with a command line syntax close to gzip
14 - `lz4c` : Same as `lz4` with additional support legacy lz4 commands (incompatible with gzip)
15 - `lz4c32` : Same as `lz4c`, but forced to compile in 32-bits mode
17 The CLI generates and decodes [LZ4-compressed frames](../doc/lz4_Frame_format.md).
21 CLI supports aggregation of parameters i.e. `-b1`, `-e18`, and `-i1` can be joined into `-b1e18i1`.
25 CLI includes in-memory compression benchmark module for lz4.
31 One can select compression levels starting from `-b` and ending with `-e`.
[all …]
/external/zstd/programs/
DREADME.md4 Command Line Interface (CLI) can be created using the `make` command without any additional paramet…
5 There are however other Makefile targets that create different variations of CLI:
6 - `zstd` : default CLI supporting gzip-like arguments; includes dictionary builder, benchmark, and …
7 - `zstd_nolegacy` : Same as `zstd` but without support for legacy zstd formats
8 - `zstd-small` : CLI optimized for minimal size; no dictionary builder, no benchmark, and no suppor…
9 - `zstd-compress` : version of CLI which can only compress into zstd format
10 - `zstd-decompress` : version of CLI which can only decompress zstd format
16 - __HAVE_THREAD__ : multithreading is automatically enabled when `pthread` is detected.
23 - __ZSTD_LEGACY_SUPPORT__ : `zstd` can decompress files compressed by older versions of `zstd`.
26 By default, `zstd` supports decoding legacy formats >= v0.4.0 (`ZSTD_LEGACY_SUPPORT=4`).
[all …]
/external/openthread/script/
Dtest33 set -euo pipefail
35 readonly OT_BUILDDIR="${OT_BUILDDIR:-${PWD}/build}"
43 readonly OT_NODE_TYPE="${OT_NODE_TYPE:-cli}"
44 readonly OT_NATIVE_IP="${OT_NATIVE_IP:-0}"
45 readonly THREAD_VERSION="${THREAD_VERSION:-1.3}"
46 readonly INTER_OP="${INTER_OP:-0}"
47 readonly VERBOSE="${VERBOSE:-0}"
48 readonly BORDER_ROUTING="${BORDER_ROUTING:-1}"
49 readonly NAT64="${NAT64:-0}"
50 readonly INTER_OP_BBR="${INTER_OP_BBR:-1}"
[all …]
/external/openthread/tests/toranj/
DREADME_CLI.md1 # `toranj-cli`
3 `toranj-cli` is a test framework for OpenThread using its CLI interface.
7 - It is developed in Python.
8 - It can be used to simulate multiple nodes forming complex network topologies.
9 - It allows testing of network interactions between many nodes.
10 - `toranj` in CLI mode runs `ot-cli-ftd` on simulation platform (real-time).
19 Building OpenThread (NCP/CLI for FTD/MTD/RCP mode) with simulation platform using cmake
21 -- OpenThread Source Directory: /Users/abtink/GitHub/openthread
22 -- OpenThread CMake build type: Debug
23 -- Package Name: OPENTHREAD
[all …]
/external/lz4/
DNEWS3 perf : faster decoding speed (~+70%) for -BD4 setting in CLI
9 cli : `--list` works on `stdin` input, by @Low-power
10 cli : `--no-crc` does not produce (compression) nor check (decompression) checksums
11 cli : fix: `--test` and `--list` produce an error code when parsing invalid input
12 cli : fix: support skippable frames when passed via `stdin`, reported by @davidmankin
14 build: `LZ4_FREESTANDING`, new build macro for freestanding environments, by @t-mat
15 build: `make` and `make test` are compatible with `-j` parallel run
18 build: MSVC 2022 support, by @t-mat
19 build: improved meson script, by @eli-schwartz
31 api : fix alignment test on 32-bit systems (state initialization)
[all …]
/external/llvm/lib/Target/BPF/
DBPFISelLowering.cpp1 //===-- BPFISelLowering.cpp - BPF DAG Lowering Implementation ------------===//
8 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
34 #define DEBUG_TYPE "bpf-lower"
38 DAG.getContext()->diagnose( in fail()
48 Val->print(OS); in fail()
50 DAG.getContext()->diagnose( in fail()
143 default: in LowerOperation()
156 default: in LowerFormalArguments()
176 default: { in LowerFormalArguments()
[all …]
/external/openthread/examples/apps/cli/
Dcli_uart.cpp28 #include "openthread-core-config.h"
34 #include <openthread-system.h>
35 #include <openthread/cli.h>
38 #include "cli/cli_config.h"
51 * The size of CLI UART RX buffer in bytes.
65 * The size of CLI message buffer in bytes.
74 #error "diag output buffer should be smaller than CLI UART tx buffer"
77 #error "diag command line should be smaller than CLI UART rx buffer"
82 #error "command line should be should be smaller than CLI rx buffer"
107 * Macro to acquire an exclusive lock of uart cli output
[all …]
/external/tensorflow/tensorflow/python/debug/wrappers/
Dlocal_cli_wrapper.py7 # http://www.apache.org/licenses/LICENSE-2.0
15 """Debugger Wrapper Session Consisting of a Local Curses-based CLI."""
21 # Google-internal import(s).
22 from tensorflow.python.debug.cli import analyzer_cli
23 from tensorflow.python.debug.cli import cli_config
24 from tensorflow.python.debug.cli import cli_shared
25 from tensorflow.python.debug.cli import command_parser
26 from tensorflow.python.debug.cli import debugger_cli_common
27 from tensorflow.python.debug.cli import profile_analyzer_cli
28 from tensorflow.python.debug.cli import ui_factory
[all …]
/external/openthread/src/cli/
DREADME_SRP.md1 # OpenThread CLI - SRP (Service Registration Protocol)
10 ./output/simulation/bin/ot-cli-ftd 1
25 Network Name: OpenThread-f7af
54 ./output/simulation/bin/ot-cli-ftd 2
76 > srp client host name my-host
80 > srp client service add my-service _ipps._tcp 12345
86 The last command enables the auto-start mode on the client which then monitors the network data to …
111 name:"my-host", state:Registered, addrs:[fded:5114:8263:1fe1:44f9:cc06:4a2d:534]
114 instance:"my-service", name:"_ipps._tcp", state:Registered, port:12345, priority:0, weight:0
124 my-host.default.service.arpa.
[all …]
DREADME_COAPS.md1 # OpenThread CLI - CoAPS Example
3 The OpenThread CoAPS APIs may be invoked via the OpenThread CLI.
13 CoAPS uses DTLS to establish a secure, end-to-end connection.
17 - TLS_PSK_WITH_AES_128_CCM_8
20 > coaps psk <your-psk> <your-psk-id>
24 - TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8
29 The X.509 certificate stored in `core/cli/x509_cert_key.hpp`.
33 On node 1, setup CoAPS server with resource `test-resource`.
38 > coaps resource test-resource
47 > coaps connect <peer-ip6-address>
[all …]
Dcli_config.h31 * This file includes compile-time configurations for the CLI service.
38 #include "openthread-core-config.h"
54 * The maximum size of the CLI line in bytes including the null terminator.
64 * Indicates whether TCP should be enabled in the CLI tool.
74 * The number of bytes to transfer for the TCP benchmark in the CLI.
93 * Define as 1 for CLI to emit its command input string and the resulting output to the logs.
95 …* By default this is enabled on any POSIX based platform (`OPENTHREAD_POSIX`) and only when CLI it…
119 * Enable CLI prompt.
121 * When enabled, the CLI will print prompt on the output after processing a command.
/external/openthread/
Dconfigure.ac1 # -*- Autoconf -*-
41 … m4_esyscmd([third_party/nlbuild-autotools/repo/scripts/mkversion -b `cat .default-version` .]),
42 [openthread-devel@googlegroups.com],
47 # nlbuild-autotools repository is rooted at.
49 AC_SUBST(nlbuild_autotools_stem,[third_party/nlbuild-autotools/repo])
75 # install-sh, missing, etc.)
77 AC_CONFIG_AUX_DIR([third_party/nlbuild-autotools/repo/third_party/autoconf])
82 AC_CONFIG_MACRO_DIRS([third_party/nlbuild-autotools/repo/third_party/autoconf/m4 third_party/nlbuil…
88 AC_CONFIG_HEADERS([include/openthread-config-generic.h])
109 # together at the top-level directory.
[all …]
/external/python/dateutil/
Drelease.py14 def cli(): function
17 @cli.command()
21 if click.confirm('{} is not empty - delete contents?'.format(DIST_PATH)):
30 '--formats=gztar'])
32 @cli.command()
36 subprocess.check_call(['gpg', '--armor', '--output', fpath + '.asc',
37 '--detach-sig', fpath])
44 subprocess.check_call(['gpg', '--verify', fpath + '.asc', fpath])
47 @cli.command()
48 @click.option('--passfile', default=None)
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBPFISelLowering.cpp1 //===-- BPFISelLowering.cpp - BPF DAG Lowering Implementation ------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
33 #define DEBUG_TYPE "bpf-lower"
35 static cl::opt<bool> BPFExpandMemcpyInOrder("bpf-expand-memcpy-in-order",
41 DAG.getContext()->diagnose( in fail()
51 Val->print(OS); in fail()
53 DAG.getContext()->diagnose( in fail()
146 // When -bpf-expand-memcpy-in-order specified, we want to defer the expand in BPFTargetLowering()
[all …]
/external/libnl/src/
Dnl-class-add.c1 /* SPDX-License-Identifier: LGPL-2.1-only */
6 #include <netlink/cli/utils.h>
7 #include <netlink/cli/tc.h>
8 #include <netlink/cli/qdisc.h>
9 #include <netlink/cli/class.h>
10 #include <netlink/cli/link.h>
12 #include <netlink-private/route/tc-api.h>
21 "Usage: nl-class-add [OPTIONS]... class [CONFIGURATION]...\n" in print_usage()
24 " -q, --quiet Do not print informal notifications.\n" in print_usage()
25 " -h, --help Show this help text.\n" in print_usage()
[all …]
Dnl-cls-add.c1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2003-2011 Thomas Graf <tgraf@suug.ch>
6 #include <netlink/cli/utils.h>
7 #include <netlink/cli/tc.h>
8 #include <netlink/cli/cls.h>
9 #include <netlink/cli/link.h>
11 #include <netlink-private/route/tc-api.h>
20 "Usage: nl-cls-add [OPTIONS]... classifier [CONFIGURATION]...\n" in print_usage()
23 " -q, --quiet Do not print informal notifications.\n" in print_usage()
24 " -h, --help Show this help text.\n" in print_usage()
[all …]
Dnl-cls-list.c1 /* SPDX-License-Identifier: LGPL-2.1-only */
3 * Copyright (c) 2008-2010 Thomas Graf <tgraf@suug.ch>
6 #include <netlink/cli/utils.h>
7 #include <netlink/cli/tc.h>
8 #include <netlink/cli/cls.h>
9 #include <netlink/cli/link.h>
22 "Usage: nl-cls-list [OPTION]...\n" in print_usage()
25 " --details Show details\n" in print_usage()
26 " --stats Show statistics\n" in print_usage()
27 " -h, --help Show this help\n" in print_usage()
[all …]
/external/openthread/examples/platforms/cc2538/
DREADME.md11 Download and install the [GNU toolchain for ARM Cortex-M][gnu-toolchain].
13 [gnu-toolchain]: https://developer.arm.com/tools-and-software/open-source-software/developer-tools/…
18 $ cd <path-to-openthread>
27 $ cd <path-to-openthread>
29 $ make -f examples/Makefile-cc2538
34 If your board has a CC2592 range extender front-end IC connected to the CC2538 (e.g. the CC2538-CC2…
39 $ make -f examples/Makefile-cc2538 CC2592=1
42 The default settings should work for any design following the integration advice given in TI's appl…
46 - `CC2592_PA_EN`: This specifies which pin (on port C of the CC2538) connects to the CC2592's `PA_E…
47 - `CC2592_LNA_EN`: This specifies which pin (on port C of the CC2538) connects to the CC2592's `LNA…
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/xxhash/
DCHANGELOG2 - api : stabilize XXH3
3 - cli : xxhsum can parse BSD-style --check lines, by @WayneD
4 - cli : `xxhsum -` accepts console input, requested by @jaki
5 - cli : xxhsum accepts -- separator, by @jaki
6 - cli : fix : print correct default algo for symlinked helpers, by @martinetd
7 - install: improved pkgconfig script, allowing custom install locations, requested by @ellert
10 - perf: automatic vector detection and selection at runtime (`xxh_x86dispatch.h`), initiated by @ea…
11 - perf: added AVX512 support, by @gzm55
12 - api : new: secret generator `XXH_generateSecret()`, suggested by @koraa
13 - api : fix: XXH3_state_t is movable, identified by @koraa
[all …]
/external/python/cpython2/Lib/test/
Dtest_socket.py176 self.cli = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
179 self.cli.close()
180 self.cli = None
190 self.cli = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
193 self.cli.close()
194 self.cli = None
217 self.cli.connect((HOST, self.port))
218 self.serv_conn = self.cli
232 self.serv, self.cli = socket.socketpair()
242 self.cli.close()
[all …]
/external/tensorflow/tensorflow/python/debug/cli/
Doffline_analyzer.py7 # http://www.apache.org/licenses/LICENSE-2.0
21 # Google-internal import(s).
22 from tensorflow.python.debug.cli import analyzer_cli
28 pass # No logging for open-source.
38 cli = analyzer_cli.create_analyzer_ui(
44 cli.run_ui(title=title, title_color="black_on_white", init_command="lt")
51 "--dump_dir", type=str, default="", help="tfdbg dump directory to load")
53 "--log_usage",
57 default=True,
60 "--ui_type",
[all …]

12345678910>>...30