Jason Cwik

Results 13 comments of Jason Cwik

@nturinski the issue is with the built-in explorer UI -- it won't let you create a container without specifying the partition key. For all others, the workaround is to use...

FYI, for those of you using DellEMC ECS, be sure to set the bucket lifecycle policy to abort incomplete uploads. This is supported and will ensure that abandoned uploads don't...

Tested and confirmed fix: ``` $ docker run -it --rm --net=host nvcr.io/nvidia/tritonserver:24.01-py3-sdk \ /workspace/install/bin/image_client -m densenet_onnx -c 3 -s INCEPTION /workspace/images/mug.jpg ================================= == Triton Inference Server SDK == ================================= NVIDIA...

Got it. I guess it wasn't immediately clear to me that you wanted to launch the container and then paste the command inside the container. I had copied and pasted...

Not directly. However, you could write your own readfunc_file and insert it here: https://github.com/emcvipr/rest-client-c/blob/master/lib/rest_client.c#L527 Maybe check and see if the request mime type starts with multipart/form-data and then use the...

Looks like the curl handle might not be getting freed. Can you write a small program you can share that reproduces the issue? Sent from my iPhone > On Aug...

I think I know what the issue is... Before using this library, your application needs to call: ``` curl_global_init(CURL_GLOBAL_DEFAULT); ``` If you don't, global_init() will get called for every request...

curl_global_cleanup should be done once at the end of your program.

Hmm... you're right! We should probably just remove it.