Skip to content

Commit

Permalink
fix url to https
Browse files Browse the repository at this point in the history
Signed-off-by: Kosuke Morimoto <[email protected]>
  • Loading branch information
kmrmt committed Jun 27, 2023
1 parent 3a866be commit 4edb355
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"login": "kpango",
"name": "Yusuke Kato",
"avatar_url": "https://avatars1.githubusercontent.com/u/9798091?v=4",
"profile": "http://kpango.com",
"profile": "https://kpango.com",
"contributions": [
"code",
"design",
Expand Down Expand Up @@ -111,7 +111,7 @@
"login": "thedrow",
"name": "Omer Katz",
"avatar_url": "https://avatars.githubusercontent.com/u/48936?v=4",
"profile": "http://omerkatz.com",
"profile": "https://omerkatz.com",
"contributions": [
"doc",
"tutorial"
Expand Down
2 changes: 1 addition & 1 deletion Makefile.d/bench.mk
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#
$(BENCH_DATASETS): $(BENCH_DATASET_MD5S) $(BENCH_DATASET_HDF5_DIR)
@$(call green, "downloading datasets for benchmark...")
curl -fsSL -o $@ http://ann-benchmarks.com/$(patsubst $(BENCH_DATASET_HDF5_DIR)/%.hdf5,%.hdf5,$@)
curl -fsSL -o $@ https://ann-benchmarks.com/$(patsubst $(BENCH_DATASET_HDF5_DIR)/%.hdf5,%.hdf5,$@)
(cd $(BENCH_DATASET_BASE_DIR); \
md5sum -c $(patsubst $(BENCH_DATASET_HDF5_DIR)/%.hdf5,$(BENCH_DATASET_MD5_DIR_NAME)/%.md5,$@) || \
(rm -f $(patsubst $(BENCH_DATASET_HDF5_DIR)/%.hdf5,$(BENCH_DATASET_HDF5_DIR_NAME)/%.hdf5,$@) && exit 1))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Vald is easy to use, feature-rich and highly customizable as you needed.

It uses the fastest ANN Algorithm [NGT](https://github.com/yahoojapan/NGT) to search neighbors.

(If you are interested in ANN benchmarks, please refer to [ann-benchmarks.com](http://ann-benchmarks.com/).)
(If you are interested in ANN benchmarks, please refer to [ann-benchmarks.com](https://ann-benchmarks.com/).)

For more information, please refer to [Official Web Site](https://vald.vdaas.org).

Expand Down
2 changes: 1 addition & 1 deletion charts/vald-helm-operator/values.schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "https://json-schema.org/draft-07/schema#",
"title": "Values",
"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/vald-agent-standalone-on-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ This chapter will use NGT for the core engine of Vald Agent.
```bash
# download Fashion-MNIST testing dataset
wget http://ann-benchmarks.com/fashion-mnist-784-euclidean.hdf5
wget https://ann-benchmarks.com/fashion-mnist-784-euclidean.hdf5
```
1. Running example
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/vald-agent-standalone-on-k8s.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ This chapter uses [NGT](https://github.com/yahoojapan/ngt) as Vald Agent to perf

```bash
# download Fashion-MNIST testing dataset
wget http://ann-benchmarks.com/fashion-mnist-784-euclidean.hdf5
wget https://ann-benchmarks.com/fashion-mnist-784-euclidean.hdf5
```

1. Run Example
Expand Down
2 changes: 1 addition & 1 deletion hack/helm/schema/gen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ func genNode(prefix []string, ls []*VSchema) (*Schema, error) {

func newRoot(schemas map[string]*Schema) *Root {
return &Root{
SchemaKeyword: "http://json-schema.org/draft-07/schema#",
SchemaKeyword: "https://json-schema.org/draft-07/schema#",
Title: "Values",
Schema: Schema{
Type: objectType,
Expand Down

0 comments on commit 4edb355

Please sign in to comment.