:"resume","pastedContents":{},"timestamp":1763838767782,"project":"/home/josie/development/josiedot","sessionId":"c4c9a37b-051a-4c85-8cc1-5eaa0a8bd551"} {"display":"I noticed we don't actually show annotations when retrieving logs. we should do that","pastedContents":{},"timestamp":1763839253175,"project":"/home/josie/development/josiedot","sessionId":"c4c9a37b-051a-4c85-8cc1-5eaa0a8bd551"} {"display":"resume","pastedContents":{},"timestamp":1763850414442,"project":"/home/josie/development/josiedot","sessionId":"c4c9a37b-051a-4c85-8cc1-5eaa0a8bd551"} {"display":"resume","pastedContents":{},"timestamp":1763850422298,"project":"/home/josie/development/josiedot","sessionId":"c4c9a37b-051a-4c85-8cc1-5eaa0a8bd551"} {"display":"retry","pastedContents":{},"timestamp":1763850693761,"project":"/home/josie/development/josiedot","sessionId":"c4c9a37b-051a-4c85-8cc1-5eaa0a8bd551"} {"display":"done","pastedContents":{},"timestamp":1763850816808,"project":"/home/josie/development/josiedot","sessionId":"c4c9a37b-051a-4c85-8cc1-5eaa0a8bd551"} {"display":"but what about ;annotate ,,,","pastedContents":{},"timestamp":1763852662291,"project":"/home/josie/development/josiedot","sessionId":"c4c9a37b-051a-4c85-8cc1-5eaa0a8bd551"} {"display":"resume","pastedContents":{},"timestamp":1763888737789,"project":"/home/josie/development/josiedot","sessionId":"c4c9a37b-051a-4c85-8cc1-5eaa0a8bd551"} {"display":"build a container image for this feature and deploy it to our test env to test","pastedContents":{},"timestamp":1763895184182,"project":"/home/josie/development/karpenter-ibm","sessionId":"8d69c43c-b284-4007-af29-1c84e287117f"} {"display":"I logged in","pastedContents":{},"timestamp":1763895274882,"project":"/home/josie/development/karpenter-ibm","sessionId":"8d69c43c-b284-4007-af29-1c84e287117f"} {"display":"ok can u do a lil test pls?","pastedContents":{},"timestamp":1763895700431,"project":"/home/josie/development/karpenter-ibm","sessionId":"8d69c43c-b284-4007-af29-1c84e287117f"} {"display":"what is the status of the tollgate plugin","pastedContents":{},"timestamp":1763895894527,"project":"/home/josie/development/container-mom","sessionId":"5db9433a-4a5b-465a-a454-d19b0af85b5c"} {"display":"can you do a code review for it","pastedContents":{},"timestamp":1763896065591,"project":"/home/josie/development/container-mom","sessionId":"5db9433a-4a5b-465a-a454-d19b0af85b5c"} {"display":"pls fix","pastedContents":{},"timestamp":1763896317763,"project":"/home/josie/development/container-mom","sessionId":"5db9433a-4a5b-465a-a454-d19b0af85b5c"} {"display":"circuit breaker opens when node provisioning failures happen. chekc the root cause and fix","pastedContents":{},"timestamp":1763896855191,"project":"/home/josie/development/karpenter-ibm","sessionId":"8d69c43c-b284-4007-af29-1c84e287117f"} {"display":"don't we validate resource groups before hitting the api? use ibm cli to check the correct rg","pastedContents":{},"timestamp":1763898773147,"project":"/home/josie/development/karpenter-ibm","sessionId":"8d69c43c-b284-4007-af29-1c84e287117f"} {"display":"$ibmcloud login -a https://cloud.ibm.com -u passcode -p ehtELfPb9l","pastedContents":{},"timestamp":1763898827159,"project":"/home/josie/development/karpenter-ibm","sessionId":"8d69c43c-b284-4007-af29-1c84e287117f"} {"display":"I logged in","pastedContents":{},"timestamp":1763898853354,"project":"/home/josie/development/karpenter-ibm","sessionId":"8d69c43c-b284-4007-af29-1c84e287117f"} {"display":"resume","pastedContents":{},"timestamp":1763899015987,"project":"/home/josie/development/karpenter-ibm","sessionId":"8d69c43c-b284-4007-af29-1c84e287117f"} {"display":"test","pastedContents":{},"timestamp":1763899025011,"project":"/home/josie/development/karpenter-ibm","sessionId":"8d69c43c-b284-4007-af29-1c84e287117f"} {"display":"/clear ","pastedContents":{},"timestamp":1763899034403,"project":"/home/josie/development/karpenter-ibm","sessionId":"626b543c-75e7-4219-a201-5c045be84ca1"} {"display":"/clear ","pastedContents":{},"timestamp":1763899034404,"project":"/home/josie/development/karpenter-ibm","sessionId"use strict"; // Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. // See LICENSE in the project root for license information. Object.defineProperty(exports, "__esModule", { value: true }); exports.StringBuilder = void 0; /** * This class allows a large text string to be constructed incrementally by appending small chunks. The final * string can be obtained by calling StringBuilder.toString(). * * @remarks * A naive approach might use the `+=` operator to append strings: This would have the downside of copying * the entire string each time a chunk is appended, resulting in `O(n^2)` bytes of memory being allocated * (and later freed by the garbage collector), and many of the allocations could be very large objects. * StringBuilder avoids this overhead by accumulating the chunks in an array, and efficiently joining them * when `getText()` is finally called. */ var StringBuilder = /** @class */ (function () { function StringBuilder() { this._chunks = []; } /** {@inheritdoc IStringBuilder.append} */ StringBuilder.prototype.append = function (text) { this._chunks.push(text); }; /** {@inheritdoc IStringBuilder.toString} */ StringBuilder.prototype.toString = function () { if (this._chunks.length === 0) { return ''; } if (this._chunks.length > 1) { var joined = this._chunks.join(''); this._chunks.length = 1; this._chunks[0] = joined; } return this._chunks[0]; }; return StringBuilder; }()); exports.StringBuilder = StringBuilder; //# sourceMappingURL=StringBuilder.js.map