development/archlinux/packaging/alpm.rs","sessionId":"6a0035a9-ed9f-4797-ba41-2cbaf498b070"} {"display":"what are the other possible upstream contributions?","pastedContents":{},"timestamp":1768894615627,"project":"/home/josie/development/archlinux/cockpit-pacman","sessionId":"eed13a7d-58bd-4c29-8cee-83361e3625e7"} {"display":"how do we generate the license headers in files?","pastedContents":{},"timestamp":1768897946544,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ba0bb47e-9c89-4eea-a611-4e33195431bc"} {"display":"we should edit the pre-commit hooks to also include ver0fy license","pastedContents":{},"timestamp":1768898373028,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ba0bb47e-9c89-4eea-a611-4e33195431bc"} {"display":"oh but then why is there diff after me running it?","pastedContents":{},"timestamp":1768898456901,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ba0bb47e-9c89-4eea-a611-4e33195431bc"} {"display":"/resume ","pastedContents":{},"timestamp":1768901814938,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ba0bb47e-9c89-4eea-a611-4e33195431bc"} {"display":"/clear ","pastedContents":{},"timestamp":1768901867185,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ba0bb47e-9c89-4eea-a611-4e33195431bc"} {"display":"do a full critical pr review for https://github.com/kubernetes-sigs/karpenter-provider-ibm-cloud/pull/491","pastedContents":{},"timestamp":1768901878536,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ff4f32f1-8b93-4b57-9b9a-f2e9396f33dc"} {"display":"write all this to a file","pastedContents":{},"timestamp":1768908682595,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ff4f32f1-8b93-4b57-9b9a-f2e9396f33dc"} {"display":"/resume ","pastedContents":{},"timestamp":1768908725067,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ff4f32f1-8b93-4b57-9b9a-f2e9396f33dc"} {"display":"this step [Pasted text #2 +48 lines] seems to conflict with the boilerplate addition. ie. it fails when boilerplate is added","pastedContents":{"1":{"id":1,"type":"text","contentHash":"cacbf391f96e4f5c"},"2":{"id":2,"type":"text","contentHash":"cacbf391f96e4f5c"}},"timestamp":1768908762817,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ba0bb47e-9c89-4eea-a611-4e33195431bc"} {"display":"[Pasted text #1 +99 lines]","pastedContents":{},"timestamp":1768908970533,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ba0bb47e-9c89-4eea-a611-4e33195431bc"} {"display":"[Pasted text #2 +99 lines]","pastedContents":{"1":{"id":1,"type":"text","contentHash":"a2232a8fc63864b2"},"2":{"id":2,"type":"text","contentHash":"a2232a8fc63864b2"}},"timestamp":1768908972779,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"ba0bb47e-9c89-4eea-a611-4e33195431bc"} {"display":"write promts to seperate files fir high value and open bug items. then after that look at https://wiki.archlinux.org/title/Alpm_based_tools and update our docs in obsidian/point out potential additions that wou;d be good to have in the wiki","pastedContents":{},"timestamp":1768910258599,"project":"/home/josie/development/archlinux/cockpit-pacman","sessionId":"eed13a7d-58bd-4c29-8cee-83361e3625e7"} {"display":"/resume ","pastedContents":{},"timestamp":1768927534141,"project":"/home/josie/development/kubernetes/karpenter-ibm","sessionId":"d64b3f58-587b-42e5-a800-faf130e7b173"} {"display":"can you edit @notes/wiki-page.txt with our changes","pastedContents":{},"timestamp":1768928842578,"project":"/home/josie/development/archlinux/cockpit-pacman","sessionId":"eed13a7d-58bd-4c29-8cee-83361e3625e7"} {"display":"the alpm.rs link is correct. would mentioning aur helpers here be appropriate?","pastedContents":{},"timestamp":1768928974403,"project":"/home/josie/development/archlinux/cockpit-pacman","sessionId":"eed13a7d-58bd-4c29-8cee-83361e3625e7"} {"display":"I'm not sure if those rust crates are even alpm based","pastedCont// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. // See LICENSE in the project root for license information. var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); import { DocNodeKind, DocNode } from './DocNode'; import { DocExcerpt, ExcerptKind } from './DocExcerpt'; /** * Represents a reference to an ECMAScript 6 symbol that is used * to identify a member declaration. * * @example * * In the declaration reference `{@link MyClass.([MySymbols.example]:instance)}`, * the member symbol `[MySymbols.example]` might be used to reference a property * of the class. */ var DocMemberSymbol = /** @class */ (function (_super) { __extends(DocMemberSymbol, _super); /** * Don't call this directly. Instead use {@link TSDocParser} * @internal */ function DocMemberSymbol(parameters) { var _this = _super.call(this, parameters) || this; if (DocNode.isParsedParameters(parameters)) { _this._leftBracketExcerpt = new DocExcerpt({ configuration: _this.configuration, excerptKind: ExcerptKind.DocMemberSymbol_LeftBracket, content: parameters.leftBracketExcerpt }); if (parameters.spacingAfterLeftBracketExcerpt) { _this._spacingAfterLeftBracketExcerpt = new DocExcerpt({ configuration: _this.configuration, excerptKind: ExcerptKind.Spacing, content: parameters.spacingAfterLeftBracketExcerpt }); } _this._rightBracketExcerpt = new DocExcerpt({ configuration: _this.configuration, excerptKind: ExcerptKind.DocMemberSymbol_RightBracket, content: parameters.rightBracketExcerpt }); } _this._symbolReference = parameters.symbolReference; return _this; } Object.defineProperty(DocMemberSymbol.prototype, "kind", { /** @override */ get: function () { return DocNodeKind.MemberSymbol; }, enumerable: false, configurable: true }); Object.defineProperty(DocMemberSymbol.prototype, "symbolReference", { /** * The declaration reference for the ECMAScript 6 symbol that will act as * the identifier for the member. */ get: function () { return this._symbolReference; }, enumerable: false, configurable: true }); /** @override */ DocMemberSymbol.prototype.onGetChildNodes = function () { return [ this._leftBracketExcerpt, this._spacingAfterLeftBracketExcerpt, this._symbolReference, this._rightBracketExcerpt ]; }; return DocMemberSymbol; }(DocNode)); export { DocMemberSymbol }; //# sourceMappingURL=DocMemberSymbol.js.map