Siyao (Jane) He

Results 16 issues of Siyao (Jane) He

In this code snippet: ```javascript let OutputDir = getRunnerInput('output_dir', 'built', getRunnerPath); let OutputDirIsDir = false try { OutputDirIsDir = fs.lstatSync(OutputDir).isDirectory(); } catch { } if (!OutputDirIsDir) { OutputDir += OutputDir.endsWith("/")...

Regarding this issue #402 First, the `json.gz` file you give me will fail the `make build` process because some records do not have the property `versions` or `family`. Therefore, I...

It seems like the documentation may be out dated, as there is no rule for `fetch` in `Makefile` now. I believe you mean `preprocess`.

Currently, the `SchemaBuilder` works with vector like this: ```java assertThat( createTable("foo") .withPartitionKey("k", DataTypes.INT) .withColumn("v", new DefaultVectorType(DataTypes.FLOAT, 3))) .hasCql("CREATE TABLE foo (k int PRIMARY KEY,v VECTOR)"); ``` Or ```java assertThat(createTable("foo") .withPartitionKey("k",...

…need the endpoint to be proactively resolved Refactor existing usages of EndPoint#resolve to use retrieve when resolved ip addresses are not needed. Taken over from https://github.com/apache/cassandra-java-driver/pull/1735.

I implemented the retry mechanism in two ways. Apart from the current one, the following also works: ```java @NonNull protected BufferedReader fetchProxyMetadata( @NonNull URL metadataServiceUrl, @NonNull SSLContext sslContext) throws IOException...