Julius Liu

Results 19 comments of Julius Liu

EDIT: Appears this fix isn't working for people, leaving for posterity ~~Under ./helm/values.yaml, replace the settings for build_index and origin with this:~~ ``` build_index: config: /etc/config/build-index.yaml replicas: 3 annotations: extraVolumes:...

@nitinpatil1992 To summarize, my fix is to include a public registry in the backend config. The existing demo backend config doesn't have any public registries, so image lookup will always...

I have the exact same problem as @viktorlarsson , and I have to edit the source file in the same way. (PR #2 ) It might not be a good...

On line 55 in the example, try changing the compare function from Greater to LessEqual, ``` let mut glyph_brush = GlyphBrushBuilder::using_font(inconsolata) .depth_stencil_state(wgpu::DepthStencilState { format: wgpu::TextureFormat::Depth32Float, depth_write_enabled: true, depth_compare: wgpu::CompareFunction::LessEqual,

@beef9999 Thanks for the quick response, I tried the latest and there still seems to be an issue: ``` 15%] Building CXX object _deps/photon-build/CMakeFiles/photon_obj.dir/common/uuid4.cpp.o /home/juliusl/overlaybd/build/_deps/photon-src/common/checksum/crc32c.cpp: In function ‘uint32_t crc32c_hw(const uint8_t*,...

I think it's the -march=native flag, ``` 1 ❯ g++ -dM -E - -march=native main ! $ #define __ARM_SIZEOF_WCHAR_T 4 #define __ARM_FEATURE_IDIV 1 #define __ARM_FP 14 #define __ARM_SIZEOF_MINIMAL_ENUM 4 #define...

I managed to get this building, but I needed to change this line, https://github.com/alibaba/PhotonLibOS/blob/c7c71b75293b500932e0900013e37d4fad5919a5/CMakeLists.txt#L26 here is the patch ``` diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d8e5cd..8a5faab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt...

Hey there, so I took a look into this. Not generating the token is by design, and the ARM template will only delete it if you try to redeploy, without...

We've investigated this issue and we're working on a fix.

So `_repositories_pull` scope_map is locked down to `content/read` because if a token with that permission leaked then the advisory wouldn't be able to enumerate the registry. In most cases container...