/third_party/python/Doc/library/ |
D | copy.rst | 14 changing the other. This module provides generic shallow and deep copy 22 Return a shallow copy of *x*. 36 The difference between shallow and deep copying is only relevant for compound 39 * A *shallow copy* constructs a new compound object and then (to the extent 45 Two problems often exist with deep copy operations that don't exist with shallow 64 classes (shallow and deeply), by returning the original object unchanged; this 84 to implement the shallow copy operation; no additional arguments are passed.
|
D | filecmp.rst | 20 .. function:: cmp(f1, f2, shallow=True) 25 If *shallow* is true and the :func:`os.stat` signatures (file type, size, and 39 .. function:: cmpfiles(dir1, dir2, common, shallow=True) 51 The *shallow* parameter has the same meaning and default value as for 80 The :class:`dircmp` class compares files by doing *shallow* comparisons
|
/third_party/jsframework/runtime/main/reactivity/ |
D | watcher.js | 56 this.queued = this.shallow = false; 115 Watcher.prototype.update = function (shallow) { argument 131 ((isObject(value) || this.deep) && !this.shallow) 138 this.queued = this.shallow = false;
|
/third_party/python/Lib/test/ |
D | test_filecmp.py | 33 self.assertTrue(filecmp.cmp(self.name, self.name, shallow=False), 37 self.assertTrue(filecmp.cmp(self.name, self.name_same, shallow=False), 47 first_compare = filecmp.cmp(self.name, self.name_same, shallow=False) 48 second_compare = filecmp.cmp(self.name, self.name_diff, shallow=False) 98 shallow=False) == 102 shallow=False),
|
/third_party/node/deps/npm/tap-snapshots/test/lib/utils/ |
D | explain-dep.js.test.cjs | 30 exports[`test/lib/utils/explain-dep.js TAP basic bundled > explain nocolor shallow 1`] = ` 56 exports[`test/lib/utils/explain-dep.js TAP basic deepDev > explain nocolor shallow 1`] = ` 80 exports[`test/lib/utils/explain-dep.js TAP basic extraneous > explain nocolor shallow 1`] = ` 121 exports[`test/lib/utils/explain-dep.js TAP basic manyDeps > explain nocolor shallow 1`] = ` 143 exports[`test/lib/utils/explain-dep.js TAP basic optional > explain nocolor shallow 1`] = ` 165 exports[`test/lib/utils/explain-dep.js TAP basic overridden > explain nocolor shallow 1`] = ` 187 exports[`test/lib/utils/explain-dep.js TAP basic peer > explain nocolor shallow 1`] = ` 209 exports[`test/lib/utils/explain-dep.js TAP basic prodDep > explain nocolor shallow 1`] = ` 233 exports[`test/lib/utils/explain-dep.js TAP basic workspaces > explain nocolor shallow 1`] = `
|
/third_party/curl/tests/ |
D | runner.pm | 63 $shallow 122 our $shallow; 433 if($shallow && ($shallow < $count)) { 434 my $discard = scalar(@ttests) - $shallow; 435 my $percent = sprintf("%.2f%%", $shallow * 100 / scalar(@ttests)); 436 logmsg " $count functions found, but only fail $shallow ($percent)\n";
|
/third_party/python/Lib/ |
D | filecmp.py | 30 def cmp(f1, f2, shallow=True): argument 57 if shallow and s1 == s2: 258 def cmpfiles(a, b, common, shallow=True): argument 275 res[_cmp(ax, bx, shallow)].append(x)
|
/third_party/vulkan-loader/scripts/ |
D | generate_source.py | 90 shallow=False): 106 not filecmp.cmp(temp_filename, repo_filename, shallow=False):
|
/third_party/node/deps/npm/node_modules/@npmcli/git/lib/ |
D | clone.js | 89 const shallow = maybeShallow(repo, opts) constant 92 .concat(shallow ? ['--depth=1'] : [])
|
/third_party/ffmpeg/tests/ref/fate/ |
D | sub-lrc-remux | 12 [00:57.38]So I wait for this shallow itch to pass 25 [02:07.94]So I wait for this shallow itch to pass
|
/third_party/node/deps/npm/docs/content/commands/ |
D | npm-find-dupes.md | 23 * Type: "hoisted", "nested", "shallow", or "linked" 28 place, no hoisting. shallow (formerly --global-style) only install direct 53 `--install-strategy=shallow` 56 on deeper dependencies. Sets `--install-strategy=shallow`.
|
D | npm-install-ci-test.md | 24 * Type: "hoisted", "nested", "shallow", or "linked" 29 place, no hoisting. shallow (formerly --global-style) only install direct 54 `--install-strategy=shallow` 57 on deeper dependencies. Sets `--install-strategy=shallow`.
|
D | npm-ci.md | 78 * Type: "hoisted", "nested", "shallow", or "linked" 83 place, no hoisting. shallow (formerly --global-style) only install direct 108 `--install-strategy=shallow` 111 on deeper dependencies. Sets `--install-strategy=shallow`.
|
D | npm-dedupe.md | 83 * Type: "hoisted", "nested", "shallow", or "linked" 88 place, no hoisting. shallow (formerly --global-style) only install direct 113 `--install-strategy=shallow` 116 on deeper dependencies. Sets `--install-strategy=shallow`.
|
D | npm-install-test.md | 65 * Type: "hoisted", "nested", "shallow", or "linked" 70 place, no hoisting. shallow (formerly --global-style) only install direct 95 `--install-strategy=shallow` 98 on deeper dependencies. Sets `--install-strategy=shallow`.
|
D | npm-update.md | 192 * Type: "hoisted", "nested", "shallow", or "linked" 197 place, no hoisting. shallow (formerly --global-style) only install direct 222 `--install-strategy=shallow` 225 on deeper dependencies. Sets `--install-strategy=shallow`.
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | cord_rep_btree.cc | 366 bool CordRepBtree::IsValid(const CordRepBtree* tree, bool shallow) { in IsValid() argument 398 if ((!shallow || exhaustive_validation()) && tree->height() > 0) { in IsValid() 400 if (!IsValid(edge->btree(), shallow)) return false; in IsValid() 411 CordRepBtree* CordRepBtree::AssertValid(CordRepBtree* tree, bool shallow) { in AssertValid() argument 412 if (!IsValid(tree, shallow)) { in AssertValid() 420 bool shallow) { in AssertValid() argument 421 if (!IsValid(tree, shallow)) { in AssertValid()
|
D | cord_rep_btree.h | 277 static bool IsValid(const CordRepBtree* tree, bool shallow = false); 285 static CordRepBtree* AssertValid(CordRepBtree* tree, bool shallow = true); 287 bool shallow = true);
|
/third_party/rust/crates/minimal-lexical/ |
D | .gitmodules | 4 shallow = true
|
/third_party/python/Tools/freeze/ |
D | bkfile.py | 21 if filecmp.cmp(backup, file, shallow=False):
|
/third_party/python/Doc/c-api/ |
D | contextvars.rst | 85 Create a shallow copy of the passed *ctx* context object. 90 Create a shallow copy of the current thread context.
|
/third_party/skia/docker/skia-build-tools/ |
D | Dockerfile | 14 # TODO(kjlubick): Try a shallow clone of depot_tools
|
/third_party/node/deps/v8/tools/ |
D | compare_torque_output.py | 43 dcmp.common_files, shallow=False)
|
/third_party/node/tools/dep_updaters/ |
D | update-eslint.sh | 37 --install-strategy=shallow \
|
/third_party/skia/infra/bots/ |
D | test_utils.py | 59 test.assertTrue(filecmp.cmp(pathA, pathB, shallow=False))
|