Samuel
Samuel
One for the future perhaps, but something that came in really handy on uTorrent was the schedule feature. You had a basic week view, separated into hourly blocks. Each hour...
As a starting point to implementing RunAs functionality, we'll need to be able to create tokens with ZwCreateToken This is an apparently undocumented API that allows you to execute as...
At the moment, our app using this library runs as a system service. As such, any processes started end up running in the services virtual desktop, so aren't visible to...
Hello, I seem to be having an issue with the NodeController when setting up a node to accept a range of input lengths, for e.g. using: ``` php ->expectAtleast(2) ->expectAtMost(3)...
## Feature request It might be helpful for others to suggest that people enable the JIT when using this project with PHP 8+ We had a legacy project that was...
Hello @notti Just finishing up my documentation and I noticed in yours it says: > WARNING nocgo supports both cgo and missing cgo as environment. So if you want to...
Hello, During some testing, I noticed we got a segfault with a callback that returns an empty array. ```php opencensus_trace_method($name, 'handle', function() { return []; }); ``` `WARNING: [pool app]...
I'm trying to load a tracer class, but loading any more than one method trace at a time results in a segfault. My class, which results in the segfault: ```php
Is it possible to expose the `rootSpan->spanId()` from `OpenCensus\Trace\RequestHandler`? Currently it is private `private $rootSpan;` and I can't see any methods that expose it. I'm adding tracing for Laravel to...
Hello, It seems that currently with `opencensus_trace_method` as part of the PECL extension, if the method is inherited from a parent class, the trace won't fire. For e.g. we wanted...