/third_party/curl/lib/ |
D | headers.c | 74 struct Curl_header_store *pick = NULL; in curl_easy_header() local 93 pick = hs; in curl_easy_header() 104 hs = pick; in curl_easy_header() 133 struct Curl_llist_element *pick; in curl_easy_nextheader() local 145 pick = prev->anchor; in curl_easy_nextheader() 146 if(!pick) in curl_easy_nextheader() 149 pick = pick->next; in curl_easy_nextheader() 152 pick = data->state.httphdrs.head; in curl_easy_nextheader() 154 if(pick) { in curl_easy_nextheader() 157 hs = pick->ptr; in curl_easy_nextheader() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | bindingPatternContextualTypeDoesNotCauseWidening.symbols | 2 declare function pick<O, T extends keyof O>(keys: T[], obj?: O): Pick<O, T>; 3 >pick : Symbol(pick, Decl(bindingPatternContextualTypeDoesNotCauseWidening.ts, 0, 0)) 15 const _ = pick(['b'], { a: 'a', b: 'b' }); // T: "b" 17 >pick : Symbol(pick, Decl(bindingPatternContextualTypeDoesNotCauseWidening.ts, 0, 0)) 21 const { } = pick(['b'], { a: 'a', b: 'b' }); // T: "b" | "a" ??? (before fix) 22 >pick : Symbol(pick, Decl(bindingPatternContextualTypeDoesNotCauseWidening.ts, 0, 0))
|
D | bindingPatternContextualTypeDoesNotCauseWidening.types | 2 declare function pick<O, T extends keyof O>(keys: T[], obj?: O): Pick<O, T>; 3 >pick : <O, T extends keyof O>(keys: T[], obj?: O) => Pick<O, T> 7 const _ = pick(['b'], { a: 'a', b: 'b' }); // T: "b" 9 >pick(['b'], { a: 'a', b: 'b' }) : Pick<{ a: string; b: string; }, "b"> 10 >pick : <O, T extends keyof O>(keys: T[], obj?: O) => Pick<O, T> 19 const { } = pick(['b'], { a: 'a', b: 'b' }); // T: "b" | "a" ??? (before fix) 20 >pick(['b'], { a: 'a', b: 'b' }) : Pick<{ a: string; b: string; }, "b"> 21 >pick : <O, T extends keyof O>(keys: T[], obj?: O) => Pick<O, T>
|
D | bindingPatternContextualTypeDoesNotCauseWidening.js | 2 declare function pick<O, T extends keyof O>(keys: T[], obj?: O): Pick<O, T>; 3 const _ = pick(['b'], { a: 'a', b: 'b' }); // T: "b" 4 const { } = pick(['b'], { a: 'a', b: 'b' }); // T: "b" | "a" ??? (before fix) 8 var _ = pick(['b'], { a: 'a', b: 'b' }); // T: "b" 9 var _a = pick(['b'], { a: 'a', b: 'b' }); // T: "b" | "a" ??? (before fix)
|
D | keyofIsLiteralContexualType.symbols | 21 declare function pick<T, K extends keyof T>(obj: T, propNames: K[]): Pick<T, K>; 22 >pick : Symbol(pick, Decl(keyofIsLiteralContexualType.ts, 5, 1)) 34 let x = pick({ a: 10, b: 20, c: 30 }, ["a", "c"]); 36 >pick : Symbol(pick, Decl(keyofIsLiteralContexualType.ts, 5, 1))
|
D | keyofIsLiteralContexualType.types | 25 declare function pick<T, K extends keyof T>(obj: T, propNames: K[]): Pick<T, K>; 26 >pick : <T, K extends keyof T>(obj: T, propNames: K[]) => Pick<T, K> 30 let x = pick({ a: 10, b: 20, c: 30 }, ["a", "c"]); 32 >pick({ a: 10, b: 20, c: 30 }, ["a", "c"]) : Pick<{ a: number; b: number; c: number; }, "a" | "c"> 33 >pick : <T, K extends keyof T>(obj: T, propNames: K[]) => Pick<T, K>
|
D | keyofIsLiteralContexualType.js | 11 declare function pick<T, K extends keyof T>(obj: T, propNames: K[]): Pick<T, K>; 13 let x = pick({ a: 10, b: 20, c: 30 }, ["a", "c"]); 22 var x = pick({ a: 10, b: 20, c: 30 }, ["a", "c"]);
|
D | mappedTypes2.js | 28 declare function pick<T, K extends keyof T>(obj: T, ...keys: K[]): Pick<T, K>; 76 const x = pick(shape, "name", "location"); // { name: string, location: Point } 122 var x = pick(shape, "name", "location"); // { name: string, location: Point } 154 declare function pick<T, K extends keyof T>(obj: T, ...keys: K[]): Pick<T, K>;
|
D | mappedTypes2.types | 62 declare function pick<T, K extends keyof T>(obj: T, ...keys: K[]): Pick<T, K>; 63 >pick : <T, K extends keyof T>(obj: T, ...keys: K[]) => Pick<T, K> 187 const x = pick(shape, "name", "location"); // { name: string, location: Point } 189 >pick(shape, "name", "location") : Pick<Shape, "name" | "location"> 190 >pick : <T, K extends keyof T>(obj: T, ...keys: K[]) => Pick<T, K>
|
D | keyofIsLiteralContexualType.errors.txt | 19 declare function pick<T, K extends keyof T>(obj: T, propNames: K[]): Pick<T, K>; 21 let x = pick({ a: 10, b: 20, c: 30 }, ["a", "c"]);
|
/third_party/mesa3d/docs/relnotes/ |
D | 18.2.6.rst | 71 - bin/get-pick-list.sh: simplify git oneline printing 72 - bin/get-pick-list.sh: prefix output with "[stable] " 73 - bin/get-pick-list.sh: handle "typod" usecase. 74 - bin/get-pick-list.sh: handle the fixes tag 75 - bin/get-pick-list.sh: tweak the commit sha matching pattern 76 - bin/get-pick-list.sh: flesh out is_sha_nomination 77 - bin/get-pick-list.sh: handle fixes tag with missing colon 78 - bin/get-pick-list.sh: handle unofficial "broken by" tag 79 - bin/get-pick-list.sh: use test instead of [ ] 80 - bin/get-pick-list.sh: handle reverts prior to the branchpoint
|
D | 22.0.1.rst | 77 - pick/ui: Fix mypy issue 78 - pick/core: drop the main_sha field 79 - pick/core: Add proper type annotation for update_commits callback 80 - pick/core: Add a method for updating commits 81 - pick/core: Add a MANUAL_RESOLUTION resolution 82 - pick/ui: correctly handle MANUAL_RESOLUTION
|
D | 9.1.6.rst | 85 - cherry-ignore: Drop 13 patches from the pick list 86 - get-pick-list.sh: Include commits mentionining "CC: mesa-stable..." 87 in pick list 88 - get-pick-list: Allow for non-whitespace between "CC:" and 90 - get-pick-list: Ignore commits which CC mesa-stable unless they say
|
D | 17.0.1.rst | 87 - bin/get-extra-pick-list: use git merge-base to get the branchpoint 88 - bin/get-extra-pick-list: rework to use already_picked list 89 - bin/get-typod-pick-list.sh: limit \`git grep ...' to only as needed 90 - bin/get-pick-list.sh: limit \`git grep ...' only as needed 91 - bin/get-pick-list.sh: remove ancient way of nominating patches 92 - bin/get-fixes-pick-list.sh: add new script
|
D | 13.0.5.rst | 95 - bin/get-extra-pick-list: use git merge-base to get the branchpoint 96 - bin/get-extra-pick-list: rework to use already_picked list 97 - bin/get-typod-pick-list.sh: limit \`git grep ...' to only as needed 98 - bin/get-pick-list.sh: limit \`git grep ...' only as needed 99 - bin/get-pick-list.sh: remove ancient way of nominating patches 100 - bin/get-fixes-pick-list.sh: add new script
|
D | 17.1.1.rst | 45 - bin/get-fixes-pick-list.sh: don't warn if more than one, go over them 46 - bin/get-fixes-pick-list.sh: bring back the warning 98 - bin/get-{extra,fixes}-pick-list.sh: add support for ignore list 99 - bin/get-{extra,fixes}-pick-list.sh: improve output
|
/third_party/typescript/tests/cases/compiler/ |
D | bindingPatternContextualTypeDoesNotCauseWidening.ts | 1 declare function pick<O, T extends keyof O>(keys: T[], obj?: O): Pick<O, T>; function 2 const _ = pick(['b'], { a: 'a', b: 'b' }); // T: "b" 3 const { } = pick(['b'], { a: 'a', b: 'b' }); // T: "b" | "a" ??? (before fix)
|
D | keyofIsLiteralContexualType.ts | 10 declare function pick<T, K extends keyof T>(obj: T, propNames: K[]): Pick<T, K>; function 12 let x = pick({ a: 10, b: 20, c: 30 }, ["a", "c"]);
|
/third_party/typescript/scripts/ |
D | open-cherry-pick-pr.mjs | 12 const branchName = `pick/${process.env.SOURCE_ISSUE}/${process.env.TARGET_BRANCH}`; 49 logText = `Cherry-pick PR #${process.env.SOURCE_ISSUE} into ${process.env.TARGET_BRANCH} 70 ["git", ["cherry-pick", squashSha.trim()]], 92 …`This cherry-pick was triggered by a request on https://github.com/Microsoft/TypeScript/pull/${pro… 94 You can view the cherry-pick log [here](https://typescript.visualstudio.com/TypeScript/_build/index… 120 …pick. ([You can check the log here](https://typescript.visualstudio.com/TypeScript/_build/index?bu…
|
/third_party/skia/third_party/externals/brotli/research/ |
D | durchschlag.cc | 108 MetaSlot& pick = slots[slice]; in buildCandidatesList() local 109 if (pick.mark == 0) { in buildCandidatesList() 110 score += pick.score; in buildCandidatesList() 112 pick.mark++; in buildCandidatesList() 130 MetaSlot& pick = slots[slice]; in buildCandidatesList() local 131 if (pick.mark == 0) { in buildCandidatesList() 132 score += pick.score; in buildCandidatesList() 134 pick.mark++; in buildCandidatesList() 197 MetaSlot& pick = slots[shortcut[i + span - 1]]; in rebuildCandidatesList() local 198 if (pick.mark == 0) { in rebuildCandidatesList() [all …]
|
/third_party/node/deps/npm/node_modules/nopt/ |
D | README.md | 32 , "pick" : Boolean 39 , "p" : ["--pick"] 60 { foo: "blerp", flag: true, pick: true } 63 { foo: "Mr. Foo", flag: true, pick: true } 69 { blatzk: true, flag: true, pick: true } 72 { blatzk: 1000, flag: true, pick: true } 75 { blatzk: false, flag: true, pick: true }
|
/third_party/skia/third_party/externals/angle2/doc/ |
D | ChoosingANGLEBranch.md | 56 entirely in the Gerrit UI. Click the "Cherry pick" button and enter 62 2. `git cherry-pick [commit_hash]` 66 Have the cherry-pick reviewed, and then land it. It's also OK to skip 70 There is one final step to pick up the ANGLE change into a Chromium Beta or
|
/third_party/typescript/tests/cases/conformance/types/mapped/ |
D | mappedTypes2.ts | 30 declare function pick<T, K extends keyof T>(obj: T, ...keys: K[]): Pick<T, K>; 78 const x = pick(shape, "name", "location"); // { name: string, location: Point }
|
/third_party/typescript/tests/cases/conformance/jsx/ |
D | tsxStatelessFunctionComponentOverload6.tsx | 53 const b4 = <MainButton {...obj1} />; // any; just pick the first overload 54 const b5 = <MainButton {...obj1} to="/to/somewhere" />; // should pick the second overload
|
/third_party/ltp/doc/ |
D | C-Test-Case-Tutorial.asciidoc | 294 mess that up then it may be possible to cherry pick 'dangling' commits out of 870 pick 5ca627b78 tutorial: Add a step-by-step C test tutorial 871 pick 5d93b84d8 Add statx and other syscall numbers 872 pick 6f8c16438 statx: stage 3 (Add statx01) 873 pick 98f5bc7ac statx: stage 4 874 pick 76e03d714 statx: stage 5a 875 pick bfeef7902 statx: stage 5b 876 pick 09dd2c829 statx: stage 6 877 pick 568a3f7be fixup! tutorial 878 pick 1e24a5fb5 fixup! tutorial [all …]
|