Mark Kittisopikul

Results 175 issues of Mark Kittisopikul

I previously proposed `DatasetView` and `AttributeView` in #937. I removed it in https://github.com/JuliaIO/HDF5.jl/pull/937/commits/bc8fe33d14ceeab6c98b0d92b78552262daae018 . The design was as follows: ```julia struct DatasetView parent::Dataset indices end function Base.view(obj::Dataset, I...) return DatasetView(obj,...

dataset

I would like a way to set the default access property lists at the package level. Currently, when one needs a `DatasetAccessProperties`, it is constructed from scratch unless it is...

Since the HDF5 library uses `getenv` and Julia sets environmental variables via `SetEnvironmentVariableW` on Windows, changing `HDF5_PLUGIN_PATH` via `ENV` will not be seen by the HDF5 library. ```julia julia> using...

``` (jl_ek7nY5) pkg> st Status `C:\Users\kittisopikulm\AppData\Local\Temp\jl_ek7nY5\Project.toml` [40e3b903] Clang v0.15.7 julia> using Clang julia> using Clang.Generators julia> get_default_args() ERROR: AssertionError: failed to setup environment due to missing dirs, please file an...

@roflmaostc requested a mechanism to use IJulia with JavaCall.jl: https://github.com/JuliaInterop/JavaCall.jl/issues/145 1. For JavaCall to work without setting the environmental variable `JULIA_COPY_STACKS=1`, we need it to run on the initial Julia...

This pull request adds `DArray` documentation.

documentation
array interface

> Someone should do something like #4770 (for lack of better options at the moment) _Originally posted by @giordano in https://github.com/JuliaPackaging/Yggdrasil/issues/4969#issuecomment-1146836975_ I'm "someone". https://discourse.julialang.org/t/too-many-julia-versions/84538/15?u=mkitti 1. Do we need a version...

See: JuliaLang/julia#43520 ABI breakage: https://abi-laboratory.pro/index.php?view=timeline&l=libunwind Arch Linux patch to Julia: https://github.com/archlinux/svntogit-community/blob/4d9e973e1ed5753966229f40aea2dc7ac77bb889/trunk/julia-libunwind-1.6.patch

Prototype `@jcall` macro: ```julia julia> using JavaCall; JavaCall.init() julia> System = @jimport java.lang.System JavaObject{Symbol("java.lang.System")} julia> @jcall System.out.println("Hello from Java!!"::JString)::Nothing ┌ Info: args: │ func = :((:println, System.out)) │ rettype =...

I am interested in exploring how ArrayAllocators.jl may compose with MallocArray. Essentially, the main task of an `AbstractArrayAllocator` is to allocate memory safely and return a pointer via the method...

enhancement