Home
last modified time | relevance | path

Searched +full:paths +full:- +full:ignore (Results 1 – 25 of 891) sorted by relevance

12345678910>>...36

/third_party/skia/site/docs/user/sample/
Dpdf.md1 ---
4 ---
9 <fiddle-embed name='@PDF'></fiddle-embed>
11 <!-- https://fiddle.skia.org/c/@PDF docs/examples/PDF.cpp -->
13 ---
19 PDF-ish way to handle it.
23 - **drop** means to draw nothing.
25 - **ignore** means to draw without the effect
27 - **expand** means to implement something in a non-PDF-ish way. This may mean to
28 rasterize vector graphics, to expand paths with path effects into many
[all …]
/third_party/node/deps/npm/node_modules/glob/dist/cjs/src/
Dglob.d.ts4 import { FSOption, Path, PathScurry } from 'path-scurry';
5 import { IgnoreLike } from './ignore.js';
24 * Set to `true` to always receive absolute paths for
25 * matched files. Set to `false` to always return relative paths.
27 * When this option is not set, absolute paths are returned for patterns
28 * that are absolute, and otherwise paths are returned that are relative
59 * Without this option, returned relative paths are "bare", so instead of
77 * string or string[], or an object with `ignore` and `ignoreChildren`
81 * pattern or array of glob patterns to exclude from matches. To ignore all
83 * to the ignore pattern.
[all …]
Dwalker.js5 * Single-use utility classes to provide functionality to the {@link Glob}
11 const ignore_js_1 = require("./ignore.js");
13 const makeIgnore = (ignore, opts) => typeof ignore === 'string' argument
14 ? new ignore_js_1.Ignore([ignore], opts)
15 : Array.isArray(ignore)
16 ? new ignore_js_1.Ignore(ignore, opts)
17 : ignore;
29 #ignore; field in GlobUtil
38 if (opts.ignore) {
39 this.#ignore = makeIgnore(opts.ignore, opts);
[all …]
Dbin.js4 const foreground_child_1 = require("foreground-child");
16 system paths found.
32 This prevents double-expanding, in case the shell expands
43 Setting '--all' prevents this behavior, causing glob
54 description: 'Expand to absolute paths',
56 'dot-relative': {
66 description: `Always resolve to posix style paths, using '/' as the
89 'match-base': {
91 description: `Perform a basename-only match if the pattern does not
106 description: `Perform a case-insensitive match. This defaults to
[all …]
Dglob.js.map1-scurry'\nimport { fileURLToPath } from 'url'\nimport { IgnoreLike } from './ignore.js'\nimport { …
/third_party/node/deps/npm/node_modules/glob/dist/mjs/
Dglob.d.ts4 import { FSOption, Path, PathScurry } from 'path-scurry';
5 import { IgnoreLike } from './ignore.js';
24 * Set to `true` to always receive absolute paths for
25 * matched files. Set to `false` to always return relative paths.
27 * When this option is not set, absolute paths are returned for patterns
28 * that are absolute, and otherwise paths are returned that are relative
59 * Without this option, returned relative paths are "bare", so instead of
77 * string or string[], or an object with `ignore` and `ignoreChildren`
81 * pattern or array of glob patterns to exclude from matches. To ignore all
83 * to the ignore pattern.
[all …]
Dwalker.js2 * Single-use utility classes to provide functionality to the {@link Glob}
8 import { Ignore } from './ignore.js';
10 const makeIgnore = (ignore, opts) => typeof ignore === 'string' argument
11 ? new Ignore([ignore], opts)
12 : Array.isArray(ignore)
13 ? new Ignore(ignore, opts)
14 : ignore;
26 #ignore; field in GlobUtil
35 if (opts.ignore) {
36 this.#ignore = makeIgnore(opts.ignore, opts);
[all …]
Dglob.js.map1-scurry'\nimport { fileURLToPath } from 'url'\nimport { IgnoreLike } from './ignore.js'\nimport { …
/third_party/python/Lib/test/
Dtest_embed.py100 print(f"--- {cmd} failed ---")
103 print(f"------")
115 # --- Pass 1 ---
121 # --- Pass 2 ---
124 interp_pat = (r"^interp (\d+) <(0x[\dA-F]+)>, "
125 r"thread state <(0x[\dA-F]+)>: "
132 if line == "--- Pass {} ---".format(numloops):
204 lines = [f"--- Pass {i} ---" for i in range(1, INIT_LOOPS+1)]
210 env = dict(os.environ, PYTHONIOENCODING="utf-8:surrogateescape")
216 expected_stream_encoding = "utf-8"
[all …]
Dtest_venv.py4 Copyright (C) 2011-2012 Vinay Sajip.
62 self.exe = os.path.split(executable)[-1]
82 def get_text_file_contents(self, *args, encoding='utf-8'):
167 '-m',
170 '--upgrade',
189 cmd = [envpy, '-c', None]
204 ('Lib', 'site-packages'),
212 ('lib', 'python%d.%d' % sys.version_info[:2], 'site-packages'),
215 def create_contents(self, paths, filename): argument
220 for subdirs in paths:
[all …]
/third_party/cef/cmake/
Dcef_variables.cmake.in2 # reserved. Use of this source code is governed by a BSD-style license that
81 # Platform-specific compiler/linker flags.
84-fno-strict-aliasing # Avoid assumptions regarding non-aliasing of objects of different…
85 -fPIC # Generate position-independent code for shared libraries
86-fstack-protector # Protect some vulnerable functions from stack-smashing (security …
87 -funwind-tables # Support stack unwinding for backtrace()
88-fvisibility=hidden # Give hidden visibility to declarations that are not explicitly m…
89--param=ssp-buffer-size=4 # Set the minimum buffer size protected by SSP (security feature, …
90-pipe # Use pipes rather than temporary files for communication between …
91 -pthread # Use the pthread library
[all …]
/third_party/pulseaudio/src/modules/alsa/mixer/paths/
Danalog-output.conf.common16 ; Common part of all paths
18 ; So here's generally how mixer paths are used by PA: PA goes through
23 ; required-absent= directives a path might not be accepted as valid
51 ; Only one path can be selected at a time. All paths that are valid
57 ; # See parse_type() in alsa-mixer.c for supported values.
59 ; description-key = ... # The path description is looked up from a table in path_v…
60 ; # src/modules/alsa/alsa-mixer.c. By default the path name …
65 ; # described in the "description-key" documentation above.
66 ; mute-during-activation = yes | no # If this path supports hardware mute, should the hw mute …
69 ; eld-device = ... # If this is an HDMI port, set to "auto" so that PulseAudi…
[all …]
/third_party/node/deps/zlib/google/
Dzip_writer.h2 // Use of this source code is governed by a BSD-style license that can be
60 // Should ignore missing files and directories?
78 // Adds the entries at |paths| to the ZIP file. These can be a mixed bag of
81 bool AddMixedEntries(Paths paths);
100 // Adds file entries. All the paths should be existing files.
101 bool AddFileEntries(Paths paths);
107 // Adds directory entries. All the paths should be existing directories. If
110 bool AddDirectoryEntries(Paths paths);
121 void Filter(std::vector<base::FilePath>* paths);
147 // Should ignore missing files and directories?
Dzip.h2 // Use of this source code is governed by a BSD-style license that can be
28 // Paths passed as span to avoid copying them.
29 using Paths = base::span<const base::FilePath>; variable
36 // All parameters paths are expected to be relative to the source directory.
46 // Opens files specified in |paths|.
48 virtual bool Open(Paths paths, std::vector<base::File>* files) = 0;
108 // The relative paths to the files and directories that should be included in
112 // These paths must be relative to |src_dir| and will be used as the file
116 // All the paths in |src_files| are included in the created ZIP file,
118 Paths src_files;
[all …]
/third_party/node/deps/v8/third_party/zlib/google/
Dzip_writer.h2 // Use of this source code is governed by a BSD-style license that can be
60 // Should ignore missing files and directories?
78 // Adds the entries at |paths| to the ZIP file. These can be a mixed bag of
81 bool AddMixedEntries(Paths paths);
100 // Adds file entries. All the paths should be existing files.
101 bool AddFileEntries(Paths paths);
107 // Adds directory entries. All the paths should be existing directories. If
110 bool AddDirectoryEntries(Paths paths);
121 void Filter(std::vector<base::FilePath>* paths);
147 // Should ignore missing files and directories?
Dzip.h2 // Use of this source code is governed by a BSD-style license that can be
28 // Paths passed as span to avoid copying them.
29 using Paths = base::span<const base::FilePath>; variable
36 // All parameters paths are expected to be relative to the source directory.
46 // Opens files specified in |paths|.
48 virtual bool Open(Paths paths, std::vector<base::File>* files) = 0;
108 // The relative paths to the files and directories that should be included in
112 // These paths must be relative to |src_dir| and will be used as the file
116 // All the paths in |src_files| are included in the created ZIP file,
118 Paths src_files;
[all …]
/third_party/python/Tools/scripts/
Dpysource.py9 - has_python_ext() checks whether a file name ends in '.py[w]'.
10 - look_like_python() checks whether the file is not binary and either has
12 - can_be_compiled() checks whether the file can be compiled by compile().
14 The file also must be of appropriate size - not bigger than a megabyte.
25 binary_re = re.compile(br'[\x00-\x08\x0E-\x1F\x7F]')
36 except OSError as err: # Permission denied - ignore the file
46 except IOError as err: # Access denied, or a special file - ignore it
91 def walk_python_files(paths, is_python=looks_like_python, exclude_dirs=None): argument
93 Recursively yield all Python source files below the given paths.
95 paths: a list of files and/or directories to be checked.
[all …]
/third_party/node/deps/npm/node_modules/glob/
DREADME.md9 ![a fun cartoon logo made of glob characters](https://github.com/isaacs/node-glob/raw/main/logo/glo…
19 **Note** the npm package name is _not_ `node-glob` that's a
37 const jsfiles = await glob('**/*.js', { ignore: 'node_modules/**' })
73 // check out http://npm.im/path-scurry for more info on their API
92 .sort((a, b) => a.mtimeMS - b.mtimeMS)
100 // you'll ignore all markdown files, and all folders named 'docs'
102 ignore: {
111 ignore: {
119 // find all files edited in the last hour, to do this, we ignore
126 ignore: {
[all …]
/third_party/skia/tools/
Dcheck-headers-self-sufficient5 # Use of this source code is governed by a BSD-style license that can be
16 self-sufficient and idempotent.
18 Otherwise, test all checked-in headers except for those in the ignore list.
21 ignore = re.compile('|'.join([ variable
65 # test header for self-sufficiency and idempotency.
68 cmd = ['c++', '--std=c++14', '-I.', '-o', '/dev/null', '-c', '-x', 'c++', '-']
106 paths = [os.path.relpath(os.path.abspath(arg), skia_dir) for arg in argv[1:]]
110 paths = [path for path in subprocess.check_output(['git', 'ls-files']).splitlines()
111 if path.endswith('.h') and not ignore.match(path)]
112 compile_headers(paths)
/third_party/jinja2/.github/workflows/
Dtests.yaml5 - main
6 - '*.x'
7 paths-ignore:
8 - 'docs/**'
9 - '*.md'
10 - '*.rst'
13 - main
14 - '*.x'
15 paths-ignore:
16 - 'docs/**'
[all …]
/third_party/skia/third_party/externals/spirv-cross/
Dtest_shaders.py3 # Copyright 2015-2021 Arm Limited
4 # SPDX-License-Identifier: Apache-2.0
10 # http://www.apache.org/licenses/LICENSE-2.0
34 class Paths(): class
53 m = re.search('([0-9]+) work registers', stats)
56 m = re.search('([0-9]+) uniform registers', stats)
59 m_list = re.findall('(-?[0-9]+)\s+(-?[0-9]+)\s+(-?[0-9]+)', stats)
72 return '--vertex'
74 return '--fragment'
76 return '--compute'
[all …]
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DFieldMaskUtil.java1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
69 // Ignore empty paths. in toString()
91 * Parses from a string to a FieldMask and validates all field paths.
101 * Constructs a FieldMask for a list of field paths in a certain type.
106 public static FieldMask fromStringList(Class<? extends Message> type, Iterable<String> paths) { in fromStringList() argument
107 return fromStringList(Internal.getDefaultInstance(type).getDescriptorForType(), paths); in fromStringList()
111 * Constructs a FieldMask for a list of field paths in a certain type.
115 public static FieldMask fromStringList(Descriptor descriptor, Iterable<String> paths) { in fromStringList() argument
116 return fromStringList(Optional.of(descriptor), paths); in fromStringList()
[all …]
/third_party/mesa3d/docs/relnotes/
D17.3.4.rst15 ----------------
19 2d3a4c3cbc995b3e192361dce710d8c749e046e7575aa1b7d8fc9e6b4df28f84 mesa-17.3.4.tar.gz
20 71f995e233bc5df1a0dd46c980d1720106e7f82f02d61c1ca50854b5e02590d0 mesa-17.3.4.tar.xz
23 ------------
28 ---------
30 - `Bug 90311 <https://bugs.freedesktop.org/show_bug.cgi?id=90311>`__ -
32 - `Bug 101442 <https://bugs.freedesktop.org/show_bug.cgi?id=101442>`__
33 - Piglit shaders@ssa@fs-if-def-else-break fails with sb but passes
35 - `Bug 102435 <https://bugs.freedesktop.org/show_bug.cgi?id=102435>`__
36 - [skl,kbl] [drm] GPU HANG: ecode 9:0:0x86df7cf9, in csgo_linux64
[all …]
/third_party/cJSON/.github/workflows/
DCI.yml6 paths-ignore:
7 - '**.md'
8 - 'LICENSE'
11 paths-ignore:
12 - '**.md'
13 - 'LICENSE'
17 runs-on: ubuntu-latest
20 fail-fast: false
23 - ENABLE_VALGRIND
24 - ENABLE_SANITIZERS
[all …]
/third_party/node/deps/npm/node_modules/tar/lib/
Dpath-reservations.js2 // reserve([list, of, paths], fn)
3 // When the fn is first in line for all its paths, it
6 // Used by async unpack to avoid clobbering paths in use,
10 const normalize = require('./normalize-unicode.js')
11 const stripSlashes = require('./strip-trailing-slashes.js')
23 // fn => {paths:[path,...], dirs:[path, ...]}
27 // '/a/b/c/d' -> ['/', '/a', '/a/b', '/a/b/c', '/a/b/c/d']
29 const dirs = path.split('/').slice(0, -1).reduce((set, path) => {
31 path = join(set[set.length - 1], path)
43 // fn => {paths, dirs}
[all …]

12345678910>>...36