This is an automated email from the ASF dual-hosted git repository. zhaocong pushed a commit to branch Skittles258/master in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-computer.git
commit a7b1778adf76c957ae60d1be5d763a8a71482338 Author: Skittles258 <[email protected]> AuthorDate: Tue Aug 27 01:13:01 2024 +0800 add file license header --- vermeer/.dockerignore | 16 ++++++++++++++++ vermeer/Dockerfile | 16 ++++++++++++++++ vermeer/build.sh | 16 ++++++++++++++++ vermeer/build_docker.sh | 16 ++++++++++++++++ vermeer/gitattributes | 16 ++++++++++++++++ vermeer/mem_supervisor.sh | 16 ++++++++++++++++ vermeer/vermeer.sh | 16 ++++++++++++++++ vermeer/vermeer_test.sh | 17 ++++++++++++++++- 8 files changed, 128 insertions(+), 1 deletion(-) diff --git a/vermeer/.dockerignore b/vermeer/.dockerignore index ba50db2e..6e8f887b 100644 --- a/vermeer/.dockerignore +++ b/vermeer/.dockerignore @@ -1,3 +1,19 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# *data* *test* *.git* \ No newline at end of file diff --git a/vermeer/Dockerfile b/vermeer/Dockerfile index 29cb30ae..efe365bc 100644 --- a/vermeer/Dockerfile +++ b/vermeer/Dockerfile @@ -1,3 +1,19 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# FROM golang:1.18-alpine AS builder COPY ./ /src/ WORKDIR /src/ diff --git a/vermeer/build.sh b/vermeer/build.sh index 1f555cf9..c2f48070 100644 --- a/vermeer/build.sh +++ b/vermeer/build.sh @@ -1,3 +1,19 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# #! /bin/bash export BUILD_REPO_WS=$PWD diff --git a/vermeer/build_docker.sh b/vermeer/build_docker.sh index 39d62dcd..880664d3 100644 --- a/vermeer/build_docker.sh +++ b/vermeer/build_docker.sh @@ -1,3 +1,19 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# #!/usr/bin/env bash VERSION=$(cat ./apps/version/version.go | grep 'Version' | awk -F '"' '{print $2}') diff --git a/vermeer/gitattributes b/vermeer/gitattributes index 5d3f7055..8f7e81a6 100644 --- a/vermeer/gitattributes +++ b/vermeer/gitattributes @@ -1,3 +1,19 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# lib/libafsapi.so filter=lfs diff=lfs merge=lfs -text test/case/expect_kcore filter=lfs diff=lfs merge=lfs -text test/case/expect_lpa filter=lfs diff=lfs merge=lfs -text diff --git a/vermeer/mem_supervisor.sh b/vermeer/mem_supervisor.sh index 14d88ed7..e691df15 100644 --- a/vermeer/mem_supervisor.sh +++ b/vermeer/mem_supervisor.sh @@ -1,3 +1,19 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# #! /bin/bash while true; do diff --git a/vermeer/vermeer.sh b/vermeer/vermeer.sh index 0430121c..4eccbf44 100644 --- a/vermeer/vermeer.sh +++ b/vermeer/vermeer.sh @@ -1,3 +1,19 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# #!/bin/bash #readonly CUR_SHELL=$(realpath $0) #readonly CUR_SHELL_DIR=$(dirname $CUR_SHELL) diff --git a/vermeer/vermeer_test.sh b/vermeer/vermeer_test.sh index 027c3f50..fcd31a47 100644 --- a/vermeer/vermeer_test.sh +++ b/vermeer/vermeer_test.sh @@ -1,4 +1,19 @@ - +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# #!/bin/bash go test -c vermeer_test.go -tags vermeer_test ./main.test -mode=function \ No newline at end of file
