Shawn Zhong

Results 11 comments of Shawn Zhong

I hope I would see this issue earlier. I made my own port here: https://github.com/ShawnZhong/linux-nova-splitfs based on `relink_v4.13.patch`

Here is our notebook output: https://databricks-prod-cloudfront.cloud.databricks.com/public/4027ec902e239c93eaaa8714f173bcfc/4163162249612196/2604893395725178/3422768859710542/latest.html

I figured out that the URLs for Kafka and Flink are no longer available. http://mirrors.advancedhosters.com/apache/kafka/0.10.2.1/kafka_2.11-0.10.2.1.tgz http://mirrors.advancedhosters.com/apache/flink/flink-1.2.1/flink-1.2.1-bin-hadoop27-scala_2.11.tgz We could change them to apache archive: https://archive.apache.org/dist/kafka/0.10.2.1/kafka_2.11-0.10.2.1.tgz https://archive.apache.org/dist/flink/flink-1.2.1/flink-1.2.1-bin-hadoop27-scala_2.11.tgz

Here is the reference in the code ```scala /** Script that can be run on executors to install Kafka. */ private def getInstallKafkaScript(dbfsDir: String, kafkaVersion: String) = { s"""#!/bin/bash |set...

The corresponding dbc file is updated as well.

Adding `alpha=1` to `bar()` seems to solve this problem. ```python import matplotlib.pyplot as plt fig = plt.figure() ax2 = fig.add_subplot(132) bars = ax2.bar(range(1, 5), range(1, 5), color='yellow', ecolor='black', alpha=1) +...

Here is what I see when I open the following files in Chrome (105.0.5195.125 on arm64 macOS): | [tests/baseline_images/test_legend/hatching.pdf](https://github.com/matplotlib/matplotlib/raw/main/lib/matplotlib/tests/baseline_images/test_legend/hatching.pdf) | [tests/baseline_images/test_legend/hatching.png](https://github.com/matplotlib/matplotlib/raw/main/lib/matplotlib/tests/baseline_images/test_legend/hatching.png) | | --- | --- | | | |...

I dig into this a bit more and found that the alpha value is indeed the problem. The following code snippet generates two images `default.pdf` and `alpha1.0.pdf`. Only the latter...

For `mold -run` intercepting `exec` on `ld`, `ld.gold` and `ld.lld`, macOS does not support `LD_PRELOAD` and the alternative `DYLD_INSERT_LIBRARIES` does not work with System Integrity Protection enabled: ``` > DYLD_INSERT_LIBRARIES=./mold-wrapper.so...

It's not hard to write your own `zero_alocator`. For example, ```cpp template class zero_allocator : public tbb::cache_aligned_allocator { public: using value_type = T; using propagate_on_container_move_assignment = std::true_type; using is_always_equal =...