Questions tagged [http-archive]

6 questions
6
votes
1 answer

How can I delete cached downloaded objects (e.g. from http_archive) in Bazel?

The CI build for my Bazel C++ project recently broke. The error indicates that the HTTPS download for a http_repository failed: INFO: Repository eigen instantiated at: no stack (--record_rule_instantiation_callstack not enabled) Repository rule…
Kerrick Staley
  • 1,583
  • 2
  • 20
  • 28
3
votes
1 answer

Error: "http_archive" is not defined when starting the local Bazel server in the TensorFlow Installation

I am installing Tensorflow. I encountered the following problem: I was installing Tensorflow from Source and I am following the Tensorflow website (https://www.tensorflow.org/install/source) I had earlier installed Bazel 3.0.0 (the latest version)…
AviRaj
  • 31
  • 1
  • 4
1
vote
1 answer

"Access Denied: Table X: Permission bigquery.tables.updateData denied on table X (or it may not exist)."

I am using this Bigquery code below: MERGE `httparchive.sample_data_2020.response_bodies_desktop_10k` target USING `webhistory.domlist.domains` source ON target.NET.reg_domain(page) = source.host WHEN NOT MATCHED THEN DELETE I get the following…
user1774127
1
vote
2 answers

How to fetch external dependencies in bazel

I want bazel to fetch an external dependency from a URL. The file is an rpm file. I added this in the WORKSPACE file in root dir: http_archive( name = "mylib", url = "someURL/somefile.rpm", build_file = "example.BUILD" ) When I…
Shayan Anwar
  • 149
  • 2
  • 10
0
votes
0 answers

Generate HAR (HTTP Archive) file from chrome browser

I'm new to selenium, I want to generate HAR (HTTP Archive) file from chrome browser, Please help me to figure out how can I achieve this using c#. Thanks in advance. public void StartBrowserMobProxy() { // batch file path…
0
votes
4 answers

HTTP Archive Specification

I want to know webpage performance of given URL, Specifically time difference (between request and response) of each resource used in given webpage (URL). Google Page Speed API does the same, but it requires *.HAR file as input, I don’t know how…
user196545
  • 11
  • 2