From 47fd5f4e9a17a4dfe9c11f65ee24737595ef0377 Mon Sep 17 00:00:00 2001 From: eliyahu77 Date: Tue, 23 Aug 2022 17:33:40 +0300 Subject: [PATCH 1/2] add copyright Signed-off-by: eliyahu77 --- .goreleaser.yml | 14 ++++++++++++++ Makefile | 14 ++++++++++++++ examples/cfg_generator.sh | 14 ++++++++++++++ httpblaster/csv_2_tsdb_test.go | 19 +++++++++++++++++++ httpblaster/data_generator/fakerGenerator.go | 19 +++++++++++++++++++ httpblaster/data_generator/memoryGenerator.go | 19 +++++++++++++++++++ httpblaster/histogram/latency_hist.go | 19 +++++++++++++++++++ httpblaster/histogram/latency_hist_test.go | 19 +++++++++++++++++++ httpblaster/http_blaster_test.go | 19 +++++++++++++++++++ httpblaster/igz_data/emd_schema_parser.go | 19 +++++++++++++++++++ httpblaster/igz_data/igz_emd_item.go | 19 +++++++++++++++++++ httpblaster/igz_data/igz_stream_records.go | 19 +++++++++++++++++++ httpblaster/igz_data/igz_tsdb_item.go | 19 +++++++++++++++++++ httpblaster/request_generators/common.go | 19 +++++++++++++++++++ httpblaster/request_generators/csv2kv.go | 19 +++++++++++++++++++ httpblaster/request_generators/csv2kv_perf.go | 19 +++++++++++++++++++ httpblaster/request_generators/csv2stream.go | 19 +++++++++++++++++++ httpblaster/request_generators/csv2tsdb.go | 19 +++++++++++++++++++ .../request_generators/csv_update_kv.go | 19 +++++++++++++++++++ httpblaster/request_generators/faker2kv.go | 19 +++++++++++++++++++ .../request_generators/generator_interface.go | 19 +++++++++++++++++++ httpblaster/request_generators/json2kv.go | 19 +++++++++++++++++++ httpblaster/request_generators/line2http.go | 19 +++++++++++++++++++ httpblaster/request_generators/line2kv.go | 19 +++++++++++++++++++ httpblaster/request_generators/line2stream.go | 19 +++++++++++++++++++ .../performance_generator.go | 19 +++++++++++++++++++ httpblaster/request_generators/replay.go | 19 +++++++++++++++++++ .../request_generators/request_dump.go | 19 +++++++++++++++++++ .../request_generators/requests_pool.go | 19 +++++++++++++++++++ httpblaster/request_generators/restore.go | 19 +++++++++++++++++++ httpblaster/request_generators/stats2tsdb.go | 19 +++++++++++++++++++ httpblaster/request_generators/stream_get.go | 19 +++++++++++++++++++ httpblaster/schema_parser_test.go | 19 +++++++++++++++++++ httpblaster/stream_record_test.go | 19 +++++++++++++++++++ httpblaster/tui/latency_collector.go | 19 +++++++++++++++++++ httpblaster/tui/statuses_collector.go | 19 +++++++++++++++++++ httpblaster/tui/term_ui.go | 19 +++++++++++++++++++ httpblaster/utils/partitioned_request.go | 19 +++++++++++++++++++ httpblaster/worker/worker_base.go | 19 +++++++++++++++++++ httpblaster/worker/worker_interface.go | 19 +++++++++++++++++++ httpblaster/worker/worker_results.go | 19 +++++++++++++++++++ httpblaster/worker/worker_type.go | 19 +++++++++++++++++++ tests/fakerGenerator_test.go | 19 +++++++++++++++++++ tests/igz_tsdb_item_test.go | 19 +++++++++++++++++++ tests/memoryGenerator_test.go | 19 +++++++++++++++++++ tests/utils_test.go | 19 +++++++++++++++++++ 46 files changed, 859 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index 02bc2ff..afae58b 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,3 +1,17 @@ +# Copyright 2016 Iguazio +# +# Licensed 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. +# project_name: http_blaster env: - GO111MODULE=on diff --git a/Makefile b/Makefile index 65d418a..dd584ba 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,17 @@ +# Copyright 2016 Iguazio +# +# Licensed 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. +# # Makefile for a go project # # Author: Jon Eisen diff --git a/examples/cfg_generator.sh b/examples/cfg_generator.sh index f96ad70..96b956e 100755 --- a/examples/cfg_generator.sh +++ b/examples/cfg_generator.sh @@ -1,3 +1,17 @@ +# Copyright 2016 Iguazio +# +# Licensed 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 GET_FILE="blaster_get.cfg" PUT_FILE="blaster_put.cfg" diff --git a/httpblaster/csv_2_tsdb_test.go b/httpblaster/csv_2_tsdb_test.go index f5aed08..27d90f2 100644 --- a/httpblaster/csv_2_tsdb_test.go +++ b/httpblaster/csv_2_tsdb_test.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package httpblaster import ( diff --git a/httpblaster/data_generator/fakerGenerator.go b/httpblaster/data_generator/fakerGenerator.go index d7465fd..495de3a 100644 --- a/httpblaster/data_generator/fakerGenerator.go +++ b/httpblaster/data_generator/fakerGenerator.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package data_generator import ( diff --git a/httpblaster/data_generator/memoryGenerator.go b/httpblaster/data_generator/memoryGenerator.go index 1af5d9e..01a3980 100644 --- a/httpblaster/data_generator/memoryGenerator.go +++ b/httpblaster/data_generator/memoryGenerator.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package data_generator import ( diff --git a/httpblaster/histogram/latency_hist.go b/httpblaster/histogram/latency_hist.go index 824b80a..086e7bb 100644 --- a/httpblaster/histogram/latency_hist.go +++ b/httpblaster/histogram/latency_hist.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package histogram import ( diff --git a/httpblaster/histogram/latency_hist_test.go b/httpblaster/histogram/latency_hist_test.go index 038d2ae..9290943 100644 --- a/httpblaster/histogram/latency_hist_test.go +++ b/httpblaster/histogram/latency_hist_test.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package histogram import ( diff --git a/httpblaster/http_blaster_test.go b/httpblaster/http_blaster_test.go index ad512a2..b52b5ab 100644 --- a/httpblaster/http_blaster_test.go +++ b/httpblaster/http_blaster_test.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package httpblaster /* import ( diff --git a/httpblaster/igz_data/emd_schema_parser.go b/httpblaster/igz_data/emd_schema_parser.go index 3bc69e2..26eb9a3 100644 --- a/httpblaster/igz_data/emd_schema_parser.go +++ b/httpblaster/igz_data/emd_schema_parser.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package igz_data import ( diff --git a/httpblaster/igz_data/igz_emd_item.go b/httpblaster/igz_data/igz_emd_item.go index e702d91..0609744 100644 --- a/httpblaster/igz_data/igz_emd_item.go +++ b/httpblaster/igz_data/igz_emd_item.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package igz_data import ( diff --git a/httpblaster/igz_data/igz_stream_records.go b/httpblaster/igz_data/igz_stream_records.go index 4422a0f..995b369 100644 --- a/httpblaster/igz_data/igz_stream_records.go +++ b/httpblaster/igz_data/igz_stream_records.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package igz_data import ( diff --git a/httpblaster/igz_data/igz_tsdb_item.go b/httpblaster/igz_data/igz_tsdb_item.go index c24766d..953461a 100644 --- a/httpblaster/igz_data/igz_tsdb_item.go +++ b/httpblaster/igz_data/igz_tsdb_item.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package igz_data import ( diff --git a/httpblaster/request_generators/common.go b/httpblaster/request_generators/common.go index b85431d..7c32283 100644 --- a/httpblaster/request_generators/common.go +++ b/httpblaster/request_generators/common.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/csv2kv.go b/httpblaster/request_generators/csv2kv.go index 24842b7..8fb51be 100644 --- a/httpblaster/request_generators/csv2kv.go +++ b/httpblaster/request_generators/csv2kv.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/csv2kv_perf.go b/httpblaster/request_generators/csv2kv_perf.go index a9a6e1d..7d3fb1c 100644 --- a/httpblaster/request_generators/csv2kv_perf.go +++ b/httpblaster/request_generators/csv2kv_perf.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/csv2stream.go b/httpblaster/request_generators/csv2stream.go index e37e84f..9a0a52f 100644 --- a/httpblaster/request_generators/csv2stream.go +++ b/httpblaster/request_generators/csv2stream.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/csv2tsdb.go b/httpblaster/request_generators/csv2tsdb.go index 97641a3..a812ff3 100644 --- a/httpblaster/request_generators/csv2tsdb.go +++ b/httpblaster/request_generators/csv2tsdb.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/csv_update_kv.go b/httpblaster/request_generators/csv_update_kv.go index 9e3484c..234371f 100644 --- a/httpblaster/request_generators/csv_update_kv.go +++ b/httpblaster/request_generators/csv_update_kv.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/faker2kv.go b/httpblaster/request_generators/faker2kv.go index 7b2ca9d..876b075 100644 --- a/httpblaster/request_generators/faker2kv.go +++ b/httpblaster/request_generators/faker2kv.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/generator_interface.go b/httpblaster/request_generators/generator_interface.go index e5b91fd..96fb287 100644 --- a/httpblaster/request_generators/generator_interface.go +++ b/httpblaster/request_generators/generator_interface.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/json2kv.go b/httpblaster/request_generators/json2kv.go index 3feab42..a338a91 100644 --- a/httpblaster/request_generators/json2kv.go +++ b/httpblaster/request_generators/json2kv.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/line2http.go b/httpblaster/request_generators/line2http.go index ca2ae19..49a24e7 100644 --- a/httpblaster/request_generators/line2http.go +++ b/httpblaster/request_generators/line2http.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/line2kv.go b/httpblaster/request_generators/line2kv.go index 4f7d455..8366cc7 100644 --- a/httpblaster/request_generators/line2kv.go +++ b/httpblaster/request_generators/line2kv.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/line2stream.go b/httpblaster/request_generators/line2stream.go index 646a6fa..b481a09 100644 --- a/httpblaster/request_generators/line2stream.go +++ b/httpblaster/request_generators/line2stream.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/performance_generator.go b/httpblaster/request_generators/performance_generator.go index 420690c..7e149b1 100644 --- a/httpblaster/request_generators/performance_generator.go +++ b/httpblaster/request_generators/performance_generator.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/replay.go b/httpblaster/request_generators/replay.go index 5437634..061d969 100644 --- a/httpblaster/request_generators/replay.go +++ b/httpblaster/request_generators/replay.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/request_dump.go b/httpblaster/request_generators/request_dump.go index f273a09..f2c0452 100644 --- a/httpblaster/request_generators/request_dump.go +++ b/httpblaster/request_generators/request_dump.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators type RequestDump struct { diff --git a/httpblaster/request_generators/requests_pool.go b/httpblaster/request_generators/requests_pool.go index 50453e2..695823a 100644 --- a/httpblaster/request_generators/requests_pool.go +++ b/httpblaster/request_generators/requests_pool.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/restore.go b/httpblaster/request_generators/restore.go index f855347..c412f66 100644 --- a/httpblaster/request_generators/restore.go +++ b/httpblaster/request_generators/restore.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/stats2tsdb.go b/httpblaster/request_generators/stats2tsdb.go index 641ccbd..a1847a8 100644 --- a/httpblaster/request_generators/stats2tsdb.go +++ b/httpblaster/request_generators/stats2tsdb.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/request_generators/stream_get.go b/httpblaster/request_generators/stream_get.go index dd3844a..9af8b13 100644 --- a/httpblaster/request_generators/stream_get.go +++ b/httpblaster/request_generators/stream_get.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package request_generators import ( diff --git a/httpblaster/schema_parser_test.go b/httpblaster/schema_parser_test.go index 5594b92..95f6b26 100644 --- a/httpblaster/schema_parser_test.go +++ b/httpblaster/schema_parser_test.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package httpblaster import ( diff --git a/httpblaster/stream_record_test.go b/httpblaster/stream_record_test.go index a6de68a..56d5af4 100644 --- a/httpblaster/stream_record_test.go +++ b/httpblaster/stream_record_test.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package httpblaster import ( diff --git a/httpblaster/tui/latency_collector.go b/httpblaster/tui/latency_collector.go index f6d8839..ab478c3 100644 --- a/httpblaster/tui/latency_collector.go +++ b/httpblaster/tui/latency_collector.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package tui import ( diff --git a/httpblaster/tui/statuses_collector.go b/httpblaster/tui/statuses_collector.go index 55f07da..129861c 100644 --- a/httpblaster/tui/statuses_collector.go +++ b/httpblaster/tui/statuses_collector.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package tui import ( diff --git a/httpblaster/tui/term_ui.go b/httpblaster/tui/term_ui.go index ff90c8d..326dd8f 100644 --- a/httpblaster/tui/term_ui.go +++ b/httpblaster/tui/term_ui.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package tui import ( diff --git a/httpblaster/utils/partitioned_request.go b/httpblaster/utils/partitioned_request.go index b19ba73..ade2006 100644 --- a/httpblaster/utils/partitioned_request.go +++ b/httpblaster/utils/partitioned_request.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package utils import ( diff --git a/httpblaster/worker/worker_base.go b/httpblaster/worker/worker_base.go index f4c27ac..9b79c97 100644 --- a/httpblaster/worker/worker_base.go +++ b/httpblaster/worker/worker_base.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package worker import ( diff --git a/httpblaster/worker/worker_interface.go b/httpblaster/worker/worker_interface.go index 904c6ac..d80cadc 100644 --- a/httpblaster/worker/worker_interface.go +++ b/httpblaster/worker/worker_interface.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package worker import ( diff --git a/httpblaster/worker/worker_results.go b/httpblaster/worker/worker_results.go index e27f919..6bab9a0 100644 --- a/httpblaster/worker/worker_results.go +++ b/httpblaster/worker/worker_results.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package worker import "time" diff --git a/httpblaster/worker/worker_type.go b/httpblaster/worker/worker_type.go index f7752b5..f3a6bd9 100644 --- a/httpblaster/worker/worker_type.go +++ b/httpblaster/worker/worker_type.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package worker type WorkerType int32 diff --git a/tests/fakerGenerator_test.go b/tests/fakerGenerator_test.go index 65b80d0..196c99e 100644 --- a/tests/fakerGenerator_test.go +++ b/tests/fakerGenerator_test.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package tests import ( diff --git a/tests/igz_tsdb_item_test.go b/tests/igz_tsdb_item_test.go index faed6df..079aa01 100644 --- a/tests/igz_tsdb_item_test.go +++ b/tests/igz_tsdb_item_test.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package tests import ( diff --git a/tests/memoryGenerator_test.go b/tests/memoryGenerator_test.go index 9695327..06f04a9 100644 --- a/tests/memoryGenerator_test.go +++ b/tests/memoryGenerator_test.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package tests import ( diff --git a/tests/utils_test.go b/tests/utils_test.go index ae03c23..0b9acef 100644 --- a/tests/utils_test.go +++ b/tests/utils_test.go @@ -1,3 +1,22 @@ +/* +Copyright 2016 Iguazio Systems Ltd. + +Licensed under the Apache License, Version 2.0 (the "License") with +an addition restriction as set forth herein. 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. + +In addition, you may not use the software for any purposes that are +illegal under applicable law, and the grant of the foregoing license +under the Apache 2.0 license is conditioned upon your compliance with +such restriction. +*/ package tests import ( From 44ab9290031fed18e4e691e88bf409ea8ec8797c Mon Sep 17 00:00:00 2001 From: Assaf Ben-Amitai Date: Thu, 25 Aug 2022 00:08:02 +0300 Subject: [PATCH 2/2] Update cfg_generator.sh --- examples/cfg_generator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cfg_generator.sh b/examples/cfg_generator.sh index 96b956e..91e5a12 100755 --- a/examples/cfg_generator.sh +++ b/examples/cfg_generator.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Copyright 2016 Iguazio # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. # -#!/bin/bash GET_FILE="blaster_get.cfg" PUT_FILE="blaster_put.cfg" SERVER="127.0.0.1"