Home
last modified time | relevance | path

Searched +full:- +full:- +full:disable +full:- +full:doc (Results 1 – 25 of 1150) sorted by relevance

12345678910>>...46

/external/oss-fuzz/projects/gnupg/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
20 cd libgpg-error
22 ./configure --disable-doc --enable-static --disable-shared
28 ./configure --disable-doc --enable-static --disable-shared
34 ./configure --disable-doc --enable-static --disable-shared
40 ./configure --disable-doc --enable-static --disable-shared
46 ./configure --disable-doc --enable-static --disable-shared
58 ./configure --disable-doc --enable-maintainer-mode
59 make -j$(nproc) all
/external/oss-fuzz/projects/gnutls/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
20 export CPPFLAGS="-I$DEPS_PATH/include"
21 export LDFLAGS="-L$DEPS_PATH/lib -L$DEPS_PATH/lib64"
27 ./configure --enable-static --disable-shared --prefix=$DEPS_PATH
28 make -j$(nproc)
34 …./configure --enable-static --disable-shared --disable-doc --disable-gcc-warnings --prefix=$DEPS_P…
35 make -j$(nproc)
38 # always disable assembly in GMP to avoid issues due to SIGILL
39 # https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3119
[all …]
/external/e2fsprogs/debian/
Drules1 #! /usr/bin/make -f
17 ifneq ($(filter pkg.e2fsprogs.no-fuse2fs,$(DEB_BUILD_PROFILES)),)
21 COMERR_VERSION ?= $(shell grep ELF_VERSION lib/et/Makefile.in | cut '-d ' -f3)
22 SS_VERSION ?= $(shell grep ELF_VERSION lib/ss/Makefile.in | cut '-d ' -f3)
26 udebdir ?= ${topdir}/debian/e2fsprogs-udeb
27 stdbuilddir ?= ${topdir}/debian/BUILD-STD
30 INSTALL_PROGRAM ?= $(INSTALL) -p -m 0755
32 ifneq (,$(findstring update-symbols,$(DEB_BUILD_OPTIONS)))
39 LDFLAGS_STATIC = $(filter-out -fPIE -fpie -pie,$(LDFLAGS))
41 BACKTRACE_CONF_FLAGS ?= $(shell if debian/scripts/test-backtrace ; then echo --disable-backtrace ; …
[all …]
/external/oss-fuzz/projects/wget2/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
20 export CPPFLAGS="-I$WGET2_DEPS_PATH/include"
21 export LDFLAGS="-L$WGET2_DEPS_PATH/lib"
27 ./configure --enable-static --disable-shared --prefix=$WGET2_DEPS_PATH
28 make -j$(nproc)
33 ./configure --enable-static --disable-shared --disable-doc --disable-gcc-warnings --prefix=$WGET2_D…
34 make -j$(nproc)
39 ./configure --enable-static --disable-shared --disable-gtk-doc --enable-runtime=libidn2 --enable-bu…
40 make -j$(nproc)
[all …]
/external/oss-fuzz/projects/ecc-diff-fuzzer/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
22 tar -xvf ../gmp-6.1.2.tar.bz2
23 cd gmp-6.1.2
25 #we could do instead --enable-fat
26 ./configure --disable-shared --disable-assembly
27 make -j$(nproc)
31 ./configure --disable-shared --disable-openssl
32 make -j$(nproc)
39 make -j$(nproc)
[all …]
/external/libcups/packaging/
Dcups.spec.in6 # Copyright © 2007-2019 by Apple Inc.
7 # Copyright © 1999-2007 by Easy Software Products, all rights reserved.
13 # Conditional build options (--with name/--without name):
15 # dbus - Enable/disable DBUS support (default = enable)
16 # dnssd - Enable/disable DNS-SD support (default = enable)
17 # libusb1 - Enable/disable LIBUSB 1.0 support (default = enable)
18 # static - Enable/disable static libraries (default = enable)
19 # systemd - Enable/disable systemd support (default = enable)
21 %{!?_with_dbus: %{!?_without_dbus: %define _with_dbus --with-dbus}}
22 %{?_with_dbus: %define _dbus --enable-dbus}
[all …]
Dcups.spec6 # Copyright © 2007-2019 by Apple Inc.
7 # Copyright © 1999-2007 by Easy Software Products, all rights reserved.
13 # Conditional build options (--with name/--without name):
15 # dbus - Enable/disable DBUS support (default = enable)
16 # dnssd - Enable/disable DNS-SD support (default = enable)
17 # libusb1 - Enable/disable LIBUSB 1.0 support (default = enable)
18 # static - Enable/disable static libraries (default = enable)
19 # systemd - Enable/disable systemd support (default = enable)
21 %{!?_with_dbus: %{!?_without_dbus: %define _with_dbus --with-dbus}}
22 %{?_with_dbus: %define _dbus --enable-dbus}
[all …]
/external/stardoc/test/testdata/misc_apis_test/
Dinput.bzl1 # This is here to test that built-in names can be shadowed by global names.
3 # buildifier: disable=module-docstring
15 doc = "This repository rule has documentation.",
21 # buildifier: disable=provider-params
22 # buildifier: disable=unsorted-dict-items
25 "foo": "Something foo-related.",
26 "bar": "Something bar-related.",
32 # buildifier: disable=unsorted-dict-items
35 doc = "This rule exercises some of the build API.",
38 doc = "The source file.",
[all …]
/external/tensorflow/tensorflow/lite/tools/cmake/modules/
Deigen.cmake8 # https://www.apache.org/licenses/LICENSE-2.0
30 # https://gitlab.kitware.com/cmake/cmake/-/issues/17770
42 # Patch Eigen to disable Fortran compiler check for BLAS and LAPACK tests.
50 # Patch Eigen to disable benchmark suite.
55 # Patch Eigen to disable doc generation, as it builds C++ standalone apps with
58 file(WRITE "${eigen_SOURCE_DIR}/doc/CMakeLists.txt" "")
59 file(WRITE "${eigen_SOURCE_DIR}/unsupported/doc/CMakeLists.txt" "")
67 set(BUILD_TESTING OFF CACHE BOOL "Disable tests.")
68 set(EIGEN_TEST_CXX11 OFF CACHE BOOL "Disable tests of C++11 features.")
69 set(EIGEN_BUILD_BTL OFF CACHE BOOL "Disable benchmark suite.")
[all …]
/external/oss-fuzz/projects/libpsl/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
20 export CPPFLAGS="-I$DEPS_PATH/include"
21 export LDFLAGS="-L$DEPS_PATH/lib"
24 export GNULIB_TOOL=$GNULIB_SRCDIR/gnulib-tool
29 CFLAGS="$CFLAGS -fno-sanitize=vptr" \
30 CXXFLAGS="$CXXFLAGS -fno-sanitize=vptr" \
31 CPPFLAGS="$CPPFLAGS -fno-sanitize=vptr" \
32 ./configure --disable-shared --enable-static --disable-extras --disable-icuio --disable-layoutex \
33 --disable-tests --disable-samples --with-data-packaging=static --prefix=$DEPS_PATH
[all …]
/external/oss-fuzz/projects/wget/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
20 export CPPFLAGS="-I$WGET_DEPS_PATH/include"
21 export LDFLAGS="-L$WGET_DEPS_PATH/lib"
27 ./configure --enable-static --disable-shared --prefix=$WGET_DEPS_PATH --cache-file ../config.cache
28 make -j$(nproc)
33 ./configure --enable-static --disable-shared --disable-doc --disable-gcc-warnings --prefix=$WGET_DE…
34 make -j$(nproc)
39 …onfigure --enable-static --disable-shared --disable-gtk-doc --enable-runtime=libidn2 --enable-buil…
40 make -j$(nproc)
[all …]
/external/tensorflow/tensorflow/python/ops/numpy_ops/
Dnp_utils.py7 # http://www.apache.org/licenses/LICENSE-2.0
16 # pylint: disable=g-direct-tensorflow-import
160 # Python 2 doesn't allow keyword-only argument. Python prior to 3.8 doesn't
161 # allow positional-only argument. So we conflate positional-only, keyword-only
162 # and positional-or-keyword arguments here.
209 doc = 'TensorFlow variant of NumPy\'s `%s`.\n\n' % np_fun_name
211 doc += 'Unsupported arguments: ' + ', '.join(
214 doc += f.__doc__
215 doc = _add_blank_line(doc)
216 # TODO(wangpeng): Re-enable the following and choose inlined vs. link to numpy
[all …]
/external/pigweed/pw_docgen/py/pw_docgen/sphinx/
Dmodule_metadata.py7 # https://www.apache.org/licenses/LICENSE-2.0
18 * The `.. pigweed-module::` and `.. pigweed-module-subpage::` directives.
19 * The auto-generated "Source code" and "Issues" URLs that appear in the site
34 # pylint: disable=import-error
49 # pylint: enable=import-error
56 # pylint: disable=consider-using-from-import
59 # pylint: enable=consider-using-from-import
70 # The module metadata is exposed as a global because it's used as read-only
110 def _get_env_attr(self, attr: str, default: EnvAttrT) -> EnvAttrT:
120 def pw_parsed_bodies(self) -> dict[str, ParsedBody]:
[all …]
/external/libconfig/
Dconfigure.ac5 AC_CONFIG_AUX_DIR([aux-build])
13 AC_MSG_NOTICE([libconfig - made with pride in Colorado])
42 if test Z"$YACC" != "Zbison -y"; then
60 warn_c_sw="-Wall -Wshadow -Wextra -Wdeclaration-after-statement -Wno-unused-parameter"
61 warn_cxx_sw="-Wall -Wshadow -Wextra -Wno-unused-parameter";;
67 if test -n "${warn_c_sw}";
93 AS_HELP_STRING([--disable-cxx], [Disable building of the C++ library]),
104 AC_ARG_ENABLE(doc, optenable
105 AS_HELP_STRING([--disable-doc], [Disable building of the documentation]),
117 AS_HELP_STRING([--disable-examples], [Disable building of the example programs]),
[all …]
/external/stardoc/test/testdata/multiple_rules_test/
Dinput.bzl1 # buildifier: disable=module-docstring
8 doc = "This is my rule. It does stuff.",
15 # buildifier: disable=unsorted-dict-items
18 doc = "This is another rule.",
26 # buildifier: disable=unsorted-dict-items
29 doc = "This is yet another rule",
/external/stardoc/test/testdata/attribute_types_test/
Dinput.bzl1 # buildifier: disable=module-docstring
2 # buildifier: disable=function-docstring
9 doc = "This is my rule. It does stuff.",
11 "a": attr.bool(mandatory = True, doc = "Some bool"),
12 "b": attr.int(mandatory = True, doc = "Some int"),
13 "c": attr.int_list(mandatory = True, doc = "Some int_list"),
14 "d": attr.label(mandatory = True, doc = "Some label"),
15 "e": attr.label_keyed_string_dict(mandatory = True, doc = "Some label_keyed_string_dict"),
16 "f": attr.label_list(mandatory = True, doc = "Some label_list"),
17 "g": attr.output(mandatory = False, doc = "Some output"),
[all …]
/external/stardoc/test/testdata/providers_for_attributes_test/
Dinput.bzl9 # buildifier: disable=provider-params
10 # buildifier: disable=unsorted-dict-items
13 "foo": "Something foo-related.",
14 "bar": "Something bar-related.",
18 # buildifier: disable=provider-params
22 # buildifier: disable=unsorted-dict-items
25 doc = "This rule does things.",
29 doc = "this is the first attribute.",
38 # buildifier: disable=native-proto
/external/openthread/third_party/mbedtls/repo/tests/docker/bionic/
DDockerfile4 # -------
9 # https://github.com/Mbed-TLS/mbedtls-test/blob/master/README.md#quick-start
13 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
22 RUN apt-get update \
23 && apt-get -y install software-properties-common \
24 && rm -rf /var/lib/apt/lists
26 RUN add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
28 RUN apt-get update \
29 && apt-get -y install \
31 build-essential \
[all …]
/external/stardoc/test/testdata/simple_test/
Dinput.bzl1 # buildifier: disable=module-docstring
6 # buildifier: disable=unsorted-dict-items
9 doc = "This is my rule. It does stuff.",
13 doc = "first doc string",
18 "fourth": attr.bool(default = False, doc = "fourth doc string", mandatory = False),
/external/stardoc/test/testdata/attribute_defaults_test/
Dinput.bzl11 # buildifier: disable=unsorted-dict-items
14 doc = "This is my aspect. It does stuff.",
18 "y": attr.string(default = "why", doc = "some string"),
23 # buildifier: disable=unsorted-dict-items
26 doc = "This is my rule. It does stuff.",
28 "a": attr.bool(default = False, doc = "Some bool"),
29 "b": attr.int(default = 2, doc = "Some int"),
30 "c": attr.int_list(default = [0, 1], doc = "Some int_list"),
31 "d": attr.label(default = "//foo:bar", doc = "Some label"),
34 doc = "Some label_keyed_string_dict",
[all …]
/external/mbedtls/tests/docker/bionic/
DDockerfile4 # -------
9 # https://github.com/Mbed-TLS/mbedtls-test/blob/master/README.md#quick-start
13 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
22 RUN apt-get update \
23 && apt-get -y install software-properties-common \
24 && rm -rf /var/lib/apt/lists
26 RUN add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
28 RUN apt-get update \
29 && apt-get -y install \
31 build-essential \
[all …]
/external/tensorflow/tensorflow/python/framework/
Ddtypes.py7 # http://www.apache.org/licenses/LICENSE-2.0
25 # pylint: disable=invalid-import-order,g-bad-import-order
26 from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import
78 """Returns a non-reference `DType` based on this `DType`."""
80 return _INTERN_TABLE[self._type_enum - 100]
105 TypeError: if this is a non-numeric, unordered, or quantized type.
123 return _np_bfloat16(float.fromhex("-0x1.FEp127"))
131 TypeError: if this is a non-numeric, unordered, or quantized type.
164 min, max = dtype_range[self.as_numpy_dtype] # pylint: disable=redefined-builtin
169 min = 0 # pylint: disable=redefined-builtin
[all …]
/external/stardoc/test/testdata/provider_basic_test/
Dinput.bzl1 # buildifier: disable=module-docstring
2 # buildifier: disable=provider-params
6 doc = "Stores information about a foo.",
10 # buildifier: disable=unsorted-dict-items
12 doc = """
/external/mtools/
DINSTALL4 % allow Unix systems to manipulate MS-DOS files.
9 % Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
20 * Use ./configure --enable-vold to compile mtools to use Solaris'
22 * Use ./configure --disable-xdf to disable support for Xdf disks on Linux
23 * Use ./configure --enable-new-vold to compile mtools to use the *new*
27 Further doc can be found in the manpages, and in the texinfo doc. The
28 texinfo doc contains the same info as the manpages, but is more up to
29 date. To generate a printable doc, make dvi. To generate an info file,
/external/bazelbuild-rules_rust/proto/prost/private/
Dprost.bzl7 # buildifier: disable=bzl-visibility
10 # buildifier: disable=bzl-visibility
13 # buildifier: disable=bzl-visibility
16 # buildifier: disable=bzl-visibility
19 # buildifier: disable=bzl-visibility
28 out_replacement_format_flag = "--prost_out=%s",
58 additional_args.add("--protoc={}".format(proto_compiler.executable.path))
59 additional_args.add("--label={}".format(ctx.label))
60 additional_args.add("--out_librs={}".format(lib_rs.path))
61 …additional_args.add("--package_info_output={}".format("{}={}".format(crate_name, package_info_file…
[all …]

12345678910>>...46