Mike Goatly

Results 27 comments of Mike Goatly

I just mocked the auto resizer out in my test setup, passing in arbitrary non-zero dimensions: ``` js jest.mock("react-virtualized-auto-sizer", () => (props) => { return {props.children(1000, 1000)} }) ``` This...

@mattleibow sorry to @ you directly, but it looks like you've been working on this - I'm not sure where the best place is for feedback. Will we be able...

@swharden Interesting - I think your sample highlights two different things: * The bounding box bottom is at the baseline of the text, not the bottom - you see the...

@balag0 The app was running - the error only happens when I use a service principal; when I use my own AD account the command works fine.

Thanks @balag0, yes, the service principal has contributor access at the resource group level. The function app is func-lake-5f5c-uat, some failure instances on 20 Nov 2020 were at 09:44, 15:00...

Hi @balag0 - troubleshooting a bit further, if I give the service principal contributor access to the subscription, then the deployment works.

This would allow for queries to be built up dynamically in a reasonably easy way, without having to resort to the raw IQueryPart implementations.

@Jacknq There's nothing built into the index implicitly and no current plans - it's not something I'd considered to be honest. Off the top of my head, the most pragmatic...

Something like this (completely untested!) ``` csharp using Lifti; using Lifti.Serialization.Binary; using System; using System.Collections.Generic; using System.IO; using System.Threading; using System.Threading.Tasks; public class ShardedIndex { private static readonly BinarySerializer serializer...

This should be a separate nuget package Lifti.Extensions.Microsoft.DependencyInjection?