venkr

Results 11 comments of venkr

For reference, the source code of the test model: ``` from cog import BasePredictor, Input, Path from typing import List, Union class Predictor(BasePredictor): def setup(self): pass def predict( self, string_union:...

Looks like #1214 is a better reference for this PR (than 1401). Another note: is it possible to declare `use-cuda-base-image` in cog.yaml instead of in the `cog push` command?

Hello! I'd be interested in working on this ticket.

I've also just run into the same issue - it looks like running `tauri build` locally works perfectly (ie: respects `DmgConfig`) but the `tauri-action` doesn't do that and seems to...

Some more investigation, this seems to be a well documented issue w/ people noticing it from 2018 through 2023 (https://github.com/create-dmg/create-dmg/issues/72) - where since you can't give `create-dmg` access to control...

Turns out this is expected behavior, a skip-jenkins flag is passed to the dmg script in CI ``` if let Some(value) = env::var_os("CI") { if value == "true" { bundle_dmg_cmd.arg("--skip-jenkins");...

It looks like macOS recently added support for picking between {throttle, suspend, none}: https://developer.apple.com/documentation/webkit/wkpreferences/4173317-inactiveschedulingpolicy I'm not sure if this actually works, or is the thing we're looking for, but in...

It looks doable: - text chunks can have a decoration "m", with a discussion-id. [It's currently ignored](https://github.com/NotionX/react-notion-x/blob/e1f03de6100f2cd33c146eb1c5e67ec4d4afe522/packages/react-notion-x/src/components/text.tsx#L145). - The top-level `recordMap`, contains `discussion` and `comment`. The comments have the discussion...

Looks like this might ultimately be at the underlying WebView implementation level and not something fixable in Tauri. Looking through WKWebView docs, it seems like you can enable "Find in...

Looks like I'm running into this issue too, here's my experience with it: https://github.com/tauri-apps/tauri/issues/9292#issuecomment-2052412147 I've tried one fix that seems related (#272) but it hasn't seemed to change it for...