taras
taras
Agree. Is there a way to apply color palette such as `Set2` to a single plot?
It appears that on EL9 It `exanic_netdev_siocdevprivate` is being called instead of `exanic_netdev_ioctl` for `SIOCGHWTSTAMP`, `SIOCSHWTSTAMP`, `EXAIOCGHWTSTAMP` which results in inability to set/get timestamps on file descriptors since doing so...
Yes, that would be ideal
I believe the right way to approach this is to make quantile result to be always `Double` type since hard to imagine a limited use case for quantiles being of...
I agree, seems that if BigDecimal support is needed it may require a special treatment but everything else should be covered by Double. Another option is to make quantiles always...
Here is my workaround at the moment that could be helpful: ``` import org.apache.commons.math3.stat.StatUtils fun DataColumn.quantile(quantile: Double): Double? { check(quantile >= 0.0 && quantile (values as Iterable).filterNotNull().toList().map { it.toDouble() }...
The fix looks good on RHEL 9.4 but no longer compiles on RHEL 9.3: ``` exasock-bonding-sysfs.c:143:22: error: initialization of ‘ssize_t (*)(struct class *, struct class_attribute *, char *)’ {aka ‘long...
@devcrocod Where can I find matrix power feature you referenced?
Thanks. Any plans to support power to float/double besides just int? What about in-place?